:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #5c6862;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dfe3dc;
  --forest: #123f35;
  --teal: #1f8276;
  --coral: #d95f43;
  --gold: #d69b31;
  --sky: #dbeef2;
  --sage: #e8efe7;
  --navy: #22334f;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(27, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(18, 63, 53, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-text {
  font-size: 14px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  color: var(--coral);
}

.nav-donate {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 9px 15px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  place-items: center;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 136px clamp(18px, 5vw, 72px) 34px;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 24, 21, 0.86) 0%, rgba(10, 24, 21, 0.58) 38%, rgba(10, 24, 21, 0.22) 76%),
    linear-gradient(0deg, rgba(10, 24, 21, 0.8) 0%, rgba(10, 24, 21, 0.1) 45%);
}

.hero-content,
.hero-status {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

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

.hero .eyebrow {
  color: #ffc66d;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.1vw, 22px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 800;
}

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

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--coral);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 68px;
}

.hero-status span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.section {
  padding: clamp(70px, 9vw, 126px) clamp(18px, 5vw, 72px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--forest);
  color: #fff;
  padding-top: 42px;
  padding-bottom: 42px;
}

.intro-grid,
.two-column,
.split-feature,
.partner-grid,
.governance-layout,
.donate-layout,
.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.3vw, 44px);
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
}

.section-heading {
  position: sticky;
  top: 110px;
}

.section-heading.compact {
  position: static;
  max-width: 780px;
  margin-bottom: 34px;
}

.lead {
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
}

.values-grid,
.program-grid,
.pathway-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.values-grid article,
.program-card,
.pathway-grid article,
.boundary-panels article,
.metrics-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(27, 38, 33, 0.04);
}

.values-grid article {
  min-height: 150px;
}

.values-grid p,
.program-card p,
.pathway-grid p,
.boundary-panels li {
  color: var(--muted);
}

.warm {
  background: var(--sage);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.tag {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.tag.immediate {
  background: rgba(31, 130, 118, 0.12);
  color: var(--teal);
}

dl {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-weight: 800;
}

.roadmap-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.roadmap-strip span {
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
}

.section-cta {
  margin-top: 28px;
}

.split-feature p,
.partner-grid p,
.governance-layout p,
.donate-layout p,
.join-layout p {
  color: var(--muted);
  font-size: 18px;
}

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

.resource-list a {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.08;
}

.resource-list span {
  color: var(--coral);
  font-size: 14px;
}

.deep {
  background: var(--navy);
  color: #fff;
}

.deep .section-kicker {
  color: #ffc66d;
}

.community-layout {
  display: grid;
  gap: 42px;
}

.deep .pathway-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.deep .pathway-grid p {
  color: rgba(255, 255, 255, 0.76);
}

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

.boundary-panels ul {
  margin: 0;
  padding-left: 18px;
}

.impact-band {
  background: var(--sky);
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid article {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metrics-grid strong {
  color: var(--teal);
  font-size: 38px;
  line-height: 1;
}

.metrics-grid span {
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stewardship-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.stewardship-list span {
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  padding: 13px 16px;
  color: var(--forest);
  font-weight: 900;
  box-shadow: 0 1px 0 rgba(27, 38, 33, 0.04);
}

.timeline li {
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.timeline span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.donate-section {
  background: var(--forest);
  color: #fff;
}

.donate-section .section-kicker {
  color: #ffc66d;
}

.donate-layout {
  align-items: center;
}

.donate-layout p {
  color: rgba(255, 255, 255, 0.78);
}

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

.donation-button {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.donation-button.wide {
  grid-column: 1 / -1;
  font-size: 22px;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 14px !important;
}

.join-section {
  background: #fff;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.interest-form .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--teal) !important;
  font-size: 14px !important;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.page-body {
  background: var(--paper);
}

.page-body .site-header {
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(18, 63, 53, 0.1);
  backdrop-filter: blur(14px);
}

.site-nav a[aria-current="page"] {
  color: var(--coral);
}

.page-hero {
  padding: 154px clamp(18px, 5vw, 72px) 80px;
  background:
    linear-gradient(135deg, rgba(18, 63, 53, 0.96), rgba(34, 51, 79, 0.92)),
    radial-gradient(circle at 75% 30%, rgba(217, 95, 67, 0.28), transparent 34%);
  color: #fff;
}

.page-hero.volunteer-hero {
  background:
    linear-gradient(135deg, rgba(34, 51, 79, 0.96), rgba(18, 63, 53, 0.92)),
    radial-gradient(circle at 76% 26%, rgba(214, 155, 49, 0.25), transparent 36%);
}

.page-hero.resources-hero {
  background:
    linear-gradient(135deg, rgba(18, 63, 53, 0.95), rgba(31, 130, 118, 0.9)),
    radial-gradient(circle at 76% 24%, rgba(255, 198, 109, 0.26), transparent 36%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.5fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: end;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 82px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.page-hero .section-kicker {
  color: #ffc66d;
}

.brief-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.brief-card strong {
  display: block;
  margin-bottom: 10px;
  color: #ffc66d;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-card p {
  margin: 0;
  font-size: 16px;
}

.program-index-section {
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.program-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-index a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.program-index a:hover {
  border-color: var(--teal);
  color: var(--teal);
}

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

.plan-section.alt {
  background: #fff;
}

.resource-library-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.resource-library-section.alt {
  background: #fff;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.library-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.plan-heading {
  position: sticky;
  top: 112px;
}

.plan-heading p {
  color: var(--muted);
  font-size: 18px;
}

.plan-detail {
  display: grid;
  gap: 18px;
}

.plan-grid,
.expansion-grid,
.role-grid,
.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plan-grid article,
.curriculum-block,
.expansion-grid article,
.role-card,
.role-overview article,
.role-lanes article,
.resource-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(27, 38, 33, 0.04);
}

.resource-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.resource-card.featured {
  grid-row: span 2;
  min-height: 536px;
  background:
    linear-gradient(180deg, rgba(232, 239, 231, 0.8), rgba(255, 255, 255, 0.96));
}

.resource-card h3 {
  font-size: 25px;
}

.resource-card p,
.resource-card li {
  color: var(--muted);
}

.resource-card ul {
  margin: auto 0 0;
  padding-left: 18px;
}

.resource-card li + li {
  margin-top: 8px;
}

.resource-type {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 18px;
  background: rgba(217, 95, 67, 0.12);
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-grid p,
.expansion-grid p,
.role-card p,
.role-card li,
.role-overview span,
.role-lanes p,
.onboarding-layout p {
  color: var(--muted);
}

.curriculum-block h3 {
  margin-bottom: 14px;
}

.professional-list {
  margin: 0;
  padding-left: 22px;
}

.professional-list li + li {
  margin-top: 10px;
}

.program-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-meta-row span {
  border-radius: 999px;
  padding: 9px 12px;
  background: var(--sage);
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.expansion-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expansion-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.expansion-grid span,
.role-card span {
  display: block;
  margin-top: auto;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.operating-grid,
.onboarding-layout,
.volunteer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.standards-list {
  display: grid;
  gap: 12px;
}

.standards-list article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.standards-list strong {
  color: #ffc66d;
}

.standards-list span {
  color: rgba(255, 255, 255, 0.76);
}

.role-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.role-overview article {
  min-height: 160px;
}

.role-overview strong {
  display: block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 28px;
  line-height: 1;
}

.role-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
}

.role-card.priority {
  min-height: 430px;
}

.role-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.role-card li + li {
  margin-top: 8px;
}

.role-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.role-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 18px;
}

.role-meta div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 10px;
}

.role-meta dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.role-meta dd {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.role-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.role-lanes article {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.role-lanes h3 {
  color: #fff;
}

.role-lanes p {
  color: rgba(255, 255, 255, 0.76);
}

.volunteer-cta {
  align-items: center;
}

.volunteer-cta h2 {
  margin-bottom: 0;
}

.volunteer-cta .button {
  justify-self: end;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .program-grid,
  .metrics-grid,
  .expansion-grid,
  .role-overview,
  .role-grid,
  .role-lanes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 18px;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 73px;
    left: 12px;
    right: 12px;
    display: none;
    max-height: calc(100vh - 90px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    padding: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 12px 6px;
  }

  .nav-donate {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 12px 6px !important;
  }

  .hero {
    min-height: 88vh;
    padding-top: 112px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 24, 21, 0.9) 0%, rgba(10, 24, 21, 0.65) 55%, rgba(10, 24, 21, 0.34) 100%),
      linear-gradient(0deg, rgba(10, 24, 21, 0.82) 0%, rgba(10, 24, 21, 0.08) 52%);
  }

  .intro-grid,
  .two-column,
  .split-feature,
  .partner-grid,
  .governance-layout,
  .donate-layout,
  .join-layout,
  .page-hero-grid,
  .plan-layout,
  .library-layout,
  .operating-grid,
  .onboarding-layout,
  .volunteer-cta,
  .values-grid,
  .boundary-panels {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .plan-heading {
    position: static;
  }

  .page-hero {
    padding-top: 122px;
  }

  .standards-list article {
    grid-template-columns: 1fr;
  }

  .volunteer-cta .button {
    justify-self: start;
  }

  .interest-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status {
    margin-top: 34px;
  }

  .program-grid,
  .pathway-grid,
  .metrics-grid,
  .donate-options,
  .plan-grid,
  .expansion-grid,
  .role-grid,
  .resource-card-grid,
  .role-overview,
  .role-lanes {
    grid-template-columns: 1fr;
  }

  .program-card,
  .metrics-grid article,
  .role-card,
  .role-card.priority,
  .expansion-grid article,
  .resource-card,
  .resource-card.featured {
    min-height: auto;
  }

  .resource-list a {
    grid-template-columns: 42px 1fr;
    font-size: 24px;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr;
  }
}
