

/* Start:/local/templates/aspro_optimus/components/bitrix/news/videoreviews/bitrix/news.list/.default/style.css?17513643403949*/
/* Общие стили для видеообзоров */
.videoreviews-list {
    padding: 20px 0;
}

/* Сетка видео-карточек */
.videoreviews-grid {
    margin: -15px;
}

.videoreviews-grid > [class*="grid-col"] {
    padding: 15px;
}

/* Карточка видеообзора в списке */
.video-review-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.video-review-card:hover {
    border-color: #f27f00;
    text-decoration: none;
    color: inherit;
}

/* Изображение карточки */
.video-review-card__image {
    position: relative;
    aspect-ratio: 600 / 337;
    overflow: hidden;
}

.video-review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-review-card:hover .video-review-card__image img {
    transform: scale(1.05);
}

/* Заглушка видео */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-align: center;
}

.video-placeholder i {
    color: #f27f00;
    margin-bottom: 10px;
    opacity: 0.8;
}

.video-placeholder p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* Оверлей с кнопкой плей */
.video-review-card__play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-review-card:hover .video-review-card__play-overlay {
    opacity: 1;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(242, 127, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(242, 127, 0, 1);
    transform: scale(1.1);
}

/* Контент карточки */
.video-review-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-review-card__title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    color: #333;
}

.video-review-card:hover .video-review-card__title {
    color: #f27f00;
}

.video-review-card__preview {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    
    /* Ограничиваем до 3 строк */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Мета информация */
.video-review-card__meta {
    color: #666;
    font-size: 14px;
    margin-top: auto;
}

.video-review-card__meta i {
    margin-right: 6px;
    color: #f27f00;
}

/* Пустое состояние */
.videoreviews-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.videoreviews-empty i {
    margin-bottom: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .videoreviews-grid {
        margin: -10px;
    }
    
    .videoreviews-grid > [class*="grid-col"] {
        padding: 10px;
    }
    
    .video-review-card__image {
        height: 180px;
    }
    
    .video-review-card__content {
        padding: 15px;
    }
}

/* Анимации загрузки */
.video-review-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End */
/* /local/templates/aspro_optimus/components/bitrix/news/videoreviews/bitrix/news.list/.default/style.css?17513643403949 */
