/* Homepage-specific */
.hero {
  position: relative;
  background-color: oklch(30.6% 0.042 1);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0 72px;
  color: #ffffff;
  overflow: hidden;
}
.hero::before,
.hero::after,
.hero .hero-bg {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-dissolve 30s ease-in-out infinite;
  transform: scale(1.02);
  will-change: opacity, transform;
}
.hero::before {
  background-image: url('/images/wedj-hero-dj.webp');
  animation-delay: 0s;
}
.hero .hero-bg {
  animation-delay: 10s;
}
.hero::after {
  animation-delay: 20s;
}
.hero.hero-rotating .hero-bg { background-image: url('/images/wedj-hero-photographer.webp'); }
.hero.hero-rotating::after { background-image: url('/images/wedj-hero-videographer.webp'); }
.hero .hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.20;
  mix-blend-mode: overlay;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.08) 75%, transparent 75%, transparent),
    radial-gradient(circle at 18% 30%, rgba(245, 166, 35, 0.22), transparent 28%),
    radial-gradient(circle at 76% 64%, rgba(67, 160, 220, 0.18), transparent 32%);
  background-size: 44px 44px, 100% 100%, 100% 100%;
  animation: hero-texture-shift 18s linear infinite;
}
.hero .shell { position: relative; z-index: 2; }
.hero .hero-bg { z-index: 0; }
.hero::before, .hero::after { z-index: 0; }
.hero::after { pointer-events: none; }
.hero::before { pointer-events: none; }
.hero .hero-bg { pointer-events: none; }
.hero .shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -64px calc(50% - 50vw) -72px;
  background: linear-gradient(180deg, oklch(30.6% 0.042 1 / 0.55) 0%, oklch(30.6% 0.042 1 / 0.42) 55%, oklch(30.6% 0.042 1 / 0.66) 100%);
}
@keyframes hero-dissolve {
  0% { opacity: 0; transform: scale(1.02) translate3d(0, 0, 0); }
  8%, 30% { opacity: 1; }
  42%, 100% { opacity: 0; transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}
@keyframes hero-texture-shift {
  0% { background-position: 0 0, center, center; }
  100% { background-position: 44px 44px, center, center; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before { opacity: 1; animation: none; }
  .hero .hero-bg, .hero::after { animation: none; opacity: 0; }
  .hero .hero-texture { animation: none; }
}
.hero h1 {
  color: #ffffff;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.85), 0 2px 4px rgba(0, 0, 0, 0.9);
}
.hero .sub {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
}
.hero .sub strong { color: #ffffff; font-weight: 800; }
.hero .trust-strip {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
}
.hero .trust-strip span strong { color: #ffffff; font-weight: 800; }
.hero h1 {
  font-family: 'Mona Sans', sans-serif;
  font-variation-settings: "wdth" 100, "wght" 800;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero .sub {
  font-size: 17px;
  margin-bottom: 28px;
}

/* Search form */
.search-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 6px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr auto;
  gap: 4px;
  box-shadow: var(--shadow-2);
}
@media (max-width: 800px) {
  .search-form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  /* Mobile keeps the dark photo hero, just tightens vertical padding
     and stacks the search form. White text + shadows stay. */
  .hero {
    padding: 28px 0 32px;
    border-bottom: none;  /* avoid edge-to-edge rule that misaligns with shell-contained borders below */
  }
  .hero h1 {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 18px;
  }
  .hero .sub { display: none; }
  .hero .trust-strip {
    justify-content: flex-start;
    gap: 8px 18px;
    margin-top: 16px;
    font-size: 14px;
  }
  .search-form {
    grid-template-columns: 1fr;
  }
  .search-form .btn { margin: 4px; padding: 14px 18px; justify-self: stretch; }
}
.search-field {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: var(--r-md);
  transition: background .12s;
  cursor: text;
}
.search-field:hover { background: var(--bg-2); }
.search-field label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.search-field input, .search-field select {
  border: none;
  background: transparent;
  outline: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  width: 100%;
}
.search-field select {
  color-scheme: light;
}
.search-field select option {
  background-color: var(--paper);
  color: var(--ink);
}
:root[data-theme="dark"] .search-field select {
  color-scheme: dark;
}
:root[data-theme="dark"] .search-field select option {
  background-color: oklch(23% 0.01 60);
  color: oklch(95% 0.005 60);
}
:root[data-theme="light"] .search-field select {
  color-scheme: light;
}
:root[data-theme="light"] .search-field select option {
  background-color: oklch(99% 0.003 60);
  color: oklch(18% 0.01 60);
}
.search-form .btn {
  align-self: center;
  margin: 4px 6px;
}
.search-form .search-go {
  padding: 8px 18px;
  font-weight: 800;
  letter-spacing: 0.04em;
  min-width: 60px;
  height: 38px;
  line-height: 1;
  font-size: 14px;
}

/* ===== Ask AI hero mode (homepage-only; combine on publish) ===== */
.ai-lede {
  color: #fff;
  font-family: 'Mona Sans', sans-serif;
  font-variation-settings: "wdth" 100, "wght" 700;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 0 28px rgba(0,0,0,.85), 0 2px 4px rgba(0,0,0,.9);
}
.ai-panel {
  display: flex;
  flex-direction: column;
  height: 528px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(20,18,22,.42);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.ai-log {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-msg { display: flex; gap: 10px; align-items: flex-end; max-width: 86%; }
.ai-msg.bot  { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; flex-direction: row-reverse; }
.ai-avatar { flex: 0 0 30px; width: 30px; height: 30px; border-radius: 50%; overflow: hidden; }
.ai-avatar svg { width: 100%; height: 100%; display: block; }
.ai-avatar .vinyl-spin {
  transform-box: fill-box; transform-origin: center;
  animation: ai-vinyl-rotate 8s linear infinite;
}
@keyframes ai-vinyl-rotate { to { transform: rotate(360deg); } }
.ai-bubble {
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
}
.ai-msg.bot  .ai-bubble { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16); border-bottom-left-radius: 5px; }
.ai-msg.user .ai-bubble { background: var(--accent); border-bottom-right-radius: 5px; }
.ai-typing { display: inline-flex; gap: 4px; padding: 2px 0; }
.ai-typing span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.75); animation: ai-blink 1.2s infinite both; }
.ai-typing span:nth-child(2) { animation-delay: .2s; }
.ai-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes ai-blink { 0%,80%,100% { opacity:.25; transform: translateY(0); } 40% { opacity:1; transform: translateY(-3px); } }
.ai-input {
  display: flex; gap: 8px; align-items: flex-end;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(12, 8, 13, .58);
}
.ai-input textarea {
  flex: 1 1 auto;
  resize: none;
  height: 42px; max-height: 120px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(18, 12, 18, .72);
  color: #ffffff;
  caret-color: var(--accent);
  color-scheme: dark;
  border-radius: var(--r-md);
  padding: 11px 14px;
  font: inherit; font-size: 15px;
  line-height: 1.4;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.ai-input textarea::placeholder { color: rgba(255,255,255,.62); opacity: 1; }
.ai-input textarea:focus {
  border-color: var(--accent);
  background: rgba(24, 14, 24, .86);
  box-shadow: 0 0 0 3px oklch(53.0% 0.157 7 / .26), inset 0 1px 0 rgba(255,255,255,.10);
}
.ai-send {
  flex: 0 0 auto;
  height: 42px; width: 46px;
  padding: 0;
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
/* Grounded vendor shortlist cards inside the chat log */
.ai-vcards { display: flex; flex-direction: column; gap: 8px; align-self: stretch; width: 100%; }
.ai-vcard {
  display: flex; align-items: stretch;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  overflow: hidden;
}
.ai-vcard-link { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-width: 0; padding: 8px; color: #fff; text-decoration: none; }
.ai-vcard-photo { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; flex: 0 0 54px; background: rgba(255,255,255,.12); }
.ai-vcard-body { display: flex; flex-direction: column; min-width: 0; gap: 2px; }
.ai-vcard-name { font-weight: 700; font-size: 14.5px; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-vcard-meta { font-size: 12.5px; color: rgba(255,255,255,.82); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-vcard-link:hover .ai-vcard-name { text-decoration: underline; }
.ai-vcard-cart { flex: 0 0 auto; align-self: center; margin-right: 8px; white-space: nowrap; }
@media (max-width: 540px) {
  /* Stack so the vendor name gets full width above a full-width cart button */
  .ai-vcard { flex-wrap: wrap; }
  .ai-vcard-link { flex: 1 1 100%; }
  .ai-vcard-cart { width: calc(100% - 16px); margin: 0 8px 8px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .ai-avatar .vinyl-spin, .ai-typing span { animation: none; } }
@media (max-width: 540px) {
  /* Near full-screen below the header/menubar */
  .hero { padding-top: 14px; padding-bottom: 14px; }
  .ai-lede { margin-bottom: 10px; font-size: clamp(18px, 5vw, 22px); }
  /* leave room for header/tabs/lede at top + the sticky quote-cart bar at bottom */
  .ai-panel { height: calc(100vh - 220px); height: calc(100dvh - 220px); min-height: 400px; }
}

/* Searchable city combobox */
.combo { position: relative; }
.combo > input {
  border: none; background: transparent; outline: none;
  font-size: 15px; font-weight: 600; color: var(--ink);
  padding: 0; width: 100%;
}
.combo > input::placeholder { color: var(--ink-3); font-weight: 500; }
.combo > input:disabled {
  color: var(--ink-3);
  opacity: 1;
  -webkit-text-fill-color: var(--ink-3);
}
.combo-list {
  position: fixed;        /* fixed → escapes the hero's overflow:hidden clip; JS sets top/left/width */
  background: var(--paper);
  color: var(--ink);                       /* inherit-safe — hero parent is dark-on-photo */
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  max-height: 320px; overflow-x: hidden; overflow-y: auto;
  list-style: none; margin: 0; padding: 4px 0;
  box-shadow: var(--shadow-2);
  z-index: 30;
}
.combo-list[hidden] { display: none; }
.combo-list li {
  padding: 8px 14px; cursor: pointer;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  font-size: 14px;
}
.combo-list li[aria-selected="true"],
.combo-list li:hover { background: var(--bg-2); color: var(--ink); }
.combo-list li mark {
  background: transparent; color: var(--accent); font-weight: 700;
}
.combo-list .count {
  color: var(--ink-3); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.combo-list .empty {
  padding: 10px 14px; color: var(--ink-3); font-style: italic; font-size: 13px;
}

.trust-strip {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  font-size: 16px;
  color: var(--ink-3);
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-strip span strong { color: var(--ink); font-weight: 800; }

/* Section heads */
section.block { padding: 56px 0; }
.block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.block-head h2 {
  font-family: 'Mona Sans', sans-serif;
  font-variation-settings: "wdth" 100, "wght" 800;
  font-size: 26px;
  letter-spacing: -0.025em;
}
.block-head .all-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.block-head .all-link:hover { text-decoration: underline; }

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
.cat-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .15s, transform .12s, background .15s;
  min-height: 140px;
}
/* Each category gets a soft complementary tint along the theme axis. */
.cat-grid .cat-card:nth-child(1) { background: oklch(95% 0.030 7);  border-color: oklch(87.9% 0.045 7); }   /* Wedding DJs — rose */
.cat-grid .cat-card:nth-child(2) { background: oklch(94% 0.040 68);   border-color: oklch(86.5% 0.060 68); }   /* Photographers — honey */
.cat-grid .cat-card:nth-child(3) { background: oklch(94.1% 0.030 140); border-color: oklch(86.5% 0.045 140); }  /* Videographers — sage */
.cat-grid .cat-card:nth-child(4) { background: oklch(94% 0.026 354); border-color: oklch(86.5% 0.038 354); }  /* Photo booths — mauve */
@media (prefers-color-scheme: dark) {
  .cat-grid .cat-card:nth-child(1) { background: oklch(30% 0.050 7);  border-color: oklch(39% 0.070 7); }
  .cat-grid .cat-card:nth-child(2) { background: oklch(30% 0.050 68);  border-color: oklch(39% 0.070 68); }
  .cat-grid .cat-card:nth-child(3) { background: oklch(29% 0.040 140); border-color: oklch(38% 0.055 140); }
  .cat-grid .cat-card:nth-child(4) { background: oklch(30% 0.040 354); border-color: oklch(39% 0.060 354); }
}
:root[data-theme="light"] .cat-grid .cat-card:nth-child(1) { background: oklch(95% 0.030 7);  border-color: oklch(87.9% 0.045 7); }
:root[data-theme="light"] .cat-grid .cat-card:nth-child(2) { background: oklch(94% 0.040 68);   border-color: oklch(86.5% 0.060 68); }
:root[data-theme="light"] .cat-grid .cat-card:nth-child(3) { background: oklch(94.1% 0.030 140); border-color: oklch(86.5% 0.045 140); }
:root[data-theme="light"] .cat-grid .cat-card:nth-child(4) { background: oklch(94% 0.026 354); border-color: oklch(86.5% 0.038 354); }
:root[data-theme="dark"] .cat-grid .cat-card:nth-child(1) { background: oklch(30% 0.050 7);  border-color: oklch(39% 0.070 7); }
:root[data-theme="dark"] .cat-grid .cat-card:nth-child(2) { background: oklch(30% 0.050 68);  border-color: oklch(39% 0.070 68); }
:root[data-theme="dark"] .cat-grid .cat-card:nth-child(3) { background: oklch(29% 0.040 140); border-color: oklch(38% 0.055 140); }
:root[data-theme="dark"] .cat-grid .cat-card:nth-child(4) { background: oklch(30% 0.040 354); border-color: oklch(39% 0.060 354); }
.cat-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.cat-card .name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.cat-card .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-3);
}
.cat-card .footer-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cat-card:hover .footer-link::after { transform: translateX(3px); }
.cat-card .footer-link::after { content: "→"; transition: transform .15s; }
@media (max-width: 540px) {
  .cat-card { padding: 14px; min-height: 120px; min-width: 0; }
  .cat-card .name { font-size: 16px; }
  .cat-card .count { font-size: 11px; }
  .cat-card .footer-link { font-size: 12px; white-space: nowrap; }
}
@media (max-width: 380px) {
  .cat-card { padding: 12px; }
  .cat-card .footer-link { font-size: 11px; }
}

/* City grid — big SEO surface */
.city-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .city-grid { grid-template-columns: 1fr 1fr; } }
.city-tile {
  background: oklch(94% 0.014 37);
  padding: 14px;
  transition: background .1s;
}
.city-tile:hover { background: oklch(89% 0.022 35); }
@media (prefers-color-scheme: dark) {
  .city-tile { background: oklch(22% 0.018 350); }
  .city-tile:hover { background: oklch(29% 0.024 350); }
}
:root[data-theme="light"] .city-tile { background: oklch(94% 0.014 37); }
:root[data-theme="light"] .city-tile:hover { background: oklch(89% 0.022 35); }
:root[data-theme="dark"] .city-tile { background: oklch(22% 0.018 350); }
:root[data-theme="dark"] .city-tile:hover { background: oklch(29% 0.024 350); }
.city-tile .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.city-tile .count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-2);
}

/* How it works */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .how-grid { grid-template-columns: 1fr; } }
.how-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 22px;
}
.how-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
}
.how-card h3 {
  font-family: 'Mona Sans', sans-serif;
  font-variation-settings: "wdth" 100, "wght" 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Music charts grid — 4-up cells with a small JetBrains Mono category tag. */
.music-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
}
@media (max-width: 900px) { .music-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .music-grid { grid-template-columns: 1fr; } }
.music-tile {
  background: var(--paper);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background-color .15s ease, transform .15s ease;
}
/* Alternate rose + honey across the 16 tiles. Tones taken from the
   approved .cat-card palette (oklch hues 7 + 68) so they read as
   "of the same family" as the category cards above. */
.music-tile:nth-child(odd)  { background: oklch(95% 0.030 7);  }
.music-tile:nth-child(even) { background: oklch(94% 0.040 68);  }
.music-tile:nth-child(odd):hover  { background: oklch(86% 0.065 7); }
.music-tile:nth-child(even):hover { background: oklch(86% 0.075 68); }
@media (prefers-color-scheme: dark) {
  .music-tile:nth-child(odd)  { background: oklch(30% 0.050 7); }
  .music-tile:nth-child(even) { background: oklch(30% 0.050 68); }
  .music-tile:nth-child(odd):hover  { background: oklch(38% 0.070 7); }
  .music-tile:nth-child(even):hover { background: oklch(38% 0.070 68); }
}
:root[data-theme="light"] .music-tile:nth-child(odd)  { background: oklch(95% 0.030 7); }
:root[data-theme="light"] .music-tile:nth-child(even) { background: oklch(94% 0.040 68); }
:root[data-theme="light"] .music-tile:nth-child(odd):hover  { background: oklch(86% 0.065 7); }
:root[data-theme="light"] .music-tile:nth-child(even):hover { background: oklch(86% 0.075 68); }
:root[data-theme="dark"] .music-tile:nth-child(odd)  { background: oklch(30% 0.050 7); }
:root[data-theme="dark"] .music-tile:nth-child(even) { background: oklch(30% 0.050 68); }
:root[data-theme="dark"] .music-tile:nth-child(odd):hover  { background: oklch(38% 0.070 7); }
:root[data-theme="dark"] .music-tile:nth-child(even):hover { background: oklch(38% 0.070 68); }
.music-tile:hover .rel-name { color: var(--ink); }
.music-tile .rel-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.music-tile .rel-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.25;
  transition: color .12s;
}

/* States grid (eventective-style SEO) */
.states-grid {
  columns: 6;
  column-gap: 24px;
  font-size: 13px;
}
@media (max-width: 900px) { .states-grid { columns: 3; } }
@media (max-width: 540px) { .states-grid { columns: 2; } }
.states-grid a {
  display: block;
  padding: 5px 0;
  color: var(--ink-2);
}
.states-grid a:hover { color: var(--accent); }
