

/* Start:/bitrix/templates/.default/components/simai/sf.iblock.list/pkgh-video/style.css?17828244252349*/
.video-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-link {
    text-decoration: none;
    display: block;
}

/* Контейнер превью с пропорциями 16:9 */
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
    background-color: #000;
}

/* Затемнение при наведении */
.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.2);
    transition: 0.3s;
}

.video-card:hover .video-thumbnail::after {
    background: rgba(0,0,0,0.4);
}

/* Кнопка PLAY */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #2b6ce2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(43, 108, 226, 0.5);
    transition: 0.3s;
}

.play-button svg {
    width: 30px;
    height: 30px;
}

.video-card:hover .play-button {
    background: #ff8227; /* Меняем цвет на оранжевый при наведении */
    box-shadow: 0 0 25px rgba(255, 130, 39, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-name {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.4;
    font-weight: bold;
}

/* Навигация */
.video-nav {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.v-nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    color: #666;
}

.v-nav-btn:hover {
    border-color: #2b6ce2;
    color: #2b6ce2;
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
}
/* End */
/* /bitrix/templates/.default/components/simai/sf.iblock.list/pkgh-video/style.css?17828244252349 */
