:root {
  color-scheme: dark;
  --bg: #0c1123;
  --panel: #11182c;
  --card: #0f172a;
  --accent: #7ce7ff;
  --accent-2: #a78bfa;
  --muted: #9aa3b7;
  --border: #1c2540;
  --text: #e8eeff;
  --surface-glow: 0 12px 36px rgba(0, 0, 0, 0.35);
  --glass: blur(12px);
  --success: #5ef5a4;
  --error: #ff8fa3;
  --warn: #ffd166;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fb;
  --panel: #ffffff;
  --card: #f5f7fb;
  --accent: #2563eb;
  --accent-2: #8b5cf6;
  --muted: #4b5565;
  --border: #d7dded;
  --text: #0f172a;
  --surface-glow: 0 12px 30px rgba(15, 23, 42, 0.1);
  --glass: blur(10px);
  --success: #0ea45a;
  --error: #dc2626;
  --warn: #d97706;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: clamp(14px, 1vw + 0.5rem, 18px);
  line-height: 1.5;
  background: radial-gradient(circle at 20% 20%, rgba(124, 231, 255, 0.05), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(167, 139, 250, 0.06), transparent 30%), var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background 0.35s ease, color 0.25s ease;
}

.app {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 48px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 8px;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-mark {
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.brand-name { font-size: 1rem; letter-spacing: 0.01em; }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.summary-bar {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 8px 0 20px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.06), rgba(12, 17, 35, 0.8));
  box-shadow: var(--surface-glow);
}

.summary-chip {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(124, 231, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
  align-self: center;
}

.summary-metric {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  display: grid;
  gap: 4px;
}

.summary-metric strong {
  font-size: 24px;
  letter-spacing: -0.01em;
}


.dispatch-shell {
  margin: 12px 0 18px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.05), rgba(12, 17, 35, 0.85));
  box-shadow: var(--surface-glow);
}

.module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.console-title h1 { margin: 0 0 8px; }
.console-title .muted { max-width: 50ch; }

.console-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.action-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(124, 231, 255, 0.08);
  border: 1px solid var(--border);
  font-weight: 600;
}
.action-chip.calm { background: rgba(167, 139, 250, 0.08); }

.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12, 17, 35, 0.6);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pill.live { border-color: rgba(124, 231, 255, 0.6); box-shadow: 0 8px 20px rgba(124, 231, 255, 0.12); }
.pill.calm { border-color: rgba(167, 139, 250, 0.5); }

.status-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.status-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 10px 26px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 8px;
}

.status-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(124, 231, 255, 0.08);
}

.status-dot.active { background: var(--success); box-shadow: 0 0 0 6px rgba(94, 245, 164, 0.1); }
.status-dot.caution { background: var(--warn); box-shadow: 0 0 0 6px rgba(255, 209, 102, 0.12); }
.status-dot.calm { background: var(--accent-2); box-shadow: 0 0 0 6px rgba(167, 139, 250, 0.14); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
}

h1 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  font-weight: 700;
}
h2 { margin: 0; }
p { margin: 0; }

.muted { color: var(--muted); }

.window-switcher button {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.window-switcher button.active,
.window-switcher button:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(124, 231, 255, 0.15);
}

.header-actions .ghost { min-width: 110px; }

.controls {
  margin: 20px 0 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.primary-controls {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  backdrop-filter: var(--glass);
  box-shadow: var(--surface-glow);
}

.control-buttons { display: flex; gap: 8px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.search-field { flex: 1; }
.search-stack { display: flex; flex-direction: column; gap: 8px; }
.search-field input {
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 231, 255, 0.06), rgba(15, 23, 42, 0.8));
}
.suggestions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.suggestion-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.suggestion-row button {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 6px 10px;
  cursor: pointer;
}
.suggestion-row button:hover { border-color: var(--accent); color: var(--accent); }

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  padding: 12px;
  background: rgba(124, 231, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.button, button, .ghost {
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  padding: 10px 14px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.button:focus-visible,
button:focus-visible,
.ghost:focus-visible,
a:focus-visible,
.chip:focus-visible,
.tag:focus-visible,
.call-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(124, 231, 255, 0.2);
}

.button:hover, button:hover, .ghost:hover { transform: translateY(-1px); border-color: var(--accent); box-shadow: 0 8px 20px rgba(124, 231, 255, 0.12); }
.ghost.active { border-color: var(--accent); color: var(--accent); box-shadow: 0 10px 24px rgba(124, 231, 255, 0.14); }

button.primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0a0f22; border: none; }

button:disabled { opacity: 0.6; cursor: not-allowed; box-shadow: none; }

.layout { display: flex; flex-direction: column; gap: 16px; }

.map-list {
  display: grid;
  grid-template-columns: minmax(380px, 1.25fr) minmax(340px, 1fr);
  gap: 16px;
  align-items: start;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--surface-glow);
  backdrop-filter: var(--glass);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.call-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 72vh;
  overflow-y: auto;
  padding-right: 4px;
}

.call-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.call-card .card-top { display: flex; justify-content: space-between; gap: 12px; }
.call-card .card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; }
.status-icon { font-size: 18px; }
.status-icon.processing, .status-icon.queued { filter: drop-shadow(0 0 6px rgba(255, 209, 102, 0.6)); }
.status-icon.done { filter: drop-shadow(0 0 6px rgba(94, 245, 164, 0.6)); }
.status-icon.error { filter: drop-shadow(0 0 6px rgba(255, 143, 163, 0.6)); }
.quick-actions { display: flex; align-items: center; gap: 8px; }
.quick-actions .mini { padding: 6px 10px; border-radius: 8px; }
.mini { font-size: 13px; }

.call-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(124, 231, 255, 0.12); }
.call-card.active { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(124,231,255,0.2), 0 10px 24px rgba(124, 231, 255, 0.16); }

.call-card .title { font-weight: 700; margin-bottom: 6px; }
.call-card .meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.call-card .card-flags { display: flex; align-items: center; gap: 8px; }
.call-snippet {
  color: var(--muted);
  font-size: 13px;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.call-expanded {
  margin-top: 6px;
  border-top: 1px dashed var(--border);
  padding-top: 6px;
  font-size: 13px;
  color: var(--text);
  max-height: 120px;
  overflow-y: auto;
}

.badge { padding: 4px 8px; border-radius: 999px; font-size: 12px; border: 1px solid var(--border); }
.badge.done { color: var(--success); border-color: rgba(94,245,164,0.5); }
.badge.processing { color: var(--warn); border-color: rgba(255,209,102,0.4); }
.badge.error { color: var(--error); border-color: rgba(255,143,163,0.5); }
.badge.warning { color: #fcd34d; border-color: rgba(252, 211, 77, 0.5); }

.incident-card {
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.9);
}

.incident-card--ems,
.incident-card--medical {
  border-color: rgba(56, 189, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
}

.incident-card--fire {
  border-color: rgba(248, 113, 113, 0.9);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.3);
}

.incident-card--other {
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.incident-audio {
  margin-top: 0.5rem;
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
}

.incident-audio--ems,
.incident-audio--medical {
  background: linear-gradient(90deg, rgba(8, 47, 73, 0.9), rgba(8, 145, 178, 0.9));
}

.incident-audio--fire {
  background: linear-gradient(90deg, rgba(127, 29, 29, 0.9), rgba(248, 113, 113, 0.9));
}

.incident-audio--other {
  background: linear-gradient(90deg, rgba(30, 64, 175, 0.9), rgba(30, 64, 175, 0.7));
}

.location-line { color: var(--muted); font-size: 12px; }

.incident-summary {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 12px;
}

.incident-summary__body { color: var(--text); font-size: 14px; line-height: 1.5; }
.summary-header { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.meta-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 12px; }

.player { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px; margin-bottom: 12px; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03); }
.player-actions { display: flex; gap: 10px; align-items: center; margin-top: 8px; }

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.tag {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--muted);
  cursor: pointer;
  background: rgba(124, 231, 255, 0.05);
  font: inherit;
}
.tag.active { color: var(--accent); border-color: var(--accent); box-shadow: 0 6px 20px rgba(124, 231, 255, 0.18); }

.transcript { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 12px; min-height: 160px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
[data-theme="light"] .transcript { background: #eef3ff; }
.transcript-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.transcript-text { display: flex; flex-direction: column; gap: 6px; font-family: "IBM Plex Mono", monospace; color: var(--text); }
.transcript-text.playing { background: rgba(124,231,255,0.05); }
.transcript-segment { display: flex; gap: 10px; align-items: flex-start; padding: 8px 10px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease; }
.transcript-segment .timestamp { min-width: 60px; color: var(--muted); font-family: "IBM Plex Mono", monospace; }
.transcript-segment .text { white-space: pre-wrap; }
.transcript-segment:hover { border-color: var(--accent); }
.transcript-segment.active { border-color: var(--accent); background: rgba(124,231,255,0.08); }

.chart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chart { min-height: 200px; }

.insight-row { display: grid; grid-template-columns: 1fr 1.1fr; gap: 12px; align-items: stretch; }
.story-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--card); box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
.story-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.story-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.story-list li { display: flex; gap: 10px; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; background: rgba(124, 231, 255, 0.04); }
.story-list .dot { font-size: 18px; }

.map-wrapper { border: 1px solid var(--border); border-radius: 12px; padding: 12px; background: var(--card); box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
.map-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.map-controls { display: flex; gap: 6px; }
.map-controls button { border-radius: 999px; }

.map-chart {
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 10px 28px rgba(0, 0, 0, 0.25);
}

.map-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
  background: rgba(11, 16, 33, 0.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.map-badge strong { display: block; font-size: 18px; }
.map-badge span { color: var(--muted); font-size: 13px; }

.map-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  background: rgba(124, 231, 255, 0.04);
}

.map-empty h4 { margin: 4px 0; color: var(--text); }

.mapboxgl-canvas { border-radius: 16px; }
.mapboxgl-popup-content {
  background: rgba(11, 16, 33, 0.9);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  font-family: var(--font, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

[data-theme="light"] .mapboxgl-popup-content { background: rgba(255,255,255,0.95); color: var(--text); }
.mapboxgl-popup-tip { border-top-color: rgba(11, 16, 33, 0.9); border-bottom-color: rgba(11, 16, 33, 0.9); }
[data-theme="light"] .mapboxgl-popup-tip { border-top-color: rgba(255,255,255,0.95); border-bottom-color: rgba(255,255,255,0.95); }
.mapboxgl-ctrl-group { border: 1px solid var(--border); background: rgba(11, 16, 33, 0.9); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); }
[data-theme="light"] .mapboxgl-ctrl-group { background: rgba(255,255,255,0.95); }
.mapboxgl-ctrl button { filter: invert(1) grayscale(1); }

.hotspot-widget {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: rgba(124, 231, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.hotspot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hotspot-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotspot-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(11, 16, 33, 0.55);
}

[data-theme="light"] .hotspot-list li {
  background: rgba(255,255,255,0.85);
}

.hotspot-list .label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--text);
}

.hotspot-list .meta {
  font-size: 12px;
  color: var(--muted);
}

.hotspot-count {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}

.hotspot-empty {
  text-align: center;
  color: var(--muted);
  padding: 8px 0;
}

.tag-row { display: flex; gap: 8px; flex-wrap: wrap; min-height: 38px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; }
.chip { border: 1px solid var(--border); background: rgba(124,231,255,0.08); color: var(--text); border-radius: 999px; padding:6px 10px; cursor: pointer; }
.chip:hover { border-color: var(--accent); }

.empty { color: var(--muted); text-align: center; padding: 20px; }
.hidden { display: none; }

.checkbox { display: flex; align-items: center; gap: 8px; color: var(--muted); }

.spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(124, 231, 255, 0.3);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.transcript-placeholder { display: flex; align-items: center; gap: 10px; }

#insights-body.collapsed { display: none; }

.filters-drawer {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 100;
}

.filters-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.drawer-panel {
  width: min(420px, 90vw);
  height: 100%;
  background: var(--panel);
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  padding: 16px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
}

.drawer-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.status-bar {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(94, 245, 164, 0.12);
  color: var(--success);
  font-weight: 700;
}
.status-actions { display: flex; gap: 6px; }

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .map-list { grid-template-columns: 1fr; }
  .call-list { max-height: none; }
}

@media (max-width: 720px) {
  .top-nav { flex-direction: column; align-items: flex-start; gap: 10px; }
  .primary-controls { flex-direction: column; }
  .control-buttons { width: 100%; justify-content: flex-end; }
  .insight-row { grid-template-columns: 1fr; }
  .chart-grid { grid-template-columns: 1fr; }
}
