.vt-carousel-wrapper {
    width: 100%;
    position: relative;
    padding: 30px 0;
    box-sizing: border-box;
}

.vt-swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.vt-carousel-item {
    background-position: center;
    background-size: cover;
    width: 45%; /* La tarjeta central ocupará el 45% del ancho del contenedor */
    max-width: 520px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Compartidos del player interno */
.vt-carousel-item .yt-thumb {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: block;
}
.vt-carousel-item .yt-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
}
.vt-carousel-item .yt-content { background: #fff; padding: 14px; }
.vt-carousel-item .yt-title { font-size: 15px; font-weight: 700; color: #0f172a; line-height: 1.4; }
.vt-carousel-item .yt-desc { font-size: 13px; color: #64748b; margin-top: 5px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* --- REGLA CLAVE: Ocultar botón Play en tarjetas laterales --- */
.vt-carousel-item .yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0.8);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 1;
    opacity: 0; /* Oculto por defecto en laterales */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Solo la tarjeta central (activa) muestra el botón play y permite hover */
.vt-carousel-item.swiper-slide-active .yt-play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}
.vt-carousel-item.swiper-slide-active:hover .yt-play {
    transform: translate(-50%,-50%) scale(1.1);
}

/* Sintonización de las flechas y paginación en el contenedor */
.vt-swiper-btn {
    color: #0f172a !important;
    background: #fff;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.vt-swiper-btn:after { font-size: 18px !important; font-weight: bold; }
.vt-swiper-btn:hover { background: #0f172a; color: #fff !important; }

.vt-swiper-pagination .swiper-pagination-bullet-active {
    background: #0f172a !important;
}

@media(max-width:768px) {
    .vt-carousel-item { width: 75%; }
}