/* --- Sessions d'automne (horaire) --- */
.sessions-automne {
    max-width: 1080px;
    margin: 0.5rem auto 2.5rem;
    padding: 0 1.25rem;
    color: #3d2e22;
}
.sessions-automne__title {
    margin: 0 0 1.75rem;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #7f6145;
}
.sessions-automne__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
}
.session-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    padding: 1.6rem 1.4rem 1.45rem;
    background: #fff;
    border: 1px solid #e8e0d4;
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(61, 46, 34, .08);
    border-top: 4px solid #b07a4a;
}
.session-card > .session-card__price {
    margin-top: auto;
    padding-top: .45rem;
}
.session-card__badge {
    margin: 0 0 .75rem;
    padding: .28rem .75rem;
    border-radius: 999px;
    background: #f7f1e8;
    color: #7f6145;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.session-card__name {
    margin: 0 0 .55rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
    color: #3d2e22;
}
.session-card__meta {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    color: #5a4634;
}
.session-card__dates {
    margin: .4rem 0 0;
    font-size: .98rem;
    line-height: 1.45;
    color: #6b5a4a;
}
.session-card__price {
    margin: 1.15rem 0 0;
    padding: .45rem 1rem;
    border-radius: 999px;
    background: #7f6145;
    color: #fff9f2 !important;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none !important;
}
a.session-card__price:link,
a.session-card__price:visited {
    color: #fff9f2 !important;
}
a.session-card__price:hover,
a.session-card__price:focus {
    background: #6b5038;
    color: #fff9f2 !important;
}
.session-card__price span {
    font-size: .78rem;
    font-weight: 500;
    opacity: .85;
}
.session-card__note {
    margin: 1rem 0 1.1rem;
    padding-top: .9rem;
    border-top: 1px solid #ece6dd;
    font-size: .88rem;
    line-height: 1.55;
    font-style: italic;
    color: #666;
}
.sessions-automne__footnote {
    margin: 1.75rem auto 0;
    max-width: 40em;
    text-align: center;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
    color: #5a4634;
}
@media (max-width: 900px) {
    .sessions-automne__list {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
    .session-card { padding: 1.45rem 1.25rem 1.3rem; }
}
@media (max-width: 600px) {
    .sessions-automne__title { font-size: 1.35rem; }
    .session-card__name { font-size: 1.22rem; }
}

/* --- Onglets d'horaires --- */
.horaire-tabs {
    width: 100%;
}
.horaire-tabs__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .55rem;
    margin: 0 0 1.35rem;
}
.horaire-tabs__tab {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    border: 1px solid #e8e0d4;
    background: #fff;
    color: #7f6145;
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
    padding: .6rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.horaire-tabs__tab:hover,
.horaire-tabs__tab:focus-visible {
    background: #f7f1e8;
    border-color: #7f6145;
    outline: none;
}
.horaire-tabs__tab[aria-selected="true"] {
    background: #7f6145;
    border-color: #7f6145;
    color: #fff9f2;
}
.horaire-tabs__tab[aria-selected="true"]:hover,
.horaire-tabs__tab[aria-selected="true"]:focus-visible {
    background: #6b5038;
    border-color: #6b5038;
    color: #fff9f2;
}
.horaire-tabs__panel img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 600px) {
    .horaire-tabs__tab {
        font-size: .78rem;
        padding: .5rem 1rem;
    }
}

/* --- Mention promotions (tarifs) --- */
.tarif-promo {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    padding: 1.35rem 1.5rem;
    text-align: center;
    background: #f7f4ef;
    border-radius: 12px;
    border: 1px solid #e8e0d4;
}
.tarif-promo__title {
    margin: 0 0 .5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #7f6145;
}
.tarif-promo__text {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #555;
}
.tarif-promo__text a {
    color: #7f6145;
    font-weight: 600;
}
@media (max-width: 600px) {
    .tarif-promo {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.15rem 1.2rem;
    }
}
