/* GLOBAL */
/* Logo MGEN fixe en haut à gauche */
.top-left-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1000;
  display: inline-block;
}
.top-left-logo img {
  height: 40px;
  width: auto;
  display: block;
}

/* Espace sous le header pour éviter que le contenu passe sous le logo */
@media (min-width: 701px) {
  body {
    padding-top: 20px;
  } /* ~40px logo + ~32px d’air */
}
@media (max-width: 700px) {
  .top-left-logo {
    top: 10px;
    left: 10px;
  }
  .top-left-logo img {
    height: 32px;
  }
  body {
    padding-top: 20px;
  } /* version mobile : logo + air */
}

@font-face {
  font-family: "Extenda";
  src: url(./Extenda-40-Hecto-trial.woff) format("woff");
}

@font-face {
  font-family: "SF Pro";
  src: url(./FontsFree-Net-SFProText-Regular.woff) format("woff");
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 50px 100px;
  background: #f5f5f5;
  color: #111;
  font-family: "SF Pro";

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1,
h2 {
  margin: 0;
}

/* WIDGET MGEN */

.widgetMGEN {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.widgetMGEN span {
  background: #ffcdeb; /* fond rose */
}

/* Couleur du texte du titre (les 2 lignes) */
.widgetMGEN > div:first-child .titreMGEN,
.widgetMGEN > div:first-child .titreMGEN2 {
  color: #286937; /* texte vert */
}
.conteneur-TitreMGEN {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.titreMGEN {
  width: 100%;
  font-family: "Extenda";
  font-size: 74px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 700px) {
  .titreMGEN {
    font-family: "Extenda";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: auto;
    text-transform: uppercase;
  }
}

.titreMGEN2 {
  font-family: "Extenda";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  color: #286937; /* texte vert */
  background: transparent; /* plus d’étiquette rose */
  padding: 0;
  border-radius: 0;
  transform: none;
  top: auto;
}

@media (max-width: 400px) {
  .titreMGEN2 {
    font-size: 40px;
    line-height: 1;
    color: #286937;
    background: transparent;
    padding: 0;
    border-radius: 0;
    transform: none;
    top: auto;
  }
}

.paragraphe {
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px !important;
  font-style: normal;
  font-weight: 590;
  line-height: 15px;
}

/* WIDGET PODCAST */

.module-podcast {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(268deg, rgba(255, 226, 239, 0) 0%, #ffe2ef 100%),
    #ffe2ef;
}

.pod-cover {
  width: 101px;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.pod-content {
  display: flex;
  flex-direction: column;
}

.pod-title {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
}

.pod-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.pod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #2b2b2b;
  text-decoration: none;
  color: #0f0f0f;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline-offset: 2px;
}
.pod-btn:hover {
  transform: translateY(-1px);
  background-color: #fff4f9;
  border: 1px solid #e0e0e0;
}

/* WIDGET PODCAST --------------- Responsive */
@media (max-width: 700px) {
  .module-podcast {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .pod-cover {
    width: 100px;
    height: 100px;
    border-radius: 10px;
  }
  .pod-title {
    font-size: 16px;
  }
  .pod-meta {
    font-size: 12px;
    line-height: 18px;
  }
  .pod-btn {
    padding: 8px 12px;
    border-radius: 8px;
  }
}

/* ===== Facts en pile ===== */
.facts-stack {
  position: relative;
  min-height: 120px; /* hauteur min. du module */
  padding: 16px 8px; /* air autour de la pile */
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  outline: none;
}

/* Chaque carte */
.facts-stack .fact-card {
  position: absolute;
  inset: 0; /* occupe tout le module */
  max-width: 340px; /* largeur max, responsive ensuite */
  height: 120px; /* hauteur des cartes */
  background: var(--bg, #d9f3d9);
  border-radius: 15px;
  outline: 1px solid var(--border, rgba(57, 103, 57, 0.2));
  outline-offset: -1px;
  box-shadow: 5px 4px 15px rgba(36, 36, 36, 0.05);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content 1fr;
  align-items: center;
  gap: 15px;
  padding: 20px 26px;
  transform: rotate(var(--rotate, -1deg)) translate(var(--tx, 0), var(--ty, 0))
    scale(var(--scale, 1));
  transform-origin: left top;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), opacity 0.25s ease,
    z-index 0s linear 0.35s;
  opacity: var(--opacity, 1);
}

.facts-stack .fact-num {
  color: #396739;
  font: 400 clamp(32px, 6vw, 60px) / 1 Impact, "Extenda Trial", system-ui,
    sans-serif;
  letter-spacing: 0.5px;
}
.facts-stack .fact-num-2 {
  color: #396739;
  font: 400 clamp(32px, 6vw, 50px) / 1 Impact, "Extenda Trial", system-ui,
    sans-serif;
  letter-spacing: 0.5px;
}
.facts-stack .fact-text {
  margin: 0;
  color: #396739;
  font: 400 14px/16px "SF Pro Text", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Arial, sans-serif;
}

/* Positions (0 = devant) : décalage, z-index, opacité */
.facts-stack .fact-card[data-pos="0"] {
  --tx: 0px;
  --ty: 0px;
  --scale: 1;
  --opacity: 1;
  z-index: 3;
}
.facts-stack .fact-card[data-pos="1"] {
  --tx: 18px;
  --ty: 12px;
  --scale: 0.98;
  --opacity: 0.96;
  z-index: 2;
}
.facts-stack .fact-card[data-pos="2"] {
  --tx: 36px;
  --ty: 24px;
  --scale: 0.96;
  --opacity: 0.92;
  z-index: 1;
}
/* Si tu ajoutes une 4e/5e carte, elles recevront d'autres data-pos via JS.
   Tu peux copier ce pattern et augmenter le décalage si besoin. */

/* Hover léger sur la carte du dessus */
.facts-stack:hover .fact-card[data-pos="0"] {
  --tx: -2px;
  --ty: -2px;
  --scale: 1.005;
}

/* Responsive */
@media (max-width: 520px) {
  .facts-stack {
    min-height: 110px;
  }
  .facts-stack .fact-card {
    height: 110px;
    padding: 16px 18px;
    gap: 12px;
  }
  .facts-stack .fact-num {
    font-size: clamp(28px, 8vw, 44px);
  }
  .facts-stack .fact-text {
    font-size: 13px;
    line-height: 16px;
  }
}
/* --- Pied de page hors conteneur, non fixe --- */
.footer-note {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-align: right;
  max-width: 520px; /* pour éviter une ligne trop longue */
  line-height: 1.4;
}
@media (max-width: 700px) {
  .footer-note {
    text-align: left; /* plus lisible sur mobile */
    margin-top: 8px;
  }
}
.page-footer-badges {
  width: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  grid-column: 1 / span 4;
  grid-row: 4;
}

.badge-left {
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  text-align: left;
}

.badge-right {
  width: auto;
  height: 80px;
}

/* WIDGET MANIFESTO */

.widgetManifesto {
  width: 100%; /* Changer en pourcentage pour le responsive */
  flex-shrink: 0;
  border-radius: 15px;
  background: #fff;
  box-shadow: 5px 4px 15px 0 rgba(36, 36, 36, 0.05);
}

.conteneur-TitreManifesto {
  border-radius: 15px 15px 0 0;
  background: #396739;
  padding: 30px;
}

.conteneur-ParagrapheManifesto {
  border-radius: 15px 15px 0 0;
  padding: 30px 60px 60px 60px;
}

.titreManifesto {
  color: #ffe3ef;
  font-family: "Extenda";
  font-size: 74px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}
/* =================== Base =================== */

.item,
.item2 {
  background: #f5f5f5;
}
.item-int {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ============ Cellules image (clipping) ============ */
.item2 {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.75);
  padding: 0;
}
.item2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--bg, none);
  background-size: var(--bg-w, 100%) auto;
  background-position: var(--bg-pos-x, 0px) var(--bg-pos-y, 0px);
  background-repeat: no-repeat;
}
.item2 > * {
  position: relative;
  z-index: 1;
}

/* =================== GRID (tes règles conservées) =================== */
.pod-head {
  display: none;
}
.pod-head-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pod-head .module-podcast {
  width: 100%;
}

/* ===== DESKTOP LARGE (>=1700px) : 4 colonnes ===== */
@media (min-width: 1700px) {
  .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(250px, auto);
  }
  .item2 {
    position: relative;
    z-index: 0;
  }
  .item {
    position: relative;
    z-index: 1;
  }

  .bloc-haut-gauche {
    grid-column: 1;
    grid-row: 1;
    z-index: 2;
    padding: 0 15px 15px 0;
  }
  .bloc-stat {
    grid-column: 1 / span 2;
    grid-row: 2;
    z-index: 2;
    padding: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px;
  }

  .bloc-image-gauche {
    grid-column: 1;
    grid-row: 2 / 3;
    z-index: 0;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
  }
  .bloc-image-centre {
    grid-column: 2;
    grid-row: 1/3;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
  }
  .bloc-image-right {
    grid-column: 3;
    grid-row: 1 / 3;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
  }

  .col3-pile {
    grid-column: 4;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 3;
    padding: 0 0 0 15px;
  }
  .col3-pile > .item {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch;
  }

  .podcastDesktop {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .bloc-central {
    grid-column: 3;
    grid-row: 2 / span 2;
    align-self: start;
    padding: 15px 0 0 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .col3-conf-mobile {
    display: none;
  }
  .bloc-manifesto-mobile {
    display: none;
  }

  .bloc-bas-podcast {
    grid-column: 1;
    grid-row: 3 / span 2;
    align-self: start;
    padding: 15px 15px 0 0;
    gap: 15px;
    display: flex;
    flex-direction: column;
  }
  .bloc-symptomes {
    grid-column: 2;
    grid-row: 3;
    padding: 15px 0 0 0;
  }
}

/* ===== DESKTOP (1200–1699px) : 3 colonnes ===== */
@media (min-width: 1200px) and (max-width: 1699px) {
  body {
    margin: 40px 40px;
  }
  .grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(50px, auto);
  }

  .pod-head {
    display: block;
    grid-column: 3;
    grid-row: 3;
    align-self: start;
  }

  .col3-pile {
    grid-column: 3;
    grid-row: 2 / span 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 3;
    padding: 15px 0 0 15px;
  }
  .col3-pile > .item {
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch;
  }

  .bloc-stat {
    grid-column: 1 / span 2;
    grid-row: 3;
    z-index: 2;
    padding: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px;
  }

  .bloc-image-gauche {
    grid-column: 1;
    grid-row: 2 / span 2;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .bloc-image-centre {
    grid-column: 2;
    grid-row: 1 / span 3;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
  .bloc-image-right {
    grid-column: 3;
    grid-row: 1;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 0;
  }

  .bloc-haut-gauche {
    grid-column: 1;
    grid-row: 1;
    padding: 0 15px 15px 0;
  }
  .bloc-central {
    grid-column: 2;
    grid-row: 4 / span 2;
    padding: 15px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .col3-conf-mobile {
    display: none;
  }
  .bloc-manifesto-mobile {
    display: none;
  }

  .bloc-bas-podcast {
    grid-column: 1;
    grid-row: 4;
    align-self: start;
    padding: 15px 15px 0 0;
    gap: 15px;
    display: flex;
    flex-direction: column;
  }
  .bloc-symptomes {
    grid-column: 1;
    grid-row: 5;
    padding: 0 15px 0 0;
  }

  .page-footer-badges {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    grid-column: 1 / span 4;
    grid-row: 6;
    padding: 50px 0 0 0;
  }
  .item2 {
    z-index: 0;
  }
  .item {
    z-index: 1;
    position: relative;
  }
  .pod-under-manif {
    grid-column: 2;
    grid-row: 5;
  }

  .stack-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 6px;
  }
  .stack-head .chip {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ffe2ef;
    font: 590 12px/1 "SF Pro";
    color: #0f0f0f;
  }
  .stack-title {
    margin: 4px 0 0;
    color: #396739;
    font-family: "Extenda", Impact, system-ui;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 0.95;
    font-size: clamp(20px, 2vw, 28px);
  }
  .stack-sub {
    margin: 0;
    color: #00000080;
    font: 400 13px/1.4 "SF Pro";
  }
}

/* === TABLETTE : 2 colonnes === */
@media (min-width: 700px) and (max-width: 1199px) {
  body {
    margin: 40px 40px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bloc-stat {
    grid-column: 1 / span 2;
    grid-row: 2;
    z-index: 2;
    padding: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 45px;
  }
  .bloc-haut-gauche {
    grid-column: 1;
    grid-row: 1;
  }
  .bloc-image-gauche {
    grid-column: 1 / span 2;
    grid-row: 2;
    min-height: 350px;
    border-radius: 15px;
  }
  .bloc-image-gauche::before {
    background-size: cover !important;
    background-position: center !important;
  }
  .bloc-image-centre,
  .bloc-image-right {
    display: none !important;
  }

  .bloc-bas-podcast {
    display: flex;
    flex-direction: column;
    gap: 15px;
    grid-column: 1;
    grid-row: 3;
  }
  .page-footer-badges {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    grid-column: 1 / span 2;
    grid-row: 6;
    padding: 50px 0 0 0;
  }
  .col3-conf-mobile {
    grid-column: 1 / span 2;
    grid-row: 5;
  }
  .bloc-manifesto-mobile {
    grid-column: 1;
    grid-row: 4;
  }
  .col3-pile .bloc-haut-droit {
    display: none;
  }
  .bloc-central .widgetManifesto {
    display: none;
  }

  .bloc-central {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .bloc-symptomes {
    grid-column: 2;
    grid-row: 3;
  }

  .col3-pile {
    grid-column: 2;
    grid-row: 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* === MOBILE (<=699px) : 1 colonne === */
@media (max-width: 700px) {
  body {
    margin: 20px 20px;
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
  .bloc-haut-gauche {
    order: 1;
    grid-row: 1;
  }

  .bloc-stat {
    grid-column: 1 / span 2;
    grid-row: 3;
    z-index: 2;
    padding: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 0px;
  }

  .bloc-image-gauche {
    grid-row: 2;
    min-height: 260px;
    border-radius: 15px;
  }
  .bloc-image-gauche::before {
    background-size: cover !important;
    background-position: center !important;
  }
  .bloc-image-centre,
  .bloc-image-right {
    display: none !important;
  }
  .bloc-bas-podcast {
    grid-row: 6;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .bloc-central {
    grid-row: 8;
  }
  .bloc-symptomes {
    grid-row: 7;
  }
  .page-footer-badges {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    grid-column: 1;
    padding: 50px 0 0 0;
    grid-row: 10;
  }
  .col3-conf-mobile {
    grid-row: 9;
  }
  .bloc-manifesto-mobile {
    grid-column: 1;
    grid-row: 5;
  }
  .col3-pile .bloc-haut-droit {
    display: none;
  }
  .bloc-central .widgetManifesto {
    display: none;
  }
  .pod-under-manif {
    order: 6;
  }
  .col3-pile {
    grid-row: 4;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

/* ===================================================================
   WIDGETS
   =================================================================== */

/* ========== Conférences (1 vidéo + flèches) ========== */
.confs-mgen.confs-one {
  --mgen-green: #396739;
  --mgen-green-20: #3967392a;
  --mgen-rose: #ffe2ef;
  --ink: #0f0f0f;
  background: #fff;
  border-radius: 16px;
  outline: 1px solid rgba(15, 15, 15, 0.08);

  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.confs-mgen .confs-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 0;
}
.confs-mgen .chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--mgen-rose);
  font: 590 12px/1 "SF Pro";
  color: var(--ink);
}
.confs-mgen .confs-title {
  margin: 4px 0 0;
  color: var(--mgen-green);
  font-family: Extenda;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  font-size: clamp(26px, 2.2vw, 34px);
}
.confs-mgen .confs-sub {
  margin: 0;
  color: #0008;
  font: 400 14px/1.4 "SF Pro";
}

.confs-player {
  position: relative;
  padding: 0 18px;
}
/* le cadre ne bouge jamais */
.confs-mgen .player-embed {
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  outline: 1px solid rgba(15, 15, 15, 0.06);
  background: #000; /* noir : masque les mini-variations et les lettres */
}

/* l'iframe occupe 100% sans scrollbars ni marges */
.confs-mgen .player-embed iframe {
  display: block; /* évite l'espace inline */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* micro-optim pour éviter tout repaint parasite */
.confs-mgen .player-embed {
  contain: paint;
}
.confs-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.player-badge {
  position: absolute;
  left: 12px;
  top: 12px;
}
.badge-pill {
  background: var(--mgen-green);
  color: #ebffeb;
  font: 700 12px/1 "SF Pro";
  padding: 8px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 12px var(--mgen-green-20);
}

.confs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  color: var(--mgen-green);
  font-size: 22px;
  line-height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.confs-arrow.prev {
  left: 10px;
}
.confs-arrow.next {
  right: 10px;
}
.confs-arrow:focus-visible {
  outline: 2px solid var(--mgen-green);
  outline-offset: 2px;
}

.confs-meta {
  padding: 6px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
}
.confs-current {
  font: 600 14px/1.3 "SF Pro";
  color: #0f0f0f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
}
.confs-dots {
  display: flex;
  gap: 6px;
}
.confs-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e3e3e3;
  opacity: 0.7;
  transition: transform 0.2s, background 0.2s;
}
.confs-dots i.on {
  background: #0f0f0f;
  opacity: 1;
  transform: scale(1.1);
}

/* Masquer de vieux rails s’ils existent */
.confs-rail-wrap,
.confs-scroll {
  display: none !important;
}

/* ========== Symptôme2 / Essentiel (carré infos) ========== */
.symp2-essentiel {
  --rose: #ffe2ef;
  --rose-20: #ffe2ef33;
  --ink: #0f0f0f;

  border-radius: 20px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}
.symp2-essentiel .chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rose);
  font: 590 12px/1 "SF Pro";
  color: var(--ink);
}
.symp2-essentiel .title {
  margin: 8px 0 0;
  font: 700 18px/1.25 "SF Pro";
  color: var(--ink);
}
.symp2-essentiel .lead {
  margin: 0;
  color: #000000b3;
  font: 400 14px/1.5 "SF Pro";
}

.symp2-essentiel .ess-window {
  all: unset;
  cursor: pointer;
  display: block;
}
.symp2-essentiel .paper {
  position: relative;
  border-radius: 20px;
  padding: 14px;
  outline: 1px solid var(#ebffeb);
  background: #286937;

  transform: rotate(-1.5deg);
  transition: transform 0.15s ease;
}
.symp2-essentiel .ess-window:hover .paper,
.symp2-essentiel .ess-window:focus-visible .paper {
  transform: rotate(-1.5deg) translateY(-2px);
}

.symp2-essentiel .win-title {
  font: 250 49px/1 "Extenda";
  text-transform: uppercase;
  color: #ffe3ef;
  margin-bottom: 10px;
}
.symp2-essentiel .viewport {
  position: relative;
  height: 180px;
  border-radius: 12px;
  background: #fff;
  outline: 1px solid var(#ebffeb);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.symp2-essentiel .msg {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: grid;
  place-items: center;
  text-align: center;
  font: 400 15px/1.45 "SF Pro";
  color: #0f0f0f;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.symp2-essentiel .msg.is-active {
  opacity: 1;
  transform: translateY(0);
}

.symp2-essentiel .hint {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font: 400 12px/1 "SF Pro";
  color: #000000b3;
  background: #fff;
  border: 1px dashed var(#ebffeb);
  border-radius: 999px;
  padding: 6px 8px;
  animation: pulse 2.6s ease-in-out infinite;
}
/* Dots dans l’angle bas-droite du carré rose (même placement que l’autre version) */
.symp2-essentiel .dots {
  position: absolute;
  right: 20px;
  bottom: 25px;
  display: flex;
  gap: 8px;
}

/* Style des pastilles identique à l’autre version */
.symp2-essentiel .dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffffb3; /* pastille blanche translucide */
  box-shadow: inset 0 0 0 1px #e7e7e7; /* fin liseré gris, comme l’autre */
  opacity: 0.7;
  transition: transform 0.2s, opacity 0.2s, background 0.2s, box-shadow 0.2s;
}
.symp2-essentiel .dots i.on {
  background: #1b1b1b;
  box-shadow: none;
  opacity: 1;
  transform: scale(1.1);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

/* Petits ajustements responsives */
@media (max-width: 420px) {
  .symp2-essentiel .viewport {
    height: 160px;
  }
  .symp2-essentiel .msg {
    font-size: 14px;
  }
}

@media (min-width: 701px) {
  .bottom-banner {
    display: none;
  }
}

@media (max-width: 700px) {
  .bottom-banner {
    position: fixed;
    bottom: 0px;

    width: 90%;
    margin: auto;
    background: white;
    font-size: 12px;
    line-height: 1.4;
    padding: 25px 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    transition: transform 0.6s ease;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  /* Masquer en glissant vers le bas */
  .bottom-banner.hide {
    transform: translateY(100%);
  }
}
/* ----- Overrides responsive < 1200px ----- */
@media (max-width: 1199px) {
  /* Padding global réduit */
  body {
    padding-top: 20px !important;
  }

  /* Logo côté droit */
  .top-left-logo {
    left: auto !important;
    right: 16px !important;
    top: 16px !important;
  }

  /* Ajuste la taille du logo si besoin (optionnel) */
  .top-left-logo img {
    height: 36px;
  }
}

/* Tu peux garder ton ajustement très petit écran si tu veux */
@media (max-width: 700px) {
  .top-left-logo {
    right: 10px !important; /* aligné à droite aussi en mobile */
    top: 10px !important;
  }
  .top-left-logo img {
    height: 32px;
  }
}

/* Logo MGEN fixe en haut à gauche + espace sous header */
.top-left-logo {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  display: inline-block;
}
.top-left-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 700px) {
  .top-left-logo {
    top: 10px;
    left: 10px;
  }
  .top-left-logo img {
    height: 32px;
  }
}
/* Ajoute de l’air sous le header pour ne pas cogner le contenu */
@media (min-width: 701px) {
  body {
    padding-top: 20px;
  }
}
@media (max-width: 700px) {
  body {
    padding-top: 35px;
  }
}

/* Hero : garder l’effet bloc sur "ménopause" avec le print code couleur */
/* Hero : titre en ligne, sans étiquette inclinée */
.titreMGEN2 {
  background: transparent !important;
  color: #286937 !important;
  transform: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Widget "Ménopause : l’essentiel à savoir"
       - Fond vert uni
       - Titre en blanc
       - Contours en #ebffeb
    */
.symp2-essentiel .paper {
  background: #286937 !important;
  outline: 1px solid #ebffeb !important;
}

.symp2-essentiel .viewport {
  outline: 1px solid #ebffeb !important;
}
.symp2-essentiel .hint {
  border: 1px dashed #ebffeb !important;
}
/* Optionnel : liserez des dots en #ebffeb */
.symp2-essentiel .dots i {
  box-shadow: inset 0 0 0 1px #ebffeb !important;
}

/* Footer : style de la note à droite (remplace le logo) */
.footer-note {
  color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
  text-align: right;
  max-width: 520px;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .footer-note {
    text-align: right;
    margin-top: 8px;
  }
}
