/* Styling for the content pages (national hub `/` and per-city landings like
   `/ar/little-rock`). Loaded AFTER style.css, so it reuses the same design tokens
   (--ink, --accent, --line, …) and the shared .topbar / .notice strips. The app
   (`/map`) does not load this file. */

/* Content pages scroll as a normal document, unlike the app's full-height flex layout. */
body.page{
  display:block;
  height:auto;
  min-height:100%;
  font-size:15px;
  line-height:1.55;
}

/* ---------- topbar (reuses .topbar from style.css; brand + nav links) ---------- */
.topbar .brand{
  font-size:15px;
  font-weight:600;
  letter-spacing:.01em;
  color:var(--topbar-fg);
  text-decoration:none;
}
.topbar .brand:hover{color:#fff;}
.topbar .navlink{
  align-self:center;
  color:#cfd6db;
  text-decoration:none;
  font-size:12.5px;
  border-bottom:1px solid transparent;
}
.topbar .navlink:hover{color:#fff;border-bottom-color:#9aa6ae;}
.topbar .navlink.cta{
  border:1px solid #3a434b;
  border-radius:2px;
  padding:3px 9px;
}
.topbar .navlink.cta:hover{border-color:#9aa6ae;border-bottom-color:#9aa6ae;}

/* ---------- layout ---------- */
.wrap{
  max-width:820px;
  margin:0 auto;
  padding:0 20px 44px;
}

.crumbs{
  font-size:12.5px;
  color:var(--muted);
  padding:16px 0 0;
}
.crumbs a{color:var(--accent);text-decoration:none;}
.crumbs a:hover{text-decoration:underline;}

/* ---------- hero ---------- */
.hero{
  padding:34px 0 4px;
}
.hero h1{
  font-size:30px;
  line-height:1.18;
  letter-spacing:-.01em;
  font-weight:700;
  margin:0 0 12px;
}
.lede{font-size:16px;margin:0 0 18px;}

.btn{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:10px 16px;
  border-radius:4px;
}
.btn:hover{filter:brightness(1.08);}

/* Full-width map teaser, in its own section below the intro paragraph.
   Background is a real screenshot of /map (web/map-preview.jpg); the color
   behind it is a fallback while the image loads. */
.mapteaser{
  padding:6px 0 30px;
  border-bottom:1px solid var(--line);
}
.hero-map{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:400px;
  border:1px solid var(--line-strong);
  border-radius:6px;
  overflow:hidden;
  text-decoration:none;
  background:var(--map-bg) url("/map-preview.jpg") center / cover no-repeat;
}
.hero-map-tag{
  position:absolute;
  top:10px;
  left:12px;
  font-family:var(--mono);
  font-size:11px;
  color:var(--muted);
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:2px;
  padding:1px 7px;
}
.hero-map-cta{
  padding:12px 14px;
  background:rgba(28,33,38,.80);
  color:#fff;
  font-weight:600;
  font-size:13.5px;
}

/* ---------- content sections ---------- */
.sect{
  padding:26px 0;
  border-bottom:1px solid var(--line);
}
.sect:last-of-type{border-bottom:none;}
.sect h2{
  font-size:20px;
  letter-spacing:-.01em;
  font-weight:700;
  margin:0 0 10px;
}
.sect h3{font-size:15px;font-weight:600;margin:18px 0 4px;}
.sect p{margin:0 0 12px;}
.sect a{color:var(--accent);}

/* cities grid */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
  gap:14px;
  margin-top:14px;
}
.card{
  display:flex;
  flex-direction:column;
  gap:3px;
  padding:16px;
  border:1px solid var(--line-strong);
  border-radius:6px;
  text-decoration:none;
  color:var(--ink);
  background:var(--panel);
}
.card:hover{border-color:var(--accent);}
.card-city{font-size:17px;font-weight:700;}
.card-state{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.05em;
}
.card-go{margin-top:8px;font-size:13px;color:var(--accent);font-weight:600;}
.card-soon{opacity:.6;}
.card-soon:hover{border-color:var(--line-strong);}

/* category legend */
.cats{list-style:none;padding:0;margin:8px 0 0;}
.cats li{
  padding:7px 0;
  border-bottom:1px solid var(--line);
  font-size:14.5px;
}
.cats li:last-child{border-bottom:none;}
.cats .dot{
  display:inline-block;
  width:11px;height:11px;
  border-radius:50%;
  margin-right:8px;
  vertical-align:middle;
  border:1px solid rgba(0,0,0,.18);
}
.cats b{font-weight:600;}

/* ---------- footer ---------- */
.foot{
  border-top:1px solid var(--line);
  background:var(--panel);
  padding:22px 20px 32px;
}
.foot-row{
  max-width:820px;
  margin:0 auto;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.foot-row a{color:var(--accent);text-decoration:none;font-size:13.5px;}
.foot-row a:hover{text-decoration:underline;}
.foot-note{
  max-width:820px;
  margin:12px auto 0;
  font-size:12px;
  color:var(--muted);
}

@media (max-width:680px){
  .hero{padding:24px 0 2px;}
  .hero h1{font-size:24px;}
  .hero-map{min-height:280px;}
  .wrap{padding:0 16px 34px;}
}
