:root {
  /* ==========================================================
     BRAND PALETTE — BLUE & GOLD
     Graphic designer: edit the five values below and the entire
     site recolors. The blues are --blue/--navy/--navy-2; the golds
     are --gold/--gold-2. No brand color is hardcoded anywhere else.
     ========================================================== */
  --blue: #1a2c54;     /* campaign blue — sampled from the official logo */
  --navy: #1a2c54;     /* campaign blue — sampled from the official logo */
  --navy-2: #1a2c54;   /* campaign blue — sampled from the official logo */
  --gold: #fdc12b;     /* primary gold */
  --gold-2: #fed873;   /* light gold */
  --ink: #10203b;
  --text: #31405c;
  --muted: #66728a;
  --paper: #fffaf0;
  --soft: #f4f0e7;
  --white: #ffffff;
  --line: rgba(26, 44, 84, 0.14);
  --shadow: 0 24px 70px rgba(26, 44, 84, 0.2);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(225px, 56vw);
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 24px);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-donate) {
  border-bottom: 2px solid transparent;
}

.site-nav a:not(.nav-donate):hover,
.site-nav a:not(.nav-donate):focus-visible {
  border-color: var(--gold);
}

.nav-donate {
  padding: 12px 18px;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.section {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 72px);
}

.section-dark {
  color: var(--white);
  background: var(--navy-2);
}

.section-soft {
  background: var(--soft);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 560px);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: start;
  gap: 18px clamp(28px, 5vw, 72px);
  padding: clamp(44px, 6vw, 84px) clamp(20px, 5vw, 72px);
  background:
    url("assets/img/girl-dark.png") left 4vw center / min(46vw, 690px) auto no-repeat,
    var(--white);
}

/* White hero: dark text for legibility */
.hero h1 {
  color: var(--ink);
}

.hero .eyebrow {
  color: var(--blue);
}

.hero .button-secondary {
  color: var(--navy);
  box-shadow: inset 0 0 0 2px rgba(26, 44, 84, 0.4);
}

.hero-copy {
  grid-column: 2;
  max-width: 650px;
  padding: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  line-height: 1.02;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 5.6vw, 5.9rem);
  font-weight: 1000;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 1000;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.hero-lede {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.4vw, 1.95rem);
  font-weight: 900;
  line-height: 1.12;
}

.hero-text {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}

.button-primary {
  color: var(--navy-2);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
}

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

.signup-panel,
.join-form,
.contact-form,
.modal-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-panel {
  grid-column: 2;
  width: 100%;
  margin-bottom: 12px;
  padding: clamp(16px, 2.2vw, 22px);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-label {
  margin: 0 0 8px;
  color: var(--navy-2);
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.signup-panel input {
  min-height: 42px;
  padding: 9px 12px;
}

.signup-panel .button {
  min-height: 42px;
  padding: 9px 16px;
}

.signup-panel .check-row {
  margin-top: 8px;
}

.signup-panel .check-row span {
  font-size: 0.7rem;
}

.signup-panel a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
}

.form-grid {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submit-row {
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.65fr);
}

label span,
legend {
  display: block;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 32, 59, 0.16);
  border-radius: 6px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 44, 84, 0.16);
}

.check-row {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 12px 0 0;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check-row span {
  color: rgba(16, 32, 59, 0.82);
  font-size: 0.78rem;
  line-height: 1.4;
}

.form-success {
  min-height: 1.3em;
  margin: 12px 0 0;
  color: #0c5a37;
  font-weight: 850;
}

.election-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: center;
  padding: 24px clamp(20px, 5vw, 72px);
  color: var(--navy-2);
  background: var(--gold);
}

.election-strip span {
  display: block;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.election-strip strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1.1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  color: var(--ink);
}

.section-copy {
  max-width: 760px;
}

.section-copy p:not(.eyebrow),
.join-intro p,
.contact-section p,
.legal-content p {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 950;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--gold);
  text-underline-offset: 5px;
}

.feature-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
}

.image-tall img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-heading {
  max-width: 850px;
  margin: 0 0 36px;
  color: var(--ink);
}

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

.about-grid article,
.issue-card {
  padding: clamp(20px, 3vw, 34px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-grid p,
.issue-card p {
  margin-bottom: 0;
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy-2);
}

.photo-band img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.issues-section {
  color: var(--ink);
  background: var(--paper);
}

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

.issue-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 1000;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

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

.support-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.join-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: var(--ink);
  background: var(--white);
}

.join-intro {
  align-self: start;
}

.intro-photo {
  margin: 28px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.join-form,
.contact-form {
  padding: clamp(22px, 4vw, 42px);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

fieldset {
  margin: 24px 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

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

.option-grid label {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 46px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.option-grid input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.conditional-fields {
  margin: 18px 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-consent {
  margin: 20px 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.66fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  color: var(--ink);
}

.mail-note {
  padding: 18px;
  background: var(--white);
  border-left: 5px solid var(--gold);
}

.site-footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 40px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  background: var(--navy-2);
}

.footer-brand {
  width: min(280px, 72vw);
}

.site-footer p {
  max-width: 880px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: center;
  color: var(--gold);
  font-weight: 850;
}

.footer-social {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.12s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.donate-modal[hidden] {
  display: none;
}

.donate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 44, 84, 0.72);
  backdrop-filter: blur(7px);
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(26px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(160deg, var(--blue), var(--navy-2));
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(26, 44, 84, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
}

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

.donate-grid a {
  padding: 18px;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 1000;
  transition: transform 0.12s ease, background 0.12s ease;
}

.donate-grid a:hover,
.donate-grid a:focus-visible {
  background: var(--gold-2);
  transform: translateY(-2px);
}

.donate-alt {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.donate-alt a {
  color: var(--gold);
  font-weight: 850;
  text-underline-offset: 4px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.legal-content {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 0;
  color: var(--ink);
}

.legal-content h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 6rem);
}

.legal-content h2 {
  margin-top: 38px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 24px;
    background: rgba(26, 44, 84, 0.98);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .nav-donate {
    margin-top: 8px;
    padding: 14px 18px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    background:
      linear-gradient(180deg, rgba(26, 44, 84, 0.24), rgba(26, 44, 84, 0.92) 48%, rgba(26, 44, 84, 0.98)),
      url("assets/img/girl-dark.png") center top / min(92vw, 620px) auto no-repeat,
      var(--navy-2);
  }

  .hero-copy {
    grid-column: auto;
    padding-top: clamp(360px, 72vw, 560px);
  }

  .signup-panel {
    grid-column: auto;
    max-width: 640px;
  }

  .about-grid,
  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .support-section,
  .join-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .join-intro {
    position: static;
  }

  /* Hero background flips to dark navy on mobile — flip text to light */
  .hero h1 {
    color: var(--white);
  }

  .hero .eyebrow {
    color: var(--gold);
  }

  .hero .hero-lede {
    color: rgba(255, 255, 255, 0.92);
  }

  .hero .hero-text {
    color: rgba(255, 255, 255, 0.80);
  }

  .hero .button-secondary {
    color: var(--white);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.35);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
  }

  .site-nav {
    inset: 70px 0 auto 0;
  }

  h1 {
    font-size: clamp(2.4rem, 11vw, 3.4rem); /* was 17vw — reduced so heading doesn't dominate the whole screen */
  }

  .hero {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px); /* svh excludes browser chrome (Safari bottom bar) */
    padding-top: 24px;
  }

  .hero-copy {
    padding-top: clamp(200px, 56vw, 320px); /* was clamp(330px, 86vw, 460px) — tightened dead space */
  }

  .form-grid.two,
  .submit-row,
  .election-strip,
  .about-grid,
  .issue-grid,
  .option-grid,
  .donate-grid {
    grid-template-columns: 1fr;
  }

  .election-strip {
    align-items: stretch;
  }

  .photo-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-visual {
    grid-template-columns: 1fr;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Multi-page: active nav, page banners, content ===== */
.site-nav a[aria-current="page"]:not(.nav-donate) {
  border-color: var(--gold);
}

.page-hero {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(160deg, var(--blue), var(--navy-2));
}

.page-hero .eyebrow {
  color: var(--gold);
}

.page-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--gold-2);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.prose {
  max-width: 760px;
}

.prose p {
  margin: 0 0 20px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
}

.prose .signoff {
  margin-top: 28px;
  font-weight: 850;
  color: var(--navy);
}

.about-figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.creds-grid div {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
  color: var(--ink);
}

.issue-detail {
  display: grid;
  gap: 18px;
  max-width: 1120px;
}

.issue-detail article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

/* Each section: text card on the left, photo OUTSIDE the box on the right */
.issue-row {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32%, 360px);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
}

.issue-row article {
  margin: 0;
}

/* Photo shown in full (no cropping), aligned to the top of the section */
.issue-side-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.issue-side-photo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 820px) {
  .issue-row {
    grid-template-columns: 1fr;
  }
  .issue-side-photo {
    position: static;
  }
}

.issue-detail .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--navy-2);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 1000;
}

.issue-detail h3 {
  margin-bottom: 10px;
}

.issue-detail blockquote {
  margin: 14px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  color: var(--text);
  font-style: italic;
}

.platform-note {
  max-width: 920px;
  margin-top: 22px;
  color: var(--muted);
  font-style: italic;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .creds-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Full platform / policy pages ===== */
.policy-intro {
  max-width: 920px;
  margin-bottom: 10px;
}

.policy-intro p {
  margin: 0 0 18px;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.62;
}

.issue-detail article > p {
  margin: 0 0 14px;
  line-height: 1.6;
}

.policy-will {
  margin: 18px 0 6px;
  font-weight: 850;
  color: var(--navy);
}

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

.policy-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* Inline page figure (banner image within a section) */
.page-figure {
  margin: 0 0 24px;
  max-width: 920px;
  border-radius: var(--radius);
  overflow: hidden;
}

.page-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.page-figure figcaption {
  padding: 10px 16px;
  background: var(--navy-2);
  color: var(--gold-2);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Full-bleed photo band (edge to edge) */
.full-bleed-photo {
  margin: 0;
  width: 100%;
}

.full-bleed-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Legal pages: subheadings + lists */
.legal-content h3 {
  margin: 26px 0 8px;
  font-size: 1.15rem;
  color: var(--navy);
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 9px;
  line-height: 1.55;
}

/* Long-form bio prose */
.prose h3 {
  margin: 30px 0 8px;
  color: var(--navy);
}

.prose .lead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 800;
  line-height: 1.4;
  color: var(--navy);
}

.prose .closer {
  margin-top: 26px;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 850;
  color: var(--blue);
}
