/* ─────────────────────────────────────────────────────────────────
   CertLaunch · Vertical Hub Page Mockups
   Extends styles-v2.css + guide-styles.css + homepage-styles.css.
   Adds the clickable US tile-grid map, state dropdown, hub-specific
   hero variants and supporting sections.
   ───────────────────────────────────────────────────────────────── */

.vh { width: 100%; max-width: 100%; }
.vh .nav { position: relative; }
.vh .page { max-width: 1280px; padding-bottom: 64px; }
.vh section { margin-top: 56px; }
.vh .section-head {
  display: flex; align-items: end; justify-content: space-between;
  margin-bottom: 24px; gap: 24px;
}
.vh .section-head .head-left { min-width: 0; }
.vh .section-head h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 36px; line-height: 1.05; letter-spacing: -.028em; font-weight: 700;
  color: var(--black);
  text-wrap: balance;
}
.vh .section-head h2 em { font-style: italic; color: var(--trust); font-weight: 700; }
.vh .section-head .h-sub {
  font-size: 14px; color: var(--muted); max-width: 50ch;
  margin: 8px 0 0;
}
.vh .section-head a.view-all {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--trust); font-weight: 700; white-space: nowrap;
  border-bottom: 1px solid var(--trust-100);
  padding-bottom: 2px;
}

/* ════════════════════════════════════════════════════════════
   TILE MAP (used by all three)
   ════════════════════════════════════════════════════════════ */
.tile-map {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 5px;
  width: 100%;
}
.tile-map .tile {
  aspect-ratio: 1;
  border-radius: 6px;
  background: var(--trust-50);
  color: var(--trust-700);
  font-family: 'Geist Mono', monospace;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 1px solid var(--trust-100);
  transition: transform .12s, background .12s, color .12s, border-color .12s;
  user-select: none;
  position: relative;
}
.tile-map .tile:hover {
  background: var(--trust);
  color: #fff;
  border-color: var(--trust);
  transform: scale(1.08);
  z-index: 2;
}
.tile-map .tile.empty {
  background: transparent;
  border: 0;
  cursor: default;
  pointer-events: none;
}
.tile-map .tile.hot {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.tile-map .tile.hot:hover {
  background: var(--trust);
  border-color: var(--trust);
}
.tile-map .tile.dim {
  opacity: 0.6;
}
.tile-map .tile .pop-dot {
  position: absolute; top: 4px; right: 4px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--trust);
  box-shadow: 0 0 0 2px var(--card);
}
.tile-map .tile.hot .pop-dot { background: #fff; }
.tile-map.compact .tile { font-size: 9.5px; border-radius: 4px; }
.tile-map.compact { gap: 3px; }

/* ════════════════════════════════════════════════════════════
   REAL GEOGRAPHIC US MAP (paths from @svg-maps/usa, MIT)
   ════════════════════════════════════════════════════════════ */
.us-map {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.us-map svg {
  width: 100%;
  height: auto;
  display: block;
}
.us-map .us-state {
  fill: var(--trust);
  stroke: var(--card);
  stroke-width: 1.2;
  cursor: pointer;
  transition: fill .12s, stroke-width .12s;
}
.us-map .us-state:hover {
  fill: var(--trust-700);
  stroke-width: 1.6;
}
.us-map .us-state.hot {
  fill: var(--ink);
}
.us-map .us-state.hot:hover {
  fill: var(--trust-700);
}
.us-map .us-state.not-required {
  fill: #1F8A5B;
  cursor: default;
}
.us-map .us-state.not-required:hover {
  fill: #1F8A5B;
  stroke-width: 1.2;
}
.us-map a { outline: none; }
.us-map a:focus-visible .us-state {
  fill: var(--trust-700);
  stroke: var(--ink);
  stroke-width: 2;
}

/* Rescale Alaska + Hawaii — inset lower-left under the lower-48 */
.us-map .us-state[data-abbr="AK"] {
  transform: translate(80px, -110px) scale(0.4);
  transform-box: fill-box;
  transform-origin: center;
}
.us-map .us-state[data-abbr="HI"] {
  transform: translate(-50px, -75px) scale(1.3);
  transform-box: fill-box;
  transform-origin: center;
}

/* Crop empty space below the lower-48 so content sits closer to the map */
.us-map svg {
  max-height: 580px;
}

/* Map legend variants */
.map-legend .swatch .box.req { background: var(--trust); border-color: var(--trust); }
.map-legend .swatch .box.hot { background: var(--ink); border-color: var(--ink); }
.map-legend .swatch .box.notreq { background: #1F8A5B; border-color: #1F8A5B; }

/* Map legend */
.map-legend {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.map-legend .swatch {
  display: inline-flex; align-items: center; gap: 6px;
}
.map-legend .swatch .box {
  width: 14px; height: 14px; border-radius: 4px;
  border: 1px solid var(--trust-100); background: var(--trust-50);
}
.map-legend .swatch .box.hot { background: var(--ink); border-color: var(--ink); }
.map-legend .swatch .box.dim { background: var(--line-2); border-color: var(--line); }

/* ════════════════════════════════════════════════════════════
   STATE DROPDOWN
   ════════════════════════════════════════════════════════════ */
.state-dropdown {
  display: flex; flex-direction: column;
  gap: 6px;
}
.state-dropdown .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.state-dropdown .select-wrap {
  position: relative;
}
.state-dropdown select {
  appearance: none;
  width: 100%;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 44px 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .12s, box-shadow .12s;
}
.state-dropdown select:hover { border-color: var(--trust); }
.state-dropdown select:focus { outline: none; border-color: var(--trust); box-shadow: 0 0 0 3px var(--trust-50); }
.state-dropdown .select-wrap::after {
  content: "▾";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--muted);
  pointer-events: none;
}
.state-dropdown .go-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--trust); color: #fff;
  border: 0; border-radius: 10px;
  padding: 13px 18px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; justify-content: center;
  margin-top: 6px;
}
.state-dropdown .go-btn:hover { background: var(--trust-700); }
.state-dropdown .go-btn .arrow { font-family: 'Geist Mono', monospace; }
.state-dropdown .sep {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700;
  margin: 10px 0 2px;
}
.state-dropdown .sep::before, .state-dropdown .sep::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

/* Picker row below the map (replaces the framed picker-row) */
.picker-after {
  margin: 28px auto 0;
  max-width: 560px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  text-align: left;
}
.picker-after .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  grid-column: 1 / -1;
}
.picker-after .select-wrap {
  position: relative;
}
.picker-after select {
  appearance: none;
  width: 100%;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 44px 14px 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.picker-after select:hover { border-color: var(--trust); }
.picker-after .select-wrap::after {
  content: "▾";
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  font-size: 13px; color: var(--muted);
  pointer-events: none;
}
.picker-after button.go-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--trust); color: #fff;
  border: 0; border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.picker-after button.go-btn:hover { background: var(--trust-700); }
.picker-after button.go-btn .arrow { font-family: 'Geist Mono', monospace; }

/* ════════════════════════════════════════════════════════════
   VARIANT A · MAP-FIRST HERO
   ════════════════════════════════════════════════════════════ */
.vh-hero-mapfirst {
  padding: 36px 0 24px;
  text-align: center;
  position: relative;
}
.vh-hero-mapfirst .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--trust); font-weight: 700;
  background: var(--trust-50);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.vh-hero-mapfirst h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px; line-height: 1.0; letter-spacing: -.032em;
  font-weight: 700; color: var(--black);
  margin: 0 auto 16px;
  max-width: 22ch;
  text-wrap: balance;
}
.vh-hero-mapfirst h1 em { font-style: italic; color: var(--trust); font-weight: 700; }
.vh-hero-mapfirst .sub {
  font-family: 'Fraunces', serif;
  font-size: 20px; line-height: 1.4; letter-spacing: -.005em;
  color: var(--muted);
  max-width: 60ch; margin: 0 auto 32px;
  text-wrap: pretty;
}
.vh-hero-mapfirst .sub em { font-style: italic; color: var(--ink); }
.vh-hero-mapfirst .map-frame {
  margin: 0 auto;
  max-width: 880px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px 22px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.vh-hero-mapfirst .map-frame .frame-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 16px;
}
.vh-hero-mapfirst .map-frame .frame-head .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.vh-hero-mapfirst .map-frame .frame-head .label b { color: var(--ink); }
.vh-hero-mapfirst .map-frame .frame-head .quick {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--trust); font-weight: 700;
}
.vh-hero-mapfirst .map-frame .picker-row {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: end;
}
.vh-hero-mapfirst .map-frame .picker-row .sep-mid {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700;
  align-self: center;
  text-align: center;
  padding-bottom: 14px;
}

/* ════════════════════════════════════════════════════════════
   VARIANT B · EDITORIAL HUB HERO
   ════════════════════════════════════════════════════════════ */
.vh-hero-ed {
  padding: 40px 0 28px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: end;
}
.vh-hero-ed .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--trust); font-weight: 700;
  margin-bottom: 20px;
}
.vh-hero-ed .kicker .dot { color: var(--muted-3); }
.vh-hero-ed h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 80px; line-height: 0.98; letter-spacing: -.038em;
  font-weight: 700; color: var(--black);
  margin: 0 0 22px;
  text-wrap: balance;
}
.vh-hero-ed h1 em { font-style: italic; color: var(--trust); font-weight: 700; }
.vh-hero-ed .dek {
  font-family: 'Fraunces', serif;
  font-size: 22px; line-height: 1.4; letter-spacing: -.01em;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 26px;
}
.vh-hero-ed .dek b { color: var(--ink); font-weight: 600; }
.vh-hero-ed .actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.vh-hero-ed .actions a.primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  padding: 13px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
}
.vh-hero-ed .actions a.primary:hover { background: var(--trust); }
.vh-hero-ed .actions a.primary .arrow { font-family: 'Geist Mono', monospace; }
.vh-hero-ed .hero-stats-mini {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.vh-hero-ed .hero-stats-mini .stat-row {
  display: flex; flex-direction: column; gap: 2px;
}
.vh-hero-ed .hero-stats-mini .stat-row .l {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.vh-hero-ed .hero-stats-mini .stat-row .v {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 700; color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1;
}
.vh-hero-ed .hero-stats-mini .stat-row .v em { font-style: italic; color: var(--trust); }
.vh-hero-ed .hero-stats-mini .stat-row .s {
  font-size: 13px; color: var(--muted); margin-top: 2px;
}

/* Map section (used by variant B) */
.vh-map-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.vh-map-section .map-side {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px 22px;
  box-shadow: var(--shadow-sm);
}
.vh-map-section .map-side .frame-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 16px;
}
.vh-map-section .map-side .frame-head .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.vh-map-section .picker-side {
  display: flex; flex-direction: column; gap: 18px;
}
.vh-map-section .pop-states {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.vh-map-section .pop-states h5 {
  margin: 0 0 12px;
  font-family: 'Fraunces', serif;
  font-size: 16px; letter-spacing: -.015em; font-weight: 600;
  color: var(--ink);
}
.vh-map-section .pop-states ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.vh-map-section .pop-states ol li {
  display: grid; grid-template-columns: 24px 1fr auto;
  align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 14px;
}
.vh-map-section .pop-states ol li:last-child { border-bottom: 0; }
.vh-map-section .pop-states .rank {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .12em; color: var(--muted);
  font-weight: 700;
}
.vh-map-section .pop-states .nm { color: var(--ink); font-weight: 600; }
.vh-map-section .pop-states .ct {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px; color: var(--trust); font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   VARIANT C · SPLIT HERO
   ════════════════════════════════════════════════════════════ */
.vh-hero-split {
  padding: 40px 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.vh-hero-split .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--trust); font-weight: 700;
  margin-bottom: 18px;
}
.vh-hero-split .kicker .dot { color: var(--muted-3); }
.vh-hero-split h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 60px; line-height: 1.02; letter-spacing: -.035em;
  font-weight: 700; color: var(--black);
  margin: 0 0 18px;
  text-wrap: balance;
}
.vh-hero-split h1 em { font-style: italic; color: var(--trust); font-weight: 700; }
.vh-hero-split .dek {
  font-family: 'Fraunces', serif;
  font-size: 20px; line-height: 1.45; letter-spacing: -.005em;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 52ch;
}
.vh-hero-split .dek b { color: var(--ink); font-weight: 600; }
.vh-hero-split .reassure {
  display: flex; flex-direction: column; gap: 6px;
}
.vh-hero-split .reassure-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-2);
}
.vh-hero-split .reassure-item .ck {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--trust-50); color: var(--trust);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.vh-hero-split .picker-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 24px 22px;
  box-shadow: var(--shadow-md);
}
.vh-hero-split .picker-card .frame-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 14px;
}
.vh-hero-split .picker-card .frame-head .label {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
}
.vh-hero-split .picker-card .frame-head .label b { color: var(--ink); }
.vh-hero-split .picker-card .pop-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.vh-hero-split .picker-card .pop-chips .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  width: 100%;
  margin-bottom: 2px;
}
.vh-hero-split .picker-card .pop-chips a {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; font-weight: 700;
  color: var(--ink-2);
  background: var(--canvas);
  border: 1px solid var(--line);
  padding: 5px 10px; border-radius: 6px;
  transition: all .12s;
}
.vh-hero-split .picker-card .pop-chips a:hover {
  background: var(--trust); color: #fff; border-color: var(--trust);
}

/* ════════════════════════════════════════════════════════════
   STATE CARDS (used by all)
   ════════════════════════════════════════════════════════════ */
.state-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.state-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px 16px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.state-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--trust-100);
}
.state-card .sc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.state-card .sc-abbr {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--trust); font-weight: 700;
  background: var(--trust-50);
  padding: 3px 8px; border-radius: 999px;
}
.state-card .sc-trend {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
}
.state-card .sc-name {
  font-family: 'Fraunces', serif;
  font-size: 22px; letter-spacing: -.022em; font-weight: 600;
  color: var(--ink);
}
.state-card .sc-meta {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin: 4px 0 8px;
}
.state-card .sc-meta b { color: var(--ink); font-weight: 700; }
.state-card .sc-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted-2);
  padding-top: 8px;
  border-top: 1px solid var(--line-2);
}
.state-card .sc-foot .go { color: var(--trust); font-weight: 700; }

/* ════════════════════════════════════════════════════════════
   STAT BAR (vertical-specific)
   ════════════════════════════════════════════════════════════ */
.vh-stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
}
.vh-stat-bar .stat {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.vh-stat-bar .stat:last-child { border-right: 0; }
.vh-stat-bar .stat .l {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  margin-bottom: 6px;
}
.vh-stat-bar .stat .v {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700; color: var(--ink);
  letter-spacing: -.025em;
  line-height: 1;
}
.vh-stat-bar .stat .v em { font-style: italic; color: var(--trust); }
.vh-stat-bar .stat .s {
  font-size: 12.5px; color: var(--muted); margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .vh-hero-ed { grid-template-columns: 1fr; }
  .vh-hero-ed .hero-stats-mini { border-left: 0; padding-left: 0; flex-direction: row; flex-wrap: wrap; }
  .vh-hero-split { grid-template-columns: 1fr; }
  .vh-map-section { grid-template-columns: 1fr; }
  .state-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .vh-hero-mapfirst h1 { font-size: 40px; }
  .vh-hero-ed h1 { font-size: 48px; }
  .vh-hero-split h1 { font-size: 40px; }
  .vh-hero-mapfirst .map-frame .picker-row { grid-template-columns: 1fr; }
  .vh-stat-bar { grid-template-columns: repeat(2, 1fr); }
  .vh-stat-bar .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .state-cards { grid-template-columns: 1fr; }
}
