:root {
  --ink: #102d34;
  --ink-soft: #486066;
  --forest: #0d625d;
  --forest-dark: #084741;
  --mint: #cce9df;
  --mint-pale: #edf7f3;
  --lime: #c9e76a;
  --paper: #f8faf7;
  --white: #ffffff;
  --line: #d8e3df;
  --radius: 1.5rem;
}

/* WordPress integration */
.screen-reader-text,
.skip-link {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  left: 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
  padding: .75rem 1rem;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: .5rem;
}

.site-header {
  position: sticky;
  top: 0;
}

body.admin-bar .site-header {
  top: 32px;
}

.desktop-nav .menu,
.desktop-nav .sub-menu,
.mobile-menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav .menu {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.5vw, 1.45rem);
}

.desktop-nav .menu > li {
  position: sticky;
  top: 0;
}

.desktop-nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 96px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .015em;
}

.desktop-nav .menu-item-has-children > a::after {
  content: "⌄";
  margin-left: .35rem;
}

.desktop-nav .sub-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: -.75rem;
  min-width: 260px;
  padding: .65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(16, 45, 52, .12);
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: opacity .2s ease, translate .2s ease, visibility .2s ease;
}

.desktop-nav .sub-menu a {
  display: block;
  padding: .7rem .8rem;
  border-radius: .65rem;
  font-size: .87rem;
  line-height: 1.35;
}

.desktop-nav .sub-menu a:hover,
.desktop-nav .sub-menu a:focus-visible {
  background: var(--mint-pale);
}

.desktop-nav li:hover > .sub-menu,
.desktop-nav li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.mobile-menu .menu {
  display: grid;
  gap: .15rem;
}

.mobile-menu .menu a {
  display: block;
  padding: .65rem .25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu .sub-menu {
  list-style: none;
  padding: 0 0 0 .75rem;
}

.site-main {
  min-height: 55vh;
}

.wp-content-shell {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
}

.wp-content-shell > *:first-child {
  margin-top: 0;
}

.wp-content-shell > *:last-child {
  margin-bottom: 0;
}

.entry-content {
  color: var(--ink-soft);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--ink);
  line-height: 1.18;
  margin-top: 2em;
}

.entry-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.entry-content h3 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.entry-content p,
.entry-content li {
  max-width: 78ch;
}

.entry-content a:not(.button) {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

.entry-content img,
.wp-post-image {
  max-width: 100%;
  height: auto;
  border-radius: 1.2rem;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content th,
.entry-content td {
  padding: .8rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.wp-block-quote,
.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--mint-pale);
  border-left: 4px solid var(--forest);
  border-radius: 0 1rem 1rem 0;
}

.wp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.wp-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  transition: translate .2s ease, box-shadow .2s ease;
}

.wp-card:hover {
  translate: 0 -3px;
  box-shadow: 0 16px 40px rgba(16, 45, 52, .09);
}

.wp-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  margin-bottom: 1rem;
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wp-card h2,
.wp-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  line-height: 1.22;
}

.wp-card p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
}

.wp-card-link {
  margin-top: auto;
  color: var(--forest);
  font-weight: 800;
}

.pagination,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 2.6rem;
  min-height: 2.6rem;
  padding: .3rem .7rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  background: var(--white);
}

.page-numbers.current {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.aiddu-list {
  display: grid;
  gap: .8rem;
  margin: 1.5rem 0;
}

.aiddu-list-item {
  display: grid;
  grid-template-columns: minmax(80px, .24fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.aiddu-list-item small,
.aiddu-list-item span {
  color: var(--ink-soft);
}

.aiddu-list-item strong {
  display: block;
  color: var(--ink);
  line-height: 1.3;
}

.aiddu-list-link {
  color: var(--forest);
  font-size: 1.25rem;
  font-weight: 800;
}

.aiddu-contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(16, 45, 52, .08);
}

.contact-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-directory article {
  display: grid;
  gap: .45rem;
  min-height: 170px;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.contact-directory article > span {
  color: var(--forest);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-directory article > a,
.contact-directory article > strong {
  align-self: end;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  line-height: 1.25;
}

.aiddu-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.aiddu-contact-form label {
  display: grid;
  gap: .4rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 800;
}

.aiddu-contact-form input,
.aiddu-contact-form select,
.aiddu-contact-form textarea,
.search-form input {
  width: 100%;
  padding: .82rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: .75rem;
  font: inherit;
}

.aiddu-contact-form input:focus,
.aiddu-contact-form select:focus,
.aiddu-contact-form textarea:focus,
.search-form input:focus {
  outline: 3px solid rgba(13, 98, 93, .18);
  border-color: var(--forest);
}

.aiddu-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.aiddu-notice {
  margin: 0 0 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: .9rem;
  font-weight: 700;
}

.aiddu-notice-success {
  color: #064e3b;
  background: #d1fae5;
}

.aiddu-notice-error {
  color: #7f1d1d;
  background: #fee2e2;
}

.search-form {
  display: flex;
  gap: .65rem;
  width: min(680px, 100%);
}

.search-submit {
  border: 0;
  cursor: pointer;
}

.no-results {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.post-navigation .nav-links {
  justify-content: space-between;
}

.wp-caption,
.gallery-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: .4rem;
  color: var(--ink-soft);
  font-size: .85rem;
}

.alignleft {
  float: left;
  margin: .5rem 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: .5rem 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .wp-card-grid,
  .aiddu-form-grid,
  .contact-directory {
    grid-template-columns: 1fr;
  }

  .aiddu-list-item {
    grid-template-columns: 1fr auto;
  }

  .aiddu-list-item > :first-child {
    grid-column: 1 / -1;
  }

  .search-form {
    display: grid;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

.motion-ready .reveal-item {
  opacity: 0;
  translate: 0 22px;
  transition:
    opacity 640ms cubic-bezier(.22, 1, .36, 1),
    translate 640ms cubic-bezier(.22, 1, .36, 1),
    scale 720ms cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-item.reveal-gentle-scale {
  scale: .985;
}

.motion-ready .reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

button,
summary {
  font: inherit;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  background: rgba(248, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-emblem {
  display: block;
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  filter: drop-shadow(0 4px 8px rgba(17, 45, 92, .14));
}

.emblem-ring-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  line-height: 1.08;
}

.brand-title {
  max-width: 390px;
  color: #112d5c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11px, 1vw, 15px);
  font-style: italic;
  font-weight: 700;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 7px rgba(255,255,255,.12);
}

.brand-name {
  display: grid;
  line-height: 1.18;
  font-size: 14px;
}

.brand-name strong {
  font-size: 15px;
}

.brand-name span {
  color: var(--ink-soft);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.55vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-group > a,
.search-button {
  transition: color .2s ease;
}

.desktop-nav > a:hover,
.nav-group > a:hover,
.search-button:hover {
  color: var(--forest);
}

.nav-group {
  position: relative;
  padding: 34px 0;
}

.nav-group > a {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-group > a span {
  color: var(--forest);
  font-size: 13px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: -22px;
  width: 285px;
  display: grid;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(16, 45, 52, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.nav-dropdown a:hover {
  color: var(--forest);
  background: var(--mint-pale);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-button {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.search-button span:first-child {
  font-size: 25px;
  line-height: 1;
  transform: rotate(-20deg);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 13px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 230px;
  display: grid;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(16,45,52,.16);
}

.mobile-menu nav a {
  padding: 10px;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu nav details {
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav details > summary {
  position: relative;
  padding: 10px;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  font-size: 15px;
}

.mobile-menu nav details > summary::after {
  content: "+";
  position: absolute;
  right: 10px;
  color: var(--forest);
}

.mobile-menu nav details[open] > summary::after {
  content: "−";
}

.mobile-menu nav details a {
  display: block;
  padding: 8px 10px 8px 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.internal-header {
  position: relative;
}

.inner-hero {
  min-height: 430px;
  padding: 70px 8vw 80px;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 231, 106, .35), transparent 24%),
    linear-gradient(135deg, var(--mint-pale), #d7eee7);
  border-bottom: 1px solid var(--line);
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 60px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--forest);
}

.inner-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}

.inner-hero > p:last-child {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
}

.inner-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 880px);
  gap: clamp(50px, 7vw, 110px);
  justify-content: center;
  padding: 86px 6vw 120px;
}

.about-nav {
  align-self: start;
  position: sticky;
  top: 30px;
  display: grid;
  border-top: 1px solid var(--line);
}

.about-nav > p {
  margin: 0;
  padding: 18px 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-nav a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.about-nav a:last-child {
  border-bottom: 1px solid var(--line);
}

.about-nav a:hover,
.about-nav a.active {
  color: var(--forest);
  background: var(--mint-pale);
}

.article-content {
  min-width: 0;
}

.article-content > section {
  margin-bottom: 72px;
}

.article-content h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.article-content h3 {
  margin: 0;
}

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

.article-lead {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.article-lead p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 32px);
  line-height: 1.45;
}

.purpose-grid,
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.purpose-grid > div,
.leadership-grid > div {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.purpose-grid span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.purpose-grid h3 {
  margin-top: 28px;
  font-size: 23px;
}

.purpose-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.fact-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 24px;
}

.fact-panel > div {
  display: grid;
  gap: 3px;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.fact-panel > div:last-child {
  border-right: 0;
}

.fact-panel strong {
  color: var(--lime);
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
}

.fact-panel span {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.document-notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 28px;
  background: var(--mint-pale);
  border-left: 4px solid var(--forest);
}

.document-notice span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.document-notice p {
  margin: 0;
  font-size: 14px;
}

.legal-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}

.legal-card span,
.legal-card strong {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.legal-card span {
  color: var(--ink-soft);
  background: var(--mint-pale);
  font-size: 13px;
}

.legal-card strong {
  background: var(--white);
  font-size: 14px;
}

.legal-card > :nth-last-child(-n+2) {
  border-bottom: 0;
}

.clean-list {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.clean-list li {
  position: relative;
  padding: 18px 15px 18px 44px;
  border-bottom: 1px solid var(--line);
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--forest);
  font-weight: 800;
}

.governance-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.governance-list > div {
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  align-items: center;
  gap: 20px;
  padding: 18px 8px;
  border-bottom: 1px solid var(--line);
}

.governance-list span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.governance-list p {
  margin: 0;
  font-size: 14px;
}

.article-callout {
  padding: 36px;
  background: var(--forest-dark);
  border-radius: 24px;
}

.article-callout h2,
.article-callout p {
  color: var(--white);
}

.article-callout p {
  margin-bottom: 0;
}

.president-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.person-monogram {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), #79bdad);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 42px;
}

.president-card h2 {
  margin-bottom: 8px;
}

.president-card p {
  margin: 0;
}

.leadership-grid > div {
  min-height: 175px;
}

.leadership-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.leadership-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.leadership-grid p {
  margin: 6px 0 0;
  font-size: 14px;
}

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

.article-heading-row > span {
  margin-bottom: 25px;
  color: var(--ink-soft);
  font-size: 13px;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.branches-grid details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.branches-grid summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 18px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.branches-grid summary::-webkit-details-marker {
  display: none;
}

.branches-grid summary span {
  color: var(--forest);
  font-size: 20px;
  line-height: 1;
}

.branches-grid details[open] summary span {
  transform: rotate(45deg);
}

.branches-grid ul {
  margin: 0;
  padding: 0 18px 18px 34px;
  color: var(--ink-soft);
  font-size: 13px;
}

.members-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.members-list article {
  display: grid;
  grid-template-columns: 55px 1fr 110px;
  gap: 20px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.members-list article > span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.members-list h2 {
  margin: 0;
  font-size: 22px;
}

.members-list p {
  margin: 4px 0 0;
  font-size: 13px;
}

.members-list strong {
  color: var(--ink-soft);
  font-size: 13px;
  text-align: right;
}

.organization-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.organization-cards a {
  min-height: 200px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: transform .2s ease, border-color .2s ease;
}

.organization-cards a:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.organization-cards > a > span,
.organization-cards b {
  color: var(--forest);
  font-size: 12px;
}

.organization-cards h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.organization-cards p {
  margin: 0;
  font-size: 14px;
}

.organization-cards b {
  font-size: 18px;
}

.events-inner-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, .42), transparent 20%),
    linear-gradient(135deg, #e5f1ec, #b9ded1);
}

.latest-event-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 42px;
  padding: 38px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 26px;
}

.latest-event-date {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.latest-event-date span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.latest-event-date strong {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
}

.latest-event-card .section-kicker {
  color: var(--lime);
}

.latest-event-card h2 {
  max-width: 620px;
  color: var(--white);
}

.latest-event-card p:not(.section-kicker) {
  color: rgba(255, 255, 255, .72);
}

.latest-event-card > div:last-child > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 1px solid var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.event-card-meta span {
  padding: 6px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.event-directions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.event-directions a {
  min-height: 255px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .2s ease, transform .2s ease;
}

.event-directions a:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.event-directions span,
.event-directions b {
  color: var(--forest);
  font-size: 12px;
}

.event-directions h2 {
  align-self: end;
  margin: 30px 0 10px;
  font-size: 25px;
}

.event-directions p {
  margin: 0;
  font-size: 13px;
}

.event-directions b {
  justify-self: end;
  margin-top: 18px;
  font-size: 18px;
}

.events-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.events-stats > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.events-stats > div:last-child {
  border-right: 0;
}

.events-stats strong {
  color: var(--forest);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.events-stats span {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.inline-section-link {
  margin-bottom: 25px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.compact-event-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.compact-event-list > a {
  display: grid;
  grid-template-columns: 155px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.compact-event-list > a > span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.compact-event-list div {
  display: grid;
  gap: 3px;
}

.compact-event-list small {
  color: var(--ink-soft);
}

.compact-event-list b {
  color: var(--forest);
}

.archive-intro {
  padding: 30px;
  background: var(--mint-pale);
  border-radius: 20px;
}

.archive-intro p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.announcement-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.announcement-card.highlighted {
  grid-column: 1 / -1;
  min-height: 390px;
  padding: 36px;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest));
}

.announcement-top,
.announcement-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.announcement-top {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.announcement-card h2 {
  margin-top: auto;
  font-size: clamp(25px, 2.4vw, 35px);
}

.announcement-card > p {
  font-size: 14px;
}

.announcement-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.announcement-bottom > span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.announcement-bottom a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 800;
}

.announcement-card.highlighted h2,
.announcement-card.highlighted p,
.announcement-card.highlighted .announcement-bottom > span {
  color: var(--white);
}

.announcement-card.highlighted .announcement-top {
  color: var(--lime);
}

.announcement-card.highlighted .announcement-bottom {
  border-color: rgba(255, 255, 255, .18);
}

.announcement-card.highlighted .announcement-bottom a {
  color: var(--forest-dark);
  background: var(--lime);
}

.document-archive {
  display: grid;
  border-top: 1px solid var(--line);
}

.document-archive > a {
  display: grid;
  grid-template-columns: 45px 145px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 19px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.document-archive > a:hover {
  background: var(--mint-pale);
}

.archive-index {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.archive-date,
.archive-title {
  display: grid;
  gap: 2px;
}

.archive-date strong {
  font-size: 20px;
}

.archive-date small,
.archive-title small {
  color: var(--ink-soft);
}

.archive-title strong {
  font-size: 14px;
}

.document-archive b {
  color: var(--forest);
  font-size: 11px;
}

.featured-congresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.featured-congresses article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.featured-congresses article:first-child {
  color: var(--white);
  background: var(--forest-dark);
}

.featured-congresses span {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.featured-congresses article:first-child span {
  color: var(--lime);
}

.featured-congresses h2 {
  margin-top: auto;
  font-size: 32px;
}

.featured-congresses p {
  font-size: 14px;
}

.featured-congresses article:first-child h2,
.featured-congresses article:first-child p {
  color: var(--white);
}

.featured-congresses a {
  width: fit-content;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.materials-grid > a {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.materials-grid > a:hover {
  border-color: var(--forest);
}

.materials-grid > a > span,
.materials-grid b {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.materials-grid div {
  display: grid;
  gap: 3px;
}

.materials-grid small {
  color: var(--ink-soft);
  font-size: 11px;
}

.materials-grid strong {
  font-size: 14px;
}

.notice-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 4.5vw;
  color: var(--white);
  background: var(--forest-dark);
  font-size: 13px;
  letter-spacing: .01em;
}

.notice-bar p {
  margin: 0;
}

.notice-bar a {
  font-weight: 800;
  margin-left: 12px;
  color: var(--lime);
}

.notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201,231,106,.12);
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 132px) 5vw clamp(70px, 9vw, 132px) 8vw;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 96px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .96;
}

.hero h1 span {
  display: block;
  color: var(--forest);
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 35px rgba(13,98,93,.2);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 28%, rgba(255,255,255,.95) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 62%, rgba(255,255,255,.62) 0 2px, transparent 3px),
    linear-gradient(140deg, #dff3ea 0%, #9ed6c5 58%, #6bb6a6 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.56);
}

.orb-one {
  width: 470px;
  height: 470px;
  right: -70px;
  top: 70px;
  box-shadow: inset 0 0 100px rgba(255,255,255,.32);
}

.orb-two {
  width: 270px;
  height: 270px;
  left: -70px;
  bottom: 20px;
  background: rgba(255,255,255,.18);
}

.microbe {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 47% 53% 58% 42%;
  background: var(--forest);
  box-shadow: 0 25px 70px rgba(8,71,65,.28);
}

.microbe::before,
.microbe::after {
  content: "";
  width: 32%;
  height: 32%;
  border-radius: 50%;
  position: absolute;
  background: rgba(201,231,106,.82);
}

.microbe::before {
  left: 22%;
  top: 18%;
}

.microbe::after {
  right: 18%;
  bottom: 20%;
  transform: scale(.55);
}

.microbe i {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest);
}

.microbe i:nth-child(1) { top: -18px; left: 45%; }
.microbe i:nth-child(2) { right: -16px; top: 35%; }
.microbe i:nth-child(3) { bottom: -17px; left: 50%; }
.microbe i:nth-child(4) { left: -18px; top: 52%; }
.microbe i:nth-child(5) { right: 8%; top: -10px; }
.microbe i:nth-child(6) { left: 8%; bottom: -8px; }

.microbe-one {
  width: 190px;
  height: 190px;
  left: 27%;
  top: 25%;
  transform: rotate(18deg);
}

.microbe-two {
  width: 85px;
  height: 85px;
  right: 15%;
  bottom: 19%;
  background: var(--lime);
  transform: rotate(-25deg);
}

.microbe-two i {
  width: 8px;
  height: 8px;
  background: var(--lime);
}

.microbe-two::before,
.microbe-two::after {
  background: rgba(13,98,93,.34);
}

.hero-note {
  position: absolute;
  left: 7%;
  bottom: 7%;
  display: grid;
  gap: 2px;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(8,71,65,.86);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
}

.event-feature {
  display: grid;
  grid-template-columns: .65fr 1.7fr auto;
  gap: 5vw;
  align-items: start;
  margin: 0 4.5vw;
  padding: 52px 3.5vw;
  color: var(--white);
  background: var(--forest);
  border-radius: 0 0 var(--radius) var(--radius);
}

.event-meta > span {
  font-size: 13px;
  color: var(--mint);
}

.section-kicker.light {
  color: var(--mint);
}

.event-main > p {
  margin: 0 0 8px;
  color: var(--mint);
  font-size: 14px;
}

.event-main h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(28px, 3.1vw, 48px);
  font-weight: 500;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.event-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.event-details span {
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: 12px;
}

.round-link {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--forest-dark);
  background: var(--lime);
  border-radius: 50%;
  font-size: 23px;
  transition: transform .2s ease;
}

.round-link:hover {
  transform: rotate(8deg) scale(1.04);
}

.section-shell {
  padding: 110px 8vw;
}

.intro {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 10vw;
  align-items: start;
}

.intro h2,
.section-heading h2,
.library h2,
footer h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.055em;
}

.intro-copy {
  padding-top: 30px;
}

.intro-copy p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 4.5vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 3.5vw;
  border-right: 1px solid var(--line);
}

.stats article:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--forest);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.stats span {
  max-width: 180px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 55px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.news-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(16,45,52,.08);
}

.news-card.featured {
  color: var(--white);
  background: var(--forest-dark);
  border-color: var(--forest-dark);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-meta time {
  color: #72868b;
  white-space: nowrap;
}

.featured .news-meta time,
.featured .news-meta span {
  color: var(--mint);
}

.news-card h3 {
  margin: auto 0 16px;
  font-size: clamp(24px, 2vw, 33px);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.featured p {
  color: #bdd4d1;
}

.news-card > a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.featured > a {
  color: var(--forest-dark);
  background: var(--lime);
  border-color: var(--lime);
}

.library {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 10vw;
  color: var(--white);
  background: var(--forest-dark);
}

.library > div:first-child > p:last-child {
  max-width: 580px;
  color: #bdd4d1;
  font-size: 18px;
}

.library-links {
  display: grid;
}

.library-links a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: clamp(20px, 2vw, 29px);
}

.library-links a:first-child {
  border-top: 1px solid rgba(255,255,255,.18);
}

.library-links a span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
}

.partners {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 800;
  letter-spacing: -.03em;
}

.partner-row > * {
  flex: 0 0 auto;
}

.partner-row a {
  transition: color .2s ease, translate .2s ease;
}

.partner-row a:hover,
.partner-row a:focus-visible {
  color: var(--forest);
  translate: 0 -2px;
}

footer {
  margin: 0 1.4vw 1.4vw;
  padding: 85px 6.6vw 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.footer-main {
  display: grid;
  grid-template-columns: .7fr 1.4fr auto;
  gap: 6vw;
  align-items: start;
  padding-bottom: 85px;
}

.footer-brand .brand-title {
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: #9eb2b7;
}

.footer-main h2 {
  max-width: 650px;
  font-size: clamp(38px, 4.5vw, 67px);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #9eb2b7;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 12px;
}

.footer-bottom a {
  transition: color .2s ease;
}

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

.privacy-layout section {
  scroll-margin-top: 30px;
}

.library-inner-hero {
  background:
    radial-gradient(circle at 83% 26%, rgba(201, 231, 106, .46), transparent 21%),
    linear-gradient(135deg, #eef7f3, #cae9df);
}

.library-overview {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.library-overview h2 {
  margin-bottom: 0;
}

.library-overview > p {
  margin: 0 0 5px;
  font-size: 17px;
}

.library-directory {
  display: grid;
  gap: 10px;
}

.library-directory > a {
  min-height: 190px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 27px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .2s ease, transform .2s ease;
}

.library-directory > a:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.directory-index {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.library-directory small {
  display: block;
  margin-bottom: 17px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.library-directory h2 {
  margin: 0 0 9px;
  font-size: clamp(25px, 2.6vw, 34px);
}

.library-directory p {
  max-width: 600px;
  margin: 0;
  font-size: 14px;
}

.library-directory b {
  color: var(--forest);
  font-size: 20px;
}

.library-snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 22px;
}

.library-snapshot > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

.library-snapshot > div:last-child {
  border-right: 0;
}

.library-snapshot strong {
  color: var(--lime);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.library-snapshot span {
  max-width: 150px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.archive-note {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
  padding: 32px;
  background: var(--mint-pale);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.archive-note > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.archive-note h2 {
  margin: 0 0 10px;
  font-size: 24px;
}

.archive-note p {
  margin: 0;
  font-size: 14px;
}

.archive-note.compact {
  padding: 26px;
}

.protocol-intro {
  border: 1px solid var(--line);
}

.protocol-section {
  margin-bottom: 58px !important;
}

.protocol-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.protocol-list > a {
  display: grid;
  grid-template-columns: 145px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.protocol-list > a:hover {
  background: var(--mint-pale);
}

.protocol-type {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.protocol-list div {
  display: grid;
  gap: 4px;
}

.protocol-list small {
  color: var(--ink-soft);
  font-size: 11px;
}

.protocol-list strong {
  font-size: 14px;
  line-height: 1.45;
}

.protocol-list b {
  color: var(--forest);
  font-size: 11px;
}

.publication-feature {
  min-height: 420px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
}

.publication-feature h2 {
  font-size: clamp(35px, 4vw, 56px);
}

.publication-feature > div:last-child > p:not(.section-kicker) {
  font-size: 17px;
}

.publication-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.publication-meta span {
  padding: 7px 11px;
  color: var(--forest);
  background: var(--mint-pale);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.digital-book {
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 19px;
  color: var(--white);
  background: var(--forest);
  border-radius: 4px 13px 13px 4px;
  box-shadow:
    inset 7px 0 0 rgba(0, 0, 0, .13),
    0 14px 28px rgba(16, 45, 52, .16);
}

.digital-book-large {
  width: 220px;
  min-height: 300px;
  padding: 25px;
}

.digital-book span,
.digital-book small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.digital-book strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 27px);
  line-height: 1.05;
}

.digital-book-large strong {
  font-size: 37px;
}

.digital-book.tone-mint {
  color: var(--ink);
  background: linear-gradient(145deg, #d9f0e7, #88c7b8);
}

.digital-book.tone-dark {
  background: linear-gradient(145deg, #13383e, #071f24);
}

.digital-book.tone-lime {
  color: var(--ink);
  background: linear-gradient(145deg, #e3f3a9, #b7d958);
}

.digital-book.tone-blue {
  background: linear-gradient(145deg, #315f7c, #17354e);
}

.publication-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.publication-grid article {
  min-height: 290px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.publication-copy > span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.publication-copy h3 {
  margin: 14px 0 9px;
  font-size: 19px;
  line-height: 1.2;
}

.publication-copy p {
  margin: 0 0 13px;
  font-size: 12px;
}

.publication-copy > small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.article-collection-intro {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 22px;
}

.article-collection-intro > div {
  display: grid;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.article-collection-intro strong {
  color: var(--lime);
  font-size: 58px;
  font-weight: 500;
  line-height: 1;
}

.article-collection-intro span {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.article-collection-intro p {
  margin: 0;
  color: var(--white);
  font-size: 17px;
}

.research-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.research-list > a {
  min-height: 145px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.research-list > a:hover {
  background: var(--mint-pale);
}

.research-index,
.research-list small,
.research-list b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.research-list h3 {
  max-width: 640px;
  margin: 7px 0;
  font-size: 19px;
  line-height: 1.3;
}

.research-list p {
  margin: 0;
  font-size: 13px;
}

.bibliography-lead {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.bibliography-lead p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 25px);
}

.bibliography-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bibliography-index a {
  padding: 8px 14px;
  color: var(--forest);
  background: var(--mint-pale);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.bibliography-year {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.bibliography-year-heading {
  display: flex;
  flex-direction: column;
}

.bibliography-year-heading strong {
  color: var(--forest);
  font-size: 38px;
  font-weight: 500;
}

.bibliography-year-heading span {
  color: var(--ink-soft);
  font-size: 11px;
}

.bibliography-year ol {
  margin: 0;
  padding-left: 24px;
}

.bibliography-year li {
  padding: 0 0 22px 10px;
}

.bibliography-year li::marker {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.bibliography-year p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.resource-feature {
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  padding: 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(201, 231, 106, .18), transparent 25%),
    var(--forest-dark);
  border-radius: 24px;
}

.resource-feature > div > span {
  display: block;
  margin-bottom: 70px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.resource-feature .section-kicker {
  color: var(--lime);
}

.resource-feature h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 52px;
}

.resource-feature p:not(.section-kicker) {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .75);
}

.resource-feature > a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 1px solid var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.resource-section {
  margin-bottom: 58px !important;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.resource-grid > a {
  min-height: 175px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s ease, transform .2s ease;
}

.resource-grid > a:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}

.resource-grid h3 {
  font-size: 19px;
  line-height: 1.25;
}

.resource-grid p {
  margin: 11px 0 0;
  font-size: 13px;
}

.resource-grid b {
  color: var(--forest);
}

.news-inner-hero {
  background:
    radial-gradient(circle at 85% 24%, rgba(255, 255, 255, .62), transparent 21%),
    linear-gradient(135deg, #dcefe8, #acd8c9);
}

.news-feature-story {
  min-height: 440px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 26px;
}

.news-monogram {
  aspect-ratio: 4 / 5;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border-radius: 5px 24px 5px 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28);
}

.news-monogram > span,
.news-monogram > small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.news-monogram > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

.news-monogram.tone-forest,
.news-card-poster.tone-forest {
  color: var(--white);
  background: linear-gradient(145deg, #1c766e, #093e3a);
}

.news-monogram.tone-mint,
.news-card-poster.tone-mint {
  color: var(--ink);
  background: linear-gradient(145deg, #ddf3eb, #8bc9ba);
}

.news-monogram.tone-lime,
.news-card-poster.tone-lime {
  color: var(--ink);
  background: linear-gradient(145deg, #e9f6b6, #b8d85c);
}

.news-monogram.tone-blue,
.news-card-poster.tone-blue {
  color: var(--white);
  background: linear-gradient(145deg, #416e89, #193b52);
}

.news-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-feature-story .news-story-meta {
  color: var(--lime);
}

.news-feature-story h2 {
  max-width: 620px;
  margin: 24px 0 20px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 55px);
}

.news-feature-story p {
  max-width: 620px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.news-feature-story > div:last-child > a {
  display: inline-flex;
  gap: 12px;
  margin-top: 25px;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 1px solid var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.news-archive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-archive-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 21px;
}

.news-archive-card.wide {
  grid-column: 1 / -1;
  min-height: 300px;
  grid-template-columns: 190px 1fr;
}

.news-card-poster {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 4px 16px 4px 16px;
}

.news-card-poster span {
  font-size: 10px;
  font-weight: 800;
}

.news-card-poster strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 500;
}

.news-archive-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-archive-copy h3 {
  margin: 23px 0 12px;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.2;
}

.news-archive-copy p {
  margin: 0;
  font-size: 13px;
}

.news-archive-copy > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: auto;
  align-self: end;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 800;
}

.news-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.news-paths > a {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  background: var(--mint-pale);
  border: 1px solid var(--line);
  border-radius: 19px;
  transition: border-color .2s ease, transform .2s ease;
}

.news-paths > a:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.news-paths > a > span,
.news-paths small,
.news-paths b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.news-paths > a > div {
  align-self: end;
}

.news-paths h2 {
  margin: 8px 0 18px;
  font-size: 24px;
}

.news-paths b {
  justify-self: end;
  font-size: 18px;
}

.news-article-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.news-monogram.article-mark {
  min-height: 270px;
}

.news-article-heading > div:last-child {
  display: grid;
  gap: 7px;
}

.news-article-heading > div:last-child > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.news-article-heading > div:last-child > strong {
  font-size: 28px;
  font-weight: 500;
}

.news-article-heading > div:last-child > small {
  color: var(--ink-soft);
}

.news-article-body {
  max-width: 760px;
}

.news-article-body p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.news-article-body .news-body-lead {
  padding-bottom: 30px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: clamp(21px, 2.3vw, 29px);
  line-height: 1.5;
}

.news-document-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-document-list > a {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.news-document-list > a:hover {
  background: var(--mint-pale);
}

.news-document-list span,
.news-document-list small {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.news-document-list strong {
  font-size: 14px;
}

.news-source-note {
  display: grid;
  grid-template-columns: 95px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: var(--mint-pale);
  border-left: 4px solid var(--forest);
}

.news-source-note > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.news-source-note p {
  margin: 0;
  font-size: 13px;
}

.news-source-note a {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.related-news {
  display: grid;
  border-top: 1px solid var(--line);
}

.related-news > a {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.related-news span,
.related-news b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.related-news strong {
  font-size: 14px;
}

.submission-intro {
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 38px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 24px;
}

.submission-intro > div:first-child > span {
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.submission-intro h2 {
  max-width: 590px;
  margin: 24px 0 13px;
  color: var(--white);
}

.submission-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.submission-symbol {
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest-dark);
  background: var(--lime);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 42px;
  font-style: italic;
}

.submission-requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.submission-requirements article {
  min-height: 175px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.submission-requirements article > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.submission-requirements h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.submission-requirements p {
  margin: 0;
  font-size: 13px;
}

.submission-template {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  padding: 36px;
  background: var(--mint-pale);
  border-radius: 22px;
}

.submission-template ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: template;
}

.submission-template li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: template;
}

.submission-template li::before {
  content: counter(template, decimal-leading-zero);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
}

.submission-template li span {
  flex: 1;
  font-weight: 800;
}

.submission-template li small {
  color: var(--ink-soft);
}

.submission-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.submission-flow > div {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.submission-flow > div:last-child {
  border-right: 0;
}

.submission-flow span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.submission-flow strong {
  margin-top: auto;
  font-size: 20px;
}

.submission-flow p {
  margin: 9px 0 0;
  font-size: 13px;
}

.gallery-feature {
  min-height: 400px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 25px;
}

.gallery-feature-poster {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 25%, rgba(201, 231, 106, .52), transparent 15%),
    linear-gradient(145deg, var(--forest), var(--forest-dark));
  border-radius: 5px 28px 5px 28px;
}

.gallery-feature-poster span,
.gallery-feature-poster small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-feature-poster strong {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 118px;
  font-weight: 500;
  line-height: .8;
}

.gallery-feature h2 {
  font-size: clamp(35px, 4vw, 55px);
}

.gallery-feature > div:last-child > a {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 3px;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.gallery-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.gallery-collection {
  min-height: 320px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  gap: 17px;
  padding: 25px;
  border-radius: 22px;
  transition: transform .2s ease;
}

.gallery-collection:hover {
  transform: translateY(-3px);
}

.gallery-collection.tone-forest {
  color: var(--white);
  background: var(--forest-dark);
}

.gallery-collection.tone-mint {
  color: var(--ink);
  background: #b9dfd3;
}

.gallery-collection.tone-blue {
  color: var(--white);
  background: #234f68;
}

.gallery-collection.tone-lime {
  color: var(--ink);
  background: var(--lime);
}

.gallery-collection > span,
.gallery-collection small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.gallery-collection > div {
  display: flex;
  flex-direction: column;
}

.gallery-collection strong {
  margin-top: auto;
  font-family: Georgia, serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

.gallery-collection h3 {
  margin-top: 15px;
  font-size: 20px;
  line-height: 1.25;
}

.gallery-note {
  padding: 38px;
  background: var(--mint-pale);
  border-left: 4px solid var(--forest);
}

.gallery-note > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gallery-note h2 {
  margin-top: 18px;
}

.gallery-note p {
  max-width: 700px;
  margin-bottom: 0;
}

.cme-inner-hero {
  background:
    radial-gradient(circle at 84% 24%, rgba(201, 231, 106, .56), transparent 22%),
    linear-gradient(135deg, #eef6df, #d6ead2);
}

.cme-focus-card {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 45px;
  align-items: center;
  padding: 42px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 27px;
}

.cme-focus-card h2 {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
}

.cme-focus-card p:not(.section-kicker) {
  max-width: 590px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.cme-focus-card > div:first-child > a {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 3px;
  color: var(--white);
  border-bottom: 1px solid var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.cme-orbit {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.cme-orbit .orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.orbit-one-cme {
  inset: 4%;
}

.orbit-two-cme {
  inset: 22%;
  background: rgba(201, 231, 106, .09);
}

.cme-orbit::before,
.cme-orbit::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--lime);
  border-radius: 50%;
}

.cme-orbit::before {
  left: 11%;
  top: 35%;
  box-shadow: 0 0 0 8px rgba(201, 231, 106, .11);
}

.cme-orbit::after {
  right: 25%;
  bottom: 14%;
  width: 9px;
  height: 9px;
}

.cme-orbit strong {
  position: relative;
  z-index: 1;
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: clamp(65px, 8vw, 110px);
  font-weight: 500;
  letter-spacing: -.07em;
}

.cme-orbit small {
  position: absolute;
  bottom: 13%;
  color: rgba(255, 255, 255, .65);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cme-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cme-principles article {
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.cme-principles article > span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-principles h3 {
  margin-top: auto;
  font-size: 23px;
}

.cme-principles p {
  margin: 10px 0 0;
  font-size: 13px;
}

.cme-directions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cme-directions > a {
  min-height: 330px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 16px;
  padding: 28px;
  background: var(--mint-pale);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: border-color .2s ease, transform .2s ease;
}

.cme-directions > a:hover {
  border-color: var(--forest);
  transform: translateY(-3px);
}

.cme-directions > a > span,
.cme-directions small,
.cme-directions b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-directions > a > div {
  display: flex;
  flex-direction: column;
}

.cme-directions h2 {
  margin: auto 0 12px;
  font-size: 30px;
}

.cme-directions p {
  margin: 0;
  font-size: 13px;
}

.cme-directions b {
  font-size: 18px;
}

.cme-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
}

.cme-steps > div {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.cme-steps > div:last-child {
  border-right: 0;
}

.cme-steps span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-steps strong {
  margin-top: auto;
  font-size: 20px;
}

.cme-steps p {
  margin: 9px 0 0;
  font-size: 13px;
}

.cme-documents-intro {
  min-height: 250px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 23px;
}

.cme-documents-intro > span {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 110px;
  line-height: 1;
  text-align: center;
}

.cme-documents-intro h2 {
  color: var(--white);
}

.cme-documents-intro p:not(.section-kicker) {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.cme-document-grid {
  display: grid;
  gap: 11px;
}

.cme-document-grid > a {
  min-height: 230px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 22px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .2s ease, transform .2s ease;
}

.cme-document-grid > a:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}

.cme-document-grid > a > span,
.cme-document-grid small,
.cme-document-grid b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-document-grid > a > div {
  display: flex;
  flex-direction: column;
}

.cme-document-grid h2 {
  margin: auto 0 10px;
  font-size: 30px;
}

.cme-document-grid p {
  max-width: 650px;
  margin: 0;
  font-size: 13px;
}

.cme-document-grid b {
  font-size: 18px;
}

.cme-policy-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.cme-policy-list > div {
  display: grid;
  grid-template-columns: 50px 180px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.cme-policy-list span {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-policy-list strong {
  font-size: 15px;
}

.cme-policy-list p {
  margin: 0;
  font-size: 13px;
}

.cme-archive-feature {
  min-height: 370px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 42px;
  align-items: center;
  padding: 38px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 25px;
}

.cme-archive-feature > div:first-child {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 5px 23px 5px 23px;
}

.cme-archive-feature > div:first-child > span,
.cme-archive-feature > div:first-child > small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cme-archive-feature > div:first-child > strong {
  font-family: Georgia, serif;
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
}

.cme-archive-feature h2 {
  color: var(--white);
}

.cme-archive-feature p:not(.section-kicker) {
  color: rgba(255, 255, 255, .72);
}

.cme-archive-feature > div:last-child > a {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.cme-event-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.cme-event-list > a {
  display: grid;
  grid-template-columns: 45px 130px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.cme-event-list > a:hover {
  background: var(--mint-pale);
}

.cme-event-list > a > span,
.cme-event-list small,
.cme-event-list b {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
}

.cme-event-date {
  display: grid;
}

.cme-event-date strong {
  font-size: 27px;
  font-weight: 500;
}

.cme-event-list h3 {
  margin: 7px 0;
  font-size: 16px;
  line-height: 1.35;
}

.cme-event-list p {
  margin: 0;
  font-size: 12px;
}

.cme-current-events {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  padding: 34px;
  background: var(--mint-pale);
  border-radius: 22px;
}

.cme-current-events h2 {
  max-width: 620px;
}

.cme-current-events p:not(.section-kicker) {
  max-width: 650px;
  margin-bottom: 0;
}

.cme-current-events > a {
  flex: 0 0 auto;
  padding-bottom: 3px;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
}

.cme-home {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: center;
  background: linear-gradient(135deg, #edf5df, #d7ebd0);
}

.cme-home-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 470px;
  display: grid;
  place-items: center;
}

.cme-home-ring {
  position: absolute;
  border: 1px solid rgba(13, 98, 93, .24);
  border-radius: 50%;
}

.cme-home-ring.ring-a {
  inset: 2%;
}

.cme-home-ring.ring-b {
  inset: 22%;
  background: rgba(255, 255, 255, .34);
}

.cme-home-visual::before,
.cme-home-visual::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--forest);
  border-radius: 50%;
}

.cme-home-visual::before {
  left: 11%;
  top: 37%;
}

.cme-home-visual::after {
  right: 18%;
  bottom: 20%;
  width: 9px;
  height: 9px;
  background: #93b936;
}

.cme-home-visual strong {
  position: relative;
  z-index: 1;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: clamp(70px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -.08em;
}

.cme-home-visual small {
  position: absolute;
  bottom: 15%;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.cme-home h2 {
  max-width: 680px;
}

.cme-home > div:last-child > p:not(.section-kicker) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
}

.cme-home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cme-home-links a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.contacts-inner-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 48%, rgba(201, 231, 106, .2), transparent 9%),
    radial-gradient(circle at 82% 48%, transparent 0 19%, rgba(255, 255, 255, .09) 19.2% 19.7%, transparent 20% 29%, rgba(255, 255, 255, .06) 29.2% 29.7%, transparent 30%),
    linear-gradient(125deg, #102d34, #0b514e);
  border-bottom: 0;
}

.contacts-inner-hero .breadcrumbs,
.contacts-inner-hero .breadcrumbs a {
  color: rgba(255, 255, 255, .68);
}

.contacts-inner-hero .section-kicker {
  color: var(--lime);
}

.contacts-inner-hero > p:not(.section-kicker) {
  position: relative;
  z-index: 1;
  max-width: 670px;
  margin: 28px 0 0;
  color: #c9d8d9;
  font-size: clamp(18px, 1.5vw, 22px);
}

.contacts-hero-mark {
  position: absolute;
  right: 13vw;
  bottom: 84px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.contacts-hero-mark span {
  position: absolute;
  inset: 21px;
  border: 1px solid rgba(201, 231, 106, .7);
  border-radius: 50%;
}

.contacts-hero-mark i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--lime);
  border-radius: 50% 50% 50% 5px;
  transform: translate(-50%, -63%) rotate(-45deg);
}

.contacts-hero-mark b {
  position: absolute;
  left: calc(50% - 1px);
  top: -120px;
  width: 1px;
  height: 332px;
  background: linear-gradient(transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(32deg);
}

.contacts-main {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(45px, 7vw, 105px);
  align-items: start;
}

.contact-directory-heading {
  margin-bottom: 35px;
}

.contact-directory-heading h2,
.contact-routes-heading h2,
.contact-form-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.contact-detail-card {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 18px;
  align-items: start;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
}

.contact-detail-card:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-detail-card.primary {
  transition: padding .2s ease, color .2s ease;
}

.contact-detail-card.primary:hover {
  padding-left: 12px;
  color: var(--forest);
}

.contact-card-index,
.contact-detail-card > span:last-child {
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.contact-detail-card > span:last-child {
  font-size: 18px;
}

.contact-detail-card div {
  display: grid;
}

.contact-detail-card small {
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-detail-card strong {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.25;
}

.contact-detail-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(16, 45, 52, .08);
}

.contact-form-heading {
  margin-bottom: 12px;
}

.contact-form-heading > p:last-child {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: 12px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form select {
  cursor: pointer;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(13, 98, 93, .1);
}

.contact-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-routes {
  padding-top: 10px;
}

.contact-routes-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.contact-routes-heading .section-kicker {
  align-self: start;
}

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.contact-route-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--mint-pale);
  border: 1px solid transparent;
  border-radius: 22px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.contact-route-grid a:hover {
  background: var(--white);
  border-color: var(--forest);
  transform: translateY(-4px);
}

.contact-route-grid a > span:first-child {
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-route-grid strong {
  max-width: 310px;
  margin: auto 0 25px;
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.2;
}

.contact-route-grid a > span:last-child {
  align-self: flex-end;
  color: var(--forest);
  font-size: 20px;
}

.contact-notice {
  display: grid;
  grid-template-columns: 46px minmax(0, 850px);
  gap: 24px;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 100px;
}

.contact-notice > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.contact-notice h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.contact-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand-title {
    max-width: 440px;
  }

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

  .hero-copy {
    min-height: 610px;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .hero-visual {
    min-height: 420px;
  }

  .event-feature {
    grid-template-columns: .5fr 1.5fr auto;
  }

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

  .news-card:first-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main .button {
    grid-column: 2;
    width: fit-content;
  }

  .inner-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 42px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

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

  .news-archive-grid,
  .gallery-collection-grid {
    grid-template-columns: 1fr;
  }

  .news-archive-card.wide {
    grid-column: auto;
  }

  .cme-home {
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }

  .contacts-main {
    grid-template-columns: 1fr;
  }

  .contact-directory {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 78px;
    padding: 0 20px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-emblem {
    width: 58px;
    height: 58px;
  }

  .brand-copy {
    gap: 2px;
  }

  .brand-title {
    max-width: 220px;
    font-size: 12px;
    line-height: 1.12;
  }

  .brand-subtitle {
    max-width: 220px;
    font-size: 9.5px;
    line-height: 1.15;
  }

  .brand-name strong {
    max-width: 170px;
    font-size: 13px;
  }

  .brand-name span {
    font-size: 12px;
  }

  .search-button {
    display: none;
  }

  .notice-bar {
    justify-content: flex-start;
    padding: 12px 20px;
  }

  .notice-bar p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .notice-bar a {
    margin-left: auto;
    white-space: nowrap;
  }

  .notice-bar a span {
    display: none;
  }

  .inner-hero {
    min-height: 350px;
    padding: 48px 20px 62px;
  }

  .breadcrumbs {
    margin-bottom: 42px;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .inner-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 54px 20px 82px;
  }

  .about-nav {
    position: static;
    overflow-x: auto;
    display: flex;
    padding-bottom: 8px;
    border-top: 0;
  }

  .about-nav > p {
    display: none;
  }

  .about-nav a,
  .about-nav a:last-child {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    margin-right: 8px;
    white-space: nowrap;
  }

  .about-nav a span {
    display: none;
  }

  .article-content > section {
    margin-bottom: 55px;
  }

  .library-overview,
  .publication-feature,
  .article-collection-intro,
  .bibliography-year,
  .news-feature-story,
  .news-article-heading,
  .submission-template,
  .gallery-feature,
  .cme-focus-card,
  .cme-documents-intro,
  .cme-archive-feature,
  .cme-home {
    grid-template-columns: 1fr;
  }

  .library-overview {
    gap: 22px;
  }

  .library-directory > a {
    grid-template-columns: 38px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .library-snapshot,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .library-snapshot > div {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

  .library-snapshot > div:last-child {
    border-bottom: 0;
  }

  .protocol-list > a {
    grid-template-columns: 1fr auto;
    gap: 8px 15px;
  }

  .protocol-type {
    grid-column: 1 / -1;
  }

  .publication-feature {
    justify-items: start;
    padding: 28px;
  }

  .publication-grid article {
    grid-template-columns: 105px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .article-collection-intro > div {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .research-list > a {
    grid-template-columns: 35px 1fr;
    gap: 14px;
  }

  .research-list b {
    grid-column: 2;
  }

  .bibliography-year {
    gap: 20px;
  }

  .bibliography-year-heading {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }

  .resource-feature {
    min-height: 390px;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .resource-feature > div > span {
    margin-bottom: 50px;
  }

  .resource-feature > a {
    margin-top: auto;
  }

  .archive-note {
    grid-template-columns: 44px 1fr;
    padding: 24px;
  }

  .news-feature-story,
  .gallery-feature {
    padding: 28px;
  }

  .news-monogram {
    width: 210px;
    min-height: 270px;
  }

  .news-archive-card,
  .news-archive-card.wide {
    grid-template-columns: 92px 1fr;
    gap: 17px;
    min-height: 330px;
    padding: 18px;
  }

  .news-card-poster {
    min-height: 190px;
  }

  .news-card-poster strong {
    font-size: 31px;
  }

  .news-paths,
  .submission-requirements,
  .submission-flow {
    grid-template-columns: 1fr;
  }

  .news-paths > a {
    min-height: 210px;
  }

  .news-source-note {
    grid-template-columns: 1fr;
  }

  .related-news > a {
    grid-template-columns: 1fr auto;
  }

  .related-news span {
    grid-column: 1 / -1;
  }

  .submission-intro {
    align-items: flex-start;
    flex-direction: column-reverse;
    padding: 28px;
  }

  .submission-symbol {
    width: 90px;
    height: 90px;
    font-size: 30px;
  }

  .submission-flow > div {
    min-height: 185px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .submission-flow > div:last-child {
    border-bottom: 0;
  }

  .gallery-feature-poster {
    width: 220px;
    min-height: 270px;
  }

  .gallery-collection {
    min-height: 280px;
  }

  .cme-orbit,
  .cme-home-visual {
    width: min(100%, 360px);
    justify-self: center;
  }

  .cme-principles,
  .cme-directions,
  .cme-steps {
    grid-template-columns: 1fr;
  }

  .cme-steps > div {
    min-height: 185px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cme-steps > div:last-child {
    border-bottom: 0;
  }

  .cme-documents-intro {
    gap: 18px;
    padding: 28px;
  }

  .cme-documents-intro > span {
    text-align: left;
  }

  .cme-document-grid > a {
    grid-template-columns: 35px 1fr auto;
    gap: 14px;
    padding: 22px 18px;
  }

  .cme-policy-list > div {
    grid-template-columns: 35px 1fr;
  }

  .cme-policy-list p {
    grid-column: 2;
  }

  .cme-archive-feature {
    padding: 28px;
  }

  .cme-archive-feature > div:first-child {
    width: 210px;
  }

  .cme-event-list > a {
    grid-template-columns: 35px 1fr auto;
    gap: 13px;
  }

  .cme-event-date,
  .cme-event-list > a > div:nth-child(3) {
    grid-column: 2;
  }

  .cme-event-list b {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .cme-current-events {
    align-items: flex-start;
    flex-direction: column;
  }

  .cme-home-visual {
    max-width: 330px;
  }

  .purpose-grid,
  .leadership-grid,
  .branches-grid,
  .organization-cards {
    grid-template-columns: 1fr;
  }

  .fact-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .fact-panel > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .fact-panel > div:last-child {
    border-bottom: 0;
  }

  .document-notice,
  .legal-card {
    grid-template-columns: 1fr;
  }

  .legal-card span,
  .legal-card strong {
    border-bottom: 1px solid var(--line);
  }

  .governance-list > div {
    grid-template-columns: 38px 1fr;
  }

  .governance-list p {
    grid-column: 2;
  }

  .president-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .person-monogram {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }

  .members-list article {
    grid-template-columns: 42px 1fr;
  }

  .members-list strong {
    grid-column: 2;
    text-align: left;
  }

  .latest-event-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .latest-event-date {
    gap: 12px;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .event-directions,
  .events-stats,
  .announcement-grid,
  .featured-congresses,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .events-stats > div {
    min-height: 135px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .events-stats > div:last-child {
    border-bottom: 0;
  }

  .compact-event-list > a {
    grid-template-columns: 1fr auto;
  }

  .compact-event-list > a > span {
    grid-column: 1 / -1;
  }

  .announcement-card.highlighted {
    grid-column: auto;
    min-height: 420px;
    padding: 28px;
  }

  .announcement-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .document-archive > a {
    grid-template-columns: 38px 1fr auto;
    gap: 14px;
  }

  .archive-date {
    grid-column: 2;
  }

  .archive-title {
    grid-column: 2;
  }

  .document-archive b {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .hero-copy {
    min-height: 540px;
    padding: 76px 20px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .microbe-one {
    left: 32%;
    top: 21%;
  }

  .event-feature {
    grid-template-columns: 1fr auto;
    gap: 28px 18px;
    margin: 0;
    padding: 35px 20px;
    border-radius: 0;
  }

  .event-meta {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }

  .section-shell {
    padding: 80px 20px;
  }

  .intro,
  .library {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-copy p {
    font-size: 17px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    margin: 0 20px;
  }

  .stats article {
    min-height: 170px;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }

  .stats article:nth-child(2) {
    border-right: 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .news-card:first-child {
    grid-column: auto;
  }

  .news-card {
    min-height: 350px;
  }

  .partner-row {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  .partner-row > * {
    flex: 0 0 auto;
  }

  .contacts-inner-hero {
    min-height: 400px;
  }

  .contacts-hero-mark {
    right: 24px;
    bottom: 48px;
    width: 70px;
    height: 70px;
    opacity: .62;
  }

  .contacts-main {
    gap: 55px;
  }

  .contact-form-grid,
  .contact-route-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .contact-routes {
    padding-top: 0;
  }

  .contact-routes-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .contact-route-grid a {
    min-height: 195px;
  }

  .contact-notice {
    grid-template-columns: 38px 1fr;
    gap: 16px;
    padding-top: 15px;
    padding-bottom: 80px;
  }

  .contact-notice > span {
    width: 36px;
    height: 36px;
  }

  footer {
    margin: 0;
    padding: 65px 20px 24px;
    border-radius: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .footer-main .button {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-subtitle {
    display: none;
  }

  .brand-title {
    max-width: 180px;
    font-size: 11px;
  }
}

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

  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal-item {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
  }
}
