﻿.video-carousel-isolated {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
    position: relative;
}

.video-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.video-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.video-carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.video-carousel-item {
    flex: 0 0 25%;
    padding: 10px;
}

    .video-carousel-item img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        border-radius: 10px;
    }

/* BOTONES */

.video-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
}

.video-prev {
    left: -10px;
}

.video-next {
    right: -10px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .video-carousel-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .video-carousel-item {
        flex: 0 0 100%;
    }

        .video-carousel-item img {
            height: 350px;
        }
}
.video-thumb-wrapper {
    position: relative;
}

/* Forzar centrado SOLO dentro del carrusel */
.video-carousel-item .btn-play {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

