/* National RBT — interior pages (location network + job-type intent pages).
   Loads AFTER /styles.css and /blog/blog.css; only adds the geo directory grid
   and a couple of interior-hero tweaks on top of the existing design tokens. */

/* The interior hero reuses .hero/.hero-inner/.apply-card from styles.css.
   Slightly shorter top padding than the homepage hero. */
.hero-interior { padding-top: 6rem; }

/* Prose column on location/intent pages reuses .post typography (blog.css).
   .geo-prose just recentres it inside a full-width .section wrapper. */
.section .post.geo-prose { padding-top: 0; padding-bottom: 0; margin: 0 auto; }
.geo-prose .crumbs { margin-bottom: 1.4rem; display: block; }
.geo-prose h2:first-of-type { margin-top: 0; }

/* ---- Geo directory grid (states, metros, nearby, job types) ---- */
.geo-section { padding-top: 3.2rem; padding-bottom: 3.2rem; }
.geo-grid {
  display: grid; gap: 0.9rem; margin-top: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}
.geo-card {
  display: flex; flex-direction: column; gap: 0.2rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.15rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
a.geo-card:hover {
  transform: translateY(-2px); border-color: var(--brand);
  box-shadow: 0 16px 30px -22px rgba(6, 52, 46, 0.4);
}
.geo-card-name {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: 1.02rem; color: var(--ink); line-height: 1.2;
}
.geo-card-sub {
  font-family: "Space Mono", monospace; font-size: 0.72rem; letter-spacing: 0.03em;
  color: var(--coral-deep);
}
.geo-card-static { opacity: 0.92; }
.geo-card-static .geo-card-sub { color: var(--muted-light); }
.geo-card-all {
  background: linear-gradient(160deg, var(--brand-deep), var(--brand-darker));
  border-color: transparent;
}
.geo-card-all .geo-card-name { color: #fff; }
.geo-card-all .geo-card-sub { color: var(--brand-bright); }

@media (max-width: 480px) {
  .geo-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .geo-card { padding: 0.8rem 0.9rem; }
  .geo-card-name { font-size: 0.92rem; }
}
