/* =========================================================
   Homepage — layout spécifique (tokens : design-system.css)
   ========================================================= */

body#theHomePage.fd-homepage,
body.fd-homepage {
  overflow-x: clip;
}

body#theHomePage nav.navbar-contextual,
body#theHomePage .pwgstuffs-container,
body#theHomePage .jumbotron,
body#theHomePage #theHeader {
  display: none !important;
}

body#theHomePage #content {
  padding: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  width: 100% !important;
}

body#theHomePage #content > .container-fluid,
body#theHomePage #content .container-fluid:first-child,
body#theHomePage > #wrapper > .container-fluid,
body#theHomePage #wrapper > .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

#fd-v5 {
  background: var(--fd-cream);
  color: var(--fd-ink);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

#fd-v5 img {
  display: block;
  max-width: 100%;
  height: auto;
}

#fd-v5 .fd-mosaic__cell img {
  max-width: none;
  height: 118%;
  width: 118%;
}

#fd-v5 .fd-v5-universe__body img {
  height: auto;
}

/* —— Hero slider V7 —— */
.fd-v5-hero--slider {
  margin: 0;
}

.fd-v5-hero__stage {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 72vh, 78vh);
  max-height: min(78vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.fd-v5-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fd-v5-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease, visibility 0s linear 1.4s;
  will-change: opacity;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fd-v5-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.4s ease, visibility 0s linear 0s;
  z-index: 1;
  pointer-events: auto;
}

.fd-v5-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  min-height: clamp(380px, 72vh, 78vh);
  object-fit: cover;
  display: block;
}

.fd-v5-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.fd-v5-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--fd-space-xl) var(--fd-gutter);
  color: #ffffff;
  box-sizing: border-box;
}

.fd-v5-hero__content .fd-title-xl,
body#theHomePage .fd-v5-hero__content h1#fd-v5-h1,
body#theHomePage .fd-v5-hero__content .fd-v5-hero__title {
  position: relative;
  z-index: 3;
  color: #ffffff !important;
  opacity: 1;
  margin-bottom: var(--fd-space-sm);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
  mix-blend-mode: normal;
  font-size: clamp(2rem, 8vw, 3.5rem);
}

.fd-v5-hero__tag {
  font-family: var(--fd-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 var(--fd-space-md);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.fd-v5-hero__actions {
  margin-top: 0;
  gap: var(--fd-space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.fd-v5-hero__actions-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--fd-space-sm) var(--fd-space-md);
  width: 100%;
}

.fd-v5-hero__actions .fd-btn {
  white-space: normal;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.fd-v5-hero__actions .fd-btn--hero-quiet {
  min-height: calc(var(--fd-btn-height, 48px) - 6px);
  padding: 10px 1.1rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-width: 1px;
  opacity: 0.92;
}

.fd-v5-hero__actions .fd-btn--hero-quiet:hover,
.fd-v5-hero__actions .fd-btn--hero-quiet:focus-visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .fd-v5-hero__stage,
  .fd-v5-hero__slide img {
    min-height: clamp(300px, 64vh, 70vh);
    max-height: 72vh;
  }

  .fd-v5-hero__content {
    padding: var(--fd-space-md) var(--fd-gutter);
  }

  .fd-v5-hero__title {
    margin-bottom: 0.35rem !important;
  }

  .fd-v5-hero__tag {
    margin-bottom: var(--fd-space-sm);
    font-size: clamp(1rem, 3.6vw, 1.25rem);
  }

  .fd-v5-hero__actions {
    gap: 0.55rem;
  }

  .fd-v5-hero__actions-row {
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
  }

  .fd-v5-hero__actions .fd-btn {
    width: 100%;
    max-width: 300px;
    min-height: 44px;
    padding: 10px 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .fd-v5-hero__actions .fd-btn--hero-quiet {
    min-height: 40px;
    font-size: 0.68rem;
    padding: 8px 0.85rem;
  }
}

@media (max-width: 360px) {
  .fd-v5-hero__content {
    padding: 0.85rem 0.75rem;
  }

  .fd-v5-hero__actions .fd-btn {
    max-width: 100%;
    font-size: 0.68rem;
  }
}

@media (min-width: 769px) {
  .fd-v5-hero__actions-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fd-v5-hero__actions-row--primary .fd-btn {
    min-width: min(100%, 240px);
  }

  .fd-v5-hero__actions-row--secondary .fd-btn {
    min-width: min(100%, 210px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fd-v5-hero__slide {
    transition: none;
  }

  .fd-v5-hero__slide:not(.is-active) {
    display: none;
  }
}

/* Legacy alias — conservé pour compatibilité */
.fd-v5-hero--immersive {
  margin: 0;
}

.fd-v5-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.fd-v5-hero__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(360px, 70vh, 75vh);
  object-fit: cover;
  object-position: 50% 28%;
}

/* —— Les mots —— Phase 8N2: respiration verticale resserrée —— */
.fd-v5-mots,
.fd-v5-mots.fd-section--sm {
  text-align: center;
  padding-top: clamp(1.25rem, 2.4vw, 2rem);
  padding-bottom: clamp(1.25rem, 2.4vw, 2rem);
}

.fd-v5-mots .fd-quote {
  margin-top: 0;
  margin-bottom: 0;
}

.fd-v5-mots .fd-quote + .fd-quote {
  margin-top: var(--fd-space-md);
}

/* —— Univers — mosaïques éditoriales V9.0 —— */
.fd-v5-universe {
  margin-bottom: var(--fd-space-xl);
}

.fd-v5-universe__body {
  max-width: var(--fd-container-narrow);
  margin: 0 auto;
  padding: var(--fd-space-lg) var(--fd-gutter) 0;
  text-align: center;
  background: var(--fd-cream);
}

.fd-v5-universe__body h2 {
  margin-bottom: var(--fd-space-sm);
}

.fd-v5-universe__body p {
  margin-bottom: var(--fd-space-md);
}

.fd-mosaic {
  --fd-mosaic-gap: 5px;
  --fd-mosaic-bg: #121212;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.fd-mosaic__viewport {
  position: relative;
  width: 100%;
  height: clamp(540px, 64vh, 740px);
  overflow: hidden;
  background: var(--fd-mosaic-bg);
}

/* Layout A — grande paysage + 2 secondaires empilées */
.fd-mosaic__group {
  position: absolute;
  inset: 0;
  display: grid;
  gap: var(--fd-mosaic-gap);
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.95s ease, visibility 0s linear 0.95s, transform 0.95s ease;
  transform: translateY(8px);
  will-change: opacity, transform;
  z-index: 0;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "main seca"
    "main secb";
}

.fd-mosaic__group--layout-A.fd-mosaic__group--flip {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
  grid-template-areas:
    "seca main"
    "secb main";
}

/* Layout B — portrait vertical + 2 paysages empilés */
.fd-mosaic__group--layout-B {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "main seca"
    "main secb";
}

/* Layout C — paysage + 2 portraits verticaux côte à côte */
.fd-mosaic__group--layout-C {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  grid-template-rows: 1fr;
  grid-template-areas: "main seca secb";
}

/* Layout D — 1 paysage haut + 2 paysages bas */
.fd-mosaic__group--layout-D {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.15fr 1fr;
  grid-template-areas:
    "main main"
    "seca secb";
}

.fd-mosaic__group.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.95s ease, visibility 0s linear 0s, transform 0.95s ease;
  z-index: 1;
}

.fd-mosaic__cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0d0d0d;
  min-width: 0;
  min-height: 0;
}

.fd-mosaic__cell--main { grid-area: main; }
.fd-mosaic__cell--sec-a { grid-area: seca; }
.fd-mosaic__cell--sec-b { grid-area: secb; }

/* Plein cadre : cover ; surdimensionnement par cellule via --fd-img-size */
.fd-mosaic__cell img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--fd-img-size, 118%);
  height: var(--fd-img-size, 118%);
  max-width: none !important;
  display: block;
  object-fit: cover;
  object-position:
    var(--fd-focus-x-desktop, 50%)
    var(--fd-focus-y-desktop, 50%);
  transform: translate3d(-50%, -50%, 0) scale(1);
  will-change: transform;
}

.fd-mosaic__cell--fit-cover img {
  object-fit: cover;
}

/* Pan coordonné — fallback CSS si JS/WAAPI indisponible */
.fd-mosaic:not(.fd-mosaic--waapi) .fd-mosaic__group.is-active .fd-mosaic__cell--motion img {
  animation-name: fd-mosaic-pan;
  animation-duration: var(--fd-pan-duration, 10s);
  animation-timing-function: cubic-bezier(0.33, 0.05, 0.25, 1);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.fd-mosaic:not(.fd-mosaic--waapi) .fd-mosaic__group.is-active .fd-mosaic__cell--sec-a.fd-mosaic__cell--motion img {
  animation-delay: 0.15s;
}

.fd-mosaic:not(.fd-mosaic--waapi) .fd-mosaic__group.is-active .fd-mosaic__cell--sec-b.fd-mosaic__cell--motion img {
  animation-delay: 0.35s;
}

.fd-mosaic:not(.fd-mosaic--waapi).is-paused .fd-mosaic__cell--motion img,
.fd-mosaic--static .fd-mosaic__cell--motion img {
  animation-play-state: paused;
}

/* Mode WAAPI (V1.36.4+) : le JS pilote transform ; aucune animation CSS */
.fd-mosaic--waapi .fd-mosaic__cell--motion img {
  animation: none !important;
}

@keyframes fd-mosaic-pan {
  from {
    transform: translate3d(
        calc(-50% + var(--fd-pan-x0, 0%)),
        calc(-50% + var(--fd-pan-y0, 0%)),
        0
      )
      scale(var(--fd-pan-s0, 1.06));
  }
  to {
    transform: translate3d(
        calc(-50% + var(--fd-pan-x1, -3%)),
        calc(-50% + var(--fd-pan-y1, 2%)),
        0
      )
      scale(var(--fd-pan-s1, 1.1));
  }
}

@keyframes fd-mosaic-pan-mobile {
  from {
    transform: translate3d(
        calc(-50% + var(--fd-pan-mx0, 0%)),
        calc(-50% + var(--fd-pan-my0, 0%)),
        0
      )
      scale(var(--fd-pan-ms0, 1.03));
  }
  to {
    transform: translate3d(
        calc(-50% + var(--fd-pan-mx1, -1%)),
        calc(-50% + var(--fd-pan-my1, 1%)),
        0
      )
      scale(var(--fd-pan-ms1, 1.05));
  }
}

.fd-mosaic__pause {
  position: absolute;
  right: var(--fd-space-sm);
  bottom: var(--fd-space-sm);
  z-index: 3;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--fd-radius);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-family: var(--fd-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--fd-transition), border-color var(--fd-transition);
}

.fd-mosaic__pause:hover,
.fd-mosaic__pause:focus-visible {
  background: rgba(0, 0, 0, 0.65);
  border-color: var(--fd-accent);
  outline: 2px solid var(--fd-accent);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  .fd-mosaic__viewport {
    height: clamp(480px, 58vh, 640px);
  }

  .fd-mosaic__cell img {
    object-position:
      var(--fd-focus-x-tablet, var(--fd-focus-x-desktop, 50%))
      var(--fd-focus-y-tablet, var(--fd-focus-y-desktop, 50%));
  }
}

/* Mobile : une carte plein cadre à la fois, swipe horizontal */
@media (max-width: 768px) {
  .fd-mosaic__viewport {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
  }

  .fd-mosaic__group {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 var(--fd-gutter) 4px;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    height: auto;
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
  }

  .fd-mosaic__group.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .fd-mosaic__group:not(.is-active) {
    display: none;
  }

  .fd-mosaic__cell {
    flex: 0 0 min(88vw, 380px);
    height: auto;
    aspect-ratio: var(--fd-cell-ratio, 3 / 2);
    max-height: 70vh;
    scroll-snap-align: center;
    border-radius: 2px;
    background: #0d0d0d;
  }

  .fd-mosaic__cell--main,
  .fd-mosaic__cell--sec-a,
  .fd-mosaic__cell--sec-b {
    grid-area: auto;
  }

  .fd-mosaic__cell img {
    width: var(--fd-img-size, 110%);
    height: var(--fd-img-size, 110%);
    object-fit: cover;
    object-position:
      var(--fd-focus-x-mobile, var(--fd-focus-x-desktop, 50%))
      var(--fd-focus-y-mobile, var(--fd-focus-y-desktop, 50%));
  }

  /* Mobile fallback CSS (sans WAAPI) */
  .fd-mosaic:not(.fd-mosaic--waapi) .fd-mosaic__group.is-active .fd-mosaic__cell--motion.is-inview img {
    animation-name: fd-mosaic-pan-mobile;
    animation-duration: calc(var(--fd-pan-duration, 10s) * 1.1);
    animation-timing-function: cubic-bezier(0.33, 0.05, 0.25, 1);
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }

  .fd-mosaic:not(.fd-mosaic--waapi) .fd-mosaic__group.is-active .fd-mosaic__cell--motion:not(.is-inview) img {
    animation: none !important;
    transform: translate3d(
        calc(-50% + var(--fd-pan-mx0, 0%)),
        calc(-50% + var(--fd-pan-my0, 0%)),
        0
      )
      scale(var(--fd-pan-ms0, 1.03));
  }

  .fd-mosaic__pause {
    right: var(--fd-gutter);
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fd-mosaic__group {
    transition: none;
    transform: none;
  }

  .fd-mosaic__group:not(.is-active) {
    display: none;
  }

  .fd-mosaic__group.is-active .fd-mosaic__cell--motion img {
    animation: none !important;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  .fd-mosaic__pause {
    display: none;
  }
}

/* Legacy fallback slider (si mosaïque indisponible) */
.fd-v5-universe__stage {
  position: relative;
  width: 100%;
  height: clamp(420px, 55vh, 640px);
  overflow: hidden;
  background: #000;
}

.fd-v5-universe__slider { position: absolute; inset: 0; }

.fd-v5-universe__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}

.fd-v5-universe__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.fd-v5-universe__slide img,
.fd-v5-universe__media--fixed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
}

.fd-v5-universe__media--fixed {
  width: 100%;
  height: clamp(420px, 55vh, 640px);
  margin: 0;
  overflow: hidden;
  background: #000;
}

.fd-v5-universe__pause {
  position: absolute;
  right: var(--fd-space-sm);
  bottom: var(--fd-space-sm);
  z-index: 2;
  min-height: 36px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--fd-radius);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 0.6875rem;
  text-transform: uppercase;
  cursor: pointer;
}

/* —— À propos (signature éditoriale V8) —— */
.fd-v5-about {
  --fd-about-bg: #f0ebe3;
  --fd-about-rule: rgba(168, 134, 99, 0.55);
  background: var(--fd-about-bg);
  padding: clamp(56px, 8vw, var(--fd-space-2xl)) 0;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  border-bottom: 1px solid rgba(18, 18, 18, 0.04);
}

@media (prefers-reduced-motion: no-preference) {
  .fd-v5-about {
    animation: fd-v5-about-in 0.85s ease both;
  }
}

@keyframes fd-v5-about-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fd-v5-about__inner {
  display: grid;
  grid-template-columns: 42fr 58fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: var(--fd-container);
  margin: 0 auto;
  padding: 0 var(--fd-gutter);
}

.fd-v5-about__figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--fd-about-bg);
}

.fd-v5-about__figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fd-v5-about__kicker {
  margin: 0 0 var(--fd-space-sm);
  font-family: var(--fd-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fd-gray);
}

.fd-v5-about__title {
  margin: 0 0 var(--fd-space-sm);
  font-family: var(--fd-serif);
  font-size: clamp(1.75rem, 3.4vw, 2.35rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fd-ink);
}

.fd-v5-about__rule {
  width: 48px;
  height: 1px;
  margin: 0 0 var(--fd-space-md);
  border: 0;
  background: var(--fd-about-rule);
}

.fd-v5-about__text {
  margin: 0 0 var(--fd-space-md);
  max-width: 38em;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--fd-gray-dark);
}

.fd-v5-about__quote {
  margin: 0 0 var(--fd-space-md);
  padding: 0 0 0 var(--fd-space-md);
  border: 0;
  border-left: 2px solid var(--fd-accent);
  max-width: 34em;
}

.fd-v5-about__quote p {
  margin: 0;
  font-family: var(--fd-serif);
  font-size: clamp(1.2rem, 2.1vw, 1.4375rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--fd-gray-dark);
}

.fd-v5-about__disciplines {
  margin: 0 0 var(--fd-space-lg);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--fd-gray);
}

.fd-v5-about__actions {
  flex-wrap: wrap;
  gap: var(--fd-space-sm);
}

/* —— Témoignages —— */
.fd-v5-temoignages {
  padding: var(--fd-space-xl) var(--fd-gutter);
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.fd-v5-temoignages__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.fd-v5-temoignages h2 {
  margin-bottom: var(--fd-space-xs);
}

.fd-v5-temoignages__lead {
  font-size: 0.9rem;
  color: var(--fd-gray);
  margin-bottom: var(--fd-space-lg);
}

.fd-v5-temoignages__widget {
  min-height: 120px;
  text-align: left;
}

.fd-v5-temoignages__more {
  margin-top: var(--fd-space-lg);
}

.fd-v5-temoignages__more a {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fd-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.fd-v5-temoignages__more a:hover {
  border-bottom-color: var(--fd-accent);
}

/* —— Contact (section sombre) —— */
.fd-v5-contact {
  text-align: center;
}

.fd-v5-contact .fd-title-lg {
  margin-bottom: var(--fd-space-md);
}

/* —— Footer triptyque —— */
.fd-v5-foot {
  text-align: center;
  padding: var(--fd-space-lg) var(--fd-gutter) var(--fd-space-xl);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fd-gray);
}

@media (max-width: 768px) {
  .fd-v5-about__inner {
    grid-template-columns: 1fr;
    gap: var(--fd-space-lg);
  }

  .fd-v5-about__figure {
    max-width: min(100%, 480px);
    margin: 0 auto;
  }

  .fd-v5-about__actions .fd-btn,
  .fd-v5-about__actions a.fd-btn {
    flex: 1 1 100%;
    text-align: center;
    min-height: 48px;
  }

  .fd-v5-universes,
  .fd-v5-mots,
  .fd-v5-about,
  .fd-v5-temoignages,
  .fd-v5-contact {
    max-width: 100%;
    box-sizing: border-box;
  }
}
