/* Infos pratiques de la fiche événement (dates / horaires / lieu). */
.event-pratiques {
    margin: 0 0 2rem;
}

.event-pratiques__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 2.5rem;
    margin: 0;
    padding: 1.25rem 0;
    list-style: none;
    border-top: 1px solid rgba(31, 39, 73, 0.12);
    border-bottom: 1px solid rgba(31, 39, 73, 0.12);
}

.event-pratiques__item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-width: 10rem;
}

.event-pratiques__label {
    font-family: Gabarito, Arial, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(31, 39, 73, 0.55);
}

.event-pratiques__value {
    font-family: Gabarito, Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #1f2749;
}

/* Programme de la tournée : une date, puis ses villes (repris des sous-événements). */
.event-planning {
    margin: 0 0 3rem;
}

.event-planning__list {
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.event-planning__day {
    display: grid;
    grid-template-columns: 14rem 1fr;
    gap: 0.5rem 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(31, 39, 73, 0.12);
}

.event-planning__day:last-child {
    border-bottom: 1px solid rgba(31, 39, 73, 0.12);
}

.event-planning__date {
    margin: 0;
    font-family: Gabarito, Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #b7985f;
}

.event-planning__places {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
}

.event-planning__place {
    font-family: Gabarito, Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.35;
    color: #1f2749;
}

@media (max-width: 767px) {
    .event-planning__day {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

.bon-a-savoir {
    margin-top: 1.75rem;
}

.bon-a-savoir h3,
.champ-libre h4 {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: #1f2749;
}

.champ-libre {
    margin-top: 1.25rem;
}

.champ-libre p {
    margin: 0;
}

/* Hero événement (Week-end des Grands Crus, etc.) : titre et visuel restent
   lisibles quand le bandeau desktop laisse place au burger. */
@media (max-width: 1360px) {
    .evenement-template-default .type-banner {
        height: min(100svh, 720px);
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .evenement-template-default .type-banner .wrapper,
    .evenement-template-default .type-banner .wrapper .container img {
        height: 100%;
        max-height: none;
    }

    .evenement-template-default .type-banner .title-block {
        position: relative;
        z-index: 1000;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 80px 20px 32px;
    }

    .evenement-template-default .type-banner .title-block h1 {
        font-size: clamp(26px, 7vw, 48px);
        line-height: 1.15;
        max-width: 18ch;
        margin-left: auto;
        margin-right: auto;
        text-wrap: balance;
    }
}

@media (max-width: 767px) {
    .evenement-template-default .type-banner {
        height: min(100svh, 560px);
        min-height: 320px;
    }

    .evenement-template-default .type-banner .title-block {
        padding: 72px 16px 28px;
    }
}
