.fiche-spectacle {
    --spectacle-accent: #c7a765;
    --spectacle-text: #1d1d1d;
    --spectacle-muted: #6d6d6d;
    --spectacle-bg: rgba(255, 255, 255, 0.78);
    --spectacle-border: rgba(20, 20, 20, 0.08);
}

.fiche-spectacle__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--spectacle-bg);
    border: 1px solid var(--spectacle-border);
    box-shadow: 0 14px 32px rgba(17, 17, 17, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fiche-spectacle__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(17, 17, 17, 0.10);
}

.fiche-spectacle__image-link {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid var(--spectacle-border);
}

.fiche-spectacle__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fiche-spectacle__image-link:hover .fiche-spectacle__image {
    transform: scale(1.03);
}

.fiche-spectacle__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.15rem 1.4rem;
}

.fiche-spectacle__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    color: var(--spectacle-muted);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.fiche-spectacle__date {
    color: var(--spectacle-accent);
    font-weight: 700;
}

.fiche-spectacle__lieu {
    color: var(--spectacle-muted);
    position: relative;
    padding-left: 0.55rem;
}

.fiche-spectacle__lieu::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--spectacle-accent);
}

.fiche-spectacle__title {
    margin: 0 0 0.45rem;
    color: var(--spectacle-text);
    line-height: 1.25;
}

.fiche-spectacle__title strong {
    font-weight: 700;
}

.fiche-spectacle__type,
.fiche-spectacle__artistes,
.fiche-spectacle__resume {
    margin: 0 0 0.5rem;
    color: var(--spectacle-muted);
    line-height: 1.5;
}

.fiche-spectacle__type {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--spectacle-text);
}

.fiche-spectacle__artistes {
    font-size: 0.82rem;
    color: var(--spectacle-text);
}

.fiche-spectacle__artiste-accent {
    color: var(--spectacle-accent);
    font-weight: 600;
}

.fiche-spectacle__resume {
    margin-top: auto;
}

.fiche-spectacle--compact .fiche-spectacle__image {
    height: 180px;
}

.bloc-spectacle {
    position: relative;
}

.bloc-spectacle__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bloc-spectacle__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
    color: var(--spectacle-muted);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.bloc-spectacle__date {
    color: var(--spectacle-accent);
    font-weight: 700;
}

.bloc-spectacle__lieu {
    color: var(--spectacle-muted);
}

.bloc-spectacle__title {
    margin: 0 0 0.35rem;
    color: var(--spectacle-text);
}

.bloc-spectacle__title strong {
    font-size: clamp(1.8rem, 2vw, 2.5rem);
    line-height: 1.2;
    font-weight: 700;
}

.bloc-spectacle__type,
.bloc-spectacle__artistes {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: var(--spectacle-text);
    line-height: 1.5;
}

.bloc-spectacle__artiste-accent {
    color: var(--spectacle-accent);
    font-weight: 600;
}

.bloc-spectacle__presentation {
    color: var(--spectacle-text);
}

.bloc-spectacle .svg-secondary {
    margin-bottom: 1.4rem;
}

@media (max-width: 767px) {
    .fiche-spectacle__image {
        height: 200px;
    }

    .bloc-spectacle__title strong {
        font-size: 1.7rem;
    }
}
