@font-face {
  font-family: "GRIG Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/noto-sans-variable.ttf") format("truetype");
}

@font-face {
  font-family: "GRIG Sans";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/noto-sans-italic-variable.ttf") format("truetype");
}

@font-face {
  font-family: "GRIG Serif";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/noto-serif-variable.ttf") format("truetype");
}

@font-face {
  font-family: "GRIG Serif";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/noto-serif-italic-variable.ttf") format("truetype");
}

:root {
  --ink: #172126;
  --ink-soft: #4b5868;
  --paper: #fbfaf7;
  --white: #ffffff;
  --sand: #f3f0ea;
  --sand-deep: #e7dfd6;
  --blue: #465f86;
  --teal: #6a82a8;
  --teal-dark: #465f86;
  --teal-pale: #eef3f8;
  --plum: #bd8fab;
  --plum-dark: #825f7a;
  --plum-pale: #f6edf4;
  --peach: #e6ad91;
  --peach-pale: #faeee7;
  --signal: #d96f54;
  --line: #dce3e1;
  --shadow: 0 24px 70px rgba(25, 48, 57, .11);
  --shadow-soft: 0 14px 34px rgba(25, 48, 57, .08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1180px;
  --serif: "GRIG Serif", Georgia, serif;
  --sans: "GRIG Sans", "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
}

h1 {
  letter-spacing: -.035em;
}

h2 {
  letter-spacing: -.025em;
}

h3 {
  letter-spacing: -.015em;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--peach);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .77rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow--patient {
  color: var(--plum);
}

.eyebrow--pro {
  color: var(--teal);
}

.eyebrow--light {
  color: #bce0d9;
}

.eyebrow[data-index] {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow[data-index]::before {
  display: grid;
  width: 30px;
  height: 24px;
  flex: 0 0 auto;
  content: attr(data-index);
  color: var(--white);
  place-items: center;
  background: var(--ink);
  font-size: .6rem;
  letter-spacing: .04em;
}

.eyebrow[data-index]::after {
  width: 24px;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: .42;
}

.eyebrow--pro[data-index]::before {
  background: var(--teal);
}

.eyebrow--patient[data-index]::before {
  background: var(--plum);
}

.eyebrow--light[data-index]::before {
  color: var(--ink);
  background: var(--peach);
}

.topbar {
  color: var(--white);
  background: var(--ink);
  font-size: .82rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 37px;
  gap: 28px;
}

.topbar p {
  margin: 0;
  color: #dfe8e8;
}

.topbar a {
  font-weight: 700;
}

.topbar a:hover {
  color: var(--peach);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 247, .94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(220, 227, 225, .85);
  box-shadow: 0 8px 25px rgba(25, 48, 57, .06);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 88px;
  gap: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 7px 18px rgba(23, 47, 57, .13);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
}

.brand__text small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 2.4vw, 36px);
}

.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: .92rem;
  font-weight: 600;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 21px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--plum);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.search-trigger {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.search-trigger svg,
.site-search svg,
.mini-search svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hot-news {
  padding: 22px 0 0;
  background:
    linear-gradient(180deg, rgba(230, 173, 145, .18), transparent 58%),
    var(--paper);
}

.hot-news__card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: stretch;
  background:
    linear-gradient(100deg, rgba(250, 238, 231, .95), transparent 48%),
    var(--white);
  border: 1px solid rgba(217, 111, 84, .26);
  border-top: 5px solid var(--signal);
  border-radius: 2px 30px 2px 2px;
  box-shadow: 0 18px 45px rgba(25, 48, 57, .08);
  grid-template-columns: 190px minmax(0, 1fr) 220px;
  gap: 0;
}

.hot-news__card--animated::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(340px, 46%);
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--signal), var(--peach), transparent);
  animation: hot-news-signal 3.8s ease-in-out infinite;
}

.hot-news__card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 122px;
  height: 122px;
  content: "";
  background:
    linear-gradient(135deg, transparent 50%, rgba(217, 111, 84, .11) 50%);
  pointer-events: none;
}

.hot-news__marker {
  display: grid;
  margin: 18px;
  min-height: 142px;
  align-self: center;
  align-content: center;
  justify-items: start;
  gap: 4px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, .18), transparent 30%),
    var(--signal);
  border-radius: 2px 22px 2px 2px;
  box-shadow: 0 10px 28px rgba(25, 48, 57, .08);
  padding: 22px;
}

.hot-news__card--animated .hot-news__marker {
  animation: hot-news-pulse 4.2s ease-in-out infinite;
}

.hot-news__marker span,
.hot-news__marker small {
  display: block;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hot-news__marker strong {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: .95;
}

.hot-news__marker small {
  max-width: 110px;
  color: rgba(255, 255, 255, .74);
}

.hot-news__content {
  padding: 24px 28px 24px 4px;
}

.hot-news__topline {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.hot-news__label {
  display: inline-flex;
  margin: 0;
  padding: 5px 9px;
  align-items: center;
  gap: 7px;
  color: var(--white);
  background: var(--signal);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hot-news__label::before {
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
  animation: hot-news-dot 1.45s ease-in-out infinite;
}

.hot-news__status {
  display: inline-flex;
  margin: 0;
  padding: 4px 8px;
  color: var(--plum-dark);
  background: var(--plum-pale);
  border: 1px solid rgba(189, 143, 171, .25);
  font-size: .68rem;
  font-weight: 800;
}

.hot-news h2 {
  max-width: 620px;
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1;
}

.hot-news__date {
  margin: 0 0 10px;
  color: var(--ink);
  font-weight: 750;
}

.hot-news__content p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .94rem;
  line-height: 1.6;
}

.hot-news__actions {
  display: flex;
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 24px 24px 24px 28px;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, .52);
  border-left: 1px solid rgba(217, 111, 84, .18);
}

.statutes-summary {
  padding: 14px 0 0;
  background: var(--paper);
}

.statutes-summary__card {
  display: grid;
  padding: 18px 26px;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: 2px 28px 2px 2px;
  box-shadow: 0 14px 34px rgba(25, 48, 57, .06);
  grid-template-columns: minmax(0, 1fr) auto;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.statutes-summary__card:hover,
.statutes-summary__card:focus-visible {
  border-color: rgba(70, 95, 134, .42);
  box-shadow: 0 20px 52px rgba(25, 48, 57, .1);
  outline: none;
  transform: translateY(-2px);
}

.statutes-summary .eyebrow {
  margin-bottom: 8px;
}

.statutes-summary h2 {
  margin-bottom: 6px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.statutes-summary p {
  max-width: 680px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.statutes-summary__link {
  color: var(--plum-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .02em;
  white-space: nowrap;
}

@keyframes hot-news-signal {
  0%,
  100% {
    opacity: .78;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(54%);
  }
}

@keyframes hot-news-pulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(25, 48, 57, .08);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 18px 40px rgba(217, 111, 84, .24);
    transform: translateY(-2px);
  }
}

@keyframes hot-news-dot {
  0%,
  100% {
    opacity: .55;
    transform: scale(.78);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hot-news__card--animated::before,
  .hot-news__card--animated .hot-news__marker,
  .hot-news__label::before {
    animation: none;
  }
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 46px 0 116px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 16%, rgba(230, 173, 145, .11), transparent 27%),
    linear-gradient(135deg, #fbfaf7 0%, #f5f0ec 100%);
}

.hero::after {
  position: absolute;
  z-index: 1;
  top: 86px;
  right: 8.5%;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--signal);
  border: 5px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(201, 95, 91, .24);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: start;
  gap: 80px;
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 5.2vw, 5rem);
}

.hero-title-rule {
  display: block;
  width: min(490px, 78%);
  height: 3px;
  margin: .08em 0 .12em 3px;
  background: linear-gradient(90deg, var(--plum), var(--signal) 72%, transparent);
}

.hero-title-sub {
  display: block;
  color: var(--plum-dark);
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
}

.hero__shape--one {
  top: -205px;
  right: -170px;
  width: 480px;
  height: 480px;
  background: transparent;
  border: 72px solid rgba(38, 123, 128, .06);
}

.hero__shape--two {
  bottom: -230px;
  left: 34%;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(145, 76, 114, .11);
}

.audience-choices {
  display: grid;
  max-width: 710px;
  grid-template-columns: 1.18fr .82fr;
  gap: 14px;
}

.audience-card {
  display: grid;
  min-height: 108px;
  padding: 18px 4px 18px 0;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .2s ease, border-color .2s ease;
}

.audience-card:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.audience-card--patient:hover {
  color: var(--plum-dark);
  border-color: var(--plum);
}

.audience-card--primary {
  min-height: 122px;
  padding: 20px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 3px 24px 3px 3px;
}

.audience-card--primary:hover {
  color: var(--white);
  background: var(--teal-dark);
}

.audience-card--primary small,
.audience-card--primary em {
  color: rgba(255, 255, 255, .68);
}

.audience-card--primary .audience-card__icon {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.audience-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--teal-pale);
  border-radius: 13px;
}

.audience-card--patient .audience-card__icon {
  color: var(--plum);
  background: var(--plum-pale);
}

.audience-card__icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.audience-card small,
.audience-card strong,
.audience-card em {
  display: block;
}

.audience-card small {
  margin-bottom: 2px;
  color: var(--ink-soft);
  font-size: .72rem;
}

.audience-card strong {
  font-size: .95rem;
}

.audience-card em {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: .72rem;
  font-style: normal;
  line-height: 1.35;
}

.audience-card .arrow {
  font-size: 1.25rem;
  transition: transform .2s ease;
}

.audience-card:hover .arrow {
  transform: translateX(4px);
}

.hero-credo {
  display: flex;
  max-width: 650px;
  margin-top: 30px;
  padding: 14px 0;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-credo small {
  display: block;
  margin-bottom: 4px;
  color: var(--plum-dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-credo p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.35;
}

.hero-credo strong {
  color: var(--plum-dark);
  font-weight: 600;
}

.hero-credo__symbol {
  display: block;
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--teal);
  border-radius: 50%;
}

.hero-credo__symbol::before {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  content: "";
  border: 1px solid var(--plum);
  border-radius: 50%;
}

.hero-credo__symbol i {
  position: absolute;
  top: 4px;
  right: 3px;
  width: 9px;
  height: 9px;
  background: var(--signal);
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  min-height: 510px;
  padding-top: 48px;
}

.hero-story {
  position: relative;
  width: min(100%, 470px);
  margin: 0 0 0 auto;
  padding: 0 24px 54px 0;
}

.hero-story::before {
  position: absolute;
  z-index: -1;
  top: 34px;
  right: 0;
  bottom: 18px;
  left: 44px;
  content: "";
  background: var(--plum);
}

.hero-story__photo {
  position: relative;
  height: 474px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(189, 143, 171, .18), transparent 32%),
    linear-gradient(135deg, #f8f7f3, #eaf1f7);
  border: 9px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-story__thread {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: var(--signal);
  pointer-events: none;
  stroke: rgba(201, 95, 91, .8);
  stroke-dasharray: 3 7;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.hero-story__thread path {
  fill: none;
}

.hero-story__microbe {
  position: absolute;
  z-index: 5;
  top: 38px;
  right: -25px;
  width: 126px;
  height: 126px;
  padding: 8px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(23, 47, 57, .2);
}

.hero-story__microbe::after {
  position: absolute;
  inset: 8px;
  content: "";
  border: 1px solid rgba(201, 95, 91, .45);
  border-radius: 50%;
}

.hero-story__microbe img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 10px 18px rgba(23, 33, 38, .16));
}

.hero-story__microbe span {
  position: absolute;
  top: 46px;
  right: -70px;
  width: 68px;
  color: var(--signal);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-story__photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(70, 95, 134, .28));
}

.hero-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  padding: 28px 18px 0;
}

.editorial-index,
.editorial-ribbon {
  position: absolute;
  z-index: 2;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.editorial-index {
  top: 18px;
  left: 18px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--peach);
}

.editorial-ribbon {
  right: 18px;
  bottom: 18px;
  color: var(--white);
}

.hero-story__scan {
  position: absolute;
  z-index: 3;
  right: -16px;
  bottom: 23px;
  width: 142px;
  height: 114px;
  padding: 7px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 35px rgba(23, 47, 57, .23);
  transform: rotate(3deg);
}

.hero-story__scan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.hero-story figcaption {
  position: absolute;
  z-index: 4;
  right: 64px;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 12px 30px rgba(23, 47, 57, .18);
}

.living-thread {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid rgba(230, 241, 239, .1);
  border-bottom: 1px solid rgba(230, 241, 239, .1);
}

.living-thread::after {
  display: none;
}

.living-thread__inner {
  display: grid;
  position: relative;
  z-index: 1;
  min-height: 150px;
  padding-top: 34px;
  padding-bottom: 34px;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 52px;
}

.living-thread__intro {
  display: flex;
  align-items: center;
  gap: 16px;
}

.living-thread__intro p,
.living-thread__intro strong {
  display: block;
  margin: 0;
}

.living-thread__intro p {
  margin-bottom: 3px;
  color: var(--blue);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.living-thread__intro strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.2;
}

.living-thread__mark {
  display: block;
  position: relative;
  width: 53px;
  height: 53px;
  flex: 0 0 auto;
  border: 1px solid rgba(230, 241, 239, .7);
  border-radius: 50%;
}

.living-thread__mark::before {
  position: absolute;
  inset: 11px;
  content: "";
  border: 1px solid var(--peach);
  border-radius: 50%;
}

.living-thread__mark i {
  position: absolute;
  top: 3px;
  right: 2px;
  width: 11px;
  height: 11px;
  background: var(--signal);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.living-thread ol {
  display: grid;
  position: relative;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
}

.living-thread ol::before {
  display: none;
}

.living-thread li {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 38px 1fr;
  align-items: start;
  gap: 11px;
}

.living-thread li > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--white);
  place-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(230, 241, 239, .28);
  border-radius: 3px;
  font-family: var(--serif);
  font-size: .7rem;
}

.living-thread li:nth-child(2) > span {
  border-color: rgba(230, 241, 239, .28);
}

.living-thread li:nth-child(3) > span {
  border-color: rgba(230, 241, 239, .28);
}

.living-thread li strong,
.living-thread li small {
  display: block;
}

.living-thread li strong {
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
}

.living-thread li small {
  max-width: 190px;
  color: rgba(255, 255, 255, .58);
  font-size: .66rem;
  line-height: 1.45;
}

.hero-story figcaption small,
.hero-story figcaption strong,
.hero-story figcaption span {
  display: block;
}

.hero-story figcaption small {
  color: #bce0d9;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-story figcaption strong {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
}

.hero-story figcaption span {
  color: rgba(255, 255, 255, .72);
  font-size: .67rem;
  line-height: 1.4;
}

.visual-card {
  position: absolute;
  background: var(--white);
  box-shadow: var(--shadow);
}

.visual-card--main {
  top: 10px;
  right: 24px;
  width: min(100%, 430px);
  min-height: 470px;
  overflow: hidden;
  border-radius: 34px;
}

.visual-card__top {
  display: grid;
  padding: 21px 23px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
}

.visual-card__top time {
  font-weight: 700;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #54a784;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(84, 167, 132, .12);
}

.illustration {
  padding: 8px 30px 0;
}

.illustration__blob {
  fill: var(--teal-pale);
}

.illustration__line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 3;
}

.illustration__accent {
  fill: none;
  stroke: var(--plum);
  stroke-linecap: round;
  stroke-width: 2;
}

.expert-seal {
  display: flex;
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 14px 16px;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(25, 48, 57, .08);
}

.expert-seal__icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  color: var(--white);
  place-items: center;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.expert-seal strong,
.expert-seal small {
  display: block;
}

.expert-seal strong {
  font-size: .8rem;
}

.expert-seal small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: .67rem;
  line-height: 1.35;
}

.visual-card--stat {
  z-index: 2;
  right: -24px;
  bottom: 44px;
  width: 132px;
  padding: 18px;
  background: var(--plum);
  border-radius: 20px;
  color: var(--white);
  transform: rotate(3deg);
}

.visual-card--stat strong,
.visual-card--stat span {
  display: block;
}

.visual-card--stat strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.visual-card--stat span {
  margin-top: 6px;
  font-size: .7rem;
  line-height: 1.3;
}

.visual-card--tag {
  z-index: 2;
  bottom: 30px;
  left: -28px;
  width: 150px;
  padding: 17px;
  border-radius: 18px;
}

.visual-card--tag span {
  display: block;
  padding: 5px 8px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 6px;
  font-size: .65rem;
}

.visual-card--tag span + span {
  margin-top: 5px;
}

.search-band {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.search-band__inner {
  display: grid;
  padding: 32px 38px;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 10px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.search-band .eyebrow {
  margin-bottom: 5px;
}

.search-band h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.site-search {
  display: grid;
  padding: 6px 7px 6px 19px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  background: var(--sand);
  border: 1px solid transparent;
  border-radius: 13px;
}

.site-search:focus-within {
  border-color: var(--teal);
}

.site-search input,
.mini-search input,
.newsletter__form input {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.site-search input {
  height: 46px;
}

.site-search button {
  padding: 13px 22px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: .84rem;
  font-weight: 700;
}

.quick-links {
  display: flex;
  grid-column: 2;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: .72rem;
}

.quick-links button {
  padding: 2px 8px;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin-bottom: 17px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.section-heading > p:last-child,
.section-heading--split > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 70px;
}

.section-heading--split h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin-bottom: 5px;
}

.section-heading--inline {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading--inline h2 {
  margin-bottom: 0;
}

.patient-path {
  padding-top: 132px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.path-card {
  position: relative;
  min-height: 340px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.path-card:hover {
  border-color: rgba(145, 76, 114, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.path-card__number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: var(--sand-deep);
  font-family: var(--serif);
  font-size: 2.4rem;
}

.path-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 58px;
  color: var(--plum);
  place-items: center;
  background: var(--plum-pale);
  border-radius: 17px;
}

.path-card__icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.path-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.path-card p {
  color: var(--ink-soft);
  font-size: .9rem;
}

.path-card a,
.news-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum-dark);
  font-size: .84rem;
  font-weight: 750;
}

.path-card a span,
.news-card a span,
.text-link span {
  transition: transform .2s ease;
}

.path-card a:hover span,
.news-card a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.medical-note {
  display: flex;
  margin-top: 28px;
  padding: 17px 22px;
  align-items: flex-start;
  gap: 13px;
  color: var(--ink-soft);
  background: var(--peach-pale);
  border-left: 3px solid var(--peach);
  border-radius: 0 12px 12px 0;
  font-size: .82rem;
}

.medical-note > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--white);
  place-items: center;
  background: var(--plum);
  border-radius: 50%;
  font-family: var(--serif);
  font-weight: 700;
}

.medical-note p {
  margin: 0;
}

.directory {
  background: var(--sand);
}

.directory-toolbar {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.filter-groups {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tabs {
  display: flex;
  padding: 5px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.filter-tabs button {
  padding: 10px 16px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 650;
}

.filter-tabs button.is-active {
  color: var(--white);
  background: var(--ink);
}

.filter-tabs--type button.is-active {
  background: var(--teal-dark);
}

.mini-search {
  display: flex;
  width: 230px;
  height: 44px;
  padding: 0 15px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.mini-search input {
  width: 100%;
  font-size: .8rem;
}

.directory-results {
  display: flex;
  margin: -8px 0 18px;
  padding: 13px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(238, 243, 248, .82);
  border: 1px solid rgba(70, 95, 134, .2);
  border-radius: 2px 16px 2px 2px;
}

.directory-results[hidden] {
  display: none;
}

.directory-results p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
}

.directory-results strong {
  color: var(--ink);
}

.directory-results span {
  color: var(--teal-dark);
  font-weight: 800;
}

.directory-results button {
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
  border: 0;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.topic-card {
  display: flex;
  position: relative;
  min-height: 300px;
  padding: 26px;
  flex-direction: column;
  --topic-accent: var(--teal-dark);
  --topic-soft: var(--teal-pale);
  --topic-line: rgba(70, 95, 134, .28);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 3px 28px 3px 3px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.topic-card:hover {
  z-index: 2;
  border-color: var(--topic-line);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.topic-card[data-agent-type="virus"] {
  --topic-accent: #465f86;
  --topic-soft: #eef3f8;
  --topic-line: rgba(70, 95, 134, .3);
}

.topic-card[data-agent-type="bacterie"] {
  --topic-accent: #8f4d3d;
  --topic-soft: #f8e8df;
  --topic-line: rgba(143, 77, 61, .28);
}

.topic-card[data-agent-type="parasite"] {
  --topic-accent: #4e7048;
  --topic-soft: #e3f1df;
  --topic-line: rgba(78, 112, 72, .28);
}

.topic-card[data-agent-type="champignon"] {
  --topic-accent: #7b587f;
  --topic-soft: #f1e8f2;
  --topic-line: rgba(123, 88, 127, .28);
}

.topic-card[data-agent-type="autre"] {
  --topic-accent: #59676d;
  --topic-soft: #e9eeef;
  --topic-line: rgba(89, 103, 109, .28);
}

.topic-card[hidden] {
  display: none;
}

.topic-card.is-search-result {
  border-color: var(--topic-line);
  box-shadow: 0 18px 42px rgba(25, 48, 57, .1);
}

.topic-card.is-search-result::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: var(--topic-accent);
  border-radius: 3px 28px 0 0;
}

.topic-card--featured {
  color: var(--white);
  background: var(--teal-dark);
}

.topic-card__type {
  color: var(--topic-accent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.topic-card--featured .topic-card__type {
  color: #bce0d9;
}

.topic-card__symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 22px 0 30px;
  color: var(--teal-dark);
  place-items: center;
  background: var(--teal-pale);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .84rem;
  font-weight: 700;
}

.topic-card--featured .topic-card__symbol {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.topic-card__science {
  display: block;
  position: relative;
  height: 118px;
  margin: 18px 0 22px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .82) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .82) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, .78), transparent 35%),
    var(--topic-soft);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border: 1px solid var(--topic-line);
  border-radius: 2px 20px 2px 2px;
}

.topic-card__science::after {
  position: absolute;
  inset: 12px 12px 12px 42px;
  content: "";
  border: 1px solid var(--topic-line);
  border-radius: 2px 14px 2px 2px;
  pointer-events: none;
}

.topic-card__science img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px 34px 13px 72px;
  filter: saturate(.92) contrast(1.04) drop-shadow(0 8px 10px rgba(23, 33, 38, .09));
  transition: transform .35s ease;
}

.topic-card:hover .topic-card__science img {
  transform: scale(1.045);
}

.topic-card__science strong {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 100%;
  display: grid;
  align-items: end;
  padding: 0 0 10px 11px;
  color: var(--topic-accent);
  background: rgba(255, 255, 255, .46);
  border-right: 1px solid var(--topic-line);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.topic-card--featured .topic-card__science {
  border: 1px solid rgba(255, 255, 255, .13);
}

.topic-card h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.topic-card p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: .8rem;
}

.topic-card--featured p {
  color: rgba(255, 255, 255, .7);
}

.topic-card__meta {
  display: flex;
  margin-top: auto;
  gap: 5px;
}

.tag {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 700;
}

.tag--patient {
  color: var(--plum-dark);
  background: var(--plum-pale);
}

.topic-card--featured .tag {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.topic-card__arrow {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 1.1rem;
}

.empty-state {
  padding: 30px;
  text-align: center;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.documents-callout {
  display: flex;
  margin-top: 54px;
  padding: 28px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
}

.documents-callout .eyebrow {
  margin-bottom: 8px;
}

.documents-callout h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.documents-callout p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: .82rem;
  font-weight: 750;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--disabled {
  cursor: default;
}

.button--disabled:hover {
  transform: none;
}

.button--primary {
  color: var(--white);
  background: var(--teal-dark);
}

.button--primary:hover {
  background: var(--teal);
}

.button--secondary {
  color: var(--ink);
  border-color: #b8c4c2;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.documents-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 90% 15%, rgba(106, 130, 168, .11), transparent 28%),
    linear-gradient(135deg, var(--paper), #f4f7f8);
  border-bottom: 1px solid var(--line);
}

.documents-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .42fr);
  align-items: end;
  gap: 72px;
}

.documents-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.documents-hero p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.documents-hero__note {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 24px 3px 3px;
  box-shadow: var(--shadow-soft);
}

.documents-hero__note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.documents-hero__note p {
  font-size: .84rem;
  line-height: 1.55;
}

.documents-library {
  background: var(--sand);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.document-card {
  display: flex;
  min-height: 300px;
  padding: 26px;
  flex-direction: column;
  --document-accent: var(--teal-dark);
  --document-soft: var(--teal-pale);
  --document-line: rgba(70, 95, 134, .28);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 3px 28px 3px 3px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.document-card:hover {
  border-color: var(--document-line);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.document-card--virus {
  --document-accent: #465f86;
  --document-soft: #eef3f8;
  --document-line: rgba(70, 95, 134, .28);
}

.document-card--bacterie {
  --document-accent: #8f4d3d;
  --document-soft: #f8e8df;
  --document-line: rgba(143, 77, 61, .28);
}

.document-card--prevention {
  --document-accent: #7d5d76;
  --document-soft: #f6edf4;
  --document-line: rgba(125, 93, 118, .28);
}

.document-card--diagnostic {
  --document-accent: #126a70;
  --document-soft: #e9f4f3;
  --document-line: rgba(18, 106, 112, .28);
}

.document-card__type {
  color: var(--document-accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.document-card__code {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 30px 0 28px;
  color: var(--document-accent);
  place-items: center;
  background: var(--document-soft);
  border: 1px solid var(--document-line);
  border-radius: 2px 18px 2px 2px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.document-card h3 {
  margin-bottom: 9px;
  font-size: 1.22rem;
}

.document-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: .86rem;
}

.document-card .button {
  width: 100%;
  margin-top: auto;
}

.documents-related {
  padding-top: 0;
}

.related-documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-documents article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
}

.related-documents article > span {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 5px 9px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 6px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.related-documents h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.related-documents p {
  color: var(--ink-soft);
  font-size: .88rem;
}

.prevention {
  padding: 0;
  color: var(--white);
  background: var(--teal-dark);
}

.prevention__grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 100px;
}

.prevention__visual {
  position: relative;
  align-self: stretch;
}

.prevention__circle {
  position: absolute;
  top: 60px;
  right: 10px;
  bottom: 0;
  left: -40px;
  overflow: hidden;
  margin: 0;
  background: var(--plum);
  border-radius: 220px 220px 0 0;
}

.prevention__circle::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(23, 47, 57, .72));
}

.prevention__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.prevention__circle figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 36px;
  left: 38px;
}

.prevention__circle figcaption span,
.prevention__circle figcaption strong {
  display: block;
}

.prevention__circle figcaption span {
  margin-bottom: 5px;
  color: var(--peach);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.prevention__circle figcaption strong {
  max-width: 280px;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.12;
}

.prevention__badge {
  display: flex;
  position: absolute;
  z-index: 2;
  right: -20px;
  bottom: 55px;
  width: 125px;
  height: 125px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--peach);
  border: 8px solid rgba(23, 93, 99, .8);
  border-radius: 50%;
  transform: rotate(6deg);
}

.prevention__badge strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.prevention__badge span {
  margin-top: 5px;
  font-size: .7rem;
}

.prevention__copy {
  max-width: 580px;
  padding: 90px 0;
}

.prevention__copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
}

.prevention__copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
  font-size: 1.03rem;
}

.prevention-topics {
  display: grid;
  margin: 30px 0 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.prevention-topics button {
  display: flex;
  min-height: 52px;
  padding: 12px 15px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 2px 14px 2px 2px;
  font-size: .82rem;
  font-weight: 760;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.prevention-topics button::after {
  content: "→";
  color: var(--peach);
  font-weight: 900;
}

.prevention-topics button:hover,
.prevention-topics button:focus-visible {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3);
  outline: none;
  transform: translateY(-2px);
}

.pro-space {
  padding-top: 138px;
  background: var(--white);
}

.pro-feature-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  gap: 17px;
}

.pro-feature {
  display: flex;
  position: relative;
  min-height: 350px;
  padding: 30px;
  flex-direction: column;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
  transition: transform .22s ease, box-shadow .22s ease;
}

a.pro-feature:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.pro-feature--large {
  display: grid;
  padding: 40px;
  grid-template-columns: 1fr 145px;
  gap: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .1), transparent 25%),
    var(--ink);
}

.pro-kicker {
  margin-bottom: 50px;
  color: var(--teal);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pro-feature--large .pro-kicker {
  display: block;
  margin-bottom: 42px;
  color: #bce0d9;
}

.pro-feature h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.pro-feature--large h3 {
  max-width: 460px;
  font-size: 2rem;
}

.pro-feature p {
  color: var(--ink-soft);
  font-size: .85rem;
}

.pro-feature--large p {
  max-width: 480px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .67);
}

.pro-feature--large .button {
  background: var(--teal);
}

.pro-feature__status {
  display: inline-flex;
  margin-top: 2px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .88);
  font-size: .82rem;
  font-weight: 800;
}

.pro-feature__status > span {
  transition: transform .2s ease;
}

a.pro-feature--large:hover .pro-feature__status > span {
  transform: translateX(3px);
}

.pro-feature__date {
  display: flex;
  width: 145px;
  height: 175px;
  padding: 19px;
  align-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--peach);
  border-radius: 70px 70px 18px 18px;
}

.pro-feature__date small,
.pro-feature__date span {
  font-size: .65rem;
}

.pro-feature__date strong {
  margin: 7px 0 2px;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: .85;
}

.pro-feature__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 32px;
  color: var(--white);
  place-items: center;
  background: var(--teal);
  border-radius: 14px;
  font-size: .9rem;
}

.pro-feature .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: .82rem;
  font-weight: 750;
}

.text-link--muted {
  color: var(--ink-soft);
  opacity: .76;
}

.news {
  background: var(--sand);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 17px;
}

.news-card {
  min-height: 390px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
}

.news-card:not(.news-card--lead) {
  display: flex;
  align-items: flex-end;
}

.news-card--lead {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
}

.news-card__visual {
  position: relative;
  overflow: hidden;
  background: var(--teal-dark);
}

.news-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(23, 93, 99, .04), rgba(23, 47, 57, .78));
}

.news-card__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(.7);
}

.science-label {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding-top: 12px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .45);
}

.science-label strong {
  display: block;
}

.science-label strong {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.news-card__content {
  padding: 30px;
}

.news-card__meta {
  display: flex;
  margin-bottom: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .67rem;
}

.news-card__meta span {
  padding: 4px 8px;
  color: var(--plum-dark);
  background: var(--plum-pale);
  border-radius: 5px;
  font-weight: 700;
}

.news-card h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.news-card p {
  color: var(--ink-soft);
  font-size: .84rem;
}

.news-card:not(.news-card--lead) .news-card__meta {
  margin-bottom: 85px;
}

.association {
  background: var(--paper);
}

.association__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 100px;
}

.association__copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
}

.association__copy > p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.association__actions {
  display: flex;
  margin-top: 32px;
  gap: 11px;
}

#recherche,
#professionnels,
#comprendre,
#annuaire,
#prevenir,
#actualites,
#association,
#documents,
#statuts-association,
#adhesion,
#equipe,
#equipe-carousel {
  scroll-margin-top: 120px;
}

.association-proofnav {
  margin: 64px 0 42px;
}

.proofnav {
  display: flex;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-radius: 3px 42px 3px 3px;
}

.proofnav__item {
  display: flex;
  min-height: 66px;
  padding: 14px 28px;
  flex: 1 1 0;
  align-items: baseline;
  gap: 7px;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: .06em;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.proofnav__item + .proofnav__item {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.proofnav__item:hover,
.proofnav__item:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  outline: none;
}

.proofnav__item strong {
  color: var(--peach);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0;
}

.proofnav__item span {
  font-size: .72rem;
  font-weight: 700;
}

.proofnav__item small {
  margin-left: auto;
  color: rgba(255, 255, 255, .62);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.disciplines-panel {
  display: grid;
  padding: 28px;
  grid-template-columns: minmax(230px, .65fr) 1.35fr;
  gap: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 18px 3px;
  box-shadow: 0 20px 46px rgba(25, 48, 57, .08);
}

.disciplines-panel[hidden] {
  display: none;
}

.disciplines-panel h3 {
  margin: 0;
  font-size: 1.55rem;
}

.disciplines-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.disciplines-panel li {
  padding: 14px 16px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.disciplines-panel li strong,
.disciplines-panel li span {
  display: block;
}

.disciplines-panel li strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: .82rem;
}

.disciplines-panel li span {
  color: var(--ink-soft);
  font-size: .72rem;
  line-height: 1.45;
}

.is-proof-highlighted {
  animation: proof-highlight 1.3s ease;
}

@keyframes proof-highlight {
  0%,
  100% {
    box-shadow: none;
  }
  35% {
    box-shadow: 0 0 0 5px rgba(238, 163, 125, .34), 0 20px 50px rgba(25, 48, 57, .1);
  }
}

.association-infographic {
  position: relative;
  padding: 30px 32px 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 34px 3px 3px;
  box-shadow: var(--shadow-soft);
}

.association-infographic::after {
  position: absolute;
  top: -62px;
  right: -62px;
  width: 160px;
  height: 160px;
  content: "";
  border: 30px solid rgba(38, 123, 128, .055);
  border-radius: 50%;
}

.association-infographic__heading {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.association-infographic__heading small {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.association-infographic__heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.association-infographic__items {
  display: grid;
  position: relative;
  z-index: 1;
  gap: 0;
}

.association-infographic__items::before {
  position: absolute;
  top: 45px;
  bottom: 45px;
  left: 35px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--plum), var(--teal), var(--signal));
}

.association-infographic__item {
  display: grid;
  position: relative;
  z-index: 1;
  min-height: 104px;
  padding: 10px 0;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
}

.association-infographic__item + .association-infographic__item {
  border-top: 1px solid var(--line);
}

.association-infographic__visual {
  display: flex;
  position: relative;
  width: 72px;
  height: 72px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--plum);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(145, 76, 114, .22);
}

.association-infographic__item--status .association-infographic__visual {
  color: var(--ink);
  background: var(--peach);
  box-shadow: 0 0 0 1px rgba(230, 173, 145, .35);
}

.association-infographic__item--expertise .association-infographic__visual {
  background: var(--teal-dark);
  box-shadow: 0 0 0 1px rgba(23, 93, 99, .28);
}

.association-infographic__visual strong,
.association-infographic__visual small {
  display: block;
  line-height: 1;
}

.association-infographic__visual strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
}

.association-infographic__item--status .association-infographic__visual strong {
  font-size: 1.13rem;
}

.association-infographic__visual small {
  margin-top: 3px;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.association-infographic__visual svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.association-infographic__item b,
.association-infographic__item p {
  display: block;
}

.association-infographic__item b {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.association-infographic__item p {
  max-width: 255px;
  margin: 0;
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1.4;
}

.statutory-missions {
  display: grid;
  margin-top: 64px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(236, 244, 245, .92), transparent 44%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 34px 3px 3px;
  box-shadow: 0 18px 45px rgba(25, 48, 57, .055);
  grid-template-columns: .58fr 1.42fr;
  gap: 34px;
}

.statutory-missions__intro {
  padding: 6px 18px 6px 0;
  border-right: 1px solid rgba(35, 60, 68, .14);
}

.statutory-missions__intro p {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.statutory-missions__intro h3 {
  max-width: 320px;
  margin: 0 0 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: .96;
}

.statutory-missions__intro span {
  display: block;
  max-width: 360px;
  color: var(--ink-soft);
  font-size: .93rem;
  line-height: 1.65;
}

.statutory-missions__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
  counter-reset: statutory-mission;
}

.statutory-missions__list li {
  position: relative;
  counter-increment: statutory-mission;
  padding: 16px 20px 16px 58px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(35, 60, 68, .11);
  border-radius: 2px 18px 2px 2px;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.58;
}

.statutory-missions__list li::before {
  position: absolute;
  top: 17px;
  left: 20px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  content: counter(statutory-mission, decimal-leading-zero);
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: .6rem;
  font-weight: 850;
}

.statutory-missions__list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.07rem;
  font-weight: 600;
  line-height: 1.08;
}

.statutory-missions__list span {
  display: block;
  color: var(--ink-soft);
  font-size: .76rem;
  line-height: 1.55;
}

.association-join {
  display: grid;
  margin-top: 24px;
  padding: 24px 28px;
  align-items: center;
  background:
    linear-gradient(100deg, rgba(244, 234, 240, .92), transparent 48%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 28px 3px 3px;
  box-shadow: 0 16px 38px rgba(25, 48, 57, .055);
  grid-template-columns: .78fr 1.22fr;
  gap: 32px;
}

.association-join .eyebrow {
  margin-bottom: 10px;
}

.association-join h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
}

.association-join div > span {
  color: var(--ink-soft);
  font-size: .9rem;
}

.association-join__link {
  display: grid;
  padding: 18px 20px;
  color: var(--white);
  background: var(--plum);
  border-radius: 3px 22px 3px 3px;
  gap: 6px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.association-join__link:hover {
  background: var(--plum-dark);
  transform: translateY(-2px);
}

.association-join__link strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.association-join__link span {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, .78);
  font-size: .76rem;
  line-height: 1.45;
}

.team-showcase {
  position: relative;
  margin-top: 100px;
  padding: 34px 38px 30px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(244, 234, 240, .72), transparent 45%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 46px 3px 3px;
  box-shadow: 0 22px 55px rgba(25, 48, 57, .07);
}

.team-showcase::after {
  position: absolute;
  top: -85px;
  right: -85px;
  width: 190px;
  height: 190px;
  content: "";
  border: 32px solid rgba(38, 123, 128, .07);
  border-radius: 50%;
  pointer-events: none;
}

.team-showcase__heading {
  display: flex;
  margin-bottom: 36px;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}

.team-showcase__heading > div:first-child {
  max-width: 760px;
}

.team-showcase__heading h2 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
}

.team-showcase__heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.carousel-console {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.carousel-status {
  display: flex;
  margin: 0;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.carousel-status strong {
  color: var(--plum-dark);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.carousel-status span {
  color: var(--ink-soft);
  font-size: .65rem;
}

.carousel-controls {
  display: flex;
  gap: 9px;
}

.carousel-controls button {
  display: grid;
  width: 47px;
  height: 47px;
  padding: 0;
  place-items: center;
  background: var(--white);
  border: 1px solid #b8c4c2;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.carousel-controls .carousel-toggle {
  color: var(--white);
  background: var(--plum);
  border-color: var(--plum);
  font-size: .82rem;
}

.carousel-controls .carousel-toggle[aria-pressed="true"] {
  color: var(--plum-dark);
  background: var(--plum-pale);
  border-color: rgba(145, 76, 114, .3);
}

.team-carousel {
  display: flex;
  padding-bottom: 18px;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--plum) var(--sand-deep);
  scrollbar-width: thin;
  counter-reset: member;
}

.team-carousel::-webkit-scrollbar {
  height: 6px;
}

.team-carousel::-webkit-scrollbar-track {
  background: var(--sand-deep);
}

.team-carousel::-webkit-scrollbar-thumb {
  background: var(--plum);
  border-radius: 6px;
}

.member-card {
  position: relative;
  min-width: calc((100% - 48px) / 4);
  max-width: calc((100% - 48px) / 4);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px 26px 3px 3px;
  scroll-snap-align: start;
  counter-increment: member;
}

.member-card::before {
  display: grid;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  width: 34px;
  height: 27px;
  content: counter(member, decimal-leading-zero);
  color: var(--white);
  place-items: center;
  background: var(--plum);
  box-shadow: 0 5px 15px rgba(23, 47, 57, .18);
  font-family: var(--serif);
  font-size: .72rem;
  font-weight: 600;
}

.member-card:nth-child(even)::before {
  background: var(--teal-dark);
}

.member-card img {
  width: 100%;
  height: clamp(270px, 24vw, 315px);
  padding: 20px 20px 8px;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(145deg, rgba(230, 241, 239, .8), rgba(243, 238, 232, .65));
  filter: saturate(.88);
}

.member-card:nth-child(even) img {
  background:
    linear-gradient(145deg, rgba(244, 234, 240, .88), rgba(243, 238, 232, .65));
}

.member-card > div {
  min-height: 172px;
  padding: 19px;
  border-top: 4px solid var(--plum);
}

.member-card:nth-child(even) > div {
  border-top-color: var(--teal);
}

.member-card h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.member-card p {
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: .77rem;
  font-weight: 750;
}

.member-card small,
.member-card span {
  display: block;
}

.member-card small {
  color: var(--ink-soft);
  font-size: .7rem;
  line-height: 1.45;
}

.member-card span {
  margin-top: 17px;
  padding-top: 13px;
  color: var(--plum-dark);
  border-top: 1px solid var(--line);
  font-size: .67rem;
  font-weight: 700;
}

.carousel-progress {
  height: 3px;
  margin-top: 2px;
  overflow: hidden;
  background: var(--sand-deep);
}

.carousel-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, var(--plum), var(--teal));
  transform-origin: left;
  transition: width .35s ease;
}

.team-showcase.is-paused .carousel-progress span {
  background: var(--ink-soft);
}

.team-showcase__footer {
  display: flex;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.team-showcase__footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .67rem;
}

.newsletter {
  padding: 80px 0;
  color: var(--white);
  background: var(--plum-dark);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: center;
  gap: 80px;
}

.newsletter h2 {
  margin-bottom: 10px;
  font-size: 2.5rem;
}

.newsletter p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .7);
}

.newsletter__form {
  display: grid;
  padding: 6px;
  grid-template-columns: 1fr auto;
  background: var(--white);
  border-radius: 12px;
}

.newsletter__form input {
  min-height: 50px;
  padding: 0 16px;
}

.newsletter__form button {
  padding: 0 22px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: .8rem;
  font-weight: 700;
}

.site-footer {
  padding: 76px 0 24px;
  color: var(--white);
  background: #10262e;
}

.footer__grid {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 70px;
}

.brand--footer .brand__text small,
.footer__grid > div:first-child p {
  color: rgba(255, 255, 255, .52);
}

.footer__grid > div:first-child p {
  max-width: 270px;
  margin-top: 22px;
  font-size: .78rem;
}

.footer__grid h2 {
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer__grid > div:not(:first-child) a,
.footer__grid > div:not(:first-child) span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
}

.footer__grid > div:not(:first-child) span {
  opacity: .72;
}

.footer__grid a:hover {
  color: var(--white);
}

.footer__bottom {
  display: grid;
  padding-top: 22px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .45);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .65rem;
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom div {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer__bottom a {
  color: rgba(255, 255, 255, .62);
}

.footer__bottom a:hover {
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 0s;
}

.reveal--delay-2 {
  transition-delay: 0s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

/* Detail page */

.detail-page {
  --agent-detail-bg: var(--sand);
  --agent-detail-soft: var(--teal-pale);
  --agent-detail-accent: var(--blue);
  --agent-detail-accent-dark: var(--teal-dark);
  --agent-detail-shadow: rgba(23, 93, 99, .18);
  background: var(--white);
}

.detail-page[data-agent-type="virus"] {
  --agent-detail-bg: #eef3f8;
  --agent-detail-soft: #e8f0f8;
  --agent-detail-accent: #5f7da9;
  --agent-detail-accent-dark: #4b6690;
  --agent-detail-shadow: rgba(75, 102, 144, .23);
}

.detail-page[data-agent-type="bacterie"] {
  --agent-detail-bg: #f6efeb;
  --agent-detail-soft: #f8e8df;
  --agent-detail-accent: #b66b55;
  --agent-detail-accent-dark: #8f4d3d;
  --agent-detail-shadow: rgba(143, 77, 61, .22);
}

.detail-page[data-agent-type="parasite"] {
  --agent-detail-bg: #edf3ec;
  --agent-detail-soft: #e3f1df;
  --agent-detail-accent: #6f8b61;
  --agent-detail-accent-dark: #4e7048;
  --agent-detail-shadow: rgba(78, 112, 72, .22);
}

.detail-page[data-agent-type="champignon"] {
  --agent-detail-bg: #f4eef5;
  --agent-detail-soft: #f1e8f2;
  --agent-detail-accent: #94709a;
  --agent-detail-accent-dark: #68486d;
  --agent-detail-shadow: rgba(104, 72, 109, .22);
}

.detail-page[data-agent-type="autre"] {
  --agent-detail-bg: #eff2f2;
  --agent-detail-soft: #e9eeef;
  --agent-detail-accent: #708087;
  --agent-detail-accent-dark: #46545a;
  --agent-detail-shadow: rgba(70, 84, 90, .2);
}

.breadcrumb {
  display: flex;
  padding-top: 28px;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: .72rem;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.detail-hero {
  padding: 66px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--agent-detail-accent) 18%, transparent), transparent 29%),
    var(--agent-detail-bg);
}

.detail-hero__grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 80px;
}

.detail-hero__grid > * {
  min-width: 0;
}

.detail-hero__meta {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 14px;
  color: var(--ink-soft);
  font-size: .7rem;
}

.detail-hero h1 {
  margin-bottom: 19px;
  overflow-wrap: anywhere;
  font-size: clamp(3.5rem, 6.2vw, 5.6rem);
}

.detail-hero h1 span {
  color: var(--agent-detail-accent);
}

.detail-hero p {
  max-width: 700px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.detail-audience-switch {
  display: grid;
  max-width: 660px;
  padding: 5px;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.detail-audience-switch button {
  padding: 13px 17px;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.detail-audience-switch button.is-active {
  color: var(--white);
  background: var(--plum);
  box-shadow: 0 8px 20px rgba(112, 55, 84, .2);
}

.detail-audience-switch button:nth-child(2).is-active {
  background: var(--agent-detail-accent-dark);
  box-shadow: 0 8px 20px var(--agent-detail-shadow);
}

.detail-audience-switch span,
.detail-audience-switch small {
  display: block;
}

.detail-audience-switch span {
  font-size: .82rem;
  font-weight: 750;
}

.detail-audience-switch small {
  margin-top: 2px;
  opacity: .68;
  font-size: .67rem;
}

.detail-hero__media {
  position: relative;
  width: 330px;
  margin: 0;
}

.detail-hero__media::before {
  position: absolute;
  z-index: 0;
  top: 18px;
  right: -18px;
  bottom: 54px;
  left: 18px;
  content: "";
  background: var(--agent-detail-accent);
}

.detail-hero__media > div {
  position: relative;
  z-index: 1;
  height: 278px;
  overflow: hidden;
  isolation: isolate;
  background: var(--agent-detail-soft);
  border: 8px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.detail-hero__media > div::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(23, 47, 57, .62));
}

.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(.75);
}

.detail-hero__media--drawing > div {
  background:
    radial-gradient(circle at 72% 28%, rgba(189, 143, 171, .22), transparent 32%),
    var(--agent-detail-soft);
}

.detail-hero__media--drawing > div::after {
  background: linear-gradient(180deg, transparent 45%, rgba(23, 47, 57, .62));
}

.detail-hero__media--drawing .detail-hero__drawing {
  position: relative;
  z-index: 2;
  padding: 28px 44px 46px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(23, 47, 57, .2));
}

.detail-hero__media > div > .detail-hero__code {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
}

.detail-hero__credit {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.detail-hero__credit a {
  color: inherit;
  text-decoration-color: rgba(70, 95, 134, .35);
  text-underline-offset: 3px;
}

.detail-content {
  padding: 90px 0 120px;
}

.detail-content--pro {
  background: #f2f7f6;
}

.detail-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: start;
  gap: 90px;
}

.detail-summary {
  position: sticky;
  top: 120px;
  padding: 29px;
  background: var(--plum-pale);
  border-radius: 18px;
}

.detail-summary h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}

.detail-summary ul {
  margin: 0 0 27px;
  padding: 0;
  list-style: none;
}

.detail-summary li {
  position: relative;
  padding: 13px 0 13px 23px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(145, 76, 114, .14);
  font-size: .82rem;
}

.detail-summary li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--plum);
  border-radius: 50%;
}

.detail-summary .button {
  width: 100%;
}

.detail-summary--pro {
  background: var(--ink);
}

.detail-summary--pro h2 {
  color: var(--white);
}

.detail-summary--pro > .resource-link {
  display: flex;
  padding: 13px 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: .77rem;
}

.detail-summary--pro > .resource-link--pending {
  opacity: .72;
}

.detail-summary--pro > .resource-link span {
  padding: 3px 6px;
  color: #bce0d9;
  background: rgba(255, 255, 255, .08);
  border-radius: 4px;
  font-size: .58rem;
}

.detail-article {
  max-width: 760px;
}

.detail-article > section {
  position: relative;
  padding: 0 0 60px 70px;
  border-left: 1px solid var(--line);
}

.detail-article > section:last-of-type {
  border-left-color: transparent;
}

.detail-section-number {
  display: grid;
  position: absolute;
  top: -7px;
  left: -24px;
  width: 48px;
  height: 48px;
  color: var(--plum);
  place-items: center;
  background: var(--plum-pale);
  border: 7px solid var(--white);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
}

.detail-content--pro .detail-section-number {
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-color: #f2f7f6;
}

.detail-article h2 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.detail-article p {
  color: var(--ink-soft);
}

.simple-actions {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.simple-actions div {
  padding: 18px;
  background: var(--sand);
  border-radius: 12px;
}

.simple-actions span {
  display: grid;
  width: 29px;
  height: 29px;
  margin-bottom: 18px;
  color: var(--white);
  place-items: center;
  background: var(--plum);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 750;
}

.simple-actions p {
  margin: 0;
  font-size: .74rem;
}

.detail-article .medical-note {
  margin-top: 26px;
}

.detail-extra {
  position: relative;
  padding: 0 0 64px 70px;
  border-left: 1px solid var(--line);
}

.detail-extra h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.detail-extra__intro {
  margin-bottom: 24px;
}

.detail-card-grid {
  display: grid;
  margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.detail-info-card,
.protocol-card {
  padding: 22px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.detail-info-card h3,
.protocol-card h3,
.resource-group h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 800;
}

.detail-info-card ul,
.protocol-card ul {
  display: grid;
  margin: 0;
  padding-left: 18px;
  gap: 8px;
  font-size: .82rem;
  line-height: 1.55;
}

.protocol-stack {
  display: grid;
  margin-top: 24px;
  gap: 14px;
}

.protocol-card--training {
  margin-top: 14px;
  background: var(--teal-pale);
  border-color: #cbdedb;
}

.resource-group {
  margin-top: 28px;
}

.resource-links {
  display: grid;
  gap: 9px;
}

.resource-links a,
.resource-links span {
  display: flex;
  padding: 13px 15px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 750;
}

.resource-links small {
  max-width: 44%;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
}

.detail-content--pro .detail-extra {
  border-left-color: #dce8e6;
}

.detail-content--pro .resource-links a,
.detail-content--pro .resource-links span {
  background: var(--white);
  border-color: #d8e5e2;
}

.article-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.article-heading > div {
  position: relative;
}

.updated-label {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  border-radius: 6px;
  font-size: .62rem;
  font-weight: 700;
}

.clinical-placeholder {
  display: flex;
  margin-top: 30px;
  padding: 25px;
  flex-direction: column;
  align-items: center;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #cbdedb;
  border-radius: 14px;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}

.clinical-placeholder > span {
  padding: 10px 15px;
  background: var(--teal-pale);
  border-radius: 8px;
}

.clinical-placeholder i {
  padding: 8px;
  font-style: normal;
}

.clinical-placeholder div {
  display: flex;
  gap: 10px;
}

.clinical-placeholder div span {
  padding: 10px 14px;
  border: 1px solid #cbdedb;
  border-radius: 8px;
}

.references-list {
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: .82rem;
}

.references-list li {
  padding: 7px 0;
}

.review-card {
  display: flex;
  padding: 24px;
  align-items: center;
  gap: 15px;
  background: var(--white);
  border: 1px solid #cbdedb;
  border-radius: 14px;
}

.review-card strong {
  font-size: .86rem;
}

.review-card p {
  margin: 4px 0 0;
  font-size: .72rem;
}

.footer__bottom--detail {
  padding-bottom: 0;
}

@media (max-width: 1050px) {
  .header__inner {
    gap: 24px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: .82rem;
  }

  .hot-news__card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .hot-news__actions {
    grid-column: 2;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 28px 24px 4px;
    background: transparent;
    border-left: 0;
  }

  .hero__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .visual-card--tag {
    left: 0;
  }

  .visual-card--stat {
    right: 0;
  }

  .pro-feature-grid,
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pro-feature--large,
  .news-card--lead {
    grid-column: 1 / -1;
  }

  .news-card--lead {
    min-height: 330px;
  }

  .detail-layout {
    grid-template-columns: 290px 1fr;
    gap: 55px;
  }

  .resource-links a,
  .resource-links span {
    flex-direction: column;
    gap: 5px;
  }

  .resource-links small {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 840px) {
  .section {
    padding: 82px 0;
  }

  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .topbar__inner {
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
    z-index: 6;
    width: 42px;
    height: 42px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-open .site-header {
    background: var(--paper);
    border-color: var(--line);
    box-shadow: 0 18px 45px rgba(25, 48, 57, .12);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-open .menu-toggle > span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__inner {
    grid-template-columns: 1fr auto auto;
    min-height: 76px;
  }

  .main-nav {
    display: none;
    position: fixed;
    z-index: 5;
    top: 113px;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(100dvh - 113px);
    padding: 35px 28px;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--ink);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(251, 250, 247, .98)),
      var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(25, 48, 57, .14);
    backdrop-filter: blur(18px);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
  }

  .main-nav a::after {
    display: none;
  }

  .hot-news {
    padding-top: 18px;
  }

  .hot-news__card {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
  }

  .hot-news__content {
    padding: 20px 20px 0 0;
  }

  .hot-news__actions {
    grid-column: 1 / -1;
    padding: 0 18px 18px;
  }

  .statutes-summary__card {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .statutes-summary__link {
    white-space: normal;
  }

  .hero {
    padding: 46px 0 100px;
  }

  .hero__grid,
  .prevention__grid,
  .association__grid,
  .newsletter__inner,
  .detail-hero__grid,
  .detail-layout,
  .documents-hero__grid,
  .related-documents {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 65px;
  }

  .hero h1 {
    font-size: clamp(3rem, 9vw, 4.5rem);
  }

  .hero__visual {
    width: min(100%, 490px);
    margin-inline: auto;
    padding-top: 0;
  }

  .hero-story {
    margin-inline: auto;
  }

  .living-thread__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .living-thread__intro {
    max-width: 360px;
  }

  .search-band__inner {
    grid-template-columns: 1fr;
  }

  .quick-links {
    grid-column: 1;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .path-grid,
  .topic-grid,
  .document-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prevention__grid {
    min-height: 0;
    gap: 0;
  }

  .prevention__visual {
    min-height: 480px;
  }

  .prevention__circle {
    right: 10%;
    left: 10%;
  }

  .prevention__badge {
    right: 7%;
  }

  .prevention__copy {
    max-width: none;
    padding-top: 40px;
  }

  .association__grid,
  .newsletter__inner {
    gap: 55px;
  }

  .statutory-missions {
    grid-template-columns: 1fr;
  }

  .statutory-missions__intro {
    padding-right: 0;
    padding-bottom: 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(35, 60, 68, .14);
  }

  .association-join {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .member-card {
    min-width: calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }

  .footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 45px;
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .footer__bottom div {
    flex-wrap: wrap;
  }

  .detail-hero__grid {
    gap: 40px;
  }

  .detail-hero__media {
    width: min(100%, 420px);
  }

  .detail-layout {
    gap: 55px;
  }

  .detail-summary {
    position: static;
  }

  .clinical-placeholder div {
    flex-direction: column;
  }
}

@media (max-width: 610px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 70px;
  }

  .main-nav {
    top: 70px;
    min-height: calc(100dvh - 70px);
  }

  .brand__mark {
    width: 43px;
    height: 43px;
  }

  .brand__text small {
    display: none;
  }

  .search-trigger {
    width: 38px;
    height: 38px;
  }

  .hot-news__card {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hot-news__marker {
    min-height: 120px;
    margin: 0;
    padding: 18px;
  }

  .hot-news__marker strong {
    font-size: 2.45rem;
  }

  .hot-news__content {
    padding: 0;
  }

  .hot-news__actions {
    padding: 0;
    align-items: stretch;
    flex-direction: column;
  }

  .hot-news__actions .button {
    justify-content: center;
    width: 100%;
  }

  .statutes-summary {
    padding-top: 14px;
  }

  .statutes-summary__card {
    padding: 18px;
    gap: 18px;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero::after {
    display: none;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero-credo {
    margin-top: 24px;
  }

  .hero-story__microbe {
    top: 48px;
    right: -2px;
    width: 102px;
    height: 102px;
    padding: 6px;
  }

  .hero-story__microbe::after {
    inset: 6px;
  }

  .hero-story__microbe span {
    display: none;
  }

  .living-thread__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .living-thread ol {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .living-thread ol::before {
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--teal), var(--plum), var(--signal));
  }

  .living-thread li small {
    max-width: none;
  }

  .audience-choices,
  .path-grid,
  .topic-grid,
  .document-grid,
  .related-documents,
  .pro-feature-grid,
  .news-grid,
  .newsletter__inner,
  .detail-audience-switch,
  .simple-actions,
  .detail-card-grid {
    grid-template-columns: 1fr;
  }

  .directory-results {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero-story {
    padding-right: 14px;
  }

  .hero-story__photo {
    height: 420px;
  }

  .hero-story__scan {
    right: -4px;
    width: 118px;
    height: 96px;
  }

  .hero-story figcaption {
    right: 62px;
    left: -8px;
  }

  .search-band__inner {
    padding: 24px 20px;
  }

  .site-search {
    grid-template-columns: auto 1fr;
  }

  .site-search button {
    grid-column: 1 / -1;
  }

  .quick-links {
    flex-wrap: wrap;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

  .path-card {
    min-height: 310px;
  }

  .directory-toolbar,
  .section-heading--inline {
    align-items: stretch;
    flex-direction: column;
  }

  .documents-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .documents-callout .button {
    width: 100%;
  }

  .documents-hero {
    padding: 50px 0 56px;
  }

  .documents-hero h1 {
    font-size: 3.25rem;
  }

  .filter-tabs {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
  }

  .filter-groups {
    width: 100%;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .mini-search {
    width: 100%;
  }

  .prevention__visual {
    min-height: 410px;
  }

  .prevention__circle {
    top: 45px;
    right: 0;
    left: 0;
  }

  .prevention__badge {
    right: -4px;
    width: 110px;
    height: 110px;
  }

  .prevention-topics {
    grid-template-columns: 1fr;
  }

  .pro-feature-grid,
  .news-grid {
    display: grid;
  }

  .pro-feature--large {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .pro-feature__date {
    display: none;
  }

  .news-card--lead {
    display: block;
  }

  .news-card__visual {
    min-height: 220px;
  }

  .association__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .association-infographic {
    padding: 26px 20px;
  }

  .association-infographic__item {
    grid-template-columns: 66px 1fr;
    gap: 14px;
  }

  .association-infographic__visual {
    width: 66px;
    height: 66px;
  }

  .association-infographic__items::before {
    left: 32px;
  }

  .statutory-missions {
    margin-top: 48px;
    padding: 24px 18px;
  }

  .statutory-missions__list {
    grid-template-columns: 1fr;
  }

  .statutory-missions__list li {
    min-height: 0;
    padding: 54px 18px 18px;
  }

  .statutory-missions__list li::before {
    top: 18px;
    left: 18px;
    width: 27px;
    height: 27px;
  }

  .association-join {
    padding: 22px 18px;
  }

  .association-proofnav {
    margin: 52px 0 34px;
  }

  .proofnav {
    flex-direction: column;
    border-radius: 3px 30px 3px 3px;
  }

  .proofnav__item {
    min-height: auto;
    padding: 15px 18px;
  }

  .proofnav__item + .proofnav__item {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .disciplines-panel {
    padding: 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .disciplines-panel ul {
    grid-template-columns: 1fr;
  }

  .team-showcase {
    margin-top: 75px;
    padding: 28px 18px 24px;
    border-radius: 3px 34px 3px 3px;
  }

  .team-showcase__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .carousel-console {
    width: 100%;
    justify-content: space-between;
  }

  .member-card {
    min-width: 78vw;
    max-width: 78vw;
  }

  .member-card img {
    height: 360px;
    padding: 14px 14px 6px;
  }

  .member-card > div {
    min-height: 165px;
  }

  .team-showcase__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .newsletter__form {
    grid-template-columns: 1fr;
  }

  .newsletter__form button {
    min-height: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer__grid > div:first-child {
    grid-column: 1 / -1;
  }

  .detail-hero {
    padding: 45px 0 60px;
  }

  .detail-hero h1 {
    font-size: clamp(2.2rem, 10vw, 2.65rem);
  }

  .detail-audience-switch button {
    text-align: center;
  }

  .detail-content {
    padding-top: 60px;
  }

  .detail-article > section {
    padding: 0 0 50px 40px;
  }

  .article-heading {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
