/* ==========================================================================
   The Senior Voice — Design System
   Static pitch mockup. Zero external resources: system fonts only.
   Classic community-newspaper elegance: royal blue masthead, red accents
   used sparingly, warm paper background, serif headlines, hairline rules,
   generous whitespace, large readable type (55+ audience).
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  --ink: #1c2333;        /* body text */
  --blue: #1e3f96;       /* brand royal blue (logo field) */
  --blue-deep: #14286b;  /* masthead/footer background */
  --blue-light: #2b6cb0; /* logo glow accent */
  --red: #c8102e;        /* CTA / newspaper accent red */
  --red-deep: #9c0c22;   /* red hover/active */
  --gold: #f5b301;       /* "FREE" yellow, sparing use */
  --paper: #fbf5ea;      /* warm page background */
  --cream: #f2ead9;      /* slightly deeper warm section tint */
  --line: #d8d3c8;       /* hairlines */
  --white: #ffffff;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --radius: 8px;
  --radius-sm: 4px;
  --shadow-card: 0 1px 3px rgba(20, 33, 66, 0.09), 0 1px 2px rgba(20, 33, 66, 0.06);
  --shadow-lift: 0 12px 28px rgba(20, 33, 66, 0.16);
  --focus-ring: 3px solid var(--blue-light);
}

/* ---- Reset / base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 18px;               /* base minimum for a 55+ readership */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--blue-deep); }

::selection { background: var(--gold); color: var(--ink); }

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

/* Headings — serif, classic newspaper display type */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 0.55em;
}
h5, h6 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.4em; }
li { margin-bottom: 0.4em; }

blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--blue-deep);
  margin: 2rem 0;
  padding-top: 1rem;
  border-top: 3px double var(--ink);
}

table { border-collapse: collapse; width: 100%; }

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.9em 1.1em;
  margin-bottom: 0.85em;
  background: var(--white);
}
details + details { margin-top: -0.35em; }
summary {
  font-family: var(--sans);
  font-weight: 700;
  cursor: pointer;
  font-size: 1.0625rem;
}
details[open] summary { margin-bottom: 0.6em; }

main { display: block; }

/* Visible keyboard focus everywhere — required for a 55+ audience */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---- Skip link ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 0;
  top: -60px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  padding: 0.85em 1.5em;
  border-radius: 0 0 var(--radius-sm) 0;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: var(--focus-ring);
  outline-offset: 0;
}

/* ---- Layout: container, bands, grids ------------------------------------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 560px) {
  .container { padding: 0 1.25rem; }
}

.band {
  padding: 4.5rem 0;
}
.band--blue   { background: var(--blue); color: var(--white); }
.band--deep   { background: var(--blue-deep); color: var(--white); }
.band--cream  { background: var(--cream); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band--red    { background: var(--red); color: var(--white); }

/* Contextual light-on-dark text — white text only on blue/deep/red, never on cream/paper */
/* Equal-column responsive grids — collapse to a single column at <=720px */
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 2rem;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---- Type utilities -------------------------------------------------------- */
.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.75rem;
}

.lede {
  font-family: var(--serif);
  font-size: 1.375rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: 62ch;
  margin: 0 0 1.5em;
}

.h-xl {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.4rem + 3.2vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 0.5em;
}
.h-lg {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);
  line-height: 1.14;
  margin: 0 0 0.5em;
}

/* Double newspaper rule */
.rule {
  border: 0;
  height: 0;
  border-top: 3px double var(--ink);
  margin: 2.5rem 0;
  background: transparent;
}

/* Long-form article measure — 20px body, comfortable line length */
.prose {
  font-family: var(--serif);
  font-size: 1.1111rem; /* 20px on an 18px root */
  line-height: 1.75;
  color: var(--ink);
}
.prose p, .prose ul, .prose ol, .prose blockquote { max-width: 70ch; }
.prose h1, .prose h2, .prose h3 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin: 0.5em 0; }
.prose figcaption {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: #5b6478;
  margin-top: 0.5rem;
  max-width: 70ch;
}

/* ---- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 48px;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  border: 2px solid transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn--primary:hover { background: var(--red-deep); border-color: var(--red-deep); color: var(--white); }

.btn--blue {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); color: var(--white); }

.btn--ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }

/* Ghost buttons flip to white on dark bands/masthead/footer */
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .btn--ghost {
  border-color: var(--white);
  color: var(--white);
}
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .btn--ghost:hover {
  background: var(--white);
  color: var(--blue-deep);
}

.btn--lg {
  min-height: 56px;
  padding: 1em 2em;
  font-size: 1.1875rem;
}

/* ---- Masthead ---------------------------------------------------------------- */
.masthead { background: var(--blue-deep); }

.masthead__top {
  background: var(--blue-deep);
  padding: 1.75rem 0;
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Logo sits inside a framed nameplate insert whose background nearly
   matches the jpg's own royal-blue field, so the rectangle reads as an
   intentional plaque rather than a pasted screenshot edge. */
.masthead__logo {
  display: inline-flex;
  background: var(--blue);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
  line-height: 0;
}
.masthead__logo img {
  display: block;
  width: 248px;
  max-width: 58vw;
  height: auto;
}

.masthead__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.45;
  color: #dfe7fa;
  max-width: 34ch;
  text-align: right;
  margin: 0;
}
@media (max-width: 560px) {
  .masthead__tag { display: none; }
  .masthead__inner { justify-content: center; }
}

.nav {
  background: var(--blue);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.nav__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1.05rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.nav__link:hover { background: rgba(255, 255, 255, 0.09); color: var(--white); }
.nav__link[aria-current="page"] { border-bottom-color: var(--gold); }

.nav__link--cta {
  margin-left: auto;
  background: var(--red);
  border-radius: 999px;
  padding: 0 1.4rem;
  font-weight: 700;
}
.nav__link--cta:hover { background: var(--red-deep); }

@media (max-width: 720px) {
  .nav__inner { justify-content: center; }
  .nav__link--cta { margin-left: 0; margin-top: 0.35rem; }
}

/* ---- Footer ---------------------------------------------------------------- */
.footer {
  background: var(--blue-deep);
  color: var(--white);
  padding-top: 3.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__col h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.footer__col a {
  display: block;
  color: var(--white);
  opacity: 0.88;
  text-decoration: none;
  font-family: var(--sans);
  margin-bottom: 0.55rem;
}
.footer__col a:hover { opacity: 1; text-decoration: underline; }
.footer__col p {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.92;
  margin: 0 0 0.75em;
}
.footer__col--brand img {
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.footer__col--brand p { max-width: 32ch; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.35rem 0;
}
.footer__bottom p {
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ---- Cards ------------------------------------------------------------------ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.card__body { padding: 1.6rem; }
.card__body > *:last-child { margin-bottom: 0; }

/* Story teaser cards */
.story-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.story-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }
.story-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.story-card > :not(img) {
  margin-left: 1.4rem;
  margin-right: 1.4rem;
}
.story-card > :first-child:not(img) { margin-top: 1.4rem; }
.story-card > :last-child { margin-bottom: 1.4rem; }
.story-card h3, .story-card h4 { font-size: 1.25rem; }
.story-card p { color: #454e63; margin-bottom: 0.75em; }
.story-card a:not(.btn) {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}
.story-card a:not(.btn):hover { text-decoration: underline; }

/* Issue cover cards — real cover art or a styled placeholder */
.cover-card {
  display: flex;
  position: relative;
  aspect-ratio: 400 / 518;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 5px 16px rgba(20, 33, 66, 0.22);
  background: var(--white);
  text-decoration: none;
}
.cover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cover-card--placeholder {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.3;
}
.cover-card--placeholder span { display: block; }

/* ---- Stat band --------------------------------------------------------------- */
.stat-band {
  background: var(--blue-deep);
  padding: 3.5rem 0;
}
.stat-band .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem 3rem;
  text-align: center;
}
.stat { flex: 1 1 180px; min-width: 150px; }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.25rem);
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.stat__label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Pricing ------------------------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
@media (max-width: 960px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.25rem 1.75rem 2rem;
  box-shadow: var(--shadow-card);
}
.price-card--featured {
  border: 3px solid var(--blue);
  transform: scale(1.045);
  z-index: 2;
  box-shadow: var(--shadow-lift);
}
@media (max-width: 720px) {
  .price-card--featured { transform: none; }
}

.price__amount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--blue-deep);
  margin: 0.25rem 0;
}
.price__amount small,
.price__amount .price__period {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  color: #5b6478;
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45em 1.1em;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

/* Edition toggle (Single County / Both Counties) */
.toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.toggle__btn {
  min-height: 48px;
  padding: 0 1.5rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.toggle__btn--active {
  background: var(--blue);
  color: var(--white);
}

/* Prepay rate table */
.rate-table {
  display: block;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.rate-table table,
table.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  min-width: 480px;
}
.rate-table th,
.rate-table td {
  padding: 0.85em 1.1em;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.rate-table thead th {
  background: var(--blue-deep);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rate-table tbody tr:nth-child(even) { background: rgba(20, 40, 107, 0.035); }
.rate-table tbody tr:last-child td { border-bottom: 0; }
.rate-table td:first-child, .rate-table th:first-child { font-weight: 700; }

/* ---- Forms --------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem 1.6rem;
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.35rem;
}
.field__label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.field__input {
  min-height: 48px;
  padding: 0.65em 0.9em;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 6px;
  width: 100%;
}
textarea.field__input { min-height: 120px; padding-top: 0.75em; resize: vertical; }
.field__input:focus,
.field__input:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 1px;
  border-color: var(--blue-light);
}
.field__error {
  display: none;
  color: var(--red);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.field--invalid .field__input { border-color: var(--red); }
.field--invalid .field__error { display: block; }

/* ---- Checkout steps -------------------------------------------------------------- */
.steps {
  position: relative;
  display: flex;
  list-style: none;
  margin: 0 0 2.75rem;
  padding: 0;
  counter-reset: sv-step;
}
.steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: #5b6478;
}
.step::before {
  counter-increment: sv-step;
  content: counter(sv-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--line);
  color: #5b6478;
  font-family: var(--sans);
  font-weight: 700;
}
.step--active { color: var(--ink); }
.step--active::before {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}
.step--done { color: var(--ink); }
.step--done::before {
  content: "\2713";
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

/* ---- Misc: notices, tags, ad slots ------------------------------------------------ */
.notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.35rem;
  font-family: var(--sans);
  font-size: 0.975rem;
  line-height: 1.55;
}
.notice--demo {
  background: rgba(245, 179, 1, 0.14);
  border: 1px solid rgba(245, 179, 1, 0.5);
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-weight: 600;
}

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.3em 0.7em;
}

.ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  min-height: 140px;
  padding: 2rem 1.5rem;
  border: 2px dashed #b9bccb;
  border-radius: var(--radius);
  background: rgba(28, 35, 51, 0.02);
  font-family: var(--sans);
  color: #5b6478;
}
.ad-slot a { font-weight: 700; }

/* Blockquotes must stay readable on dark bands (matches heading/lede overrides) */
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) blockquote {
  color: var(--white);
}

/* Warmth pass (owner feedback 2026-07-02): larger nameplate, sunrise accent, livelier cards */
.masthead__logo img { width: 340px; max-width: 70vw; }
.masthead__top { border-bottom: 3px solid var(--gold); }
.card, .cover-card { transition: box-shadow 0.18s ease, transform 0.18s ease; }
.card:hover, .cover-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); }

/* Canvas round 1 (owner feedback 2026-07-05): Florida dawn masthead, bigger logo,
   editorial CTA band replacing the loud red one, advertiser spotlight cards */
.masthead__top {
  background: linear-gradient(rgba(16, 31, 86, 0.42), rgba(16, 31, 86, 0.18)),
              #14286b url("assets/fl-masthead.svg") center bottom / cover no-repeat;
  padding: 2.1rem 0;
}
.masthead__logo img {
  width: 400px;
  box-shadow: 0 3px 14px rgba(8, 14, 40, 0.55);
  border-radius: 3px;
}
.masthead__tag { text-shadow: 0 1px 6px rgba(8, 14, 40, 0.75); }

.band--editorial {
  background: var(--white);
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  position: relative;
}
.band--editorial::before {
  content: "";
  position: absolute;
  top: 7px; left: 0; right: 0;
  border-top: 1px solid var(--ink);
}

.spotlight-card { border-top: 3px solid var(--red); }
.spotlight-card .kicker { margin-bottom: 0.5rem; }
.spotlight-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

/* Dark-band text overrides. These :where() selectors are zero-specificity on the band
   part BY DESIGN, so they only win by source order — this block must stay LAST in the
   file, after every component rule it overrides (.lede, .kicker, .field__label, etc.). */
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) {
  color: var(--white);
}
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) h1,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) h2,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) h3,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) h4,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .h-xl,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .h-lg,
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .field__label {
  color: var(--white);
}
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) .lede {
  color: rgba(255, 255, 255, 0.92);
}
:where(.band--blue, .band--deep, .masthead, .footer, .stat-band) .kicker {
  color: var(--gold);
}
.band--red .kicker {
  color: var(--white);
}
:where(.band--blue, .band--deep, .band--red, .masthead, .footer, .stat-band) a:not(.btn):not(.nav__link) {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.55);
}
:where(.band--blue, .band--deep, .band--red) .rule {
  border-top-color: var(--white);
}
