/**
 * Sport santé landing page.
 */

.fsgt93-sport-sante-page {
  --fsgt93-health-navy: #0e2c4f;
  --fsgt93-health-blue: #1c579e;
  --fsgt93-health-red: #981b21;
  --fsgt93-health-yellow: #f2c34b;
  --fsgt93-health-green: #7e9e48;
  --fsgt93-health-cream: #f7f3ea;
  overflow: hidden;
  color: var(--fsgt93-health-navy);
  background: #fff;
  border: 1px solid rgba(14, 44, 79, 0.16);
  border-radius: 18px 18px 18px 0;
  box-shadow: 0 22px 58px rgba(14, 44, 79, 0.1);
}

.fsgt93-sport-sante-page *,
.fsgt93-sport-sante-page *::before,
.fsgt93-sport-sante-page *::after {
  box-sizing: border-box;
}

.fsgt93-sport-sante-page h1,
.fsgt93-sport-sante-page h2,
.fsgt93-sport-sante-page h3,
.fsgt93-sport-sante-page p {
  margin-top: 0;
}

.fsgt93-sport-sante-hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--fsgt93-health-navy);
}

.fsgt93-sport-sante-hero__image,
.fsgt93-sport-sante-hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fsgt93-sport-sante-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 56% center;
}

.fsgt93-sport-sante-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 27, 48, 0.97) 0%, rgba(8, 27, 48, 0.83) 45%, rgba(8, 27, 48, 0.12) 78%),
    linear-gradient(0deg, rgba(8, 27, 48, 0.72) 0%, transparent 48%);
}

.fsgt93-sport-sante-hero__copy {
  width: min(790px, 70%);
  padding: clamp(48px, 8vw, 108px) clamp(26px, 7vw, 92px);
  animation: fsgt93-health-enter 680ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fsgt93-sport-sante-eyebrow {
  margin-bottom: 18px;
  color: var(--fsgt93-health-red);
  font: 800 0.78rem/1.3 "IBM Plex Sans", sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fsgt93-sport-sante-hero .fsgt93-sport-sante-eyebrow,
.fsgt93-sport-sante-contact .fsgt93-sport-sante-eyebrow {
  color: var(--fsgt93-health-yellow);
}

.fsgt93-sport-sante-hero h1 {
  max-width: 20ch;
  margin-bottom: 26px;
  color: #fff !important;
  font-size: clamp(3.25rem, 4.6vw, 5.4rem) !important;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.91 !important;
}

.fsgt93-sport-sante-hero__lead {
  max-width: 53ch;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 1.4vw, 1.3rem);
  line-height: 1.55;
}

.fsgt93-sport-sante-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fsgt93-sport-sante-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none !important;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.fsgt93-sport-sante-button:hover,
.fsgt93-sport-sante-button:focus-visible {
  transform: translateY(-2px);
}

.fsgt93-sport-sante-button:focus-visible,
.fsgt93-sport-sante-text-link:focus-visible,
.fsgt93-sport-sante-contact a:focus-visible,
.fsgt93-sport-sante-faq summary:focus-visible {
  outline: 3px solid var(--fsgt93-health-yellow);
  outline-offset: 4px;
}

.fsgt93-sport-sante-button--primary {
  color: var(--fsgt93-health-navy) !important;
  background: var(--fsgt93-health-yellow);
}

.fsgt93-sport-sante-button--primary:hover,
.fsgt93-sport-sante-button--primary:focus-visible {
  background: #ffda74;
}

.fsgt93-sport-sante-button--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 27, 48, 0.2);
}

.fsgt93-sport-sante-button--ghost:hover,
.fsgt93-sport-sante-button--ghost:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.fsgt93-sport-sante-hero__label {
  position: absolute;
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 48px);
  max-width: 210px;
  margin: 0;
  padding: 18px 20px;
  color: var(--fsgt93-health-navy);
  background: var(--fsgt93-health-yellow);
  border-radius: 50% 50% 50% 8%;
  box-shadow: 0 18px 42px rgba(8, 27, 48, 0.22);
  transform: rotate(2deg);
  animation: fsgt93-health-mark 760ms 180ms both cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fsgt93-sport-sante-hero__label strong,
.fsgt93-sport-sante-hero__label span {
  display: block;
}

.fsgt93-sport-sante-hero__label strong {
  font-size: 1.05rem;
}

.fsgt93-sport-sante-hero__label span {
  margin-top: 4px;
  font-size: 0.82rem;
}

.fsgt93-sport-sante-intro,
.fsgt93-sport-sante-audience,
.fsgt93-sport-sante-prescription,
.fsgt93-sport-sante-programmes,
.fsgt93-sport-sante-journey,
.fsgt93-sport-sante-sessions,
.fsgt93-sport-sante-contact,
.fsgt93-sport-sante-faq {
  padding: clamp(52px, 8vw, 104px) clamp(24px, 7vw, 92px);
}

.fsgt93-sport-sante-intro,
.fsgt93-sport-sante-prescription {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.fsgt93-sport-sante-page h2 {
  margin-bottom: 0;
  color: var(--fsgt93-health-navy) !important;
  font-size: clamp(2.25rem, 4.5vw, 4.6rem) !important;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.98 !important;
}

.fsgt93-sport-sante-prose {
  max-width: 64ch;
  color: #38516d;
  font-size: clamp(1rem, 0.45vw + 0.92rem, 1.17rem);
  line-height: 1.75;
}

.fsgt93-sport-sante-prose p:last-child {
  margin-bottom: 0;
}

.fsgt93-sport-sante-prose strong {
  color: var(--fsgt93-health-red);
}

.fsgt93-sport-sante-audience {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(38px, 8vw, 104px);
  background: var(--fsgt93-health-cream);
}

.fsgt93-sport-sante-audience__statement p:last-child {
  max-width: 58ch;
  margin: 28px 0 0;
  color: #435c76;
  font-size: 1.08rem;
  line-height: 1.7;
}

.fsgt93-sport-sante-audience__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-audience__list li {
  position: relative;
  margin: 0;
  padding: 19px 6px 19px 42px;
  border-bottom: 1px solid rgba(14, 44, 79, 0.24);
  color: var(--fsgt93-health-navy);
  font-weight: 700;
  line-height: 1.45;
}

.fsgt93-sport-sante-audience__list li::before {
  position: absolute;
  top: 20px;
  left: 6px;
  width: 20px;
  height: 20px;
  content: "";
  border: 6px solid var(--fsgt93-health-green);
  border-radius: 50% 50% 50% 3px;
  transform: rotate(8deg);
}

.fsgt93-sport-sante-prescription {
  position: relative;
  grid-template-columns: 92px minmax(230px, 0.65fr) minmax(0, 1.35fr);
  color: #fff;
  background: var(--fsgt93-health-blue);
}

.fsgt93-sport-sante-prescription h2,
.fsgt93-sport-sante-prescription .fsgt93-sport-sante-prose {
  color: #fff !important;
}

.fsgt93-sport-sante-prescription .fsgt93-sport-sante-eyebrow {
  color: var(--fsgt93-health-yellow);
}

.fsgt93-sport-sante-prescription__number {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.fsgt93-sport-sante-section-heading {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(36px, 6vw, 68px);
}

.fsgt93-sport-sante-section-heading > p {
  max-width: 40ch;
  margin-bottom: 5px;
  color: #536a82;
  line-height: 1.55;
}

.fsgt93-sport-sante-programmes__types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(14, 44, 79, 0.22);
  border-bottom: 1px solid rgba(14, 44, 79, 0.22);
}

.fsgt93-sport-sante-programmes__types p {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
}

.fsgt93-sport-sante-programmes__types p + p {
  border-left: 1px solid rgba(14, 44, 79, 0.22);
}

.fsgt93-sport-sante-programmes__types span {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--fsgt93-health-red);
  border-radius: 50% 50% 50% 6px;
  font-size: 1.5rem;
  font-weight: 800;
}

.fsgt93-sport-sante-programmes__types strong {
  font-size: clamp(1.25rem, 2.2vw, 2rem);
}

.fsgt93-sport-sante-programmes__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: clamp(18px, 3vw, 32px) 0 0;
  list-style: none;
}

.fsgt93-sport-sante-programmes__features li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: clamp(22px, 3vw, 34px);
  border-bottom: 1px solid rgba(14, 44, 79, 0.18);
}

.fsgt93-sport-sante-programmes__features li:nth-child(odd) {
  border-right: 1px solid rgba(14, 44, 79, 0.18);
}

.fsgt93-sport-sante-programmes__features strong {
  color: var(--fsgt93-health-red);
  font-size: 1.12rem;
}

.fsgt93-sport-sante-programmes__features span {
  color: #4c647d;
  line-height: 1.55;
}

.fsgt93-sport-sante-price {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  padding: clamp(26px, 4vw, 44px);
  color: var(--fsgt93-health-navy);
  background: var(--fsgt93-health-yellow);
  border-radius: 2px 42px 2px 2px;
}

.fsgt93-sport-sante-price p {
  margin: 0;
}

.fsgt93-sport-sante-price strong,
.fsgt93-sport-sante-price span {
  display: block;
}

.fsgt93-sport-sante-price strong {
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.fsgt93-sport-sante-price span {
  margin-top: 10px;
  font-weight: 700;
}

.fsgt93-sport-sante-price > p:last-child {
  max-width: 50ch;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  line-height: 1.5;
}

.fsgt93-sport-sante-journey {
  color: #fff;
  background: var(--fsgt93-health-navy);
}

.fsgt93-sport-sante-journey h2,
.fsgt93-sport-sante-journey .fsgt93-sport-sante-section-heading > p {
  color: #fff !important;
}

.fsgt93-sport-sante-journey .fsgt93-sport-sante-eyebrow {
  color: var(--fsgt93-health-yellow);
}

.fsgt93-sport-sante-journey__steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  margin: 0;
  padding: 0 0 16px;
  overflow-x: auto;
  list-style: none;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.fsgt93-sport-sante-journey__steps li {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 0 20px 0 0;
  animation: fsgt93-health-step 420ms both cubic-bezier(0.2, 0.7, 0.2, 1);
  animation-delay: calc(var(--fsgt93-sport-sante-step) * 65ms);
}

.fsgt93-sport-sante-journey__steps li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  left: 48px;
  width: calc(100% - 60px);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.35);
}

.fsgt93-sport-sante-journey__steps span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--fsgt93-health-navy);
  background: var(--fsgt93-health-yellow);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.fsgt93-sport-sante-journey__steps strong {
  display: block;
  max-width: 16ch;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.4;
}

.fsgt93-sport-sante-sessions {
  background: var(--fsgt93-health-cream);
}

.fsgt93-sport-sante-sessions__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-sessions__list article {
  padding: clamp(30px, 5vw, 56px);
  border-bottom: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-sessions__list article + article {
  border-left: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-sessions__index {
  margin-bottom: 28px;
  color: var(--fsgt93-health-red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.fsgt93-sport-sante-sessions h3 {
  margin-bottom: 30px;
  color: var(--fsgt93-health-navy) !important;
  font-size: clamp(1.7rem, 3vw, 2.6rem) !important;
  letter-spacing: -0.035em;
}

.fsgt93-sport-sante-sessions dl {
  margin: 0 0 34px;
}

.fsgt93-sport-sante-sessions dl div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(14, 44, 79, 0.15);
}

.fsgt93-sport-sante-sessions dt {
  color: #66798d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fsgt93-sport-sante-sessions dd {
  margin: 0;
  color: var(--fsgt93-health-navy);
  font-weight: 700;
}

.fsgt93-sport-sante-text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 44px;
  color: var(--fsgt93-health-red) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.fsgt93-sport-sante-text-link span {
  transition: transform 180ms ease;
}

.fsgt93-sport-sante-text-link:hover span,
.fsgt93-sport-sante-text-link:focus-visible span {
  transform: translateX(5px);
}

.fsgt93-sport-sante-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(38px, 8vw, 110px);
  align-items: end;
  color: #fff;
  background: var(--fsgt93-health-red);
}

.fsgt93-sport-sante-contact h2 {
  color: #fff !important;
}

.fsgt93-sport-sante-contact p:last-child {
  max-width: 60ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
}

.fsgt93-sport-sante-contact address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.fsgt93-sport-sante-contact address a {
  color: #fff !important;
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 800;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 6px;
}

.fsgt93-sport-sante-faq__items {
  border-top: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-faq details {
  border-bottom: 1px solid rgba(14, 44, 79, 0.24);
}

.fsgt93-sport-sante-faq summary {
  position: relative;
  min-height: 76px;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  color: var(--fsgt93-health-navy);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 800;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.fsgt93-sport-sante-faq summary::-webkit-details-marker {
  display: none;
}

.fsgt93-sport-sante-faq summary span {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(14, 44, 79, 0.35);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}

.fsgt93-sport-sante-faq summary span::before,
.fsgt93-sport-sante-faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
}

.fsgt93-sport-sante-faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fsgt93-sport-sante-faq details[open] summary {
  color: var(--fsgt93-health-red);
}

.fsgt93-sport-sante-faq details[open] summary span {
  color: #fff;
  background: var(--fsgt93-health-red);
  border-color: var(--fsgt93-health-red);
  transform: rotate(45deg);
}

.fsgt93-sport-sante-faq details > div {
  max-width: 74ch;
  padding: 0 64px 26px 4px;
  color: #4b647d;
  line-height: 1.7;
}

.fsgt93-sport-sante-faq details > div p {
  margin: 0;
}

@keyframes fsgt93-health-enter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fsgt93-health-mark {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(7deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(2deg) scale(1);
  }
}

@keyframes fsgt93-health-step {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .fsgt93-sport-sante-hero__copy {
    width: min(760px, 78%);
  }

  .fsgt93-sport-sante-prescription {
    grid-template-columns: 70px minmax(200px, 0.65fr) minmax(0, 1.35fr);
    gap: 28px;
  }

  .fsgt93-sport-sante-journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    padding-bottom: 0;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .fsgt93-sport-sante-journey__steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .fsgt93-sport-sante-journey__steps li:not(:last-child)::after {
    display: none;
  }

  .fsgt93-sport-sante-journey__steps span {
    margin-bottom: 0;
  }

  .fsgt93-sport-sante-journey__steps strong {
    max-width: none;
    padding-top: 7px;
  }
}

@media (max-width: 820px) {
  .fsgt93-sport-sante-hero {
    min-height: clamp(660px, 92svh, 780px);
  }

  .fsgt93-sport-sante-hero__image {
    object-position: 62% center;
  }

  .fsgt93-sport-sante-hero__veil {
    background:
      linear-gradient(0deg, rgba(8, 27, 48, 0.98) 0%, rgba(8, 27, 48, 0.86) 48%, rgba(8, 27, 48, 0.15) 82%),
      linear-gradient(90deg, rgba(8, 27, 48, 0.2), transparent);
  }

  .fsgt93-sport-sante-hero__copy {
    width: 100%;
    padding-top: 220px;
    padding-bottom: 118px;
  }

  .fsgt93-sport-sante-hero h1 {
    max-width: 11ch;
  }

  .fsgt93-sport-sante-hero__label {
    right: auto;
    bottom: 22px;
    left: clamp(24px, 7vw, 92px);
    max-width: none;
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding: 12px 16px;
    border-radius: 4px 18px 4px 4px;
    transform: none;
  }

  .fsgt93-sport-sante-hero__label span {
    margin-top: 0;
  }

  .fsgt93-sport-sante-intro,
  .fsgt93-sport-sante-audience,
  .fsgt93-sport-sante-contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .fsgt93-sport-sante-prescription {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .fsgt93-sport-sante-prescription .fsgt93-sport-sante-prose {
    grid-column: 2;
  }

  .fsgt93-sport-sante-section-heading {
    display: block;
  }

  .fsgt93-sport-sante-section-heading > p {
    margin: 24px 0 0;
  }

  .fsgt93-sport-sante-contact {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .fsgt93-sport-sante-page {
    border-radius: 12px 12px 12px 0;
  }

  .fsgt93-sport-sante-hero {
    min-height: calc(100svh - 94px);
  }

  .fsgt93-sport-sante-hero__copy {
    padding: 138px 22px 34px;
  }

  .fsgt93-sport-sante-hero h1 {
    max-width: none;
    margin-bottom: 18px;
    font-size: clamp(2.5rem, 11.5vw, 3.2rem) !important;
    line-height: 0.94 !important;
  }

  .fsgt93-sport-sante-hero__lead {
    margin-bottom: 22px;
  }

  .fsgt93-sport-sante-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fsgt93-sport-sante-hero__label {
    top: 20px;
    right: auto;
    bottom: auto;
    left: 22px;
    display: block;
    max-width: calc(100% - 44px);
  }

  .fsgt93-sport-sante-hero__label span {
    margin-top: 3px;
  }

  .fsgt93-sport-sante-intro,
  .fsgt93-sport-sante-audience,
  .fsgt93-sport-sante-prescription,
  .fsgt93-sport-sante-programmes,
  .fsgt93-sport-sante-journey,
  .fsgt93-sport-sante-sessions,
  .fsgt93-sport-sante-contact,
  .fsgt93-sport-sante-faq {
    padding: 48px 22px;
  }

  .fsgt93-sport-sante-prescription {
    display: block;
  }

  .fsgt93-sport-sante-prescription__number {
    margin-bottom: 26px;
  }

  .fsgt93-sport-sante-prescription .fsgt93-sport-sante-prose {
    margin-top: 28px;
  }

  .fsgt93-sport-sante-programmes__types,
  .fsgt93-sport-sante-programmes__features,
  .fsgt93-sport-sante-price,
  .fsgt93-sport-sante-sessions__list,
  .fsgt93-sport-sante-journey__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .fsgt93-sport-sante-programmes__types p + p,
  .fsgt93-sport-sante-programmes__features li:nth-child(odd),
  .fsgt93-sport-sante-sessions__list article + article {
    border-left: 0;
    border-right: 0;
  }

  .fsgt93-sport-sante-programmes__types p + p {
    border-top: 1px solid rgba(14, 44, 79, 0.22);
  }

  .fsgt93-sport-sante-price {
    gap: 24px;
  }

  .fsgt93-sport-sante-sessions__list article {
    padding-inline: 0;
  }

  .fsgt93-sport-sante-sessions dl div {
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
  }

  .fsgt93-sport-sante-faq summary {
    min-height: 68px;
    gap: 16px;
  }

  .fsgt93-sport-sante-faq details > div {
    padding-right: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fsgt93-sport-sante-hero__copy,
  .fsgt93-sport-sante-hero__label,
  .fsgt93-sport-sante-journey__steps li {
    animation: none;
  }

  .fsgt93-sport-sante-button,
  .fsgt93-sport-sante-text-link span,
  .fsgt93-sport-sante-faq summary span {
    transition: none;
  }

  .fsgt93-sport-sante-button:hover,
  .fsgt93-sport-sante-button:focus-visible,
  .fsgt93-sport-sante-text-link:hover span,
  .fsgt93-sport-sante-text-link:focus-visible span {
    transform: none;
  }
}
