/* ── Geo topbar ───────────────────────────────────────────────────────────
   Slim utility strip above the header: local phone number, a route into the
   lead popup, and the portal login. Rendered by decoding_geo_page_top().

   Deep brand blue rather than a pale grey: the header keeps a light logo area
   on purpose, so a light bar would blur into it. Hover is azure #42AFEA, which
   clears 4.5:1 on this ground where the primary blue would not. */
.dit-topbar {
  background: #005598;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  position: relative;
  z-index: 1001;
}
.dit-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}
.dit-tb-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .92);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}
.dit-tb-item:hover,
.dit-tb-item:focus-visible { color: #42AFEA; text-decoration: none; }
.dit-tb-item svg { width: 14px; height: 14px; flex: none; }
.dit-tb-phone {
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
}
.dit-tb-market { color: rgba(255, 255, 255, .62); font-weight: 400; }
.dit-tb-sep { width: 1px; height: 15px; background: rgba(255, 255, 255, .18); flex: none; }
.dit-tb-portal {
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 6px 15px;
  font-weight: 650;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.dit-tb-portal:hover,
.dit-tb-portal:focus-visible {
  background: #42AFEA;
  border-color: #42AFEA;
  color: #00406f;
}
.dit-tb-item:focus-visible { outline: 2px solid #fff; outline-offset: 3px; border-radius: 3px; }

/* Three items do not fit at phone widths without shrinking to something nobody
   taps. Tap-to-call is the one worth keeping; the mega menu carries the rest. */
@media (max-width: 820px) {
  .dit-topbar-inner { justify-content: center; gap: 0; height: 36px; padding: 0 16px; }
  .dit-tb-sep, .dit-tb-talk, .dit-tb-portal { display: none; }
  .dit-tb-market { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .dit-tb-item, .dit-tb-portal { transition: none; }
}
