/* Grille de vignettes : 3 colonnes desktop / 2 tablette / 1 mobile */
.cine-fiches-grille {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 24px 0;
}

@media (max-width: 1024px) {
    .cine-fiches-grille {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cine-fiches-grille {
        grid-template-columns: 1fr;
    }
}

.cine-fiche-carte {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cine-fiche-carte:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.cine-fiche-image {
    position: relative;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #ddd;
}

.cine-fiche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cine-fiche-image-vide {
    width: 100%;
    height: 100%;
}

.cine-fiche-date {
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
}

.cine-fiche-contenu {
    padding: 16px;
}

.cine-fiche-titre {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
}

.cine-fiche-evenement {
    margin: 0 0 8px;
    font-style: italic;
    font-size: 14px;
    opacity: .8;
}

.cine-fiche-extrait {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cine-fiches-vide {
    text-align: center;
    opacity: .7;
}

/* Page fiche : bande-annonce + infos */
.cine-fiche-details {
    margin: 24px 0 32px;
}

.cine-fiche-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 6px;
    overflow: hidden;
}

.cine-fiche-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cine-fiche-meta-liste {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.cine-fiche-meta-liste li {
    font-size: 15px;
}

.cine-fiche-meta-label {
    font-weight: 700;
}
