:root {
  --bg: #08090b;
  --ink: #f3f4ef;
  --muted: #9a9d98;
  --soft: #c9cdc6;
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --accent: #9fd7b5;
  --panel: #101216;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
.wrap { width: min(920px, calc(100% - 40px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.home-shell {
  min-height: 100vh;
  padding-bottom: 56px;
}

.top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  padding: 28px 0 80px;
}
.top-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}
.top-nav a:hover { color: var(--ink); text-decoration: none; }

.minimal-hero { padding-bottom: 64px; }
.home-description {
  max-width: 760px;
  color: var(--soft);
  font-size: clamp(24px, 4.6vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 54px;
}

.listing-stream {
  display: grid;
  gap: 0;
}
.listing-filter,
.listing-empty {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}
.listing-empty {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.listing-row {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) minmax(220px, 1.25fr) minmax(180px, .9fr);
  gap: 24px;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding: 18px 0;
  opacity: 0;
  transform: translateY(8px);
  animation: rowIn .52s ease forwards;
  animation-delay: calc(var(--i) * 70ms);
}
.listing-row:last-child { border-bottom: 1px solid var(--line); }
.listing-row:hover {
  border-top-color: var(--line-strong);
  text-decoration: none;
}
.listing-company {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.listing-role {
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}
.listing-meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.listing-actions {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  min-height: 38px;
}
.listing-more-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 300 27px/1 Inter, ui-sans-serif, system-ui, sans-serif;
  padding: 0 0 3px;
}
.listing-more-button:hover,
.listing-more-button[aria-expanded="true"] {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.035);
}
.listing-action-menu {
  display: grid;
  width: min(220px, calc(100vw - 88px));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8,9,11,.94);
  backdrop-filter: blur(10px);
}
.listing-action-menu[hidden],
.query-builder[hidden] {
  display: none;
}
.listing-action-menu button {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 10px 0;
}
.listing-action-menu button:last-child { border-bottom: 0; }
.listing-action-menu button:hover { color: var(--ink); }
.listing-action-menu button:disabled {
  color: rgba(154,157,152,.45);
  cursor: default;
}
.query-builder {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.query-builder-desktop {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  max-width: 640px;
}
.query-builder-desktop label,
.query-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.query-builder input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: 0;
  padding: 9px 0;
}
.query-builder input::placeholder { color: rgba(154,157,152,.62); }
.query-builder input:focus { border-bottom-color: var(--soft); }
.query-builder-mobile {
  display: none;
}
.query-row {
  display: grid;
  grid-template-columns: 20px 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.query-row:last-child { border-bottom: 0; }
.pixel-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  color: #fff;
  image-rendering: pixelated;
}
.pixel-icon::before,
.pixel-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.pixel-industries::before {
  left: 1px;
  bottom: 2px;
  width: 3px;
  height: 10px;
  box-shadow: 5px -3px 0 currentColor, 10px 1px 0 currentColor, 15px -6px 0 currentColor;
}
.pixel-industries::after {
  left: 0;
  bottom: 0;
  width: 18px;
  height: 3px;
}
.pixel-cities::before {
  left: 1px;
  bottom: 2px;
  width: 4px;
  height: 11px;
  box-shadow: 6px -4px 0 currentColor, 12px 2px 0 currentColor;
}
.pixel-cities::after {
  left: 0;
  bottom: 0;
  width: 18px;
  height: 3px;
}
.pixel-government::before {
  left: 0;
  top: 2px;
  width: 18px;
  height: 3px;
  box-shadow: 0 13px 0 currentColor;
}
.pixel-government::after {
  left: 2px;
  top: 6px;
  width: 3px;
  height: 9px;
  box-shadow: 6px 0 0 currentColor, 12px 0 0 currentColor;
}
.pixel-bucket-tech::before {
  left: 1px;
  top: 3px;
  width: 16px;
  height: 10px;
  border: 2px solid currentColor;
  background: transparent;
}
.pixel-bucket-tech::after {
  left: 4px;
  top: 15px;
  width: 10px;
  height: 2px;
  box-shadow: 3px -2px 0 currentColor;
}
.pixel-bucket-law::before {
  left: 8px;
  top: 2px;
  width: 2px;
  height: 15px;
  box-shadow: -6px 5px 0 currentColor, 6px 5px 0 currentColor;
}
.pixel-bucket-law::after {
  left: 1px;
  top: 7px;
  width: 16px;
  height: 2px;
  box-shadow: 1px 5px 0 currentColor, 3px 7px 0 currentColor, 11px 5px 0 currentColor, 9px 7px 0 currentColor;
}
.pixel-bucket-education::before {
  left: 1px;
  top: 5px;
  width: 16px;
  height: 6px;
  transform: skewY(-18deg);
}
.pixel-bucket-education::after {
  left: 5px;
  top: 11px;
  width: 8px;
  height: 4px;
  box-shadow: 10px -4px 0 -1px currentColor, 11px 0 0 -1px currentColor;
}
.pixel-bucket-social::before {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 5px;
  box-shadow: -6px 3px 0 -1px currentColor, 6px 3px 0 -1px currentColor;
}
.pixel-bucket-social::after {
  left: 5px;
  top: 10px;
  width: 9px;
  height: 6px;
  box-shadow: -6px 2px 0 -1px currentColor, 6px 2px 0 -1px currentColor;
}
.pixel-bucket-finance::before {
  left: 3px;
  top: 2px;
  width: 12px;
  height: 16px;
  border: 2px solid currentColor;
  background: transparent;
}
.pixel-bucket-finance::after {
  left: 8px;
  top: 5px;
  width: 2px;
  height: 10px;
  box-shadow: -3px 2px 0 currentColor, 3px -2px 0 currentColor;
}
.pixel-bucket-science::before {
  left: 7px;
  top: 2px;
  width: 4px;
  height: 9px;
  box-shadow: -2px 9px 0 2px currentColor, 2px 9px 0 2px currentColor;
}
.pixel-bucket-science::after {
  left: 5px;
  top: 2px;
  width: 8px;
  height: 2px;
  box-shadow: 0 8px 0 currentColor, -2px 14px 0 currentColor, 2px 14px 0 currentColor;
}
.bucket-autocomplete {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}
.bucket-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  padding: 7px 9px;
}
.bucket-chip:hover,
.bucket-chip[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--ink);
}
.bucket-chip[aria-pressed="true"] {
  background: rgba(255,255,255,.055);
}
.bucket-chip:disabled {
  cursor: default;
  opacity: .45;
}
.bucket-chip .pixel-icon,
.post-label .pixel-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  vertical-align: -2px;
}
.post-label .pixel-icon {
  margin-right: 5px;
}
.government-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-start;
}
.government-toggle button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  padding: 7px 9px;
}
.government-toggle button:hover { color: var(--ink); border-color: var(--line-strong); }
.government-toggle button[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bg);
}

.seo-sections {
  display: grid;
  gap: 54px;
  padding: 8px 0 80px;
}
.seo-section h2 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.section-note {
  max-width: 780px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}
.review-list,
.activity-list,
.metric-list {
  border-top: 1px solid var(--line);
}
.review-row {
  display: grid;
  grid-template-columns: minmax(110px, .7fr) minmax(180px, 1fr) 64px minmax(240px, 1.4fr) 92px;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
}
.review-company,
.review-score,
.activity-list strong {
  color: var(--ink);
  font-weight: 700;
}
.review-role,
.review-row time,
.review-row q,
.activity-list p {
  color: var(--muted);
  font-size: 13px;
}
.review-row q { quotes: none; }
.review-row q::before,
.review-row q::after { content: ""; }
.metric-list {
  display: grid;
  margin: 0;
}
.metric-list div {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.metric-list dt {
  color: var(--muted);
  font-size: 13px;
}
.metric-list dd {
  color: var(--ink);
  margin: 0;
  font-size: 14px;
  font-weight: 650;
}
.activity-list p {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 14px 0;
}

.map-page {
  padding-bottom: 84px;
}
.map-kicker {
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.map-page h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .96;
  margin-bottom: 18px;
}
.map-copy {
  max-width: 720px;
  color: var(--soft);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.35;
  margin-bottom: 42px;
}
.map-field {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  margin-bottom: 42px;
}
.map-field svg {
  display: block;
  width: 100%;
  height: auto;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.map-field svg.dragging {
  cursor: grabbing;
}
.us-outline {
  fill: rgba(255,255,255,.025);
  stroke: rgba(255,255,255,.9);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}
.us-outline.detail {
  fill: none;
  stroke: rgba(255,255,255,.18);
  stroke-width: .8;
}
.map-grid-line {
  fill: none;
  stroke: rgba(255,255,255,.07);
  stroke-width: 1;
}
.map-arc {
  fill: none;
  stroke: rgba(159,215,181,.28);
  stroke-width: 1.2;
}
.map-arc.strong {
  stroke: rgba(159,215,181,.52);
  stroke-width: 1.6;
}
.map-connections path {
  fill: none;
  stroke: rgba(159,215,181,.2);
  stroke-linecap: round;
  stroke-width: .9;
}
.market-buckets {
  opacity: .92;
}
.map-point circle {
  fill: var(--accent);
  stroke: rgba(159,215,181,.35);
  stroke-width: 16;
  animation: pulsePoint 2.8s ease-in-out infinite;
  transform-origin: var(--x) var(--y);
}
.map-point {
  cursor: pointer;
  outline: none;
}
.map-point:hover circle,
.map-point:focus-visible circle,
.map-point.active circle {
  fill: #fff;
  stroke: rgba(255,255,255,.45);
}
.map-point.active text:first-of-type,
.map-point:focus-visible text:first-of-type {
  fill: #fff;
}
.map-point.bucket circle {
  fill: rgba(159,215,181,.82);
  stroke: rgba(159,215,181,.2);
  stroke-width: 8;
  animation: none;
  transform: scale(var(--feed-scale, 1));
}
.map-point.bucket:hover circle,
.map-point.bucket:focus-visible circle,
.map-point.bucket.active circle {
  fill: #fff;
  stroke: rgba(255,255,255,.34);
  stroke-width: 12;
}
.map-point.large circle { stroke-width: 20; }
.map-point.largest circle { stroke-width: 26; }
.map-point.has-feed-count circle {
  fill: rgba(184,235,203,.95);
  stroke: rgba(184,235,203,.32);
}
.map-point text {
  fill: var(--muted);
  font-size: 12px;
}
.map-point text:first-of-type {
  fill: var(--ink);
  font-weight: 700;
}
.map-inspector {
  display: grid;
  grid-template-columns: minmax(130px, .65fr) minmax(220px, 1fr) minmax(260px, 1.2fr);
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  margin: -18px 0 42px;
  padding-bottom: 18px;
}
.map-inspector span,
.map-inspector p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.map-inspector strong {
  color: var(--ink);
  font-size: 15px;
}
.map-signal-list h2 {
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 12px;
}
.map-signal-list {
  margin-bottom: 28px;
}
.map-signal-row {
  display: grid;
  grid-template-columns: minmax(130px, .65fr) minmax(240px, 1.25fr) minmax(130px, .55fr);
  gap: 20px;
  align-items: baseline;
  width: 100%;
  background: transparent;
  border-top: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  padding: 15px 0;
  text-align: left;
}
.map-signal-row:last-child { border-bottom: 1px solid var(--line); }
.map-signal-row:hover,
.map-signal-row.active {
  border-top-color: var(--line-strong);
}
.map-signal-row.active span,
.map-signal-row.active strong,
.map-signal-row.active em {
  color: #fff;
}
.map-signal-row span,
.map-signal-row em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.map-signal-row strong {
  color: var(--ink);
  font-size: 15px;
}
.map-source {
  color: var(--muted);
  font-size: 13px;
}
.map-source a {
  color: var(--soft);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}

.discussion-page {
  padding-bottom: 84px;
}
.discussion-kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.discussion-page h1 {
  max-width: 760px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  margin-bottom: 56px;
}
.forum-compose,
.forum-list {
  margin-bottom: 56px;
}
.forum-compose h2,
.forum-list h2 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  margin-bottom: 12px;
}
.forum-compose p,
.post-row p,
.post-row small {
  color: var(--muted);
  font-size: 13px;
}
.forum-compose p.error {
  color: #f0a8a8;
}
.forum-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 20px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.forum-compose form {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}
.forum-compose input,
.forum-compose textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}
.forum-compose textarea {
  min-height: 96px;
  resize: vertical;
}
.forum-compose input:disabled,
.forum-compose textarea:disabled {
  color: var(--muted);
  opacity: .55;
}
.text-button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  padding: 10px 12px;
}
.text-button.primary {
  width: max-content;
  background: var(--ink);
  color: var(--bg);
}
.text-button:disabled {
  cursor: default;
  opacity: .5;
}
.post-list {
  border-top: 1px solid var(--line);
}
.post-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.post-row h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.post-row h3 a:hover,
.source-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 3px;
}
.post-row p {
  max-width: 760px;
  margin-bottom: 8px;
}
.post-label {
  color: var(--soft);
  font-weight: 700;
}
.source-link {
  color: var(--soft);
}
.vote-stack {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--muted);
}
.vote-stack button {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  line-height: 1;
}
.vote-stack button:hover,
.vote-stack button.active {
  border-color: var(--line);
  color: var(--ink);
}
.vote-stack button:disabled {
  cursor: default;
  opacity: .45;
}
.vote-stack strong {
  color: var(--ink);
  font-size: 13px;
}

@keyframes rowIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulsePoint {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.16); opacity: 1; }
}

/* Shared styles for secondary static pages. */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: #07100c;
  font-size: 13px;
}
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.nav-links a, .pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 700;
}
.page-hero { padding: 48px 0 28px; }
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h1 { font-size: clamp(42px, 7vw, 82px); line-height: .96; letter-spacing: 0; margin-bottom: 20px; }
h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.08; margin-bottom: 12px; }
h3 { font-size: 18px; line-height: 1.25; margin-bottom: 6px; }
.lede { color: var(--muted); font-size: clamp(19px, 2.4vw, 23px); max-width: 720px; }
.button {
  display: inline-block;
  border-radius: 8px;
  background: var(--ink);
  color: var(--bg);
  padding: 11px 15px;
  font-weight: 800;
}
.feature-list { display: grid; gap: 10px; margin-top: 26px; }
.feature-list a, .community-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  color: var(--ink);
}
.community-layout {
  display: grid;
  grid-template-columns: 1fr .45fr;
  gap: 24px;
  padding-bottom: 72px;
}
.community-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.community-tabs a { border: 1px solid var(--line); border-radius: 8px; padding: 10px 13px; font-weight: 800; color: var(--muted); }
.community-card { margin-bottom: 12px; }
.community-card p { color: var(--muted); margin-bottom: 12px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { background: rgba(159,215,181,.12); color: var(--accent); border-radius: 999px; padding: 5px 9px; font-size: 13px; font-weight: 800; }
.footer { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); border-top: 1px solid var(--line); padding: 24px 0 36px; }

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 920px); }
  .top-nav { justify-content: flex-start; gap: 20px; padding-bottom: 56px; }
  .home-description { margin-bottom: 36px; }
  .listing-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 17px 0;
  }
  .listing-role { font-size: 16px; }
  .listing-actions {
    gap: 10px;
    margin-top: 14px;
  }
  .listing-more-button {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
  .listing-action-menu {
    width: min(100% - 46px, 260px);
  }
  .listing-action-menu button {
    padding: 11px 0;
  }
  .query-builder {
    margin-top: 16px;
    padding: 4px 0;
  }
  .query-builder-desktop {
    display: none;
  }
  .query-builder-mobile {
    display: grid;
  }
  .query-row {
    grid-template-columns: 18px minmax(76px, max-content) minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
  }
  .query-row input {
    font-size: 15px;
    padding: 8px 0;
  }
  .government-toggle {
    justify-content: flex-start;
  }
  .government-toggle button {
    padding: 7px 8px;
  }
  .review-row,
  .metric-list div,
  .forum-compose,
  .post-row,
  .map-signal-row,
  .map-inspector {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .vote-stack {
    grid-template-columns: repeat(3, max-content);
    justify-content: start;
  }
  .review-row { padding: 16px 0; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
  .community-layout { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}
