@charset "UTF-8";
:root {
  /* ─── NOUVELLE PALETTE ─────────────────────────────────────
     Refonte chromatique pour un look plus chic et adulte
     (Drive / Blade Runner plutôt que synthwave trash) */
  --color-primary: #7226ff; /* violet vif  (accent principal — halos, taglines, boutons) */
  --color-secondary: #211632; /* bleu nuit profond (fond principal) */
  --color-deep: #010030; /* quasi noir bleuté (zones très sombres / dégradés) */
  --color-light: #ffe5f1; /* rose pâle / blanc cassé (texte sur fond clair) */
  --color-accent: #f042ff; /* rose vif (accent secondaire ponctuel) */
  --color-cool: #87f6f5; /* cyan / turquoise (touche froide discrète) */
  --color-body: #000000;
  --color-white: #ffffff;
  --hero-overlay: rgba(27, 28, 42, 0.45);
  --section-padding: clamp(4rem, 7vw, 8rem);
  --title-size-xl: clamp(4.5rem, 14vw, 12rem);
  --title-size-lg: clamp(2.5rem, 7vw, 5rem);
  --title-size-md: clamp(2rem, 5vw, 3.5rem);
  --text-size: clamp(1rem, 1.3vw, 1.15rem);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.25);
  --transition-smooth: 700ms cubic-bezier(0.22, 1, 0.36, 1);
  /* ─── AURAS VIOLET ─────────────────────────────────────────
     Halos cohérents pour les titres et accents.
     Légère pointe de cyan dans le glow soft pour la touche froide. */
  --glow-primary-soft:
    0 0 20px rgba(114, 38, 255, 0.4), 0 0 50px rgba(114, 38, 255, 0.18), 0 0 80px rgba(135, 246, 245, 0.06); /* léger reflet cyan très diffus */
  --glow-primary-strong:
    0 0 12px rgba(114, 38, 255, 0.6), 0 0 32px rgba(114, 38, 255, 0.35), 0 0 64px rgba(114, 38, 255, 0.2);
  --glow-text-shadow:
    0 0 18px rgba(114, 38, 255, 0.5), 0 2px 12px rgba(0, 0, 0, 0.4);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--text-size);
  color: var(--color-body);
  background: var(--color-secondary);
  overflow-x: hidden;
}
h1, h2, h3, h4, .display-title, .ghost-title, .topic-btn, .sticky-topic-btn, .hero-main-title {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
}
a {
  text-decoration: none;
}
.section-shell {
  position: relative;
  padding: var(--section-padding) 0;
}
.section-title {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-size: var(--title-size-lg);
  line-height: 0.9;
  text-shadow: var(--glow-text-shadow);
}
.ghost-title {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 0;
  transform: translateY(18%);
  color: rgba(114, 38, 255, 0.10);
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.8;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.switcher-logo {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
  margin-top: -68px;
}

.article-section[data-comite-p].active {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 7rem);
}


/* video */
#hero-bloc {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #000;
}
.video-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background: #000 url("img/hero-poster.jpg") center center / cover no-repeat;
}
.bloc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #000;
}


/* ═══════════════════════════════════════════════════════
   IMAGES PLEINE LARGEUR (.imagepadding)
   "Casse" les colonnes Bootstrap pour passer en 100vw,
   même quand l'image est dans un .container parent.
═══════════════════════════════════════════════════════ */
.imagepadding {
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 4rem);
  /* Ces deux lignes sont la magie : on neutralise les marges
     du .container parent en se décalant sur la gauche. */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  object-fit: cover;
  /* Petit halo discret cohérent avec la charte */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}


/*
.imagepadding {
  aspect-ratio: 21 / 9;    
  object-position: center; 
}
*/


/* Sur mobile, on réduit un peu les marges verticales */
@media (max-width: 767.98px) {
  .imagepadding {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
.icone-posi {
  font-size: 3rem;
}
/* Petite période discrète à la fin du popup hover : "entre 2018 et juin 2025" */
.rodeo-popup-period {
  font-size: 0.85em;
  opacity: 0.75;
  font-style: italic;
}

a, .team-name {
	
	color: #fff;
}

/* ═══════════════════════════════════════════════════════
   TAGLINE RÉUTILISABLE (sur-titre violet Michroma)
═══════════════════════════════════════════════════════ */
.section-tagline {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--color-primary);
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1.3rem, 1.05vw, 0.88rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow:
    0 0 14px rgba(114, 38, 255, 0.5), 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero-split {
  position: relative;
  height: 100vh;
  background: var(--color-secondary);
  overflow: hidden;
}
.hero-top {
  display: none;
}
.hero-bottom {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: var(--color-secondary);
  /* filter: brightness(160%); */
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Grain SVG : effet écran/CRT subtil */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.hero-bottom-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 4rem;
}
.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  padding: 0.5rem 0.85rem;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 8px var(--color-primary);
}
.hero-text-wrap {
  max-width: 900px;
  bottom: 110px;
  position: absolute;
}
.hero-main-title {
  margin: 0px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.85;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
  bottom: -36px;
  position: relative;
}
.hero-tagline {
  margin: 0.75rem 0 -1px;
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  line-height: 1.2;
  color: #FFF;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: var(--glow-text-shadow);
}
.hero-main-subtitle {
  max-width: 60ch;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.hero-scroll-indicator {
  position: absolute;
  right: 1.5rem;
  bottom: 6.25rem;
  z-index: 4;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero-scroll-indicator span::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 0.85rem auto 0;
  background: rgba(255, 255, 255, 0.55);
  animation: heroLine 1.8s infinite ease-in-out;
}
@keyframes heroLine {
  0%, 100% {
    transform: scaleY(0.6);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}
/* ═══════════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════════ */
.intro-section {
  position: relative;
  background: var(--color-secondary);
  color: var(--color-light);
  background-image: url("img/back-textur.png");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.intro-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: overlay;
}
.intro-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}
.intro-copy p {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.65;
}
/* ═══════════════════════════════════════════════════════
   TOPICS
═══════════════════════════════════════════════════════ */
.topics-section {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background: var(--color-secondary);
  color: var(--color-white);
}
.topics-bg-layer, .topics-bg-overlay {
  position: absolute;
  inset: 0;
}
.topics-bg-layer {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--transition-smooth), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
  filter: saturate(1.1) contrast(1.05);
}
.topics-bg-layer.active {
  opacity: 1;
  transform: scale(1);
}
.topics-bg-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(33, 22, 50, 0.27) 0%, rgba(22, 0, 120, 0.15) 35%, rgba(33, 22, 50, 0.46) 75%, rgba(33, 22, 50, 0.91) 100%), radial-gradient(ellipse at 75% 30%, rgba(33, 22, 50, 0.16), transparent 45%), radial-gradient(ellipse at 15% 90%, rgba(135, 246, 245, 0.07), transparent 35%)
}
.topics-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.topics-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--section-padding) 0;
}
.topics-top-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(10rem, 4vw, 3.5rem);
  flex-wrap: wrap;
}
.topic-btn {
  position: relative;
  min-width: 180px;
  padding: 0.95rem 1.2rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease, color 250ms ease, box-shadow 250ms ease;
}
.topic-btn:hover, .topic-btn.active {
  transform: translateY(-2px);
  border-color: rgba(114, 38, 255, 0.95);
  background: rgba(114, 38, 255, 0.22);
  color: var(--color-white);
  box-shadow: var(--glow-primary-strong);
}
.topics-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  min-height: 62vh;
}
.topic-display-left {
  max-width: 720px;
}
.topic-index {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(114, 38, 255, 0.5);
}
.topic-title {
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: clamp(2rem, 3.5vw, 5rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow:
    0 0 28px rgba(114, 38, 255, 0.4), 0 4px 16px rgba(0, 0, 0, 0.5);
}
.topic-summary {
  max-width: 52ch;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}
.btn-read-article {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.5rem;
  border: 0;
  background: var(--color-primary);
  box-shadow: var(--glow-primary-strong);
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.btn-read-article:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 18px rgba(114, 38, 255, 0.75), 0 0 40px rgba(114, 38, 255, 0.45), 0 16px 34px rgba(114, 38, 255, 0.45);
}
.topic-stats-panel {
  position: relative;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}
.topic-stats-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-primary), transparent);
  box-shadow: 0 0 12px rgba(114, 38, 255, 0.55);
}
.topic-stats-label {
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Michroma', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.topic-stat {
  margin-bottom: 1.15rem;
}
.topic-stat:last-child {
  margin-bottom: 0;
}
.topic-stat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.45rem;
  color: var(--color-white);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topic-stat-head span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-family: 'Michroma', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}
.topic-stat-bar {
  position: relative;
  height: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}
/* Bar : violet → blanc, avec une infime trace de cyan pour le contraste froid */
.topic-stat-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(114, 38, 255, 0.9) 0%, rgba(135, 246, 245, 0.7) 90%, rgba(255, 255, 255, 0.95) 100%);
  box-shadow: 0 0 18px rgba(114, 38, 255, 0.5);
  transition: width 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
/* ═══════════════════════════════════════════════════════
   STICKY SWITCHER
═══════════════════════════════════════════════════════ */
.sticky-topic-switcher {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(33, 22, 50, 0.92);
  border-bottom: 1px solid rgba(114, 38, 255, 0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(114, 38, 255, 0.18);

  /* Caché par défaut, révélé quand on a dépassé la topics-section */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 350ms ease;
}

.sticky-topic-switcher.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-topic-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 1rem 0rem 0rem 0rem;
  justify-content: flex-end;
}
.sticky-topic-btn {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 0.95;
  text-transform: uppercase;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}
.sticky-topic-btn.active, .sticky-topic-btn:hover {
  transform: translateY(-1px);
  border-color: var(--color-primary);
  background: rgba(114, 38, 255, 0.18);
  box-shadow: 0 0 16px rgba(114, 38, 255, 0.4);
}
/* ==========================================================
   6. VIDEO PLAYER
   ========================================================== */
.ll-video {
  max-width: 1100px;
  margin: 80px auto;
  background: var(--color-deep);
  border: 1px solid rgba(114, 38, 255, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.ll-video__frame {
  position: relative;
  background: var(--color-deep);
  aspect-ratio: 16 / 9;
}
.ll-video__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ll-video__center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: rgba(114, 38, 255, 0.92);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow: var(--glow-primary-strong);
  transition: transform 250ms ease, background 250ms ease, opacity 350ms ease;
  z-index: 3;
}
.ll-video__center-play:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--color-accent);
}
.ll-video.is-playing .ll-video__center-play {
  opacity: 0;
  pointer-events: none;
}
.ll-video.is-ended .ll-video__center-play {
  opacity: 1;
  pointer-events: auto;
}
.ll-video__controls {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 14px;
  background: var(--color-secondary);
  border-top: 1px solid rgba(114, 38, 255, 0.2);
}
.ll-video__btn {
  border: 0;
  background: transparent;
  color: var(--color-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 250ms ease, color 250ms ease;
}
.ll-video__btn:hover {
  background: rgba(114, 38, 255, 0.2);
  color: var(--color-white);
}
.ll-video__time {
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  min-width: 48px;
  text-align: center;
  letter-spacing: 0.05em;
}
.ll-video__progress {
  position: relative;
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  cursor: pointer;
}
.ll-video__progress-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  box-shadow: 0 0 10px rgba(114, 38, 255, 0.6);
  transition: width 0.05s linear;
}
@media (max-width: 767px) {
  .ll-video {
    margin: 50px 16px;
  }
  .ll-video__center-play {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
/* ==========================================================
   4. CARROUSEL SCROLL-JACKÉ FULL-SCREEN
   ========================================================== */
.ll-scroll-carousel {
  position: relative;
  background: var(--c-noir-deep);
  /* La hauteur totale est définie en JS = nb_slides * 100vh */
}
.ll-scroll-carousel__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--c-noir-deep);
}
.ll-scroll-carousel__track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
}
.ll-scroll-carousel__slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  position: relative;
  margin: 0;
  background: var(--c-noir-deep);
  display: flex;
  flex-direction: column;
}
.ll-scroll-carousel__slide-img {
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ll-scroll-carousel__slide figcaption {
  flex: 0 0 auto;
  background: #000;
  color: rgba(245, 240, 232, 0.85);
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.5;
  padding: 16px 30px 18px;
  letter-spacing: 0.01em;
}
/* Compteur slides */
.ll-scroll-carousel__counter {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 123, 63, 0.3);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-cuivre-clair);
  pointer-events: none;
}
/* Hint scroll horizontal au début du carrousel */
.ll-scroll-carousel__hint {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.85);
  opacity: 1;
  transition: opacity 5.0s ease;
  pointer-events: none;
}
.ll-scroll-carousel.has-progressed .ll-scroll-carousel__hint {
  opacity: 0;
}
.ll-scroll-carousel__hint .arrow {
  display: inline-block;
  animation: hintBounce 1.6s ease-in-out infinite;
}
@keyframes hintBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}
/* Progress bar du carrousel */
.ll-scroll-carousel__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(201, 123, 63, 0.15);
  z-index: 4;
}
.ll-scroll-carousel__progress-bar {
  width: 0%;
  height: 100%;
  background: var(--c-cuivre);
  box-shadow: 0 0 8px var(--c-cuivre-glow);
  transition: width 0.05s linear;
}
/* ----------------------------------------------------------
   MOBILE : on bascule en stack vertical "card".
   Chaque slide devient sticky → quand on scrolle, la suivante
   vient se poser par-dessus la précédente (effet card stack).
   Le track devient une simple colonne, plus de scroll-jack.
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  /* La hauteur de section est libérée par le JS, on s'assure ici
     que rien ne la force (sécurité si JS désactivé/lent). */
  .ll-scroll-carousel {
    height: auto !important;
  }
  /* Le pin n'est plus sticky : c'est chaque slide qui le sera */
  .ll-scroll-carousel__pin {
    position: relative;
    height: auto;
    overflow: visible;
  }
  /* Track en colonne, plus de transform horizontal */
  .ll-scroll-carousel__track {
    flex-direction: column;
    width: 100%;
    height: auto;
    transform: none !important;
  }
  /* ★ Le coeur de l'effet : chaque slide est sticky en haut.
     Quand la suivante arrive, elle "couvre" la précédente. */
  .ll-scroll-carousel__slide {
    position: sticky;
    top: 0;
    flex: 0 0 auto;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    will-change: transform;
  }
  /* Compteur + progress passent en fixed (puisque les slides sont
     sticky individuellement, plus de pin parent qui les "porte").
     Ils n'apparaissent que quand la section est dans le viewport,
     classe .is-in-view ajoutée par le JS. */
  .ll-scroll-carousel__counter, .ll-scroll-carousel__progress {
    position: fixed;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 50;
  }
  .ll-scroll-carousel.is-in-view .ll-scroll-carousel__counter, .ll-scroll-carousel.is-in-view .ll-scroll-carousel__progress {
    opacity: 1;
  }
  .ll-scroll-carousel__counter {
    top: 16px;
    right: 16px;
    font-size: 11px;
    padding: 6px 10px;
  }
  .ll-scroll-carousel__progress {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  /* Le hint "faites défiler →" n'a plus de sens en stack vertical
     (le geste de scroll est instinctif sur mobile) → masqué. */
  .ll-scroll-carousel__hint {
    display: none;
  }
  .ll-scroll-carousel__slide figcaption {
    padding: 12px 18px 14px;
    font-size: 12px;
  }
}
/* ═══════════════════════════════════════════════════════
   ARTICLES
═══════════════════════════════════════════════════════ */
.article-section {
  position: relative;
  display: none;
  background: var(--color-secondary);
  color: var(--color-white);
  background-image: url("img/back-textur.png");
  background-position: center; /* Center the image */
}
.article-section.active {
  display: block;
  animation: fadeInUp 500ms ease;
}
.article-section[data-article="1"].active {
  padding: 0;
}
.article-section[data-article="0"].active, .article-section[data-article="2"].active {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(5rem, 8vw, 7rem);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.article-cover {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}
.article-cover img {
  display: block;
  width: 100%;
  height: clamp(320px, 48vw, 620px);
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}
.article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.article-meta {
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: 'Michroma', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(114, 38, 255, 0.5);
}
.article-title {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.88;
  text-shadow: var(--glow-primary-soft);
}
.article-standfirst {
  max-width: 50ch;
  margin-bottom: 2rem;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.65;
}
.article-body {
  max-width: 760px;
}
.article-body p {
  margin-bottom: 1.4rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.85;
}
.article-body h3 {
  margin: 3rem 0 1rem;
  color: var(--color-primary);
  font-size: var(--title-size-md);
  line-height: 0.95;
  text-shadow: 0 0 22px rgba(114, 38, 255, 0.45);
}
.article-body em {
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
}
.article-footnote {
  margin-top: 3rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
}
/* ═══════════════════════════════════════════════════════
   STORYTELLING MAPBOX
═══════════════════════════════════════════════════════ */
.story-wrapper {
  position: relative;
  width: 100%;
}
.story-map-sticky {
  position: sticky !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background: var(--color-deep);
}
.story-panels {
  position: relative;
  z-index: 2;
  margin-top: -100vh;
  pointer-events: none;
}
.story-step {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
  opacity: 0;
  transition: opacity 350ms ease;
  pointer-events: none;
}
.story-step.active {
  opacity: 1;
}
.story-step:last-child {
  min-height: 60vh;
  align-items: flex-end;
  padding-bottom: 4rem;
}
.story-step[data-alignment="left"] {
  justify-content: flex-start;
  padding-left: 5vw;
}
.story-step[data-alignment="right"] {
  justify-content: flex-end;
  padding-right: 5vw;
}
.story-step[data-alignment="center"] {
  justify-content: center;
}


.article-title2 {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--color-white);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.88;
  text-shadow: var(--glow-primary-soft);
}

.story-step-inner {
  width: min(34vw, 440px);
  padding: 1.5rem 2rem;
  pointer-events: all;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.55), 0 0 24px rgba(114, 38, 255, 0.2);
  backdrop-filter: blur(4px);
}
.story-step-inner.dark {
  background: rgba(36, 33, 50, 0.93);
  color: var(--color-light);
  border-left: 3px solid #ababab;
}
.story-step-inner.light {
  background: rgba(250, 248, 252, 0.95);
  color: #222;
  border-left: 3px solid var(--color-primary);
}
.story-step-inner h3 {
  margin: 0 0 0.75rem;
  color: var(--color-primary);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
  text-shadow: 0 0 18px rgba(114, 38, 255, 0.5);
}
.story-step-inner p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(240, 237, 245, 0.88);
}
.story-step-inner.light p {
  color: #444;
}
.story-step-inner img {
  width: 100%;
  display: block;
  margin-bottom: 0.75rem;
  object-fit: cover;
  max-height: 230px;
  filter: saturate(1.05) contrast(1.05);
}
.story-map-sticky .mapboxgl-ctrl-bottom-right {
  z-index: 3;
}

/* ═══════════════════════════════════════════════════════
   HINT INFO SUR LA CARTE STORY
═══════════════════════════════════════════════════════ */
.story-map-hint {
  position: fixed;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1050;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(114, 38, 255, 0.45);
  border-radius: 999px;
  background: rgba(33, 22, 50, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(114, 38, 255, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease, transform 350ms ease, box-shadow 350ms ease;
}
.story-map-hint.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.story-map-hint.is-dismissed {
  opacity: 0 !important;
  pointer-events: none !important;
}
.story-map-hint:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 24px rgba(114, 38, 255, 0.6);
  transform: translateX(-50%) translateY(-2px);
}
.story-map-hint i {
  font-size: 16px;
  color: var(--color-primary);
  animation: hintPulse 1.8s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.18); opacity: 0.7; }
}
@media (max-width: 767.98px) {
  .story-map-hint {
    bottom: 90px;
    font-size: 10px;
    padding: 8px 14px;
    max-width: 90vw;
    text-align: center;
  }
  .story-map-hint span {
    line-height: 1.3;
  }
}








/* ═══════════════════════════════════════════════════════
   AUDIO TOGGLE
═══════════════════════════════════════════════════════ */
.audio-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(22, 0, 120, 0.92);
  box-shadow: var(--shadow-soft);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 350ms ease, background 350ms ease, color 350ms ease, box-shadow 350ms ease;
}
.audio-toggle.playing {
  border-color: rgba(114, 38, 255, 0.6);
  background: rgba(114, 38, 255, 0.12);
  color: var(--color-white);
  box-shadow:
    0 0 18px rgba(114, 38, 255, 0.4), var(--shadow-soft);
}
.audio-toggle:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.audio-toggle.playing:hover {
  border-color: rgba(114, 38, 255, 0.85);
}
.audio-wave-canvas {
  display: block;
  width: 32px;
  height: 20px;
  flex-shrink: 0;
}
.article-anchor {
  position: relative;
  top: -90px;
  visibility: hidden;
}
/* ═══════════════════════════════════════════════════════
   FOOTER ÉQUIPE
═══════════════════════════════════════════════════════ */
.team-footer {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
  /* Dégradé du bleu nuit secondaire vers le quasi-noir profond */
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-deep) 100%);
  color: var(--color-white);
  border-top: 1px solid rgba(114, 38, 255, 0.22);
  overflow: hidden;
}
.team-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 2px;
  /* Ligne lumineuse violet avec un soupçon de cyan au centre */
  background: linear-gradient(90deg, transparent 0%, rgba(114, 38, 255, 0.8) 35%, rgba(135, 246, 245, 0.5) 50%, rgba(114, 38, 255, 0.8) 65%, transparent 100%);
  opacity: 0.7;
  box-shadow: 0 0 20px rgba(114, 38, 255, 0.45);
}
.team-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}
.team-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3rem);
}
.team-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
  font-family: 'Michroma', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(114, 38, 255, 0.5);
}
.team-title {
  margin: 0 0 1rem;
  color: var(--color-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: var(--glow-primary-soft);
}
.team-divider {
  width: 3rem;
  height: 2px;
  margin: 0 auto;
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(114, 38, 255, 0.65);
}
.team-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.team-card {
  display: flex;
  flex-direction: column;
}
.team-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 1rem;
}
.team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(30%);
  transition: filter 400ms ease, transform 400ms ease;
}
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 0, 120, 0.72) 100%);
  transition: opacity 400ms ease;
}
.team-card:hover .team-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.team-card-body {
  padding: 0 0.25rem;
}
.team-text-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.team-text-card {
  text-align: center;
}
.team-role {
  margin-bottom: 0.4rem;
  color: var(--color-primary);
  font-family: 'Michroma', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(114, 38, 255, 0.4);
}
.team-name {
  margin: 0;
  color: var(--color-white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.team-logo {
  height: 60px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}
.team-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
@media (max-width: 767.98px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .team-text-row {
    gap: 2rem;
  }
  .team-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 479.98px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-text-row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}
/* ═══════════════════════════════════════════════════════
   RESPONSIVE GLOBAL
═══════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-bottom-content {
    padding-bottom: 3rem;
  }
  .hero-tagline {
    font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  }
  .topics-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .switcher-logo {
    height: 30px;
    width: auto;
    opacity: 0.8;
    filter: brightness(0) invert(1);
    margin-top: -98px;
  }
  .hero-main-subtitle {
    max-width: 60ch;
    margin: 2.75rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(0.8rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  }
  .topic-stats-panel {
    max-width: 520px;
  }
  .story-step-inner {
    width: min(50vw, 400px);
  }
}
@media (max-width: 767.98px) {
  .hero-tagline {
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    letter-spacing: 0.14em;
  }
  .hero-main-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .hero-meta {
    font-size: 0.65rem;
    padding: 0.4rem 0.7rem;
  }
  .hero-scroll-indicator {
    right: 0.85rem;
    bottom: 13rem;
    font-size: 0.62rem;
  }
  .ghost-title {
    text-align: left;
    white-space: normal;
  }
  .sticky-topic-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  .sticky-topic-inner::-webkit-scrollbar {
    display: none;
  }
  .sticky-topic-btn {
    flex: 0 0 auto;
  }
  .topics-top-nav {
    gap: 0.7rem;
  }
  .topic-btn {
    min-width: auto;
    width: 100%;
    max-width: 320px;
  }
  .topic-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }
  .topics-showcase {
    min-height: 0;
  }
  .topic-summary {
    max-width: 100%;
  }
  .topic-stats-panel {
    padding: 1.2rem 1rem;
    display: none;
  }
  .section-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }
  .story-step {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
    justify-content: center !important;
    align-items: flex-end;
    padding-bottom: 3rem;
  }
  .story-step-inner {
    width: 100%;
    padding: 1.2rem 1.2rem;
  }
  .audio-toggle {
    bottom: 0.75rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
  }
}
/* ═══════════════════════════════════════════════════════
   STORYTELLING MAPBOX — extensions (markers + iframes + highlight)
   Ajouts pour gérer :
   - Markers personnalisés ville + statistiques
   - Layer highlight zones de police
   - Iframes Flourish / YouTube responsives dans les panels
═══════════════════════════════════════════════════════ */
/* Adapter la hauteur des steps : avec les iframes, certains panels
   peuvent dépasser 100vh — on autorise jusqu'à auto pour qu'ils prennent
   leur place naturellement, et on garde 100vh comme minimum. */
.story-step {
  min-height: 100vh;
  height: auto;
  padding: 4rem 0;
}
/* Conteneur pour iframe — responsive et bien intégré au panel */
.story-iframe-wrap {
  position: relative;
  width: 100%;
  margin: 0.75rem 0;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(114, 38, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.story-iframe-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.3);
}
/* Panels qui contiennent une iframe sont plus larges pour la lisibilité */
.story-step-inner {
  max-width: 480px;
}
/* ─── MARKERS PERSONNALISÉS ───────────────────────────────
   IMPORTANT : .custom-marker fait la TAILLE EXACTE du dot (14×14).
   Le label est en position: absolute, donc il ne déplace pas le centre
   du wrapper → le dot reste pile sur le lngLat, même quand la carte
   bouge / tourne / change de pitch.
═══════════════════════════════════════════════════════════ */
.custom-marker {
  position: relative;
  width: 14px;
  height: 14px;
  cursor: default;
  pointer-events: none;
}
.marker-dot {
  position: absolute;
  inset: 0;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--color-primary);
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 4px rgba(114, 38, 255, 0.25), 0 0 14px rgba(114, 38, 255, 0.7);
  box-sizing: border-box;
  animation: markerPulse 2s ease-in-out infinite;
}
@keyframes markerPulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(114, 38, 255, 0.25), 0 0 14px rgba(114, 38, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(114, 38, 255, 0.10), 0 0 22px rgba(114, 38, 255, 0.9);
  }
}
/* Label en absolu : il flotte à droite du dot, sans influencer la boîte
   du marker (donc pas de décalage de centrage). */
.marker-label {
  position: absolute;
  top: 50%;
  left: calc(100% + 10px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  background: rgba(22, 0, 120, 0.92);
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  white-space: nowrap;
  pointer-events: none;
}
.marker-city {
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}
.marker-stats {
  font-size: 12px;
  font-weight: bold;
  color: #d3c6ec;
  margin-top: 2px;
}
/* ─── retouche hero ──────────────────────── */
@media (max-width: 767.98px) {
  .hero-text-wrap {
    max-width: 900px;
    bottom: 180px;
    position: absolute;
  }
}
/* ─── RESPONSIVE iframes & markers ──────────────────────── */
@media (max-width: 767.98px) {
  .story-step-inner {
    max-width: 100%;
  }
  .story-iframe-wrap iframe {
    /* Les iframes Flourish/YouTube prennent moins de place sur mobile */
    min-height: 280px;
  }
  .marker-label {
    padding: 4px 7px;
    left: calc(100% + 8px);
  }
  .marker-city {
    font-size: 9px;
  }
  .marker-stats {
    font-size: 10px;
  }
}
/* ═══════════════════════════════════════════════════════
   POPUP HOVER SUR LES ZONES DE POLICE
   Affichée quand la souris survole une zone surlignée.
═══════════════════════════════════════════════════════ */
.rodeo-popup .mapboxgl-popup-content {
  background: rgba(22, 0, 120, 0.95);
  color: #ffffff;
  border-radius: 4px;
  padding: 10px 14px;
  font-size: 13px;
  border-left: 3px solid var(--color-primary);
  max-width: 280px;
  white-space: normal;
  word-wrap: break-word;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}
.rodeo-popup .mapboxgl-popup-content strong {
  display: block;
  margin-bottom: 4px;
  font-family: 'Michroma', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
}
.rodeo-popup .mapboxgl-popup-content b {
  color: #fff;
  font-size: 14px;
}
.rodeo-popup .mapboxgl-popup-tip {
  border-top-color: rgba(22, 0, 120, 0.95);
}
/* Cacher le popup standard de Mapbox */
.rodeo-popup .mapboxgl-popup-close-button {
  display: none;
}
/* Surlignage des zones au hover dans la carte */
.story-map-sticky .mapboxgl-canvas {
  cursor: default;
}
/* Wrapper Flourish — laisse au script Flourish gérer la hauteur */
.flourish-wrap {
  border: 1px solid rgba(114, 38, 255, 0.25);
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  background: rgba(0, 0, 0, 0.15);
}
.flourish-embed {
  min-height: 400px;
}