/* =========================
   Base / Reset
========================= */

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #0b1b4f; /* Navy background */
  line-height: 1.6;
}

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

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

a:hover {
  text-decoration: underline;
}

/* =========================
   NAVBAR 
========================= */

.site-header,
.site-header * {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.site-header {
  background: #f5f5f7;
  color: #111827;
}

.navbar {
  background: #F5841F;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Global container (keep your site default) */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navbar should be full-bleed (not constrained) */
.navbar .container {
  max-width: none;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 6px 0;
}

/* Logo */
.logo img {
  height: 72px;
  width: auto;
  display: block;
}

/* Burger toggle (hidden desktop, shown mobile) */
.nav-toggle {
  border: none;
  background: transparent;
  color: #111827;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  display: none;
  align-items: center;
}

/* Desktop menu */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-menu li {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 6px 4px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111827;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #0038a8;
  border-bottom-color: #0038a8;
}

/* Contribute button (navbar) */
.nav-link.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F5841F, #ffffff);
  color: #111827;
  border: none;
  box-shadow: 0 8px 18px rgba(148, 163, 184, 0.4);
  text-decoration: none;
}

.nav-link.nav-cta:hover {
  background: linear-gradient(135deg, #F5841F, #F5841F);
  text-decoration: none;
}

/* Ensure page theme classes don't affect navbar */
body.issues-page .site-header,
body.voter-page .site-header,
body.whois-erik-page .site-header {
  background: #f5f5f7;
  color: #111827;
}

/* =========================
   MOBILE OVERLAY MENU (CLEAN + CONSISTENT)
========================= */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .logo img {
    height: 56px;
  }

  /* Full-screen overlay */
  .main-menu {
    position: fixed;
    inset: 0;
    margin: 0;
    list-style: none;

    padding: 80px 24px 32px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;

    background: rgba(0, 18, 41, 0.96);
    z-index: 60;

    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Each item row */
  .main-menu li {
    width: 100%;
    margin: 0;
    padding: 0;

    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-menu.is-open li {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger */
  .main-menu.is-open li:nth-child(1) { transition-delay: 0.05s; }
  .main-menu.is-open li:nth-child(2) { transition-delay: 0.10s; }
  .main-menu.is-open li:nth-child(3) { transition-delay: 0.15s; }
  .main-menu.is-open li:nth-child(4) { transition-delay: 0.20s; }
  .main-menu.is-open li:nth-child(5) { transition-delay: 0.25s; }
  .main-menu.is-open li:nth-child(6) { transition-delay: 0.30s; }
  .main-menu.is-open li:nth-child(7) { transition-delay: 0.35s; }

  /* Links: vertical padding only (no left/right padding) */
  .main-menu .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: 1.05rem;
    color: #f9fafb;
    border-bottom: none;
  }

  /* Contribute: align its TEXT with other link text */
  .main-menu .nav-link.nav-cta {
    display: inline-flex;
    width: auto;

    margin: 16px 0 0 0 !important;
    padding: 12px 18px;
    line-height: 1;
    white-space: nowrap;

    transform: translateX(-4px);
  }

  .nav-inner {
    justify-content: space-between;
  }
}

/* Freeze page scroll when overlay is open */
body.menu-open {
  overflow: hidden;
}

/* =========================
   WHO IS ERIK PAGE — BASE THEME
========================= */

.whois-erik-page {
  background: #0b1b4f;
  color: #f9fafb;
}

/* =====================================================
   BIOGRAPHY — FIXED DESKTOP
   Problem you had: duplicated BIO blocks + mobile rules
   leaking / overriding desktop behavior.
   Fix: one source of truth + clear breakpoints.
===================================================== */

.bio-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

/* Header block */
.bio-header {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.85);
  padding: 18px 20px;
  margin: 0 0 14px;
}

.bio-kicker {
  margin: 0 0 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #cbd5f5;
}

.bio-title {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #F5841F;
  letter-spacing: 0.04em;
}

.bio-subtitle {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #cbd5f5;
}

/* ✅ Desktop: force the SAME single-column stack you see on mobile */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* Card shell */
.bio-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.85);
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}

/* Subtle highlight */
.bio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(248, 250, 252, 0.05),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0.9;
}

.bio-card > * {
  position: relative;
  z-index: 1;
}

/* Tag */
.bio-tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 132, 31, 0.6);
  color: #F5841F;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.bio-card-title {
  margin: 0;
  font-size: 1.02rem;
  color: #f9fafb;
  letter-spacing: 0.02em;
}

/* Body copy */
.bio-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #e5e7eb;
}

.bio-card p:last-child {
  margin-bottom: 0;
}

/* Lists */
.bio-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #e5e7eb;
}

.bio-list li {
  margin: 6px 0;
}

/* Featured card: keep same width, just a slightly stronger border */
.bio-card--featured {
  border-color: rgba(245, 132, 31, 0.55);
}

/* Accordion button behavior (if you use it) */
.bio-accordion-header {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;

  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 6px 12px;

  padding: 0;
  margin: 0;
}

.bio-accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(0, 18, 41, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bio-accordion-icon i {
  font-size: 0.8rem;
  color: #F5841F;
  transition: transform 0.2s ease;
}

.bio-accordion-body {
  margin-top: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease;
}

.bio-card.is-open .bio-accordion-body {
  max-height: 900px;
  opacity: 1;
}

.bio-card.is-open .bio-accordion-body[hidden] {
  display: block;
}

.bio-card.is-open .bio-accordion-icon i {
  transform: rotate(180deg);
}

/* Issues Page Color Correction */
body.issues-page {
  color: #f5f5f7;
  background: #0b1b4f;
}

/* =========================
   Hero
========================= */

.hero {
  padding: 56px 0 72px;
  background: radial-gradient(
    circle at top left,
    #2563eb 0%,
    #0038a8 45%,
    #0b1b4f 100%
  );
  color: #f9fafb;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #F5841F;
  margin: 0 0 10px;
}

.hero-title {
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-name {
  font-size: clamp(3rem, 5vw, 4.2rem); /* bigger name */
  line-height: 1.05;
}

.hero-subtitle {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #e5e7eb;
  margin-top: 6px;
}

.hero-body {
  font-size: 0.98rem;
  max-width: 560px;
  color: #e5e7eb;
}

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

.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #F5841F, #F5841F);
  color: #111827;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.65);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F5841F, #c7d2fe);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #f9fafb;
  border-color: #F5841F;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.5);
  text-decoration: none;
}

.hero-photo {
  text-align: center;
}

/* HERO PHOTO: no crop + no border/card look */
.hero-photo-frame {
  padding: 0;              /* remove inner border spacing */
  border-radius: 0;        /* square edges (optional) */
  box-shadow: none;        /* remove shadow */
  overflow: visible;       /* don't crop anything */
  background: transparent; /* remove any frame fill */
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 0;        /* remove rounded edge "border" look */
  object-fit: contain;     /* show entire image (no crop) */
  object-position: center;
}

.hero-photo-caption {
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* =========================
   Home Panels
========================= */

.home-panels {
  padding: 40px 0 40px;
  background: #0b1b4f;
  color: #e5e7eb;
}

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

.panel-card {
  background: #0038a8;
  border-radius: 16px;
  padding: 20px 18px 22px;
  border: 1px solid rgba(191, 219, 254, 0.5);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.6);
}

.panel-card h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #f9fafb;
}

.panel-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.panel-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5841F;
}

.panel-link:hover {
  text-decoration: underline;
}

/* =========================
   Social Media Panel
========================= */

.panel-card--social {
  display: flex;
  flex-direction: column;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 14px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 250, 252, 0.7);
  background: rgba(15, 23, 42, 0.2);
  color: #f9fafb;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-pill i {
  font-size: 0.9rem;
}

.social-pill--youtube i { color: #ff4b4b; }
.social-pill--instagram i { color: #f97316; }
.social-pill--facebook i { color: #60a5fa; }
.social-pill--tiktok i { color: #a855f7; }

.social-pill:hover {
  background: rgba(15, 23, 42, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.7);
  text-decoration: none;
}

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

.embed-box {
  background: rgba(0, 18, 41, 0.9);
  border-radius: 12px;
  padding: 10px 10px 12px;
  border: 1px solid rgba(191, 219, 254, 0.4);
}

.embed-title {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5841F;
}

.embed-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 8px;
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 600px) {
  .social-embeds {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Election Countdown
========================= */

.election-countdown {
  padding: 30px 0 34px;
  background: #0b1b4f;
}

.countdown-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  background: #0038a8;
  padding: 24px 18px 26px;
  border: 1px solid rgba(191, 219, 254, 0.5);
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.countdown-inner h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.countdown-date-label {
  margin: 0 0 14px;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.countdown-clock {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 10px;
}

.countdown-part {
  min-width: 70px;
}

.count-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.count-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5f5;
}

.countdown-cta {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #e5e7eb;
}

/* =========================
   Quick Donate
========================= */

.quick-donate {
  padding: 26px 0 34px;
  background: #0b1b4f;
}

.quick-donate-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #0038a8, #0b1b4f);
  padding: 22px 16px 26px;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.quick-donate-inner h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
  font-weight: 700;
}

.quick-donate-text {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.quick-donate-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.amount-pill {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  color: #f9fafb;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.3);
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.amount-pill:hover {
  background: rgba(15, 23, 42, 0.75);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.8);
}

.amount-other {
  border-color: #F5841F;
}

/* =========================
   Signup Section
========================= */

.signup-section {
  padding: 36px 0 52px;
  background: #0b1b4f;
}

.signup-inner {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 20px;
  background: #0038a8;
  padding: 26px 18px 28px;
  border: 1px solid rgba(191, 219, 254, 0.5);
  color: #e5e7eb;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.9);
}

.signup-inner h2 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  text-align: center;
}

.signup-text {
  margin: 0 0 18px;
  font-size: 0.95rem;
  text-align: center;
  color: #e5e7eb;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.field label {
  color: #e5e7eb;
}

.field input,
.field textarea {
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.8);
  padding: 9px 12px;
  background: #0b1b4f;
  color: #e5e7eb;
  font-size: 0.85rem;
  font-family: inherit;
}

.field textarea {
  border-radius: 12px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}

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

.required {
  color: #F5841F;
  margin-left: 4px;
}

.signup-btn {
  display: block;
  width: fit-content;
  margin: 6px auto 14px;
}

.signup-disclaimer {
  margin: 10px 0 0;
  font-size: 0.75rem;
  color: #cbd5f5;
}

/* CONTACT PAGE */
.form-embed-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(191, 219, 254, 0.35);
  background: #0b1b4f;
}

.form-embed-wrap iframe {
  display: block;
}

.form-fallback {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #cbd5f5;
}

.form-fallback a {
  color: #F5841F;
  text-decoration: none;
}

.form-fallback a:hover {
  text-decoration: underline;
}

/* =========================
   Footer
========================= */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.7);
  background: #0b1b4f;
  color: #cbd5f5;
  padding: 18px 0 26px;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
}

.paid-for {
  margin: 0 0 4px;
  font-weight: 600;
  color: #F5841F;
}

.footer-meta {
  margin: 0;
}

.footer-social {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 520px;
  margin: 0 auto 20px;
}

.footer-social a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-3px) scale(1.05);
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-photo {
    order: -1;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .countdown-inner,
  .quick-donate-inner,
  .signup-inner {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 48px;
  }

  .hero-name {
    font-size: 2rem;
  }

  .panel-card {
    padding: 16px 14px 18px;
  }

  .countdown-clock {
    gap: 10px;
  }
}

/* ---- MAIN INTRO SECTION ---- */

.erik-intro {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.erik-intro h1 {
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  margin: 0 0 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #F5841F;
}

.erik-intro h1 span {
  color: #F5841F;
}

.erik-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.erik-highlights {
  margin-top: 16px;
}

.erik-highlights li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.erik-intro-img {
  text-align: center;
}

.erik-photo-frame {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 6px;
  background: radial-gradient(
    circle at top,
    #F5841F 0%,
    #2563eb 35%,
    #0b1b4f 80%
  );
  box-shadow: 0 0 50px rgba(15, 23, 42, 0.7);
}

.erik-photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .erik-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .erik-intro-img {
    order: -1;
    margin-bottom: 20px;
  }
}

/* ---- ISSUE SECTIONS ---- */

.erik-section {
  max-width: 900px;
  margin: 0 auto 70px;
  padding: 0 20px;
}

.erik-section h2 {
  font-size: 1.8rem;
  margin: 0 0 12px;
  color: #F5841F;
  letter-spacing: 0.03em;
}

.erik-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e5e7eb;
}

/* ---- DIVIDER ---- */

.section-divider {
  height: 1px;
  margin: 40px auto;
  max-width: 700px;
  background: linear-gradient(90deg, transparent, #F5841F, transparent);
}

/* Center the 4th "Connect on Social Media" panel on desktop */
@media (min-width: 900px) {
  .panel-card--social {
    grid-column: 2; /* Middle column */
  }
}

/* =====================================================
   VOTER INFORMATION PAGE
   (LEFT EXACTLY AS-IS PER YOUR INSTRUCTION)
===================================================== */

/* =========================
   VOTER INFORMATION PAGE
========================= */

body.voter-page {
  background: #0b1b4f;
  color: #e5e7eb;
}

.voter-hero {
  padding: 56px 0 40px;
  background: radial-gradient(
    circle at top left,
    #2563eb 0%,
    #0038a8 45%,
    #0b1b4f 100%
  );
}

.voter-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.voter-hero-text h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  font-weight: 700;
}

.voter-hero-text p {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #e5e7eb;
}

.voter-list {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.voter-list li {
  margin-bottom: 6px;
}

.voter-hero-image {
  text-align: center;
}

.voter-hero-image img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

/* Action buttons area */
.voter-actions {
  padding: 28px 0 50px;
  background: #0b1b4f;
}

.voter-actions-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Reuse .btn styles, just tweak sizing for this page */
.voter-btn {
  min-width: 220px;
  text-align: center;
}

@media (max-width: 900px) {
  .voter-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .voter-hero-text {
    order: 2;
  }

  .voter-hero-image {
    order: 1;
  }
}
