/* ==========================================================================
   Blocs de contenu — rendu public
   --------------------------------------------------------------------------
   Valeurs reprises une à une de la maquette (BlockRenderer.dc.html) :
   largeurs, rayons, tailles de police, couleurs. Ne pas « arrondir » ces
   nombres : c'est ce qui fait que le rendu est identique.
   ========================================================================== */

.blocks {
    display: flex;
    flex-direction: column;
    gap: var(--gap-blocs);
    width: 100%;
    overflow-x: clip;
    /* Permet aux blocs de s'adapter à la largeur du conteneur (aperçu
       responsive de l'éditeur) et pas seulement à celle de la fenêtre. */
    container-type: inline-size;
}

/* Les blocs « pleine largeur » débordent volontairement du conteneur. */
.b-hero, .b-stats, .b-panel, .b-sectionsteaser { width: 100%; }

/* --- Bannière (hero) ------------------------------------------------------ */

.b-hero {
    background: linear-gradient(175deg, var(--fond-hero) 0%, var(--fond-page) 78%);
    padding: 64px 24px 56px;
}
.b-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 48px;
    align-items: center;
}
.b-hero__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}
/* Le surtitre est une pastille, pas un intertitre en capitales. */
.b-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 7px 14px;
    background: var(--fond-carte);
    border: 1px solid var(--bord-violet-2);
    border-radius: var(--r-pill);
    color: var(--violet-lien-hover);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .02em;
}
.b-hero__title {
    margin: 0;
    font-size: clamp(2.3rem, 4.6vw, 3.5rem);
    line-height: 1.06;
    letter-spacing: -.02em;
    text-wrap: balance;
}
.b-hero__lead {
    margin: 0;
    font-size: 1.13rem;
    line-height: 1.7;
    color: var(--texte-2);
    max-width: 34rem;
    text-wrap: pretty;
}
.b-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
/* Les deux appels à l'action du héros sont plus grands que les boutons
   courants : c'est le premier geste proposé au visiteur. */
.b-hero__actions .btn { padding: 14px 26px; font-size: 1rem; font-weight: 700; }
.b-hero__media { position: relative; min-width: 0; }
.b-hero__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-xl);
    box-shadow: 0 24px 48px -20px rgba(42, 33, 69, .35);
}
.b-hero__badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 9px 16px;
    background: var(--fond-carte);
    border-radius: var(--r-pill);
    box-shadow: 0 8px 20px rgba(42, 33, 69, .18);
    font-size: .85rem;
    font-weight: 700;
    color: var(--texte);
}
.b-hero__badge .dot {
    flex: none;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--violet);
}

/* --- Titre de section ----------------------------------------------------- */

.b-sectiontitle {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.b-sectiontitle .kicker {
    color: var(--violet-lien);
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.b-sectiontitle h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.15;
    text-wrap: balance;
}
.b-sectiontitle .lead {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--texte-2);
    text-wrap: pretty;
}

/* --- Titre / texte -------------------------------------------------------- */

.b-heading, .b-richtext {
    max-width: var(--largeur-texte);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.b-heading h2 { margin: 0; font-size: 1.9rem; line-height: 1.2; }
.b-heading h3 { margin: 0; font-size: 1.35rem; line-height: 1.25; font-weight: 700; }
.b-richtext { font-size: 1.06rem; line-height: 1.75; color: var(--texte-doux); }

/* --- Citation ------------------------------------------------------------- */

.b-quote {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.b-quote blockquote {
    margin: 14px 0 12px;
    font-family: var(--police-titre);
    font-weight: 700;
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    line-height: 1.45;
    color: var(--texte);
    text-wrap: balance;
}
.b-quote blockquote::before {
    content: '“';
    display: block;
    font-size: 4rem;
    line-height: .6;
    color: var(--bord-clair);
    font-weight: 800;
}
.b-quote figcaption {
    font-size: .92rem;
    font-weight: 700;
    color: var(--texte-3);
}

/* --- Alerte --------------------------------------------------------------- */

.b-alert {
    max-width: var(--largeur-texte);
    margin: 0 auto;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid;
    border-radius: var(--r-md);
}
.b-alert__icon {
    flex: none;
    width: 30px; height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--fond-carte);
    font-weight: 800;
    font-size: .95rem;
    box-shadow: inset 0 0 0 1.5px currentColor;
}
.b-alert__title { margin: 0 0 4px; font-weight: 700; font-size: 1.02rem; }
.b-alert__text  { margin: 0; color: var(--texte-doux); font-size: .98rem; line-height: 1.65; }
.b-alert--info      { background: var(--fond-violet-2); border-color: var(--bord-violet-2); color: var(--violet-lien-hover); }
.b-alert--attention { background: var(--alerte-fond);   border-color: var(--alerte-bord);   color: var(--alerte); }
.b-alert--succes    { background: var(--succes-fond);   border-color: var(--succes-bord);   color: var(--succes); }

/* --- Image ---------------------------------------------------------------- */

.b-image {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
/* Plafond de hauteur : une photo en 4/3 sur toute la largeur remplirait
   l'écran et repousserait le texte sous la ligne de flottaison. Au-delà,
   l'image se recadre plutôt que de pousser la page. */
.b-image img {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--r-lg);
}
.b-image figcaption {
    margin-top: 10px;
    text-align: center;
    font-size: .88rem;
    color: var(--texte-3);
}

/* --- Galerie -------------------------------------------------------------- */

.b-gallery {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.b-gallery__title { margin: 0 0 18px; font-size: 1.5rem; }
.b-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 14px;
}
.b-gallery__item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    border-radius: var(--r-md);
    overflow: hidden;
    cursor: zoom-in;
}
.b-gallery__item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .2s ease;
}
.b-gallery__item:hover img { transform: scale(1.04); }
.b-gallery figcaption { margin-top: 7px; font-size: .85rem; color: var(--texte-3); }

/* Visionneuse plein écran */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(20, 12, 40, .85);
    backdrop-filter: blur(4px);
}
.lightbox[hidden] { display: none; }
.lightbox img {
    max-width: min(920px, 92vw);
    max-height: 78vh;
    width: auto;
    border-radius: var(--r-md);
}
.lightbox figcaption { margin-top: 12px; text-align: center; color: var(--texte-doux); font-size: .95rem; }
.lightbox__close {
    position: fixed;
    top: 18px; right: 18px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--fond-carte);
    color: var(--texte);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
}

/* --- Vidéo ---------------------------------------------------------------- */

.b-video {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.b-video__title { margin: 0 0 18px; font-size: 1.5rem; }
.b-video__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--fond-panneau);
}
.b-video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.b-video__placeholder {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    background: var(--fond-panneau);
    border-radius: var(--r-lg);
    color: #c9b8f0;
    text-align: center;
}
.b-video__placeholder span {
    width: 64px; height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--violet);
    color: #fff;
    font-size: 1.4rem;
}
.b-video__placeholder p { margin: 0; font-family: var(--police-mono); font-size: .9rem; }

/* --- Fichier -------------------------------------------------------------- */

.b-file {
    max-width: var(--largeur-texte);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--fond-carte);
    border: 1.5px solid var(--bord-carte);
    border-radius: var(--r-md);
    flex-wrap: wrap;
}
.b-file__icon {
    flex: none;
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--r-sm);
    background: var(--fond-violet-2);
    color: var(--violet-lien);
    font-family: var(--police-mono);
    font-size: .75rem;
    font-weight: 700;
}
.b-file__meta { flex: 1; min-width: 200px; }
.b-file__name { margin: 0; font-weight: 700; font-size: .99rem; }
.b-file__size { margin: 2px 0 0; font-size: .85rem; color: var(--texte-3); }

/* --- Cartes média & carrousel --------------------------------------------- */

.b-mediacards {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}
.b-mediacards__card {
    display: flex;
    flex-direction: column;
    background: var(--fond-carte);
    border: 1.5px solid var(--bord-carte);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.b-mediacards__card img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.b-mediacards__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; }
.b-mediacards__body h3 { margin: 0; font-size: 1.08rem; }
.b-mediacards__body p  { margin: 0; color: var(--texte-2); font-size: .94rem; line-height: 1.6; }

.b-carousel {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}
.b-carousel__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.b-carousel__item {
    flex: 0 0 min(320px, 80%);
    scroll-snap-align: start;
    background: var(--fond-carte);
    border: 1.5px solid var(--bord-carte);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.b-carousel__item img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.b-carousel__body { padding: 16px 18px; }
.b-carousel__body h3 { margin: 0 0 4px; font-size: 1rem; font-weight: 700; }
.b-carousel__body p  { margin: 0; color: var(--texte-2); font-size: .9rem; line-height: 1.55; }
.b-carousel__nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 10px; }
.b-carousel__nav button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--bord-violet);
    background: var(--fond-carte);
    color: var(--violet-lien-hover);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--t-rapide);
}
.b-carousel__nav button:hover { background: var(--fond-doux); }

/* --- Bouton & séparateur -------------------------------------------------- */

.b-button { display: flex; justify-content: center; padding: 0 24px; margin: 0; }

.b-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
}
.b-separator span {
    width: 90px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--bord-violet));
}
.b-separator span:last-child { background: linear-gradient(90deg, var(--bord-violet), transparent); }
.b-separator i {
    width: 8px; height: 8px;
    background: var(--violet-pale);
    border-radius: var(--r-mini);
    transform: rotate(45deg);
}

/* --- Carte ressource & panneau -------------------------------------------- */

.b-resource {
    max-width: var(--largeur-texte);
    margin: 0 auto;
    padding: 26px;
    background: var(--fond-doux);
    border: 1.5px solid var(--bord-champ);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.b-resource__tag {
    margin: 0;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: var(--fond-carte);
    color: var(--violet-lien);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.b-resource h3 { margin: 0; font-size: 1.35rem; }
.b-resource__text { margin: 0; color: var(--texte-2); font-size: .99rem; line-height: 1.65; }
.b-resource .btn { margin-top: 6px; }

.b-panel { padding: 0 24px; }
.b-panel__inner {
    position: relative;
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 56px);
    border-radius: var(--r-xl);
    background: linear-gradient(120deg, var(--violet-fonce), var(--violet) 60%, var(--violet-clair));
    color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.b-panel__inner::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.b-panel__inner > * { position: relative; z-index: 1; }
.b-panel__kicker {
    margin: 0;
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #e2d5fb;
}
.b-panel__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.12;
    max-width: 26ch;
    text-wrap: balance;
}
.b-panel__text {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #efe9fc;
    max-width: 56ch;
    text-wrap: pretty;
}
.b-panel__note { margin: 0; font-size: .85rem; color: #d8c8f7; }
/* Le bouton du panneau est sombre sur le fond violet, pas blanc. */
.b-panel .btn {
    margin-top: 10px;
    background: var(--fond-carte);
    color: var(--violet-lien-hover);
    border: 0;
    font-weight: 800;
    padding: 14px 28px;
}
.b-panel .btn:hover { background: #f0e9fd; color: var(--violet-fonce); }

/* --- Texte + image -------------------------------------------------------- */

.b-textimage {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 44px;
    align-items: center;
}
.b-textimage__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}
.b-textimage h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15;
    text-wrap: balance;
}
.b-textimage .rich { font-size: 1.04rem; line-height: 1.75; color: var(--texte-doux); }
.b-textimage__media { min-width: 0; }
.b-textimage__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--r-lg);
}
.b-textimage--reverse .b-textimage__media { order: -1; }
.b-textimage .btn { font-size: .98rem; padding: 12px 22px; }

/* --- Colonnes ------------------------------------------------------------- */

.b-columns {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.b-columns__col {
    background: var(--fond-carte-2);
    border: 1px solid var(--bord-doux);
    border-radius: var(--r-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.b-columns__col h3 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--violet-lien-hover); }
.b-columns__col .rich { font-size: .99rem; line-height: 1.7; color: var(--texte-doux); }
/* Les blocs imbriqués ne rajoutent ni marge ni padding horizontal. */
.b-columns__col .blocks { gap: 16px; }
.b-columns__col [class^="b-"] { max-width: none; padding-left: 0; padding-right: 0; }

/* --- Faits clés & statistiques -------------------------------------------- */

.b-keyfacts {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.b-keyfacts__card {
    background: var(--fond-doux);
    border: 1px solid var(--bord-carte);
    border-radius: var(--r-lg);
    padding: 26px 26px 22px;
}
.b-keyfacts__n {
    margin: 0;
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--violet-lien);
    line-height: 1;
}
.b-keyfacts__t { margin: 8px 0 0; color: var(--texte-2); font-size: .98rem; line-height: 1.5; }

.b-stats { background: var(--fond-panneau); padding: 56px 24px; }
.b-stats__inner { max-width: var(--largeur-large); margin: 0 auto; }
.b-stats__title {
    margin: 0 0 32px;
    text-align: center;
    color: #fff;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
}
.b-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 22px;
}
.b-stats__item { text-align: center; padding: 10px; }
.b-stats__n {
    margin: 0;
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--violet-tres-pale);
    line-height: 1;
}
.b-stats__t { margin: 10px 0 0; color: #b7aede; font-size: .95rem; line-height: 1.45; }

/* --- Cartes & troubles ---------------------------------------------------- */

.b-cards, .b-troubles {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.b-cards__card, .b-troubles__card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--fond-carte);
    border: 1.5px solid var(--bord-carte);
    border-radius: var(--r-lg);
    padding: 24px;
    color: inherit;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
a.b-cards__card:hover, a.b-troubles__card:hover {
    transform: translateY(-3px);
    border-color: var(--bord-clair);
    box-shadow: var(--ombre-carte);
    color: inherit;
}
/* Une carte simple porte un titre clair ; une carte « trouble » un titre violet. */
.b-cards__card h3 {
    margin: 0;
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--texte);
}
.b-troubles__card h3 {
    margin: 0;
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: 1.18rem;
    color: var(--violet-lien-hover);
}
.b-cards__card p, .b-troubles__card p {
    margin: 0;
    color: var(--texte-2);
    font-size: .95rem;
    line-height: 1.6;
}
.b-cards__more, .b-troubles__more {
    margin-top: auto;
    padding-top: 6px;
    font-size: .92rem;
    font-weight: 700;
    color: var(--violet-lien);
}

/* --- Liste numérotée ------------------------------------------------------ */

.b-numbered {
    max-width: var(--largeur-texte);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.b-numbered__title { margin: 0 0 20px; font-size: 1.5rem; }
.b-numbered__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.b-numbered__list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin: 0;
    padding: 18px 20px;
    background: var(--fond-carte);
    border: 1px solid var(--bord-doux);
    border-radius: var(--r-md);
}
.b-numbered__n {
    flex: none;
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--violet-pale);
    line-height: 1.2;
}
.b-numbered__list h3 { margin: 0 0 3px; font-size: 1.05rem; font-weight: 700; }
.b-numbered__list p  { margin: 0; color: var(--texte-2); font-size: .97rem; line-height: 1.6; }

/* --- Témoignages ---------------------------------------------------------- */

.b-testimonials {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}
.b-testimonials__card {
    margin: 0;
    padding: 28px;
    background: var(--fond-carte);
    border: 1.5px solid var(--bord-carte);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.b-testimonials__card::before {
    content: '“';
    font-family: var(--police-titre);
    font-size: 2.6rem;
    line-height: .5;
    color: var(--bord-clair);
    font-weight: 800;
}
.b-testimonials__card blockquote {
    margin: 0;
    color: var(--texte-doux);
    font-size: 1.02rem;
    line-height: 1.65;
    text-wrap: pretty;
}
.b-testimonials__card figcaption { margin-top: auto; font-size: .9rem; color: var(--texte-3); }
.b-testimonials__card figcaption strong { color: var(--texte); }

/* --- Réseau régional ------------------------------------------------------ */

.b-sectionsteaser { padding: 0 24px; }
.b-sectionsteaser__inner {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: clamp(32px, 5vw, 54px);
    background: var(--fond-panneau);
    border-radius: var(--r-xl);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 36px;
    align-items: center;
}
.b-sectionsteaser__text { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.b-sectionsteaser__text .kicker {
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--violet-tres-pale);
}
.b-sectionsteaser__text h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    line-height: 1.1;
    text-wrap: balance;
}
.b-sectionsteaser__text p {
    margin: 0;
    color: #c5bce6;
    line-height: 1.7;
    font-size: 1.03rem;
    text-wrap: pretty;
}
.b-sectionsteaser__text .btn { margin-top: 8px; }
.b-sectionsteaser__count {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 16px;
}
.b-sectionsteaser__count strong {
    font-family: var(--police-titre);
    font-weight: 800;
    font-size: 3.4rem;
    color: var(--violet-tres-pale);
    line-height: 1;
}
.b-sectionsteaser__count span { color: #c5bce6; font-size: 1rem; font-weight: 700; }
.b-sectionsteaser__villes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.b-sectionsteaser__villes li {
    margin: 0;
    padding: 6px 13px;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(201, 176, 245, .35);
    color: #e2d5fb;
    font-size: .85rem;
    font-weight: 600;
}
.b-sectionsteaser__villes li:last-child {
    background: rgba(125, 71, 222, .35);
    border-color: var(--violet);
    padding: 0;
}
.b-sectionsteaser__villes a {
    display: block;
    padding: 6px 13px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

/* --- Dernières actualités ------------------------------------------------- */

.b-eventsteaser {
    max-width: var(--largeur-large);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.b-eventsteaser__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.b-eventsteaser__head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.b-eventsteaser__head a { font-weight: 700; font-size: .95rem; text-decoration: none; }
.b-eventsteaser__head a:hover { text-decoration: underline; }
.b-eventsteaser__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

/* --- Responsive ----------------------------------------------------------- */

@container (max-width: 700px) {
    .b-hero { padding: 40px 20px 36px; }
    .b-hero__inner { gap: 28px; }
    .b-stats { padding: 40px 20px; }
}

@media (max-width: 700px) {
    :root { --gap-blocs: 48px; }
    .b-textimage--reverse .b-textimage__media { order: 0; }
}
