/* ===== БЛОК ВИДЕО-ОТЗЫВОВ ===== */

.video-reviews-section {
    width: 100%;
    margin: 24px auto 60px;
    padding: 0;
    position: relative;
}

/* Карусель */
.video-reviews-wrapper {
    width: 1440px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
}

.video-reviews-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0 12px;
}

.video-reviews-carousel::-webkit-scrollbar {
    display: none;
}

/* Карточка видео */
.video-review-card {
    position: relative;
    width: 696px;
    min-width: 696px;
    height: 457px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
}

.video-review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Градиент оверлей */
.video-review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, rgba(94, 150, 207, 0.70) 83%);
    border-radius: 5px;
}

/* Кнопка Play */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    background: transparent;
    border: 3px solid #ffffff;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-icon {
    width: 26px;
    height: 34px;
    border-left: 26px solid #ffffff;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    margin-left: 6px;
}

/* Информация о видео */
.video-review-info {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-review-author {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 27.6px;
}

.video-review-date {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 27.6px;
}

/* Кнопки навигации */
.video-nav-btn {
    position: absolute;
    width: 24px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #666666;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.video-nav-btn:hover {
    background: #f5f5f5;
}

.video-prev-btn {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.video-next-btn {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Адаптивность */
@media (max-width: 1440px) {
    .video-review-card {
        width: 600px;
        min-width: 600px;
        height: 394px;
    }
}

@media (max-width: 1200px) {
    .video-review-card {
        width: 550px;
        min-width: 550px;
        height: 361px;
    }
    
    .video-review-author,
    .video-review-date {
        font-size: 20px;
        line-height: 24px;
    }
    
    .video-play-btn {
        width: 70px;
        height: 70px;
    }
    
    .video-play-icon {
        width: 20px;
        height: 28px;
        border-left-width: 20px;
        border-top-width: 14px;
        border-bottom-width: 14px;
    }
}

@media (max-width: 992px) {
    .video-review-card {
        width: 500px;
        min-width: 500px;
        height: 328px;
    }
    
    .video-review-author,
    .video-review-date {
        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .video-review-card {
        width: 100%;
        min-width: 320px;
        height: 280px;
    }
    
    .video-review-author,
    .video-review-date {
        font-size: 16px;
        line-height: 20px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-icon {
        width: 16px;
        height: 24px;
        border-left-width: 16px;
        border-top-width: 12px;
        border-bottom-width: 12px;
    }
}

@media (max-width: 576px) {
    .video-review-card {
        height: 240px;
    }
    
    .video-review-author,
    .video-review-date {
        font-size: 14px;
        line-height: 18px;
    }
}
