/* ===========================================================
   ballot.nyc Voter Guide — shared styles (civic theme)
   Matches the main ballot.nyc site: navy + red, Playfair + Jakarta
   =========================================================== */
:root {
  --maxw: 1080px;
  --radius: 16px;
  --font-sans: "Plus Jakarta Sans", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;

  --bg: #0a1f44;
  --bg-2: #0d2752;
  --bg-3: #103069;
  --ink: #ffffff;
  --ink-soft: #c9d6ee;
  --accent: #e23b3b;
  --accent-soft: #ff5a5a;
  --accent-ink: #ffffff;
  --card: #ffffff;
  --card-ink: #0a1f44;
  --card-soft: #4a5a78;
  --card-line: #e7ecf3;
  --field-border: #cdd6e6;
  --gold: #f4c542;
  --hero-font: var(--font-display);
  --hero-weight: 700;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* ---- HEADER ---------------------------------------------------- */
header.top {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(127,127,127,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 32px; height: 32px; flex: none; }
.brand .word { font-size: 20px; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.brand .word .dot { color: var(--accent); }
.brand .guide-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 11px; margin-left: 3px;
}
.top-nav { display: flex; align-items: center; gap: 22px; }
.top-nav a.navlink {
  text-decoration: none; color: var(--ink-soft); font-size: 14px; font-weight: 600;
  transition: color .15s;
}
.top-nav a.navlink:hover { color: var(--ink); }
.btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  font-weight: 700; font-size: 16px; padding: 13px 26px; border: none; border-radius: 999px;
  cursor: pointer; text-decoration: none; font-family: inherit;
  transition: transform .2s cubic-bezier(.175,.885,.32,1.275), filter .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.08); box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 35%, transparent); }
.btn.sm { font-size: 13px; padding: 10px 18px; }
.btn.block { width: 100%; text-align: center; font-size: 17px; }
.btn.ghost {
  background: rgba(255,255,255,.08); color: var(--ink);
  border: 1px solid rgba(255,255,255,.2); box-shadow: none;
}
.btn.ghost:hover { background: rgba(255,255,255,.14); filter: none; }

/* ---- HERO ------------------------------------------------------ */
.hero { padding: 46px 0 16px; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 700; color: var(--accent); margin-bottom: 16px;
}
h1.hero-title {
  font-family: var(--hero-font); font-weight: var(--hero-weight);
  font-size: clamp(40px, 6.4vw, 76px); line-height: 1.0; letter-spacing: -.02em;
  margin-bottom: 18px; text-wrap: balance;
}
h1.hero-title .hl { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 2.2vw, 20px); color: var(--ink-soft); max-width: 40ch; margin-bottom: 26px; }

/* ---- LIVE BANNER + COUNTDOWN ----------------------------------- */
.live-banner {
  background: #12336c;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--accent);
}
.live-row {
  text-align: center; padding: 16px 24px;
}
.countdown {
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: var(--ink); line-height: 1.3;
}
.countdown b {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  font-variant-numeric: tabular-nums;
}
.live-dates {
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}

/* ---- ADDRESS TOOL ---------------------------------------------- */
.addr-card {
  background: var(--card); color: var(--card-ink); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 24px 60px rgba(0,0,0,.28); max-width: 620px;
}
.addr-card h2 { font-size: 21px; font-weight: 800; margin-bottom: 4px; }
.addr-card .lede { color: var(--card-soft); font-size: 15px; margin-bottom: 18px; }
.addr-form { display: flex; gap: 10px; }
.addr-field { position: relative; flex: 1; min-width: 0; }
.addr-input {
  width: 100%; font-size: 16px; padding: 15px 16px; border: 1.5px solid var(--field-border);
  border-radius: 12px; font-family: inherit; color: var(--card-ink); background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.addr-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent); }
.addr-form .btn { flex: none; }
.addr-hint { font-size: 12.5px; color: var(--card-soft); margin-top: 12px; display: flex; align-items: center; gap: 7px; }
.addr-hint svg { width: 14px; height: 14px; flex: none; opacity: .7; }

.addr-suggestions {
  position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 120;
  list-style: none; margin: 0; padding: 6px; background: #fff;
  border: 1.5px solid var(--field-border); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(10, 31, 68, .18); max-height: 240px; overflow-y: auto;
}
.addr-suggestions[hidden] { display: none; }
.addr-suggestions li {
  padding: 11px 12px; border-radius: 8px; font-size: 15px; color: var(--card-ink);
  cursor: pointer; line-height: 1.35;
}
.addr-suggestions li:hover,
.addr-suggestions li[aria-selected="true"] {
  background: color-mix(in srgb, var(--accent) 10%, #fff);
}
.addr-suggestions li small {
  display: block; font-size: 12px; color: var(--card-soft); margin-top: 2px;
}

@media (max-width: 720px) {
  .live-row { padding: 14px 18px; }
  .countdown { font-size: 14px; }
  .countdown b { font-size: 18px; }
  .live-dates { font-size: 11px; letter-spacing: .08em; margin-top: 5px; }
}
@media (max-width: 560px) {
  .addr-form { flex-direction: column; }
  .addr-form .btn { width: 100%; }
}

/* ---- RESULTS --------------------------------------------------- */
.results { padding: 8px 0 8px; }
.results[hidden] { display: none; }
.results-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.results-head h2 { font-family: var(--hero-font); font-weight: 800; font-size: clamp(26px,3.4vw,36px); letter-spacing: -.01em; }
.results-head .addr-echo { font-size: 14px; color: var(--ink-soft); }
.results-head .addr-echo b { color: var(--ink); }
.btn-reset { background: none; border: none; color: var(--accent-soft); font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; text-decoration: underline; }

.where-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.notice {
  margin-bottom: 16px; border-radius: 12px; padding: 13px 15px;
  font-size: 13.5px; line-height: 1.45;
}
.notice.warning {
  background: #fff5cc; border: 1px solid #f2d56b; color: #493600;
}
.notice a { color: inherit; font-weight: 800; text-underline-offset: 2px; }
.where-card {
  background: var(--bg-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 24px;
}
.where-card .wc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.where-card .wc-ico { width: 42px; height: 42px; border-radius: 11px; background: color-mix(in srgb, var(--accent) 20%, transparent); color: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex: none; }
.where-card .wc-ico svg { width: 22px; height: 22px; }
.where-card .wc-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.where-card .wc-title { font-size: 18px; font-weight: 800; margin-top: 1px; }
.where-card .wc-addr { color: var(--ink-soft); font-size: 15px; line-height: 1.5; }
.where-card .wc-hours { margin-top: 10px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.where-card .wc-hours > b { color: var(--ink); font-weight: 700; }
.hours-grouped { margin-top: 6px; display: grid; gap: 4px; }
.hour-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; font-variant-numeric: tabular-nums;
}
.hour-row b { color: var(--ink); font-weight: 700; white-space: nowrap; }
.hour-time { color: var(--ink-soft); white-space: nowrap; text-align: right; }
.where-card .wc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 13.5px; font-weight: 700; color: var(--accent-soft); text-decoration: none; white-space: nowrap; }
.where-card .wc-link:hover { text-decoration: underline; }
.where-card.muted { display: flex; flex-direction: column; justify-content: center; }
.where-card.muted .wc-addr { font-size: 14px; }

/* ---- SLATE / CANDIDATE CARDS ----------------------------------- */
.slate-block { margin-top: 26px; }
.slate-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.slate-head h3 { font-family: var(--hero-font); font-weight: 800; font-size: 24px; letter-spacing: -.01em; }
.slate-head .chip {
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 5px 12px; border-radius: 999px;
}
.cand-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.cand-card {
  background: var(--card); color: var(--card-ink); border-radius: 14px;
  padding: 22px 22px 20px; border: 1px solid var(--card-line); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.cand-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.cand-office { font-size: 11.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--card-soft); margin-bottom: 8px; }
.cand-list { display: grid; gap: 14px; }
.cand-list .cand-name-row + .cand-name-row {
  border-top: 1px solid var(--card-line); padding-top: 14px;
}
.cand-name-row { display: flex; align-items: center; gap: 13px; }
.cand-photo { width: 48px; height: 48px; border-radius: 50%; background: var(--bg) center/cover; flex: none; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 17px; font-family: var(--font-display); }
.cand-name-row > div { min-width: 0; }
.cand-name { font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1.08; letter-spacing: -.01em; text-wrap: balance; }
.cand-check { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 800; color: #1f8a4c; text-transform: uppercase; letter-spacing: .05em; margin-top: 7px; }
.cand-check svg { width: 14px; height: 14px; }
.priority-note {
  display: flex; align-items: flex-start; gap: 8px; margin-top: 14px;
  background: #fff5cc; border: 1px solid #f0d36d; color: #5b4300;
  border-radius: 10px; padding: 10px 12px; font-size: 13px; line-height: 1.35;
}
.priority-note svg { width: 16px; height: 16px; flex: none; margin-top: 1px; }
.priority-note.danger {
  background: #fdecea; border-color: #f6c9c2; color: #7a1f17;
}
.priority-note.danger svg { color: var(--accent); }
.priority-note.success {
  background: #eaf7ef; border-color: #bde6c9; color: #165a32;
}
.priority-note.success svg { color: #1f8a4c; }
.cand-details {
  margin-top: 14px; border-top: 1px solid var(--card-line); padding-top: 12px;
}
.cand-details summary {
  cursor: pointer; color: var(--accent); font-weight: 800; font-size: 13px;
  list-style: none; display: inline-flex; align-items: center; gap: 6px;
}
.cand-details summary::-webkit-details-marker { display: none; }
.cand-details summary::after { content: "+"; font-size: 15px; line-height: 1; }
.cand-details[open] summary::after { content: "–"; }
.detail-body { margin-top: 12px; display: grid; gap: 12px; }
.detail-candidate {
  background: #f7f9fc; border: 1px solid var(--card-line);
  border-radius: 10px; padding: 12px;
}
.detail-name { font-weight: 800; margin-bottom: 8px; color: var(--card-ink); }
.detail-list { display: grid; gap: 8px; }
.detail-row dt {
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--card-soft); margin-bottom: 2px;
}
.detail-row dd { font-size: 12.5px; line-height: 1.45; color: var(--card-ink); }
.dsa-flag {
  display: flex; align-items: center; gap: 9px; margin-top: 15px;
  background: #fdecea; border: 1px solid #f6c9c2; border-radius: 10px; padding: 10px 13px;
}
.dsa-flag svg { width: 17px; height: 17px; flex: none; color: var(--accent); }
.dsa-flag .dt { font-size: 13px; line-height: 1.35; color: #7a1f17; }
.dsa-flag .dt b { color: var(--accent); font-weight: 800; }
.dsa-flag .dt .tag { font-weight: 700; }

/* uncontested / safe note */
.safe-note { margin-top: 15px; font-size: 12.5px; color: var(--card-soft); display: flex; align-items: center; gap: 7px; }
.safe-note svg { width: 15px; height: 15px; color: #1f8a4c; flex: none; }

/* ---- SHARE BAND ------------------------------------------------ */
.share-band {
  margin-top: 28px; background: var(--bg-2); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.share-band h3 { font-family: var(--hero-font); font-weight: 800; font-size: 24px; margin-bottom: 8px; }
.share-band p { color: var(--ink-soft); font-size: 15px; max-width: 42ch; margin: 0 auto 18px; }
.share-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.error-card {
  background: var(--bg-2); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.error-card h2 {
  font-family: var(--hero-font); font-weight: 800; font-size: clamp(26px,3.4vw,36px);
  line-height: 1.05; margin-bottom: 10px;
}
.error-card p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 18px; }
.coverage-card {
  margin-top: 16px; background: var(--bg-2); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 22px; color: var(--ink);
}
.coverage-card h4 {
  font-family: var(--hero-font); font-size: 22px; line-height: 1.1; margin-bottom: 8px;
}
.coverage-card p,
.coverage-card li {
  color: var(--ink-soft); font-size: 14px; line-height: 1.5;
}
.coverage-card ul { margin: 10px 0 12px 18px; }
.coverage-card a {
  color: var(--accent-soft); font-weight: 800; font-size: 13.5px; text-decoration: none;
}
.coverage-card a:hover { text-decoration: underline; }

/* ---- GENERIC SECTION HEAD -------------------------------------- */
.section { padding: 40px 0; }
.section-head { max-width: 44ch; margin-bottom: 28px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { font-family: var(--hero-font); font-weight: 800; font-size: clamp(28px,3.6vw,42px); letter-spacing: -.015em; line-height: 1.05; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-cta { margin-top: 16px; }
.section-cta a { color: var(--accent-soft); font-weight: 700; text-decoration: none; white-space: nowrap; }
.section-cta a:hover { text-decoration: underline; }

/* ---- CANDIDATES PAGE ------------------------------------------- */
.race-group { margin-bottom: 40px; }
.race-group > .rg-label {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-soft);
}
.race-group > .rg-label::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.14); }
.candidates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ---- FOOTER ---------------------------------------------------- */
footer.site { padding: 40px 0 56px; border-top: 1px solid rgba(127,127,127,.14); margin-top: 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { font-weight: 700; }
.foot-brand .sub { font-size: 13px; color: var(--accent); font-weight: 700; margin-top: 2px; }
.paidfor { font-size: 12.5px; color: var(--ink-soft); font-weight: 700; margin-top: 10px; }
.disclaimer { font-size: 12.5px; color: var(--ink-soft); max-width: 42em; line-height: 1.6; }
.disclaimer a { color: var(--accent-soft); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.disclaimer a:hover { color: var(--ink); }
.attribution { font-size: 11.5px; color: var(--ink-soft); opacity: .7; margin-top: 14px; }

/* sample-data notice (remove before launch) */
.sample-pill {
  position: fixed; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 200;
  background: var(--gold); color: #3a2c00; font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 999px; box-shadow: 0 6px 20px rgba(0,0,0,.3);
  letter-spacing: .02em;
}

@media (max-width: 760px) {
  header.top {
    padding: 11px 16px;
    gap: 12px;
  }
  .brand { gap: 8px; min-width: 0; }
  .brand .mark { width: 28px; height: 28px; }
  .brand .word { font-size: 18px; white-space: nowrap; }
  .brand .guide-tag { display: none; }
  .top-nav { gap: 10px; flex: none; }
  .top-nav a.navlink { display: none; }
  .top-nav .btn { white-space: nowrap; }
  .btn.sm { font-size: 12px; padding: 9px 14px; }

  .hero { padding: 5vh 0 4vh; min-height: calc(100svh - 50px - 58px); }
  .eyebrow {
    font-size: 11.5px; letter-spacing: .11em; line-height: 1.35;
    margin-bottom: 12px;
  }
  h1.hero-title {
    font-size: clamp(36px, 11vw, 52px);
    line-height: 1.04; margin-bottom: 16px;
  }
  .hero-sub { font-size: 16px; margin-bottom: 0; line-height: 1.55; }
  .addr-card { padding: 22px; border-radius: 14px; margin-top: 5vh; }
  .addr-card h2 { font-size: 19px; }
  .addr-card .lede { font-size: 14px; margin-bottom: 16px; }
  .addr-hint { align-items: flex-start; line-height: 1.4; }

  .where-grid { grid-template-columns: 1fr; gap: 12px; }
  .cand-grid { grid-template-columns: 1fr; }
  .candidates-grid { grid-template-columns: 1fr; }

  .section { padding: 5vh 0 32px; }
  .section-head { max-width: none; margin-bottom: 22px; }
  .section-head h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08; margin-bottom: 10px;
  }
  .section-head p { font-size: 15px; line-height: 1.6; }

  .race-group { margin-bottom: 30px; }
  .race-group > .rg-label {
    align-items: flex-start; gap: 10px; margin-bottom: 12px;
    font-size: 11.5px; letter-spacing: .1em; line-height: 1.35;
  }
  .race-group > .rg-label::after { margin-top: .7em; }

  .cand-grid,
  .candidates-grid { gap: 14px; }
  .cand-card {
    border-radius: 10px; padding: 18px 18px 16px;
  }
  .cand-card::before { width: 3px; }
  .cand-office {
    font-size: 10.5px; letter-spacing: .08em; line-height: 1.35;
    margin-bottom: 10px;
  }
  .cand-name-row { align-items: flex-start; gap: 12px; }
  .cand-list { gap: 14px; }
  .cand-list .cand-name-row + .cand-name-row { padding-top: 14px; }
  .cand-photo {
    width: 42px; height: 42px; font-size: 15px;
  }
  .cand-name { font-size: 20px; line-height: 1.1; }
  .cand-check {
    font-size: 10px; gap: 4px; margin-top: 6px;
  }
  .cand-check svg { width: 12px; height: 12px; }
  .dsa-flag {
    align-items: flex-start; gap: 9px; margin-top: 14px;
    padding: 10px 12px; border-radius: 10px;
  }
  .dsa-flag svg { width: 15px; height: 15px; margin-top: 1px; }
  .dsa-flag .dt { font-size: 12.5px; line-height: 1.4; }
  .priority-note {
    gap: 8px; margin-top: 14px; padding: 10px 12px; border-radius: 10px;
    font-size: 12.5px; line-height: 1.4;
  }
  .cand-details { margin-top: 14px; padding-top: 12px; }
  .detail-body { gap: 10px; }
  .detail-candidate { padding: 12px; border-radius: 10px; }
  .detail-row dd { font-size: 12px; }
  .safe-note {
    align-items: flex-start; font-size: 12px; line-height: 1.4;
    margin-top: 14px;
  }
  .safe-note svg { width: 14px; height: 14px; margin-top: 1px; }

  .results { padding-top: 4px; }
  .results-head { margin-bottom: 18px; }
  .where-card { padding: 20px; border-radius: 12px; }
  .where-card .wc-head { align-items: flex-start; margin-bottom: 12px; }
  .where-card .wc-ico { width: 36px; height: 36px; border-radius: 8px; }
  .where-card .wc-title { font-size: 17px; line-height: 1.25; }
  .where-card .wc-addr { font-size: 14px; line-height: 1.5; }
  .slate-block { margin-top: 24px; }
  .slate-head { margin-bottom: 14px; align-items: baseline; }
  .slate-head h3 { font-size: 22px; }

  .share-band { padding: 24px 18px; border-radius: 12px; margin-top: 24px; }
  .share-band h3 { font-size: 21px; line-height: 1.1; }
  .share-band p { font-size: 14px; line-height: 1.5; }
  .error-card { padding: 24px 18px; border-radius: 12px; }
  .coverage-card { padding: 18px; border-radius: 12px; }
  .coverage-card h4 { font-size: 20px; }
  footer.site { padding: 32px 0 44px; margin-top: 32px; }
  .disclaimer { font-size: 12px; line-height: 1.65; }

  .sample-pill {
    position: static; transform: none; left: auto; bottom: auto;
    margin: 10px 18px 0; border-radius: 8px; padding: 8px 12px;
    text-align: center; box-shadow: none; font-size: 11.5px;
  }
}
@media (max-width: 540px) {
  .wrap { padding: 0 18px; }
  header.top { padding: 14px 18px; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  header.top { padding: 10px 16px; }
  .brand .word { font-size: 16px; }
  .top-nav .btn.sm { font-size: 11.5px; padding: 8px 12px; }
  .addr-card { padding: 16px; }
  .addr-card h2 { font-size: 18px; }
  .btn { width: 100%; text-align: center; padding: 12px 18px; }
  header.top .btn,
  .share-actions .btn { width: auto; }
  .live-row { padding: 12px 16px; }
  .countdown { font-size: 13px; letter-spacing: .03em; }
  .countdown b { font-size: 16px; }
  .live-dates { font-size: 10px; margin-top: 4px; }
  h1.hero-title { margin-bottom: 14px; }
  .hero-sub { font-size: 15px; }
  .cand-card { padding: 16px 16px 14px; }
  .cand-name { font-size: 19px; }
  .where-card { padding: 16px; }
  .where-card .wc-title { font-size: 16px; }
}
