/* ZIP-code coverage grid — city page. Card-grid/badge treatment consistent
   with the Grid design's dashboard aesthetic: a header card followed by a
   grid of small pin-badged ZIP chips, each a real link when zipPath() is
   available (see partials/cityPostalCodesSection.ejs). */

.postalCodesSection { padding: 54px 0 60px; background: var(--surface-2); }
.postalCodesSection__container { max-width: 1080px; margin: 0 auto; }
.postalCodesSection__head { text-align: center; margin-bottom: 26px; }
.postalCodesSection__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
}
.postalCodesSection__eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb), .18); }
.postalCodesSection__title { margin: 0; font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.postalCodesSection__place, .postalCodesSection__state { color: var(--brand); }
.postalCodesSection__comma { color: var(--ink); }
.postalCodesSection__lead { margin: 12px auto 0; max-width: 620px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.postalCodesSection__ornament { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; }
.postalCodesSection__ornamentLine { width: 44px; height: 2px; background: var(--border-strong); border-radius: 2px; }
.postalCodesSection__ornamentGem { width: 8px; height: 8px; border-radius: 2px; background: var(--brand); transform: rotate(45deg); }

.postalCodesSection__panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.postalCodesSection__count {
  display: inline-flex; align-items: baseline; gap: 8px; margin: 0 0 18px; font-size: 13.5px; font-weight: 700; color: var(--ink-soft);
}
.postalCodesSection__countNum { font-size: 22px; font-weight: 800; color: var(--ink); }

.postalCodesGrid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; }
.postalCodesGrid__item { min-width: 0; }
.postalCodesGrid__chip {
  display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 8px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--ink-soft); font-weight: 700; font-size: 13.5px;
  text-align: center;
}
.postalCodesGrid__chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--brand); opacity: .55; flex: 0 0 auto;
}
a.postalCodesGrid__chip:hover { background: #fff; border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-xs); }
.postalCodesGrid__chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.postalCodesGrid__chip.is-active::before { background: #fff; }
