/* Scope to the first summary card on the homepage */
main.container .card:first-of-type {
  --label:#6b7280;      /* muted gray */
  --value:#111827;      /* near-black */
  --chip-bg:#f8fafc;    /* very light */
  --chip-bd:#e5e7eb;    /* light border */
}

/* Headings & small text */
main.container .card:first-of-type h1,
main.container .card:first-of-type h2,
main.container .card:first-of-type h3,
main.container .card:first-of-type h4 { 
  margin: 0 0 .25rem;
  color: var(--value);
  font-weight: 600;
}
main.container .card:first-of-type small,
main.container .card:first-of-type .text-muted {
  color: var(--label) !important;
}

/* Kill the "code block" look (e.g., America/New_York) */
main.container .card:first-of-type code {
  background: transparent;
  color: var(--value);
  font-family: inherit;
  padding: 0;
}

/* Soften badges (ASN, country codes) */
main.container .card:first-of-type .badge {
  background: var(--chip-bg);
  border: 1px solid var(--chip-bd);
  color: var(--value);
  font-weight: 500;
}

/* Tighten spacing for a cleaner scan */
main.container .card:first-of-type p { margin-bottom: .35rem; }
main.container .card:first-of-type hr { margin: .75rem 0; }
