:root {
  --navy: #0b3a4d;
  --navy-deep: #072a38;
  --teal: #0f8b8d;
  --teal-dark: #0c6f71;
  --teal-soft: #e7f6f6;
  --sand: #f5f7f9;
  --white: #ffffff;
  --text: #1c2b33;
  --muted: #5b6b75;
  --border: #d7e0e6;
  --shadow: 0 12px 30px rgba(11, 58, 77, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1120px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}
img { max-width: 100%; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.55em;
}
p { margin: 0 0 1em; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  border-radius: 999px; border: 1px solid transparent; padding: .7rem 1.15rem;
  font-weight: 600; font-size: .95rem; cursor: pointer; text-decoration: none;
  transition: .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark); }
.btn-sm { padding: .55rem .9rem; font-size: .875rem; }
.btn-lg { padding: .9rem 1.35rem; font-size: 1rem; }
.btn-block { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(215,224,230,.9);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem; min-height: 72px;
}
.logo {
  display: inline-flex; align-items: center; gap: .55rem; color: var(--navy);
  font-weight: 700; text-decoration: none; white-space: nowrap;
}
.logo:hover { text-decoration: none; color: var(--teal-dark); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff; font-size: 1.2rem; font-weight: 700;
}
.logo-text { font-size: 1.05rem; letter-spacing: -.01em; }
.header-search {
  margin-left: auto; display: none; align-items: center; gap: .5rem;
  background: var(--sand); border: 1px solid var(--border); border-radius: 999px; padding: .25rem .25rem .25rem .9rem;
}
.header-search input {
  border: 0; background: transparent; outline: none; min-width: 180px; font: inherit; color: var(--text);
}
.header-nav a {
  color: var(--navy); font-weight: 600; white-space: nowrap;
}
@media (min-width: 820px) {
  .header-search { display: inline-flex; }
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(15,139,141,.18), transparent 42%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
  padding: 3.5rem 0 2.5rem;
}
.hero-grid {
  display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 2.5rem; }
}
.eyebrow {
  display: inline-block; margin-bottom: .75rem; color: var(--teal-dark);
  font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .78rem;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); margin-bottom: .4em; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 42rem; }
.hero-points {
  margin: 1.4rem 0 0; padding: 0; list-style: none; color: var(--navy);
}
.hero-points li {
  position: relative; padding-left: 1.4rem; margin-bottom: .55rem; font-weight: 500;
}
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: .45rem;
  width: .65rem; height: .65rem; border-radius: 50%; background: var(--teal);
}
.hero-panel {
  background: var(--white); border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow); padding: 1.4rem;
}
.hero-panel h2 { font-size: 1.35rem; margin-bottom: 1rem; }

.search-form .field { margin-bottom: 0.9rem; }
.search-form label {
  display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem;
}
.search-form input,
.search-form select {
  width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .75rem .85rem; font: inherit; background: #fff; color: var(--text);
}
.search-form input:focus,
.search-form select:focus {
  outline: 2px solid rgba(15,139,141,.25); border-color: var(--teal);
}
.field-row {
  display: grid; gap: .75rem;
}
@media (min-width: 560px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.section { padding: 2.75rem 0; }
.section-muted { background: var(--sand); }
.section-head {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem;
}
.section-head h2 { margin: 0; font-size: 1.8rem; }
.text-link { font-weight: 600; color: var(--teal-dark); white-space: nowrap; }

.card-grid {
  display: grid; gap: 1rem;
}
@media (min-width: 700px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(11,58,77,.04);
  display: flex; flex-direction: column; overflow: hidden;
}
.card-body { padding: 1.2rem 1.2rem .6rem; flex: 1; }
.card-meta {
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: .35rem;
}
.card-title { font-size: 1.2rem; margin-bottom: .35rem; }
.card-title a { color: var(--navy); text-decoration: none; }
.card-title a:hover { color: var(--teal-dark); }
.card-doctors { color: var(--muted); font-size: .95rem; margin-bottom: .75rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .4rem; }
.tag {
  display: inline-block; background: var(--teal-soft); color: var(--teal-dark);
  border-radius: 999px; padding: .25rem .65rem; font-size: .78rem; font-weight: 600;
}
.tag-link { text-decoration: none; }
.tag-link:hover { background: #d7efef; text-decoration: none; }
.card-actions {
  display: flex; flex-wrap: wrap; gap: .5rem; padding: .9rem 1.2rem 1.2rem;
  border-top: 1px solid var(--border); background: #fbfcfd;
}

.cta-band {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  background: linear-gradient(135deg, var(--navy), #0f5d6d);
  color: #fff; border-radius: calc(var(--radius) + 6px); padding: 1.6rem 1.8rem;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { margin: 0; opacity: .9; }
.cta-band .btn-primary { background: #fff; color: var(--navy); }
.cta-band .btn-primary:hover { background: var(--teal-soft); }

.page-hero {
  padding: 2.4rem 0 1rem;
  background: linear-gradient(180deg, #f4fafb, #fff);
}
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.breadcrumb { color: var(--muted); font-size: .92rem; margin-bottom: .6rem; }
.detail-cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.1rem; }

.search-layout {
  display: grid; gap: 1.5rem;
}
@media (min-width: 880px) {
  .search-layout { grid-template-columns: 280px 1fr; align-items: start; }
}
.filters {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem;
  position: sticky; top: 88px;
}
.empty-state {
  background: var(--sand); border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 2rem; text-align: center;
}

.detail-grid {
  display: grid; gap: 1.25rem;
}
@media (min-width: 880px) {
  .detail-grid { grid-template-columns: 1.4fr .8fr; align-items: start; }
}
.panel {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem 1.35rem; margin-bottom: 1rem;
}
.panel h2 { font-size: 1.25rem; }
.detail-list { margin: 0; }
.detail-list > div { padding: .8rem 0; border-bottom: 1px solid var(--border); }
.detail-list > div:last-child { border-bottom: 0; }
.detail-list dt {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700;
  margin-bottom: .2rem;
}
.detail-list dd { margin: 0; font-size: 1.05rem; }
.plain-list { margin: 0; padding-left: 1.1rem; }
.plain-list li { margin-bottom: .4rem; }
.cta-panel {
  background: linear-gradient(180deg, #f3fbfb, #fff);
}

.site-footer {
  margin-top: 2rem; background: var(--navy-deep); color: rgba(255,255,255,.86); padding: 2.2rem 0;
}
.footer-inner {
  display: grid; gap: 1.2rem;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr auto; align-items: start; }
}
.site-footer strong { color: #fff; display: block; margin-bottom: .35rem; }
.site-footer p { margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.site-footer a { color: #9fe3e4; }
.powered { font-size: .92rem; opacity: .95; }

@media (max-width: 640px) {
  .header-inner { flex-wrap: wrap; padding: .7rem 0; }
  .header-nav { margin-left: auto; }
  .card-actions .btn { flex: 1 1 auto; }
}


/* Doctor profile images */
.card-top {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: .55rem;
}
.card-top-text { min-width: 0; flex: 1; }
.card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--teal-soft);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(11,58,77,.12);
}
.card-avatar-fallback {
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal-dark);
  letter-spacing: .02em;
}
.detail-hero-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.detail-hero-copy { min-width: 0; flex: 1 1 240px; }
.detail-portrait {
  width: 140px;
  height: 140px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--teal-soft);
  border: 3px solid #fff;
  box-shadow: var(--shadow);
}
.detail-portrait-fallback {
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: var(--teal-dark);
  font-family: var(--serif);
}
@media (min-width: 700px) {
  .detail-portrait { width: 160px; height: 160px; border-radius: 24px; }
}
.doctor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
.doctor-row {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.doctor-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--teal-soft);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(11,58,77,.1);
}
.doctor-avatar-fallback {
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal-dark);
}
.doctor-name { font-size: 1.05rem; font-weight: 600; color: var(--navy); }


/* Phase 2 — browse-by-geo / specialty link lists */
.geo-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .65rem 1rem;
}
@media (min-width: 560px) {
  .geo-link-list:not(.guide-index-list--stack) { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .geo-link-list:not(.guide-index-list--stack) { grid-template-columns: repeat(3, 1fr); }
}
ul.geo-link-list.guide-index-list.guide-index-list--stack {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 36rem;
  gap: 0.55rem;
}
.geo-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .9rem;
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy, #0f2744);
  font-weight: 500;
}
.geo-link-list a:hover {
  border-color: var(--teal, #1a9a9a);
  background: var(--teal-soft, #eefafa);
}
.geo-count {
  display: inline-flex;
  min-width: 1.6rem;
  justify-content: center;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: var(--sand, #f4f1ea);
  color: var(--muted, #6b7280);
  font-size: .8rem;
  font-weight: 600;
}
.geo-link-list.compact {
  grid-template-columns: 1fr;
  gap: .35rem;
}
.geo-link-list.compact a {
  padding: .4rem .55rem;
  font-size: .92rem;
  border-radius: 8px;
}
.filter-note {
  margin: .75rem 0 .4rem;
  font-size: .85rem;
  color: var(--muted, #6b7280);
}
.geo-browse-aside { margin-top: .5rem; }
.breadcrumb a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb a:hover { color: var(--teal, #1a9a9a); }


/* Phase 3 — listing depth (summary, services, FAQ) */
.detail-location-line {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .98rem;
}
.panel-prose h2,
.panel h2 {
  margin-top: 0;
  margin-bottom: .75rem;
}
.panel-intro {
  margin: 0 0 .85rem;
  color: var(--muted);
  font-size: .95rem;
}
.listing-summary {
  display: grid;
  gap: .85rem;
}
.listing-summary p {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
  font-size: 1.02rem;
}
/* In-prose contextual internal links (guide + listing summaries) */
.listing-summary a,
.guide-prose a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-decoration-color: rgba(15, 139, 141, 0.45);
  text-underline-offset: 2px;
  font-weight: 600;
}
.listing-summary a:hover,
.guide-prose a:hover {
  color: var(--teal);
  text-decoration-color: var(--teal);
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.services-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  background: #f8fcfc;
}
.services-link::after {
  content: "→";
  color: var(--teal);
  font-weight: 700;
}
.services-link:hover {
  border-color: var(--teal);
  background: var(--teal-soft);
  text-decoration: none;
}
.nap-panel .detail-list > div {
  padding: .7rem 0;
}
.faq-panel .faq-list {
  display: grid;
  gap: .55rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .15rem .9rem .55rem;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  padding: .65rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "+";
  display: inline-block;
  width: 1.1rem;
  color: var(--teal);
  font-weight: 700;
}
.faq-item[open] summary::before { content: "–"; }
.faq-item p {
  margin: 0 0 .45rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: .98rem;
}
.detail-main .panel + .panel {
  margin-top: 0;
}
.detail-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 880px) {
  .detail-side { position: sticky; top: 88px; }
}

/* ===== Homepage redesign (hero banner + chips) — 2026-09-04 ===== */
.hero-banner {
  position: relative;
  min-height: clamp(420px, 62vh, 620px);
  display: flex;
  align-items: center;
  padding: 3.5rem 0 3rem;
  background-color: var(--navy-deep);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 30%;
  color: #fff;
  overflow: hidden;
}
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7, 42, 56, 0.88) 0%, rgba(7, 42, 56, 0.72) 42%, rgba(11, 58, 77, 0.45) 100%),
    linear-gradient(0deg, rgba(7, 42, 56, 0.55), transparent 55%);
  pointer-events: none;
}
.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: center;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
@media (min-width: 960px) {
  .hero-banner-inner {
    grid-template-columns: 1.15fr 0.9fr;
    gap: 2.5rem;
  }
}
.hero-banner-copy h1 {
  color: #fff;
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  margin-bottom: 0.35em;
  text-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.eyebrow-on-dark {
  color: #9fe3e4;
}
.lead-on-dark {
  color: rgba(255,255,255,.9);
  font-size: 1.12rem;
  max-width: 36rem;
}
.hero-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.btn-on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-on-dark:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}
.hero-panel-elevated {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
  padding: 1.45rem 1.4rem 1.35rem;
  color: var(--text);
}
.hero-panel-elevated h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.trust-row-section { padding: 1.5rem 0; }
.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 760px) {
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.trust-row li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 6px 18px rgba(11,58,77,.04);
}
.trust-icon {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
}
.trust-row strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}
.trust-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.section-sub {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(11,58,77,.04);
  transition: 0.15s ease;
}
.chip:hover {
  text-decoration: none;
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
  transform: translateY(-1px);
}
.chip-specialty {
  background: var(--teal-soft);
  border-color: transparent;
  color: var(--teal-dark);
}
.chip-specialty:hover {
  background: #d4efef;
}

.browse-more {
  margin-top: 0.5rem;
}
.browse-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--teal-dark);
  padding: 0.4rem 0;
  list-style: none;
}
.browse-more summary::-webkit-details-marker { display: none; }
.browse-more[open] summary { margin-bottom: 0.85rem; }
.browse-more .geo-link-list { margin-top: 0.25rem; }

@media (max-width: 640px) {
  .hero-banner { min-height: 0; padding: 2.4rem 0 2rem; background-position: center 20%; }
  .hero-banner-actions .btn { flex: 1 1 auto; }
}


/* Phase 4 — city/specialty guides */
.guide-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 880px) {
  .guide-layout {
    grid-template-columns: 1.45fr .75fr;
    align-items: start;
  }
  .guide-aside { position: sticky; top: 88px; }
}
.guide-prose .listing-summary p + p { margin-top: 0; }
.guide-index-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.chip-count {
  margin-left: .35rem;
  opacity: .75;
  font-weight: 600;
  font-size: .85em;
}
.btn-block { display: block; width: 100%; text-align: center; }
.guide-aside .btn + .btn { margin-top: .5rem; }

/* Claim / update listing */
.claim-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .claim-layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }
  .claim-layout .claim-success,
  .claim-layout .claim-errors {
    grid-column: 1 / -1;
  }
}
.claim-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cfd6de;
  border-radius: 8px;
  font: inherit;
  resize: vertical;
  min-height: 8rem;
}
.claim-form textarea:focus {
  outline: 2px solid #1a6bb5;
  outline-offset: 1px;
}
.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.claim-errors {
  border-left: 4px solid #b42318;
}
.claim-success {
  border-left: 4px solid #0f7a3f;
}
.claim-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.claim-steps {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.55;
}
.claim-steps li + li { margin-top: 0.5rem; }
.claim-nudge p { margin: 0 0 0.85rem; color: #4b5563; }


/* Internal linking — related listing / hub lists */
.related-section .related-panel {
  margin-bottom: 1rem;
}
.related-section .related-panel:last-child {
  margin-bottom: 0;
}
.related-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.related-link-list li a,
ul.related-link-list > li > a {
  display: block;
  padding: .45rem .65rem;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy, #0f2744);
  font-weight: 500;
  background: #fff;
}
.related-link-list li a:hover,
ul.related-link-list > li > a:hover {
  border-color: var(--teal, #1a9a9a);
  background: var(--teal-soft, #eefafa);
}
.related-hub {
  margin: .75rem 0 0;
}


/* Align counts inside geo/guide buttons (same component as Top city guides) */
.geo-link-list a,
.guide-index-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.geo-link-list .geo-count,
.guide-index-list .geo-count {
  flex: 0 0 auto;
  min-width: 5.5rem;
  justify-content: center;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

/* Popular specialties / stacked count lists — single column, counts lined up */
.guide-index-list--stack {
  grid-template-columns: 1fr !important;
  max-width: 36rem;
  gap: 0.55rem;
}
.guide-index-list--stack > li {
  list-style: disc;
  margin-left: 1.15rem;
  padding-left: 0.15rem;
}
.guide-index-list--stack > li::marker {
  color: var(--teal, #1a9a9a);
}
.guide-index-list--stack > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.guide-index-list--stack .geo-count {
  flex: 0 0 6rem;
  width: 6rem;
  min-width: 6rem;
  justify-content: center;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}

