/* ============================================================
   Styles pour [video_en_vedette] et [liste_videos]
   Fichier : /plugins/list_cpt/videos-vedette.css
============================================================ */

/* ─────────────────────────────────────────────────────────
   Grille des vidéos secondaires
   3 colonnes > 1000px > 2 colonnes > 650px > 1 colonne
───────────────────────────────────────────────────────── */
.vv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1000px) {
    .vv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .vv-grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────
   Carte vidéo (miniature + bouton play)
───────────────────────────────────────────────────────── */
.vv-play-trigger {
    all: unset;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.vv-featured .vv-play-trigger--featured {
    aspect-ratio: 1 / 1;
}

.vv-play-trigger img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.vv-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #F8F6EF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.vv-play-trigger--featured .vv-play-icon {
    width: 88px;
    height: 88px;
}

.vv-play-icon svg {
    width: 22px;
    height: 22px;
    fill: #152E49;
    margin-left: 3px; /* recentrage optique du triangle */
}

.vv-play-trigger:hover .vv-play-icon {
    transform: translate(-50%, -50%) scale(1.08);
}

.vv-empty {
    text-align: center;
    color: #152E49;
}

/* ─────────────────────────────────────────────────────────
   Modal de lecture vidéo
───────────────────────────────────────────────────────── */
.vv-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.vv-modal--active {
    display: flex;
}

.vv-modal-inner {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.vv-modal-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.vv-modal-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.vv-modal-close {
    all: unset;
    position: absolute;
    top: -44px;
    right: 0;
    color: #F8F6EF;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 6px 10px;
}