/* =========================================================================
   The Millburn Charter Study Commission — informational site stylesheet
   ========================================================================= */

/* ---------- Font ------------------------------------------------------- */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2-variations"),
       url("../fonts/Manrope-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ----------------------------------------------------- */
:root {
  --color-brand:        #0b6eb2;
  --color-brand-dark:   #075487;
  --color-accent:       #0986c0;
  --color-text:         #1f2933;
  --color-muted:        #525f6b;
  --color-bg:           #ffffff;
  --color-bg-soft:      #f4f6f8;
  --color-bg-blue-soft: #eaf3fb;
  --color-border:       #d9dee3;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05), 0 1px 3px rgba(15, 23, 42, .06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .06);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, .12), 0 4px 8px rgba(15, 23, 42, .06);

  --container: 1180px;
  --container-narrow: 820px;

  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-brand);
  text-decoration: none;
}
a:hover, a:focus-visible { text-decoration: underline; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
ul { padding-left: 1.25em; }

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers -------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
}

.section { padding: 64px 0; }
.section-tight { padding: 40px 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--color-brand);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  z-index: 100;
}
.skip-link:focus { left: 8px; }

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 14px 24px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { text-decoration: none; }

.btn-primary {
  background: var(--color-brand);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--color-brand-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--color-brand);
  color: #fff;
}

.btn-lg { padding: 16px 28px; font-size: 1.05rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0;
}

/* ---------- Header / nav --------------------------------------------- */
.site-header {
  background: var(--color-brand);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: #fff;
}
.brand a { color: inherit; text-decoration: none; }
.brand-sub {
  display: block;
  font-weight: 500;
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
}

.nav-toggle {
  display: none;
  appearance: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  font: inherit;
  color: #fff;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  display: inline-block;
  padding: 10px 14px;
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: rgba(255, 255, 255, .15);
  color: #fff;
  text-decoration: none;
}
.primary-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
.primary-nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  background: #fff;
  margin-top: 2px;
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav-toggle { display: inline-block; }
  .primary-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--color-brand-dark);
    box-shadow: var(--shadow-md);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
  }
  .primary-nav a {
    padding: 12px 8px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .site-header { position: relative; }
}

/* ---------- Page hero ------------------------------------------------- */
.page-hero {
  text-align: center;
  padding: 56px 0 24px;
  background: linear-gradient(180deg, var(--color-bg-blue-soft) 0%, #fff 100%);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p.lede {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Candidate grid (used on / and /about/) ------------------- */
.candidate-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
  margin: 24px 0 48px;
}
@media (max-width: 1100px) { .candidate-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .candidate-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .candidate-grid { grid-template-columns: 1fr; } }

.candidate-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.candidate-card:hover,
.candidate-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand);
  text-decoration: none;
}
.candidate-card .photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  background: var(--color-bg-soft);
}
.candidate-card .name {
  padding: 14px 12px 4px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}
.candidate-card .name strong { display: block; font-weight: 800; }
.candidate-card .tagline {
  padding: 0 12px 16px;
  font-size: .92rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* ---------- Prose ----------------------------------------------------- */
.prose {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.08rem;
}
.prose h2 { margin-top: 1.5em; }
.prose h2:first-child { margin-top: 0; }
.prose blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: var(--color-bg-blue-soft);
  border-left: 4px solid var(--color-brand);
  border-radius: var(--radius-sm);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose ul li { margin-bottom: 6px; }

.lede-strong {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 24px auto 32px;
  max-width: 800px;
}

/* ---------- Lawn-sign call-out --------------------------------------- */
.lawn-sign-block {
  text-align: center;
  margin: 48px auto 0;
  max-width: 880px;
}
.lawn-sign-block img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.lawn-sign-block .cta-text {
  font-size: 1.25rem;
  margin-top: 24px;
  line-height: 1.4;
}
.lawn-sign-block .phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-brand);
}

/* ---------- Long-form candidate bios (/about/) ----------------------- */
.bio {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  scroll-margin-top: 96px;
}
.bio:first-of-type { border-top: 0; }
.bio img {
  width: 220px;
  border-radius: var(--radius-md);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.bio h2 { margin-top: 0; }
.bio .ballot { color: var(--color-muted); font-weight: 500; }
.bio .tagline {
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 16px;
}
.bio details {
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-sm);
}
.bio details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-brand);
  list-style: none;
}
.bio details summary::-webkit-details-marker { display: none; }
.bio details summary::after {
  content: " ▾";
  display: inline-block;
  transition: transform .15s ease;
}
.bio details[open] summary::after { content: " ▴"; }
.bio details p:first-of-type { margin-top: 12px; }
.bio details p:last-of-type { margin-bottom: 0; }

@media (max-width: 720px) {
  .bio { grid-template-columns: 1fr; gap: 16px; }
  .bio img { width: 180px; margin: 0 auto; }
  .bio { text-align: center; }
  .bio details { text-align: left; }
}

/* ---------- FAQ accordion -------------------------------------------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--color-brand); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-soft);
  color: var(--color-text);
}
.faq summary:hover {
  background: var(--color-brand);
  color: #fff;
}
.faq details[open] summary {
  background: var(--color-brand);
  color: #fff;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  flex: 0 0 auto;
  transition: transform .15s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .faq-body {
  padding: 18px 22px 4px;
  background: #fff;
}
.faq .faq-body p:last-child { margin-bottom: 18px; }

/* ---------- Vote page ------------------------------------------------ */
.vote-step {
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0;
}
.vote-step h2 {
  margin-top: 0;
  color: var(--color-brand);
}
.vote-step img {
  display: block;
  margin: 18px auto;
  max-width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.vote-step .arrow {
  text-align: center;
  font-size: 2rem;
  color: var(--color-accent);
  margin: 8px 0;
  line-height: 1;
}

/* ---------- Resources cards ----------------------------------------- */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 32px auto;
}
.resource-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.resource-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-brand); }
.resource-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-bg-blue-soft);
  color: var(--color-accent);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.resource-card h3 { margin-bottom: 8px; }
.resource-card h3 a { color: var(--color-brand); }
.resource-card p { color: var(--color-muted); margin-bottom: 0; }

/* ---------- Get Involved page --------------------------------------- */
.embed-form {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.embed-form iframe {
  width: 100%;
  display: block;
  border: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px auto;
  max-width: 720px;
}
.contact-row a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.contact-row a:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--color-brand); text-decoration: none; }
.contact-row .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-blue-soft);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.contact-row .label {
  font-weight: 600;
  font-size: .95rem;
}
.contact-row .value {
  font-size: .9rem;
  color: var(--color-muted);
}
@media (max-width: 600px) { .contact-row { grid-template-columns: 1fr; } }

/* ---------- Footer --------------------------------------------------- */
.site-footer {
  background: #0f1c28;
  color: #cdd5dc;
  padding: 48px 0 24px;
  font-size: .95rem;
}
.site-footer a { color: #fff; }
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.site-footer .brand-block .name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  display: block;
  margin-bottom: 6px;
}
.site-footer .brand-block .tag { color: #cdd5dc; }
.site-footer h3 {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 12px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  font-size: .85rem;
}
.site-footer .footer-bottom .small {
  color: #8c98a4;
}

@media (max-width: 880px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer .brand-block { grid-column: 1 / -1; }
  .site-footer .footer-bottom { grid-template-columns: 1fr; }
}

/* ---------- Utility -------------------------------------------------- */
.text-center { text-align: center; }
.muted { color: var(--color-muted); }
.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;
}

/* ---------- Special-election hero ------------------------------------ */
.hero-special-election {
  background: linear-gradient(180deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.hero-special-election .label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-special-election .date {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-special-election .hours {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0;
}
.hero-special-election .stake {
  max-width: 720px;
  margin: 24px auto 28px;
  font-size: 1.1rem;
  line-height: 1.5;
  opacity: 0.95;
}
.hero-special-election .btn-primary {
  background: #fff;
  color: var(--color-brand);
  border-color: #fff;
}
.hero-special-election .btn-primary:hover,
.hero-special-election .btn-primary:focus-visible {
  background: var(--color-bg-blue-soft);
  color: var(--color-brand-dark);
}
.hero-special-election .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}
.hero-special-election .btn-outline:hover,
.hero-special-election .btn-outline:focus-visible {
  background: rgba(255,255,255,.15);
  color: #fff;
}

/* ---------- Comparison table ----------------------------------------- */
.compare-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
}
.compare-table thead th {
  background: var(--color-brand);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}
.compare-table thead th.col-proposed {
  background: var(--color-brand-dark);
}
.compare-table thead th .sub {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 2px;
}
.compare-table tbody th {
  text-align: left;
  padding: 14px 18px;
  background: var(--color-bg-soft);
  font-weight: 700;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 1px solid var(--color-border);
}
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.compare-table td.col-proposed {
  background: var(--color-bg-blue-soft);
  font-weight: 600;
}
.compare-table tbody tr:last-child > * { border-bottom: 0; }
.compare-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 8px 4px 0;
  font-style: italic;
}
@media (max-width: 720px) {
  .compare-table thead { display: none; }
  .compare-table, .compare-table tbody { display: block; }
  .compare-table tr { display: grid; grid-template-columns: 1fr; padding: 0; border-bottom: 2px solid var(--color-brand); }
  .compare-table tr:last-child { border-bottom: 0; }
  .compare-table tbody th { background: var(--color-brand); color: #fff; padding: 10px 16px; font-size: 0.95rem; border-bottom: 0; white-space: normal; }
  .compare-table td { padding: 12px 16px; border-bottom: 1px solid var(--color-border); }
  .compare-table td::before {
    content: attr(data-label) ": ";
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
  }
  .compare-table td.col-proposed { background: var(--color-bg-blue-soft); }
}

/* ---------- Mini comparison strip (home) ----------------------------- */
.mini-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.mini-compare .card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: center;
}
.mini-compare .card .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}
.mini-compare .card .from {
  display: block;
  color: var(--color-muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}
.mini-compare .card .arrow {
  display: block;
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
  margin: 4px 0;
}
.mini-compare .card .to {
  display: block;
  font-weight: 800;
  color: var(--color-brand);
  font-size: 1.1rem;
}
@media (max-width: 600px) { .mini-compare { grid-template-columns: 1fr; } }

/* ---------- Timeline flow -------------------------------------------- */
.timeline-flow {
  display: grid;
  gap: 18px;
  margin: 24px 0;
  padding-left: 28px;
  position: relative;
}
.timeline-flow::before {
  content: "";
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--color-brand);
  border-radius: 2px;
}
.timeline-flow .step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.timeline-flow .step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--color-brand);
  box-shadow: 0 0 0 3px #fff;
}
.timeline-flow .step .date {
  font-weight: 800;
  color: var(--color-brand);
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.timeline-flow .step .body {
  font-size: 0.97rem;
  color: var(--color-text);
  margin: 0;
}
.timeline-flow .step.no-branch {
  background: #fbf3f3;
  border-color: #e7c1c1;
}
.timeline-flow .step.no-branch::before { border-color: #b94a4a; }
.timeline-flow .step.no-branch .date { color: #b94a4a; }

/* ---------- Meeting archive table ----------------------------------- */
.meeting-archive-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: auto;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.meeting-archive {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.meeting-archive thead th {
  background: var(--color-brand);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meeting-archive tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
}
.meeting-archive tbody tr:nth-child(even) td { background: var(--color-bg-soft); }
.meeting-archive tbody tr:last-child td { border-bottom: 0; }
.meeting-archive .date-col {
  white-space: nowrap;
  font-weight: 700;
  width: 1%;
  color: var(--color-brand);
}
.meeting-archive .watch-col {
  white-space: nowrap;
  width: 1%;
  text-align: right;
}
.meeting-archive .watch-col a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

/* ---------- Role tag (commissioners) -------------------------------- */
.role-tag {
  display: inline-block;
  background: var(--color-bg-blue-soft);
  color: var(--color-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
}
.candidate-card .role-tag {
  margin: 0 auto 10px;
  display: inline-block;
}

/* ---------- Callouts ------------------------------------------------- */
.callout-info {
  background: #fff8e1;
  border-left: 4px solid #f5a623;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}
.callout-info strong { color: #8a6d12; }
.callout-info p:last-child { margin-bottom: 0; }
.callout-info p:first-child { margin-top: 0; }
