:root {
  /* Anchor: teal. Accent: warm amber, used sparingly so it always means
     something (help, savings, the thing you should read). Semantics are a
     separate axis from the accent so "cheap/expensive" never fights the brand. */
  --primary:      #0f766e;   /* teal 700  - actions, links, brand */
  --primary-dark: #134e4a;   /* teal 900  - headers, dark bands */
  --primary-soft: #eef7f5;   /* cool tint band */

  --accent:       #9a3412;   /* burnt orange - 6.96:1 vs page, 7.31:1 white label */
  --accent-dark:  #7c2d12;
  --accent-soft:  #fdf3e7;   /* warm tint band */

  --good:  #15803d;          /* cheapest / positive */
  --warn:  #b45309;
  --bad:   #b91c1c;          /* most expensive */

  --bg:      #f7faf9;
  --surface: #ffffff;
  --text:    #17241f;        /* near-black, green-biased */
  --muted:   #5b6f6b;
  --border:  #c9ded9;
}

html { scrollbar-gutter: stable; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 48px 0 36px;
  text-align: center;
}

header h1 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.site-nav {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 6px 16px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.85;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.6);
}

footer .site-nav a {
  color: var(--primary);
}

footer .site-nav {
  margin-bottom: 12px;
}

.subtitle {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.9;
}

main {
  padding: 40px 20px;
}

.intro, .trust {
  margin-bottom: 36px;
}

h2 {
  color: var(--primary-dark);
}

.form-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}

#eligibility-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
}

.form-row.half,
.form-row-phone,
.form-row-zip {
  grid-column: span 1;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"] {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.checkbox-row {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  margin-top: 4px;
}

.checkbox-row label {
  font-weight: 400;
  font-size: 0.72rem;
  color: #6b7280;
  line-height: 1.4;
}

button[type="submit"] {
  flex: 1 1 100%;
  grid-column: 1 / -1;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

button[type="submit"]:hover {
  background: var(--primary-dark);
}

ul {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 24px 0;
  color: #6b7280;
  font-size: 0.9rem;
}

footer a {
  color: var(--primary);
}

.disclaimer {
  font-size: 0.78rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 14px;
  line-height: 1.5;
}

.trust-badge {
  display: inline-block;
  margin: 14px auto 0;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.call-link {
  margin: 12px 0 0;
  font-size: 0.95rem;
}

.call-link a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.call-link-alt {
  text-align: center;
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.call-link-alt a {
  color: var(--primary);
  font-weight: 600;
}

#estimator-form input[type="number"] {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
}

#estimate-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s ease;
}

#estimate-btn:hover {
  background: var(--primary-dark);
}

.estimator-result-box {
  margin-top: 20px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.estimator-note {
  margin-top: 16px;
  color: #6b7280;
  font-size: 0.9rem;
}

/* CTA box — content pages */
.cta-box {
  margin: 40px 0 32px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  text-align: center;
  color: #fff;
}

.cta-headline {
  margin: 0 0 16px;
  font-size: 1.2rem;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.cta-btn:hover {
  opacity: 0.9;
}

.cta-sub {
  margin: 14px 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.cta-sub a {
  color: #fff;
  font-weight: 600;
}

/* Related articles */
.related-articles {
  margin: 0 0 32px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.related-articles h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.related-articles ul {
  margin: 0;
  padding-left: 18px;
}

.related-articles li {
  margin-bottom: 6px;
}

.related-articles a {
  color: var(--primary);
  text-decoration: none;
}

.related-articles a:hover {
  text-decoration: underline;
}

.form-trust-row {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
}

.estimator-teaser {
  margin-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  color: #4b5563;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.estimator-teaser a {
  color: var(--primary);
  text-decoration: none;
}

.estimator-teaser a:hover {
  text-decoration: underline;
}

/* County grid — compact multi-column list on state pages */
.county-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 12px;
  padding-left: 0;
  list-style: none;
  margin: 8px 0 24px;
}

.county-grid li {
  margin: 0;
}

.county-grid a {
  font-size: 0.88rem;
  color: var(--primary);
  text-decoration: none;
  display: block;
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.county-grid a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .county-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- ZIP-first lead widget ---- */
.zip-lead{border:1px solid var(--border,#d7e8e4);border-radius:12px;padding:26px;margin:32px 0;background:#fff;box-shadow:0 1px 3px rgba(0,0,0,.05)}
.zip-lead h2{margin:0 0 6px;font-size:1.35rem}
.zl-sub{margin:0 0 16px;color:#5b6f6b;font-size:.94rem}
.zl-row{display:flex;gap:10px;flex-wrap:wrap}
.zl-row input{flex:1 1 190px;min-width:150px;padding:14px 16px;font-size:1.05rem;border:1px solid #b6d6cf;border-radius:8px}
.zl-btn{background:#0f766e;color:#fff;border:0;border-radius:8px;padding:14px 26px;font-size:1rem;font-weight:700;cursor:pointer;white-space:nowrap}
.zl-btn:hover{background:#115e59}
.zl-btn-full{width:100%;margin-top:14px;padding:16px}
.zl-trust{margin:14px 0 0;font-size:.8rem;color:#6b7280}
.zl-err{color:#dc2626;font-size:.86rem;margin:10px 0 0}
.zl-ok{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46;padding:10px 14px;border-radius:8px;font-size:.92rem;margin:0 0 14px}
.zl-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media(max-width:560px){.zl-grid{grid-template-columns:1fr}}
.zl-grid label{display:block;font-size:.85rem;font-weight:600;margin:0 0 5px}
.zl-grid input{width:100%;padding:12px 14px;font-size:1rem;border:1px solid #b6d6cf;border-radius:8px;box-sizing:border-box}
.zl-locked{background:#eef7f5;color:#44605c}
.zl-consent{display:flex;gap:9px;align-items:flex-start;margin:16px 0 0;font-size:.85rem}
.zl-back{text-align:center;margin:12px 0 0;font-size:.85rem}


/* ---- Layout modernization (2026-07-28): wider canvas, non-linear content ---- */
/* Keep prose at a readable measure even though the container is wider */
.intro article > p,
.intro article > ul,
.intro article > ol,
.intro > article > p { max-width: 74ch; }

/* Tables and data use the full width */
.intro table, table.benefit-table, .table-wrap { max-width: 100%; width: 100%; }

/* Link lists become multi-column instead of one long stack */
.related-articles ul,
.county-grid,
.state-links,
.related-resources ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4px 24px;
  list-style: none;
  padding-left: 0;
}
.related-articles ul li,
.county-grid li,
.state-links li,
.related-resources ul li { padding: 3px 0; font-size: .92rem; }

/* Section cards so the page reads as blocks, not one column of text */
.intro > article {
  background: #fff;
  border: 1px solid var(--border, #d7e8e4);
  border-radius: 12px;
  padding: 26px 30px;
  margin-bottom: 22px;
}
.answer-lead {
  background: #effcf9;
  border-left: 4px solid var(--primary, #0f766e);
  border-radius: 8px;
  padding: 16px 20px;
  max-width: none !important;
}

@media (max-width: 760px) {
  .intro > article { padding: 20px 18px; }
  .related-articles ul, .county-grid, .state-links, .related-resources ul {
    grid-template-columns: 1fr;
  }
}

/* ---- content links ----
   The stylesheet had no general anchor rule, so links inside .hero/.sec
   fell back to the browser default (#0000EE). Scoped to content sections so
   .site-nav, footer nav and .cta-button keep their own colours. */
.hero a:not(.cta-button),
.sec a:not(.cta-button),
main a:not(.cta-button) {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.hero a:not(.cta-button):hover,
.sec a:not(.cta-button):hover,
main a:not(.cta-button):hover {
  color: var(--primary-dark);
}
.sec-dark a:not(.cta-button),
.sec-dark a:not(.cta-button):hover {
  color: #a7f3d0;
}

/* ---- primary call to action ----
   Warm, because the page is teal: isolation from surroundings drives clicks far
   more than hue does, and a teal button on a teal page is camouflage. */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.02rem;
  border: 0;
  cursor: pointer;
  transition: background .15s ease;
}
.cta-button:hover { background: var(--accent-dark); color: #fff !important; }

/* ---- lead form ---- */
.lead-form { max-width: 640px; }
.lead-form .lf-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.lead-form .lf-row > div { flex: 1 1 200px; }
.lead-form label { display: block; font-size: .85rem; font-weight: 600; margin: 0 0 5px; }
.lead-form input, .lead-form select {
  width: 100%; padding: 12px 14px; font-size: 1rem;
  border: 1px solid var(--border); border-radius: 8px; box-sizing: border-box;
  background: #fff; color: var(--text);
}
.lead-form input:focus, .lead-form select:focus {
  outline: 2px solid var(--primary); outline-offset: 1px; border-color: var(--primary);
}
.lf-consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0; font-size: .84rem; color: #4b5563; }
.lf-consent input { width: auto; flex: 0 0 auto; margin-top: 3px; }
.lf-note { font-size: .8rem; color: #6b7280; margin-top: 10px; }

/* ================= homepage ================= */
.hero-lead { padding: 46px 0 40px; }
.hero-lead h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); line-height: 1.18; margin: 0 0 14px; text-wrap: balance; }
.hero-lead .lede { font-size: 1.1rem; max-width: 60ch; margin: 0 0 22px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-ghost {
  display: inline-block; padding: 13px 26px; border-radius: 8px; font-weight: 700;
  border: 2px solid currentColor; text-decoration: none !important;
}
.hero-trust { margin-top: 18px; font-size: .88rem; opacity: .92; }

/* audience segmentation */
.seg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 1.5rem 0; }
.seg-card {
  display: block; padding: 22px; border: 1px solid var(--border); border-radius: 12px;
  background: #fff; text-decoration: none !important; color: var(--text) !important;
  transition: border-color .15s ease, transform .15s ease;
}
.seg-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.seg-card strong { display: block; font-size: 1.05rem; margin-bottom: 6px; color: var(--primary); }
.seg-card span { font-size: .9rem; color: #4b5563; }

/* stat strip */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; margin: 1.2rem 0; }
.stat-strip div { text-align: center; }
.stat-strip b { display: block; font-size: 1.9rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.stat-strip span { font-size: .86rem; color: #4b5563; }
.sec-dark .stat-strip b { color: #a7f3d0; }
.sec-dark .stat-strip span { color: #d7e8e4; }

/* enrollment timeline */
.tl { list-style: none; padding: 0; margin: 1.4rem 0; border-left: 3px solid var(--border); }
.tl li { position: relative; padding: 0 0 22px 24px; }
.tl li::before {
  content: ""; position: absolute; left: -8px; top: 5px; width: 13px; height: 13px;
  border-radius: 50%; background: var(--primary); border: 3px solid #fff;
}
.tl .tl-date { display: block; font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 3px; }
.tl strong { display: block; margin-bottom: 3px; }
.tl p { margin: 0; font-size: .92rem; color: #4b5563; }
@media (max-width: 560px) { .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; } }

/* ================= section layout system =================
   .hero / .sec / .sec-alt / .sec-dark are used by every generated page but
   had no base rules, so the whole site rendered as one flat white column. */
.hero { padding: 40px 0; background: var(--bg); }
.hero h2 { margin-top: 0; }

.sec { padding: 44px 0; }
.sec > .container > h2:first-child { margin-top: 0; }
.sec h2 { font-size: 1.6rem; margin: 0 0 .6rem; text-wrap: balance; }
.sec h3 { font-size: 1.08rem; margin: 1.4rem 0 .3rem; }

.sec-alt { background: #eef7f5; }

.sec-dark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
}
.sec-dark h2, .sec-dark h3, .sec-dark strong { color: #fff; }
.sec-dark p, .sec-dark li { color: #e6f5f2; }
.sec-dark em { color: #c9e9e3; }

/* tables inherit the band they sit in */
.sec-alt table tbody tr:nth-child(odd) { background: rgba(255,255,255,.55); }
.sec table tbody tr:nth-child(odd) { background: #f6faf9; }
.sec table tbody td { border-bottom: 1px solid var(--border); }

/* readable measure for prose, full width for tables */
.sec > .container > p,
.sec > .container > ul,
.hero > .container > p { max-width: 72ch; }

/* ================= ZIP-first funnel ================= */
.zipbox { max-width: 620px; margin: 0 0 8px; }
.zip-row { display: flex; gap: 10px; align-items: stretch; }
.zip-row input {
  flex: 1 1 auto; min-width: 0; font-size: 1.5rem; font-weight: 700;
  letter-spacing: .12em; text-align: center; padding: 18px 16px;
  border: 2px solid var(--border); border-radius: 10px; background: #fff; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.zip-row input::placeholder { font-weight: 500; letter-spacing: .08em; color: #9aa8a5; }
.zip-row input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(154,52,18,.16); }
.zip-row button { flex: 0 0 auto; font-size: 1.05rem; padding: 18px 30px; }
.zip-hint { font-size: .85rem; color: #4b5563; margin: 10px 0 0; }
.zip-err { color: #dc2626; font-size: .88rem; margin: 8px 0 0; font-weight: 600; }

#step1.done .zip-row input { font-size: 1.15rem; padding: 12px 14px; }
#step1.done .zip-row button { display: none; }
#step1.done .zip-hint { display: none; }

.zip-result {
  border: 1px solid var(--primary); border-left: 5px solid var(--primary);
  border-radius: 10px; padding: 18px 20px; margin: 18px 0 4px; background: #f2fbf9;
}
.zip-result .zr-head { margin: 0 0 6px; font-weight: 800; font-size: 1.12rem; color: var(--primary-dark); }
.zip-result .zr-body { margin: 0 0 8px; font-size: .97rem; }
.zip-result .zr-note { margin: 0; font-size: .9rem; color: #4b5563; }

.step2 { margin-top: 20px; animation: pbsIn .28s ease both; }
@keyframes pbsIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step2 { animation: none; } }
.step2 h3 { margin: 0 0 4px; font-size: 1.2rem; }
.step2 .s2-sub { margin: 0 0 16px; font-size: .93rem; color: #4b5563; }

@media (max-width: 560px) {
  .zip-row { flex-direction: column; }
  .zip-row button { width: 100%; }
}

/* ---- result card: county first, price de-emphasised, help up front ---- */
.zip-result { padding: 22px 24px; background: #fff; border-left-width: 4px; }
.zip-result .zr-head { margin: 0 0 2px; font-size: 1.22rem; font-weight: 800; color: var(--primary-dark); }
.zip-result .zr-meta { margin: 0 0 14px; font-size: .82rem; color: #6b7280; }
.zip-result .zr-lead {
  margin: 2px 0 12px;
  font-size: clamp(1.28rem, 3.1vw, 1.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.012em;
  color: var(--accent-dark);
  text-wrap: balance;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-soft);
}
.zip-result .zr-body { margin: 0 0 10px; font-size: .95rem; color: #374151; }
.zip-result .zr-price { font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.zip-result .zr-qual { color: #6b7280; font-size: .88em; }
.zip-result .zr-note { margin: 0; font-size: .88rem; color: var(--primary); font-weight: 600; }

/* ---- three-up trust row ---- */
.three-up { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.three-up b { display: block; color: var(--primary); font-size: 1rem; margin-bottom: 6px; }
.three-up p { margin: 0; font-size: .93rem; color: #4b5563; }

/* tighter hero for the ZIP-first layout */
.hero-lead { padding: 52px 0 44px; }
.hero-lead .lede { font-size: 1.06rem; margin-bottom: 26px; }
.lead-form .lf-why { display: block; margin-top: 5px; font-size: .78rem; color: #6b7280; }

/* ================= two-tone system ================= */
/* Warm band, alternating with the cool one so the page has rhythm. */
.sec-warm { background: var(--accent-soft); }
.sec-warm table tbody tr:nth-child(odd) { background: rgba(255,255,255,.6); }

/* Accent rule above a section heading - warm, small, never shouty. */
.sec-warm > .container > h2::before,
.eyebrow-accent::before {
  content: ""; display: block; width: 42px; height: 3px;
  background: var(--accent); border-radius: 2px; margin-bottom: 14px;
}

/* The reassurance line is the one warm thing in the result card. */
.zip-result { border-left-color: var(--primary); }

/* Semantic colour in ranking tables: cheapest reads green, priciest red.
   Applied by class from the builder, never by row position. */
td .v-good { color: var(--good); font-weight: 700; }
td .v-bad  { color: var(--bad);  font-weight: 700; }

/* Secondary action picks up the accent so it reads as a different kind of act. */
.btn-ghost { color: var(--primary-dark); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff !important; border-color: var(--primary); }

/* Muted text now uses the token rather than scattered greys. */
.zip-result .zr-meta, .three-up p, .lf-note, .lead-form .lf-why { color: var(--muted); }

/* Dark band gets a warm highlight so it isn't monochrome either. */
.sec-dark .stat-strip div:nth-child(2) b { color: #fcd9a4; }

/* "do not" carries the whole sentence - underline it deliberately, thick and
   offset so it reads as emphasis rather than as a link. */
.zip-result .zr-lead u {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}

/* ================= compare picker ================= */
.vs-picker { max-width: 720px; }
.vs-row { display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
.vs-row > div:not(.vs-word) { flex: 1 1 220px; }
.vs-row label { display: block; font-size: .85rem; font-weight: 600; margin: 0 0 5px; }
.vs-row select {
  width: 100%; padding: 13px 14px; font-size: 1rem; background: #fff; color: var(--text);
  border: 1px solid var(--border); border-radius: 8px; box-sizing: border-box;
}
.vs-row select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(154,52,18,.16); }
.vs-word { flex: 0 0 auto; padding-bottom: 13px; font-weight: 800; color: var(--muted); font-size: 1.05rem; }
.vs-err { color: #b91c1c; font-size: .88rem; font-weight: 600; margin: 10px 0 0; }
.vs-picker .cta-button { margin-top: 18px; }
.vs-picker .cta-button[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }

details summary { cursor: pointer; font-weight: 600; color: var(--primary); }
details summary:hover { color: var(--primary-dark); }

@media (max-width: 560px) { .vs-word { display: none; } }
