/* ---------------------------------------------------------------
   Reset
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p, ul, ol, li, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration-color: currentColor; }

/* ---------------------------------------------------------------
   Design tokens
--------------------------------------------------------------- */
:root {
  /* Section fills */
  --color-header-bg: #F4F7FF;
  --color-hero-bg: #22366F;
  --color-navy-dark: #102348;
  --color-dates-bg: #E2EAFE;
  --color-faq-bg: #FFFFFF;
  --color-help-bg: #22366F;

  /* SOE card fills (spec overrides brief) */
  --color-soe-pinellas: #F3F7FF;
  --color-soe-hillsborough: #C7D6F2;
  --color-soe-pasco: #E1EBFE;

  /* Foreground / accents (spec overrides brief) */
  --color-text-navy: #22366F;
  --color-text-navy-heavy: #102347;
  --color-text-white: #FFFFFF;
  --color-link: #334FA2;
  /* lightest tint of --color-link that still clears WCAG AA (4.5:1)
     against BOTH the header background (#F4F7FF, ~5.26:1) and the
     lang-toggle pill background (--color-soe-pasco, ~4.70:1 — the
     binding constraint since it's the darker of the two) */
  --color-lang-toggle: #4B64AD;
  --color-hero-tagline-light: #BAD2FF;
  --color-hero-tagline-italic: #FFFFFF;
  --color-hero-button-bg: #102347;
  --color-hero-button-text: #FFFFFF;
  --color-register-band-button-bg: #BDD3FC;
  --color-register-band-button-text: #102347;
  --color-faq-bar-bg: #F3F7FF;
  --color-faq-bar-text: #102347;
  --color-body-text: #102347;
  --color-focus-ring: #FFC857;

  /* Fonts */
  --font-display: "Oswald", sans-serif;
  --font-body: "Lato", sans-serif;

  /* Spacing scale (4px base) */
  --space-half: 0.125rem;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Shared "fully round" radius, used by any pill-shaped element */
  --radius-pill: 999px;

  /* Fluid type scale: clamp(mobile-floor, fluid, desktop-value) */
  --text-header-brand: clamp(1.125rem, 1rem + 1vw, 1.75rem);      /* 18 -> 28px */
  --text-nav: clamp(0.9375rem, 0.88rem + 0.3vw, 1rem);            /* 15 -> 16px */
  --text-lang-toggle: clamp(0.9375rem, 0.88rem + 0.3vw, 1rem);    /* 15 -> 16px */
  --text-hero-tagline: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);      /* 24 -> 36px */
  --text-button: clamp(0.9375rem, 0.88rem + 0.4vw, 1.125rem);     /* 15 -> 18px */
  --text-eyebrow: clamp(0.9375rem, 0.88rem + 0.4vw, 1.125rem);    /* 15 -> 18px */
  --text-section-heading: clamp(1.5rem, 1.2rem + 2vw, 2.25rem);   /* 24 -> 36px */
  --text-soe-county: clamp(1.25rem, 1.17rem + 0.33vw, 1.5rem);    /* 20 -> 24px; floor raised above the fixed 18px SOE eyebrow so it stays the visually larger element at every width */
  --text-date-label: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);       /* 18 -> 24px */
  --text-plan-step: clamp(1.0625rem, 0.95rem + 0.7vw, 1.5rem);    /* 17 -> 24px */
  --text-plan-step-row: clamp(1rem, 0.45rem + 1.05vw, 1.5rem);    /* 16px at 840px viewport -> 24px at 1600px, row layout only */
  --text-faq-question: clamp(1.0625rem, 0.95rem + 0.7vw, 1.5rem);/* 17 -> 24px */
  --text-register-band: clamp(1.25rem, 1rem + 1.3vw, 1.875rem);   /* 20 -> 30px */
  --text-body-1: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);          /* 15 -> 16px */
  --text-body-2: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);          /* 16 -> 18px */
  --text-help-org: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);         /* 18 -> 24px */
  --text-help-detail: clamp(0.9375rem, 0.88rem + 0.4vw, 1.125rem);/* 15 -> 18px */
  --text-footer: clamp(0.9375rem, 0.88rem + 0.4vw, 1.125rem);     /* 15 -> 18px */

  /* MD3 window-size class breakpoints, for reference:
     compact: 0-599, medium: 600-839, expanded: 840-1199,
     large: 1200-1599, extra-large: 1600+ */
}

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-body-text);
  background: var(--color-faq-bg);
  line-height: 1.5;
}

.container {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 840px) {
  .container { padding-inline: var(--space-7); }
}

a {
  color: var(--color-link);
}

:focus-visible {
  outline: 3px solid var(--color-focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: var(--space-3);
  top: -100px;
  background: var(--color-navy-dark);
  color: var(--color-text-white);
  padding: var(--space-3) var(--space-5);
  border-radius: 0.25rem;
  z-index: 100;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: var(--space-3);
}

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

/* ---------------------------------------------------------------
   Buttons
--------------------------------------------------------------- */
.button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-button);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-6);
  white-space: nowrap;
}

.button--hero {
  background: var(--color-hero-button-bg);
  color: var(--color-hero-button-text);
}

.button--register-band {
  background: var(--color-register-band-button-bg);
  color: var(--color-register-band-button-text);
}

/* ---------------------------------------------------------------
   Header (full-bleed, exempt from the 1600px cap)
--------------------------------------------------------------- */
.site-header {
  background: var(--color-header-bg);
  position: sticky;
  top: 0;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.20);
  z-index: 10;
}

.site-header__inner {
  display: flex;
  /* flex-start, not center: when the mobile dropdown opens, .brand-nav
     grows much taller than the icon, and center-alignment would drag
     the icon down toward the middle of that whole expanded block */
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: var(--space-4);
  row-gap: var(--space-3);
  padding-top: var(--space-4);
  padding-right: var(--space-5);
  padding-bottom: var(--space-2);
  padding-left: var(--space-5);
}

@media (min-width: 840px) {
  .site-header__inner {
    padding-right: var(--space-7);
    padding-left: var(--space-7);
  }
}

/* >= 840px (MD3 "expanded", matching the breakpoint used everywhere
   else on the page): switch to normal block flow so the floated
   language toggle and the brand+nav line interact via ordinary
   float/line-box rules instead of flexbox. This matters because a
   flex item can only have one width for ALL of its wrapped lines — a
   brand+nav flex row that shares line 1 with the language toggle can
   never let a wrapped nav line reclaim the width the toggle was
   reserving on line 1, so the nav line renders narrower than the
   header for no visual reason.
   A float doesn't have that problem: line 1 (brand, plus nav if it
   fits) narrows only beside the float; if nav doesn't fit it drops
   whole to line 2, which — since the floated toggle is only about one
   line tall — is already clear of the float and gets the full header
   width, including for any further lines nav wraps to internally.
   Below 840px (compact AND medium), the mobile-style icon/disclosure
   nav is used instead. */
@media (min-width: 840px) {
  .site-header__inner {
    display: block;
  }
  /* clearfix: contain the float within the header's own box */
  .site-header__inner::after {
    content: "";
    display: table;
    clear: both;
  }
}

.brand-nav {
  order: 2;
  flex: 1 1 0%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: var(--space-3);
  row-gap: var(--space-2);
  min-width: 0;
}

@media (min-width: 840px) {
  /* normal inline flow: brand (inline text) followed by nav-list
     (a single inline-flex box) wrapping like text around the float */
  .brand-nav { display: block; }
}

.brand {
  order: 1;
  flex: 1 1 auto;
  /* inline-block (not plain inline) because vertical margins are
     ignored on non-replaced inline elements — needed for margin-bottom
     to create breathing room when the nav wraps below it */
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-header-brand);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text-navy);
  white-space: nowrap;
  vertical-align: middle;
}

@media (min-width: 840px) {
  .brand {
    /* the gap to nav lives here (margin-right), not as margin-left on
       nav-list, so a wrapped nav line starts flush left with no
       leftover indent from a gap that no longer applies on that line */
    margin-right: var(--space-5);
    margin-bottom: var(--space-2);
  }
}

/* lang-toggle lives inside .brand-nav (as its first child, for float
   order) so its position is stable whether or not the mobile nav
   dropdown is open — the dropdown is a separate, higher-ordered
   flex item within the same container, not a sibling further down
   the outer header row. */
.lang-toggle {
  order: 2;
  flex: 0 0 max-content;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: var(--text-lang-toggle);
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.lang-toggle a { text-decoration: underline; color: var(--color-lang-toggle); }
.lang-toggle__current { color: var(--color-lang-toggle); }

@media (min-width: 840px) {
  .lang-toggle {
    float: right;
    margin-left: var(--space-5);
    /* floats ignore the line box's baseline/vertical-align entirely —
       this is a hand-tuned nudge to line it up with the nav links */
    margin-top: 7px;
    background-color: var(--color-soe-pasco);
    padding: var(--space-half) var(--space-3);
    border-radius: var(--radius-pill);
  }
}

.lang-abbr { display: none; }

/* Nav: details/summary disclosure, no JS. The <details> (.nav-toggle)
   is a sibling of <nav>, not its child, so .nav-list is never subject
   to the browser's special-cased hiding/sizing of a closed <details>'s
   content, which collapses to a 0-size box even when overridden with
   `display`.
   Below 840px (compact AND medium): icon toggle sits left of the
   brand; .nav-list is hidden until the toggle is [open], then shown
   full-width below, within .brand-nav.
   >= 840px: the icon toggle is hidden; .site-nav becomes an
   inline-block wrapper (vertical-align: middle, plus its own
   padding-bottom to counter .brand's margin-bottom) so it lines up
   with the brand text — see .nav-list. */
.nav-toggle {
  order: 1;
  flex: 0;
}

@media (min-width: 840px) {
  .nav-toggle { display: none; }
}

.site-nav {
  order: 3;
}

@media (max-width: 839px) {
  .site-nav { flex-basis: 100%; }
}

@media (min-width: 840px) {
  .site-nav {
    display: inline-block;
    padding-bottom: var(--space-2);
    vertical-align: middle;
  }
}

.nav-toggle__button {
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: var(--color-text-navy);
  padding: var(--space-2) 0;
}
.nav-toggle__button::-webkit-details-marker { display: none; }

.nav-toggle__icon {
  width: 1.25rem;
  height: 1rem;
  position: relative;
  border-top: 2px solid currentColor;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}
.nav-toggle__icon::before { top: 0.4rem; }
.nav-toggle__icon::after { top: 0.85rem; }

.nav-list {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-3);
}

.nav-toggle[open] ~ .brand-nav .nav-list {
  display: flex;
}

.nav-list a {
  font-family: var(--font-display);
  font-size: var(--text-nav);
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-navy);
}
.nav-list a:hover,
.nav-list a:focus-visible {
  text-decoration: underline;
}

@media (min-width: 840px) {
  /* inline-flex: an atomic inline-level box (so it wraps as a whole
     unit around the float, like an inline-block image would) whose
     own children still lay out with ordinary flex row + wrap + gap */
  .nav-list {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: var(--space-5);
    row-gap: var(--space-2);
    padding-top: 0;
    vertical-align: middle;
  }
}

/* Abbreviate the language toggle to fit beside the icon + brand
   whenever the mobile-style header is in play (below 840px) */
@media (max-width: 839px) {
  .lang-full { display: none; }
  .lang-abbr { display: inline; }
}

@media (min-width: 1200px) {
  .nav-list { column-gap: var(--space-6); }
}

/* ---------------------------------------------------------------
   Hero
--------------------------------------------------------------- */
.hero {
  background: var(--color-hero-bg);
  padding-block: var(--space-8);
}

.hero__inner {
  display: grid;
  gap: var(--space-7);
  align-items: center;
  max-width: 1400px;
}

@media (min-width: 840px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-hero-tagline);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}
.hero__tagline-line--light { color: var(--color-hero-tagline-light); }
.hero__tagline-line--italic {
  color: var(--color-hero-tagline-italic);
  font-style: italic;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (min-width: 840px) {
  .hero__buttons { justify-content: flex-start; }
}

@media (max-width: 839px) {
  .hero__buttons .button { width: 100%; }
}

.hero__copy {
  order: 1;
}
.hero__art {
  order: 0;
  justify-self: center;
}

@media (min-width: 840px) {
  .hero__copy { order: 0; }
  .hero__art { order: 0; }
}
.hero__wordmark {
  width: 100%;
  max-width: 480px;
}

/* ---------------------------------------------------------------
   Supervisor of Elections cards (subgrid, full-bleed outer fills)
--------------------------------------------------------------- */
.soe {
  overflow-x: clip;
}

.soe__grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 840px) {
  .soe__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, auto);
    max-width: 1600px;
    margin-inline: auto;
  }
}

.soe-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-5);
}

@media (min-width: 840px) {
  .soe-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 6;
    row-gap: var(--space-2);
    padding: var(--space-7) var(--space-6);
  }
}

.soe-card {
  text-align: center;
}
.soe-card__blurb {
  text-align: left;
}

.soe-card--pinellas { background: var(--color-soe-pinellas); }
.soe-card--hillsborough { background: var(--color-soe-hillsborough); }
.soe-card--pasco { background: var(--color-soe-pasco); }

/* Bleed the outer two cards' fills to the viewport edge without
   moving their content off the 1600px/subgrid columns. */
@media (min-width: 840px) {
  .soe-card--pinellas,
  .soe-card--pasco {
    background: none;
  }
  .soe-card--pinellas::before,
  .soe-card--pasco::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    z-index: -1;
  }
  .soe-card--pinellas::before {
    right: 0;
    background: var(--color-soe-pinellas);
  }
  .soe-card--pasco::before {
    left: 0;
    background: var(--color-soe-pasco);
  }
}

.soe-card__eyebrow {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-text-navy-heavy);
}

.soe-card__county {
  font-family: var(--font-display);
  font-size: var(--text-soe-county);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text-navy-heavy);
}

.soe-card__blurb {
  font-size: var(--text-body-1);
}

.soe-card__link a {
  font-weight: 700;
  text-decoration: underline;
}

.soe-card__ballot-lead {
  font-size: var(--text-body-1);
  text-wrap: balance;
}

/* ---------------------------------------------------------------
   Make a Plan to Vote (full-bleed dark band)
--------------------------------------------------------------- */
.plan {
  background: var(--color-navy-dark);
  color: var(--color-text-white);
  padding-block: var(--space-7);
}

.plan__heading {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: var(--space-6);
}

.plan__steps {
  display: grid;
  gap: var(--space-5);
}

.plan__step {
  position: relative;
  padding-left: 1.75em;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: var(--text-plan-step);
  font-weight: 400;
  line-height: 1.35;
}
.plan__step:first-child {
  padding-top: 0;
  border-top: none;
}
.plan__step::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: var(--space-5);
  font-weight: 600;
}
.plan__step:first-child::before {
  top: 0;
}

@media (min-width: 840px) {
  .plan__steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .plan__step {
    padding-left: var(--space-5);
    padding-top: 0;
    border-top: none;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    /* narrow ~1/4-width columns wrap oddly at the base fluid size;
       shrink more aggressively here, with a 16px floor */
    font-size: var(--text-plan-step-row);
    text-wrap: balance;
  }
  .plan__step::before {
    content: none;
  }
}

/* ---------------------------------------------------------------
   Important Dates (subgrid)
--------------------------------------------------------------- */
.dates {
  background: var(--color-dates-bg);
  padding-block: var(--space-8);
}

.dates__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-navy-heavy);
}

.dates__heading {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: var(--space-1);
  margin-bottom: var(--space-7);
}

.dates__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-7);
}

@media (min-width: 840px) {
  .dates__grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: var(--space-8);
    row-gap: var(--space-7);
  }
  .dates__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: var(--space-2);
  }
}

.dates__label {
  font-family: var(--font-display);
  font-size: var(--text-date-label);
  font-weight: 400;
  text-transform: uppercase;
}

.dates__body {
  font-size: var(--text-body-2);
}

.dates__links a {
  font-weight: 700;
  text-decoration: underline;
}
.dates__links-lead {
  font-style: italic;
  font-weight: 700;
}
.dates__links {
  padding-top: var(--space-2);
  font-size: var(--text-body-2);
}

/* ---------------------------------------------------------------
   FAQ (native details/summary accordion)
--------------------------------------------------------------- */
.faq {
  background: var(--color-faq-bg);
  padding-block: var(--space-8);
}

.faq__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-navy-heavy);
}

.faq__heading {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: var(--space-1);
  margin-bottom: var(--space-7);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 900px;
  margin-inline: auto;
}

.faq__item {
  background: var(--color-faq-bar-bg);
  border-radius: 0.5rem;
  color: var(--color-faq-bar-text);
  overflow: hidden;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-size: var(--text-faq-question);
  padding: var(--space-5) var(--space-6);
}
.faq__question::-webkit-details-marker { display: none; }

.faq__caret {
  flex: none;
  width: 0.6em;
  height: 0.6em;
  border-right: 0.15em solid currentColor;
  border-bottom: 0.15em solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .faq__caret { transition: none; }
}

.faq__item[open] .faq__caret {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-body-2);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq__answer a {
  color: var(--color-faq-bar-text);
  font-weight: 700;
}

.faq__answer ul {
  list-style: disc;
  padding-left: 1.25em;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* ---------------------------------------------------------------
   Register / Check band (full-bleed dark)
--------------------------------------------------------------- */
.register-band {
  background: var(--color-navy-dark);
  color: var(--color-text-white);
  padding-block: var(--space-7);
}

.register-band__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: flex-start;
}

@media (min-width: 840px) {
  .register-band__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.register-band__text {
  font-size: var(--text-register-band);
  font-weight: 500;
  line-height: 1.2;
}

.register-band__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  flex: none;
}

@media (min-width: 840px) {
  .register-band__buttons { justify-content: flex-start; }
}

@media (max-width: 839px) {
  .register-band__buttons { width: 100%; }
  .register-band__buttons .button { width: 100%; }
}

/* ---------------------------------------------------------------
   Get Help Voting
--------------------------------------------------------------- */
.help {
  background: var(--color-help-bg);
  color: var(--color-text-white);
  padding-block: var(--space-8);
}

.help__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.help__heading {
  font-family: var(--font-display);
  font-size: var(--text-section-heading);
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-top: var(--space-1);
  margin-bottom: var(--space-7);
}

.help__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 600px) {
  .help__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .help__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.help__org {
  font-family: var(--font-display);
  font-size: var(--text-help-org);
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}

.help__detail {
  font-size: var(--text-help-detail);
}

.nowrap {
  white-space: nowrap;
}
.help__detail a {
  color: var(--color-text-white);
  text-decoration: underline;
}

/* ---------------------------------------------------------------
   Footer (full-bleed)
--------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-dark);
  color: var(--color-text-white);
  padding-block: var(--space-5);
}

.site-footer__text {
  font-size: var(--text-footer);
  font-weight: 400;
  text-align: center;
}
.site-footer__text a {
  color: var(--color-text-white);
  text-decoration: underline;
}
