:root {
  --primary: #0055a4;
  --secondary: #003366;
  --ink: #061742;
  --accent: #d52b1e;
  --background: #ffffff;
  --surface: #f7fafd;
  --surface-strong: #edf4fb;
  --text: #111827;
  --muted: #536172;
  --line: #d8e2ec;
  --line-strong: #aac0d8;
  --focus: #d52b1e;
  --ok: #188452;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 8px;
  --shadow: 0 24px 60px rgba(0, 51, 102, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: var(--primary);
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--secondary);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  min-width: 0;
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--secondary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-left: 4px solid var(--accent);
  color: var(--secondary);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand__name {
  display: block;
  color: var(--secondary);
  font-weight: 850;
  line-height: 1.08;
}

.brand__line {
  display: block;
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1.2;
}

.primary-nav {
  justify-self: end;
  display: flex;
  gap: clamp(0.8rem, 2.3vw, 2rem);
  align-items: center;
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--secondary);
  font-size: 0.96rem;
  font-weight: 750;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 160ms ease;
}

.primary-nav a[aria-current="page"],
.primary-nav a:hover {
  color: var(--primary);
}

.primary-nav a[aria-current="page"]::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: #fff;
  color: var(--secondary);
  font-weight: 850;
}

.nav-toggle {
  display: none;
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 87% 30%, rgba(0, 85, 164, 0.08), transparent 23rem),
    linear-gradient(180deg, #fff 0%, #fff 70%, var(--surface) 70%, var(--surface) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: max(1rem, calc((100vw - var(--container)) / 2));
  top: 8rem;
  width: 170px;
  height: 170px;
  background-image: radial-gradient(rgba(0, 85, 164, 0.22) 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.hero-kicker,
.section-label,
.category,
.article-date,
.back-link {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.4rem;
}

.hero-kicker span {
  width: 34px;
  height: 4px;
  background: var(--accent);
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 1.25rem;
  color: #061742;
  font-size: clamp(3.8rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy__lead {
  max-width: 720px;
  margin: 0 0 1.35rem;
  color: #061742;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 650;
  line-height: 1.28;
}

.hero-copy,
.hero-copy__lead {
  min-width: 0;
}

.hero-copy > p:not(.hero-copy__lead):not(.hero-kicker) {
  max-width: 660px;
  color: #3b4858;
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--primary);
  border-radius: 2px;
  background: #fff;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 85, 164, 0.05);
}

.button::after,
.text-link::after {
  content: "→";
  margin-left: 0.7rem;
}

.button--primary {
  background: var(--primary);
  color: #fff;
}

.button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}

.fact-sheet dl div {
  background: #fff;
}

dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

dd {
  margin: 0.16rem 0 0;
  font-weight: 850;
}

.profile-panel {
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.profile-panel__image {
  width: min(430px, 100%);
  aspect-ratio: 3 / 4;
  margin-inline: auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface-strong);
}

.profile-panel__image img,
.profile-panel__portrait {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.image-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #f8fbff, #eef5fb);
  color: var(--primary);
}

.image-placeholder svg {
  width: min(58%, 250px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  opacity: 0.65;
}

.image-placeholder span {
  color: var(--muted);
  font-weight: 800;
}

.profile-card {
  position: relative;
  right: auto;
  bottom: auto;
  display: grid;
  gap: 0;
  width: min(420px, 92%);
  margin: -1.4rem auto 0;
  padding: 0.6rem 0;
  border: 1px solid rgba(219, 238, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(6, 23, 66, 0.96);
  box-shadow: 0 24px 60px rgba(6, 23, 66, 0.26);
  color: #fff;
}

.profile-card div {
  padding: 0.8rem 1.1rem;
}

.profile-card div + div {
  border-top: 1px solid rgba(219, 238, 255, 0.18);
}

.profile-card dt {
  color: #b7cae1;
}

.profile-card dd {
  color: #fff;
}

.system-section,
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.system-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, 0.82fr) minmax(280px, 0.76fr);
  gap: clamp(1.5rem, 3.2vw, 2.8rem);
  align-items: start;
}

.system-column,
.article-index,
.page-hero .container,
main,
section,
article {
  min-width: 0;
}

.system-column h2,
.page-hero h1,
.prose h1,
.article-page h1 {
  margin: 0 0 1.25rem;
  color: #061742;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.system-column h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

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

.numbered-list li {
  display: grid;
  grid-template-columns: 48px 44px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.numbered-list__number {
  color: var(--accent);
  font-weight: 900;
}

.numbered-list__icon,
.topic-ledger__icon {
  color: var(--primary);
}

.numbered-list__icon svg,
.topic-ledger__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

h2,
h3,
p {
  overflow-wrap: anywhere;
}

.numbered-list h3,
.timeline h3,
.post-index h3,
.article-index h2,
.role-list h2,
.topic-ledger h2 {
  margin: 0 0 0.3rem;
  color: #061742;
  font-size: 1.08rem;
  line-height: 1.25;
}

.numbered-list p,
.timeline p,
.post-index p,
.article-index p,
.prose p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  border-top: 1px solid var(--line-strong);
}

.timeline article {
  position: relative;
  padding: 1rem 0 1rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.timeline article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
}

.post-index {
  border-top: 1px solid var(--line-strong);
}

.post-index article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.post-index__thumb {
  grid-row: span 2;
  aspect-ratio: 1.15;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface-strong);
}

.post-index__thumb img,
.article-index__image img,
.article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-index time,
.article-index time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.post-index h3 a,
.article-index h2 a {
  color: #061742;
  text-decoration: none;
}

.post-index h3 a:hover,
.article-index h2 a:hover {
  color: var(--primary);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.empty-state {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
}

.empty-state--large {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.06);
}

.empty-state--large h2 {
  margin: 0 0 0.65rem;
  color: #061742;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.empty-state--large p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  border-bottom: 1px solid rgba(219, 238, 255, 0.18);
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 85, 164, 0.38), transparent 24rem),
    var(--ink);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  color: #fff;
}

.page-hero__grid,
.text-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.page-hero p:not(.section-label) {
  max-width: 720px;
  color: #dbeeff;
  font-size: 1.15rem;
}

.page-hero h1 {
  color: #fff;
}

.portrait-frame {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prose {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  font-size: 1.12rem;
}

.fact-sheet {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.06);
}

.fact-sheet h2 {
  margin: 0;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--secondary);
  font-size: 1rem;
}

.fact-sheet dl {
  display: grid;
  margin: 0;
}

.fact-sheet dl div {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.role-list,
.topic-ledger,
.article-index {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.role-list article,
.topic-ledger article,
.article-index article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
}

.role-list article > span,
.topic-ledger__number {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
}

.statement-band {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--secondary);
  color: #fff;
}

.statement-band h2 {
  margin: 0 0 0.7rem;
  color: #fff;
}

.statement-band p {
  max-width: 780px;
  margin: 0;
  color: #dbeeff;
  font-size: 1.25rem;
}

.topic-ledger article {
  grid-template-columns: 56px 54px minmax(0, 1fr);
}

.topic-ledger ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.topic-ledger li {
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--secondary);
  font-size: 0.84rem;
  font-weight: 750;
}

.article-index article {
  grid-template-columns: 220px 110px minmax(0, 1fr) 44px;
  align-items: start;
}

.article-index__image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.index-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 1.25rem;
  text-decoration: none;
}

.article-page {
  background: #fff;
}

.article-page p:not(.section-label):not(.article-date) {
  max-width: 760px;
  color: #273443;
  font-size: 1.13rem;
}

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

.article-content h2,
.article-content h3 {
  margin: 2rem 0 0.75rem;
  color: #061742;
  line-height: 1.18;
}

.article-content ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  color: #273443;
  font-size: 1.08rem;
}

.article-content li + li {
  margin-top: 0.35rem;
}

.article-cover {
  margin: 2rem 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  text-decoration: none;
}

.back-link::before {
  content: "← ";
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 51, 102, 0.06);
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.9rem;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.notice {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.notice--success {
  border-color: #65a77f;
  background: #f0fff6;
}

.notice--error {
  border-color: #c47870;
  background: #fff6f5;
}

.contact-note {
  padding-left: 1.2rem;
  border-left: 4px solid var(--accent);
}

.contact-note h2 {
  margin-top: 0;
}

.site-footer {
  border-top: 0;
  background: var(--ink);
  color: #c7d7ea;
}

.system-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
  padding: clamp(3rem, 7vw, 5.25rem) 0 1.35rem;
  font-size: 0.95rem;
}

.system-footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1.55rem, 3vw, 2.4rem);
  width: min(100%, 760px);
  height: 1px;
  background: var(--accent);
}

.system-footer p {
  margin: 0;
}

.footer-brand,
.footer-links {
  display: grid;
  gap: 1.15rem;
}

.footer-brand p {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.footer-brand > span {
  display: block;
  max-width: 420px;
  color: #dbeeff;
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.35;
}

.footer-mail {
  width: fit-content;
  min-height: 46px;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(219, 238, 255, 0.32);
  background: #fff;
  color: var(--secondary);
  font-weight: 850;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-socials,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
}

.footer-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(219, 238, 255, 0.18);
}

.footer-socials a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(219, 238, 255, 0.18);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.footer-socials a:nth-child(odd) {
  padding-right: 1.2rem;
}

.footer-socials a:nth-child(even) {
  padding-left: 1.2rem;
}

.footer-socials a span:last-child {
  color: var(--accent);
  transition: transform 160ms ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-socials a:hover span:last-child {
  transform: translateX(0.25rem);
}

.footer-legal {
  gap: 1rem;
  font-size: 0.88rem;
}

.footer-legal a,
.footer-copy a {
  color: #dbeeff;
  text-decoration-color: rgba(219, 238, 255, 0.45);
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(219, 238, 255, 0.18);
  font-size: 0.84rem;
}

@media (max-width: 1060px) {
  .site-header__inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .primary-nav {
    position: fixed;
    left: 1rem;
    right: auto;
    top: 78px;
    z-index: 40;
    width: calc(100vw - 2rem);
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 51, 102, 0.16);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    min-height: 52px;
    padding: 0 1rem;
    border-radius: 4px;
    font-size: 1.05rem;
  }

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

  .nav-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    justify-self: end;
    place-items: center;
  }

  .home-hero__grid,
  .system-layout,
  .page-hero__grid,
  .text-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-panel {
    min-height: auto;
  }

  .profile-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .system-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 2rem), 360px);
    max-width: min(calc(100% - 2rem), 360px);
    margin-inline: auto;
  }

  .site-header__inner {
    min-height: 68px;
    gap: 0.65rem;
  }

  .primary-nav {
    top: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand__name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand__line {
    display: none;
  }

  .home-hero__grid {
    width: min(calc(100% - 2rem), 360px);
    max-width: min(calc(100% - 2rem), 360px);
    min-height: auto;
    padding: 3rem 0;
  }

  .home-hero::after {
    display: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 3.1rem);
  }

  .hero-copy__lead {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .hero-copy > p:not(.hero-copy__lead):not(.hero-kicker) {
    display: block;
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .page-hero h1,
  .article-page h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.05;
    overflow-wrap: break-word;
  }

  .page-hero p:not(.section-label) {
    font-size: 1rem;
  }

  .role-list article,
  .topic-ledger article,
  .article-index article {
    grid-template-columns: 1fr;
  }

  .numbered-list li {
    grid-template-columns: 40px 1fr;
  }

  .numbered-list__icon {
    display: none;
  }

  .hero-actions,
  .button-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .article-index__image,
  .article-cover {
    width: 100%;
    max-width: 100%;
  }

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

  .footer-socials a:nth-child(odd),
  .footer-socials a:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
