/* City clinic guide page (JSX-aligned layout) — loaded with city-clinics.css */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.city-page {
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.city-page-main {
  padding-bottom: 4.5rem;
}

@media (min-width: 640px) {
  .city-page-main {
    padding-bottom: 0;
  }
}

.city-page-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* City hub breadcrumbs (not in locality-page.css — that sheet loads only on /city/locality/) */
.city-page-breadcrumb {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-breadcrumb {
    padding-top: 1rem;
  }
}

.city-page-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.6875rem;
  color: var(--muted-foreground, #6b7280);
}

@media (min-width: 768px) {
  .city-page-breadcrumb-list {
    font-size: 0.75rem;
  }
}

.city-page-breadcrumb-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}

.city-page-breadcrumb-link:hover {
  color: var(--primary);
}

.city-page-breadcrumb-current {
  color: var(--foreground);
  font-weight: 600;
}

.city-page-breadcrumb-icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  display: block;
}

/* Decorative icon plates (brand orange) */
.city-page-icon-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--city-icon-bg);
  border-radius: 0.375rem;
  color: var(--city-icon-fg);
}

.city-page-icon-plate--xs {
  width: 1.375rem;
  height: 1.375rem;
}

.city-page-icon-plate--sm {
  width: 1.75rem;
  height: 1.75rem;
}

.city-page-icon-plate--md {
  width: 2rem;
  height: 2rem;
}

.city-page-icon-plate i[data-lucide],
.city-page-icon-plate svg {
  width: 0.875rem;
  height: 0.875rem;
  color: inherit;
}

.city-page-icon-plate--md i[data-lucide],
.city-page-icon-plate--md svg {
  width: 1rem;
  height: 1rem;
}

.city-page-icon-plate--xs i[data-lucide],
.city-page-icon-plate--xs svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* —— Hero —— */
.city-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.city-page-hero-media {
  position: absolute;
  inset: 0;
}

.city-page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.city-page-hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #262f3f, #374863);
}

.city-page-hero-inner {
  position: relative;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .city-page-hero-inner {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .city-page-hero-inner {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.city-page-hero-copy {
  max-width: 42rem;
}

/* Matches Tailwind: text-2xl md:text-4xl lg:text-5xl */
.city-page-hero-title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .city-page-hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
  }
}

@media (min-width: 1024px) {
  .city-page-hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }
}

/* text-base md:text-xl */
.city-page-hero-desc {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 768px) {
  .city-page-hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}

.city-page-hero-search-box {
  display: flex;
  align-items: center;
  background: var(--card, #fff);
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  margin-bottom: 1rem;
}

.city-page-hero-search,
.locality-page-hero-search {
  position: relative;
}

.city-page-search-suggestions {
  position: absolute;
  z-index: 40;
  top: calc(100% - 0.75rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.25rem;
  padding: 0.35rem;
  background: var(--card, #fff);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.75rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.city-page-search-suggestions[hidden] {
  display: none;
}

.city-page-search-suggestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  border-radius: 0.55rem;
  padding: 0.75rem 0.85rem;
  background: transparent;
  color: var(--foreground);
  text-align: left;
  cursor: pointer;
}

.city-page-search-suggestion:hover,
.city-page-search-suggestion.is-active {
  background: rgba(34, 197, 94, 0.1);
}

.city-page-search-suggestion-name {
  font-size: 0.875rem;
  font-weight: 700;
}

.city-page-search-suggestion-meta {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--muted-foreground, #6b7280);
}

@media (min-width: 768px) {
  .city-page-hero-search-box {
    margin-bottom: 1.5rem;
  }

  .city-page-search-suggestions {
    top: calc(100% - 1.15rem);
  }
}

.city-page-hero-search-icon {
  width: 1rem;
  height: 1rem;
  margin-left: 0.75rem;
  flex-shrink: 0;
  color: var(--city-icon-fg);
}

@media (min-width: 768px) {
  .city-page-hero-search-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1rem;
  }
}

/* text-sm (0.875rem) at all breakpoints — matches JSX */
.city-page-hero-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.75rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--foreground);
  outline: none;
}

@media (min-width: 768px) {
  .city-page-hero-search-input {
    padding: 1rem 1rem;
  }
}

.city-page-hero-search-input::placeholder {
  color: var(--muted-foreground);
}

.city-page-hero-search-submit {
  border: 0;
  background: var(--primary);
  color: var(--primary-foreground, #fff);
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  transition: opacity 0.15s;
}

@media (min-width: 768px) {
  .city-page-hero-search-submit {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
  }
}

.city-page-hero-search-submit:hover {
  opacity: 0.92;
}

.city-page-hero-quick-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  margin: 0 -0.25rem;
  scrollbar-width: none;
}

.city-page-hero-quick-filters::-webkit-scrollbar {
  display: none;
}

/* text-xs md:text-sm */
.city-page-pill {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s;
}

@media (min-width: 768px) {
  .city-page-pill {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.city-page-pill:hover {
  background: rgba(255, 255, 255, 0.24);
}

.city-page-pill.is-active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 600;
}

.city-page-pill--after-areas {
  margin-inline-start: 0.5rem;
  padding-inline-start: 0.65rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.28);
}

/* text-xs md:text-sm */
.city-page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  .city-page-hero-trust {
    margin-top: 2rem;
    font-size: 0.875rem;
    line-height: 1.43;
  }
}

.city-page-hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.city-page-hero-trust-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 0.375rem;
}

.city-page-hero-trust-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #fff;
}

@media (min-width: 768px) {
  .city-page-hero-trust-icon-wrap {
    width: 1.875rem;
    height: 1.875rem;
  }

  .city-page-hero-trust-icon {
    width: 1rem;
    height: 1rem;
  }
}

/* —— Section typography —— text-xl md:text-3xl */
.city-page-section-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .city-page-section-title {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }
}

/* text-sm md:text-base */
.city-page-section-lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-section-lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
}

/* —— Intro —— */
.city-page-intro {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-intro {
    padding: 4rem 0;
  }
}

.city-page-intro-desktop {
  display: none;
}

@media (min-width: 768px) {
  .city-page-intro-readmore--mobile {
    display: none;
  }
  .city-page-intro-desktop {
    display: block;
    max-width: 48rem;
  }
}

/* text-sm leading-relaxed; md desktop block uses base */
.city-page-intro-p {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-intro-p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }
}

.city-page-intro-updated {
  margin: 0 0 2rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.city-page-intro-updated--small {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.city-page-intro-readmore--mobile .city-page-intro-collapsed {
  max-height: 5.5rem;
  overflow: hidden;
  position: relative;
}

.city-page-intro-readmore--mobile.is-open .city-page-intro-collapsed {
  max-height: none;
}

.city-page-intro-toggle {
  margin-top: 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

.city-page-intro-readmore--mobile.is-open .city-page-intro-toggle {
  display: none;
}

.city-page-rank-card {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--card, var(--background));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-rank-card {
    padding: 1.5rem;
  }
}

/* text-base md:text-lg */
.city-page-rank-card-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
}

@media (min-width: 768px) {
  .city-page-rank-card-title {
    font-size: 1.125rem;
    line-height: 1.35;
    margin-bottom: 1rem;
  }
}

.city-page-rank-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .city-page-rank-grid {
    gap: 1rem;
  }
}

.city-page-rank-item {
  display: flex;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-rank-item {
    gap: 0.75rem;
  }
}

.city-page-rank-icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--city-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .city-page-rank-icon-wrap {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.city-page-rank-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--city-icon-fg);
}

/* text-xs sm:text-sm */
.city-page-rank-item-title {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 640px) {
  .city-page-rank-item-title {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

/* text-[11px] sm:block md:text-xs */
.city-page-rank-item-desc {
  margin: 0;
  display: none;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .city-page-rank-item-desc {
    display: block;
    font-size: 0.6875rem;
  }
}

@media (min-width: 768px) {
  .city-page-rank-item-desc {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* —— Featured —— */
.city-page-featured {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-featured {
    padding: 4rem 0;
  }
}

.city-page-featured-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .city-page-featured-grid {
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.city-page-featured-card {
  background: var(--card, var(--background));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.city-page-featured-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.city-page-featured-media {
  position: relative;
  height: 9rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .city-page-featured-media {
    height: 12rem;
  }
}

.city-page-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.city-page-featured-card:hover .city-page-featured-img {
  transform: scale(1.05);
}

.city-page-featured-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--city-icon-bg);
  color: var(--city-icon-fg);
}

.city-page-featured-rating-pill {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .city-page-featured-rating-pill {
    font-size: 0.875rem;
    padding: 0.25rem 0.625rem;
  }
}

.city-page-featured-star {
  width: 0.875rem;
  height: 0.875rem;
  color: #eab308;
  fill: #eab308;
}

.city-page-featured-rating-val {
  font-weight: 600;
}

.city-page-featured-review-count {
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-featured-review-count {
    font-size: 0.75rem;
  }
}

.city-page-featured-emergency {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #dc2626;
  color: #fff;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 600;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
}

@media (min-width: 768px) {
  .city-page-featured-emergency {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

.city-page-featured-body {
  padding: 0.875rem 1rem;
}

@media (min-width: 768px) {
  .city-page-featured-body {
    padding: 1.25rem;
  }
}

.city-page-featured-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

/* text-base font-bold */
.city-page-featured-name {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

/* text-[10px] md:text-xs */
.city-page-featured-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .city-page-featured-verified {
    font-size: 0.75rem;
  }
}

.city-page-featured-verified svg {
  width: 0.875rem;
  height: 0.875rem;
}

.city-page-chip {
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .city-page-chip {
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
  }
}

.city-page-chip--primary {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}

/* text-xs md:text-sm */
.city-page-featured-desc {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .city-page-featured-desc {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* text-[11px] md:text-xs */
.city-page-quote {
  display: flex;
  gap: 0.35rem;
  padding: 0.5rem 0.65rem;
  background: color-mix(in srgb, var(--secondary) 50%, transparent);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-quote {
    font-size: 0.75rem;
    line-height: 1.55;
    padding: 0.5rem 0.75rem;
  }
}

.city-page-quote-icon {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--primary);
}

.city-page-quote-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.city-page-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.city-page-featured-tag-row {
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-featured-tag-row {
    margin-bottom: 0.75rem;
  }
}

/* text-[10px] md:text-xs */
.city-page-tag {
  flex-shrink: 0;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

@media (min-width: 768px) {
  .city-page-tag {
    font-size: 0.75rem;
  }
}

.city-page-tag--accent {
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-weight: 600;
}

/* text-xs */
.city-page-featured-area {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.25;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.city-page-inline-icon {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--city-icon-fg);
  flex-shrink: 0;
}

.city-page-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
}

.city-page-featured-actions .city-page-btn {
  flex: 1 1 auto;
  min-width: 0;
}

.city-page-featured-actions .city-page-btn i[data-lucide],
.city-page-featured-actions .city-page-btn .city-page-btn__icon,
.city-page-featured-actions .city-page-btn svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .city-page-featured-actions .city-page-btn i[data-lucide],
  .city-page-featured-actions .city-page-btn .city-page-btn__icon,
  .city-page-featured-actions .city-page-btn svg {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

/* text-xs */
.city-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
}

@media (min-width: 768px) {
  .city-page-btn {
    padding: 0.625rem 1rem;
  }
}

.city-page-btn--primary {
  flex: 1;
  background: var(--primary);
  color: var(--primary-foreground, #fff);
}

.city-page-btn--secondary {
  flex: 1;
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.city-page-btn:hover {
  opacity: 0.92;
}

.city-page-btn--secondary:hover {
  background: var(--border);
  opacity: 1;
}

.city-page-featured-details-desktop {
  display: none;
}

@media (min-width: 640px) {
  .city-page-featured-actions .city-page-featured-details-desktop {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 0;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* —— Sticky filters —— */
.city-page-filters {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--card, #fff) 95%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.city-page-filters-inner {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.city-page-filters-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.city-page-filters-row::-webkit-scrollbar {
  display: none;
}

.city-page-filters-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--muted-foreground);
}

.city-page-filters-label .city-page-icon-plate--xs {
  margin-right: 0.1rem;
}

.city-page-filters-label-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.city-page-select-wrap {
  position: relative;
  flex-shrink: 0;
}

.city-page-select-wrap--sort {
  margin-left: auto;
}

.city-page-select {
  appearance: none;
  border: 0;
  background: var(--muted);
  color: var(--foreground);
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
  padding: 0.45rem 1.75rem 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

.city-page-select-chevron {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  color: var(--city-icon-fg);
  pointer-events: none;
}

.city-page-toggle-pill {
  flex-shrink: 0;
  border: 0;
  background: var(--muted);
  color: var(--foreground);
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.city-page-toggle-pill.is-active {
  background: var(--primary);
  color: var(--primary-foreground, #fff);
}

/* —— Listings —— */
.city-page-listings {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-listings {
    padding: 4rem 0;
  }
}

.city-page-listings-count {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.city-page-listings-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .city-page-listings-stack {
    gap: 1.25rem;
  }
}

.city-page-listing-card {
  display: block;
  background: var(--card, var(--background));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.city-page-listing-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.city-page-listing-card--extra {
  display: none;
}

.city-page-listing-card--extra.is-visible {
  display: block;
}

.city-page-listing-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .city-page-listing-inner {
    flex-direction: row;
  }
}

.city-page-listing-media {
  position: relative;
  width: 100%;
  height: 9.25rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .city-page-listing-media {
    width: 11rem;
    height: 10rem;
    align-self: flex-start;
  }
}

@media (min-width: 768px) {
  .city-page-listing-media {
    width: 13rem;
    height: 10.75rem;
  }
}

.city-page-listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.city-page-listing-img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--city-icon-bg);
  color: var(--city-icon-fg);
}

.city-page-listing-rating-float {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.45rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .city-page-listing-rating-float {
    font-size: 0.875rem;
    padding: 0.2rem 0.5rem;
  }
}

.city-page-listing-star {
  width: 0.875rem;
  height: 0.875rem;
  color: #eab308;
  fill: #eab308;
}

.city-page-listing-rating-rev {
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-listing-rating-rev {
    font-size: 0.75rem;
  }
}

.city-page-listing-badge {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

@media (min-width: 768px) {
  .city-page-listing-badge {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
}

.city-page-badge--warn {
  background: color-mix(in srgb, #eab308 18%, transparent);
  color: #b45309;
}

.city-page-badge--primary {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: var(--primary);
}

.city-page-badge--danger {
  background: color-mix(in srgb, #dc2626 18%, transparent);
  color: #b91c1c;
}

.city-page-badge--success {
  background: color-mix(in srgb, #16a34a 18%, transparent);
  color: #15803d;
}

.city-page-listing-main {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .city-page-listing-main {
    padding: 1rem;
  }
}

.city-page-listing-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.city-page-listing-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 768px) {
  .city-page-listing-title {
    font-size: 1.125rem;
    line-height: 1.25;
  }
}

.city-page-listing-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--primary);
  font-weight: 500;
}

@media (min-width: 768px) {
  .city-page-listing-verified {
    font-size: 0.75rem;
  }
}

.city-page-listing-verified svg {
  width: 0.75rem;
  height: 0.75rem;
}

.city-page-listing-hours {
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 600;
}

@media (min-width: 768px) {
  .city-page-listing-hours {
    font-size: 0.75rem;
  }
}

.city-page-listing-hours.is-open {
  color: #16a34a;
}

.city-page-listing-hours.is-closed {
  color: #dc2626;
}

.city-page-listing-hours::before {
  content: '● ';
}

.city-page-listing-verdict {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  line-height: 1.5;
  font-style: italic;
  color: color-mix(in srgb, var(--foreground) 80%, transparent);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .city-page-listing-verdict {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}

.city-page-tag-row--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.15rem;
}

.city-page-tag-row--scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .city-page-tag-row--scroll {
    flex-wrap: wrap;
    overflow: visible;
  }
}

.city-page-listing-expand-body {
  display: none;
}

@media (min-width: 640px) {
  .city-page-listing-expand-body {
    display: block;
  }
}

.city-page-listing-card.is-expand-open .city-page-listing-expand-body {
  display: block;
}

.city-page-pros {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .city-page-pros {
    font-size: 0.875rem;
    line-height: 1.45;
  }
}

.city-page-pro {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  color: #16a34a;
  margin-bottom: 0.15rem;
}

.city-page-pro svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

.city-page-con {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  color: var(--muted-foreground);
}

.city-page-con svg {
  width: 0.75rem;
  height: 0.75rem;
}

.city-page-quote--compact {
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .city-page-quote--compact {
    font-size: 0.75rem;
    line-height: 1.55;
  }
}

.city-page-listing-address {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

@media (min-width: 640px) {
  .city-page-listing-address {
    font-size: 0.75rem;
  }
}

.city-page-listing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.city-page-listing-more {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 0;
  background: none;
  padding: 0;
  font-size: 0.625rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

@media (min-width: 768px) {
  .city-page-listing-more {
    font-size: 0.75rem;
  }
}

@media (min-width: 640px) {
  .city-page-listing-more--mobile {
    display: none;
  }
}

.city-page-listing-more-icon {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.2s;
}

.city-page-listing-card.is-expand-open .city-page-listing-more-icon {
  transform: rotate(180deg);
}

.city-page-listing-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.city-page-listing-cta-row .city-page-btn i[data-lucide],
.city-page-listing-cta-row .city-page-btn .city-page-btn__icon,
.city-page-listing-cta-row .city-page-btn svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .city-page-listing-cta-row .city-page-btn i[data-lucide],
  .city-page-listing-cta-row .city-page-btn .city-page-btn__icon,
  .city-page-listing-cta-row .city-page-btn svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}

@media (min-width: 640px) {
  .city-page-listing-cta-row {
    margin-left: 0;
  }
}

.city-page-btn--sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .city-page-btn--sm {
    font-size: 0.75rem;
    padding: 0.4rem 0.85rem;
  }
}

.city-page-listing-details-desktop {
  display: none;
}

@media (min-width: 640px) {
  .city-page-listing-details-desktop {
    display: inline-flex;
  }
}

.city-page-view-all {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.15s;
}

.city-page-view-all:hover {
  background: color-mix(in srgb, var(--primary) 6%, transparent);
}

/* —— Clinic types —— */
.city-page-clinic-types {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-clinic-types {
    padding: 4rem 0;
  }
}

.city-page-clinic-types-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .city-page-clinic-types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.city-page-type-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1rem;
  background: var(--card, var(--background));
}

.city-page-type-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
}

@media (min-width: 640px) {
  .city-page-type-toggle {
    cursor: default;
    pointer-events: none;
  }
}

.city-page-type-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.city-page-type-title {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 768px) {
  .city-page-type-title {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.city-page-type-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
}

@media (min-width: 640px) {
  .city-page-type-chevron {
    display: none;
  }
}

.city-page-type-card.is-open .city-page-type-chevron {
  transform: rotate(180deg);
}

.city-page-type-body {
  display: none;
  margin-top: 0.5rem;
}

@media (min-width: 640px) {
  .city-page-type-body {
    display: block;
    margin-top: 0.75rem;
  }
}

.city-page-type-card.is-open .city-page-type-body {
  display: block;
}

.city-page-type-desc {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-type-desc {
    font-size: 0.875rem;
  }
}

.city-page-type-best {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--primary);
}

@media (min-width: 768px) {
  .city-page-type-best {
    font-size: 0.75rem;
  }
}

/* —— Services band —— */
.city-page-services {
  padding: 2rem 0;
  background: color-mix(in srgb, var(--muted) 50%, var(--background));
}

@media (min-width: 768px) {
  .city-page-services {
    padding: 4rem 0;
  }
}

.city-page-services-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.city-page-services-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .city-page-services-scroll {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }
}

.city-page-service-card {
  flex: 0 0 16.25rem;
  padding: 1rem;
  background: var(--card, var(--background));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

@media (min-width: 768px) {
  .city-page-service-card {
    flex: none;
  }
}

.city-page-service-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.city-page-service-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.city-page-service-name {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 768px) {
  .city-page-service-name {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.city-page-service-desc {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1.625;
  color: var(--muted-foreground);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 768px) {
  .city-page-service-desc {
    font-size: 0.875rem;
    line-height: 1.55;
    -webkit-line-clamp: unset;
    display: block;
  }
}

.city-page-service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary);
}

.city-page-service-cta-icon {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}

.city-page-service-card:hover .city-page-service-cta-icon {
  transform: translateX(3px);
}

/* —— Areas —— */
.city-page-areas {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-areas {
    padding: 4rem 0;
  }
}

.city-page-areas-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.city-page-areas-scroll::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .city-page-areas-scroll {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }
}

.city-page-area-card {
  flex: 0 0 12.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--card, var(--background));
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s;
}

@media (min-width: 768px) {
  .city-page-area-card {
    flex: none;
  }
}

.city-page-area-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.city-page-area-card-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.city-page-area-icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--city-icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.city-page-area-icon {
  width: 1rem;
  height: 1rem;
  color: var(--city-icon-fg);
}

.city-page-area-name {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}

@media (min-width: 768px) {
  .city-page-area-name {
    font-size: 0.875rem;
    line-height: 1.2;
  }
}

.city-page-area-count {
  margin: 0.1rem 0 0;
  font-size: 0.625rem;
  line-height: 1.2;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-area-count {
    font-size: 0.75rem;
  }
}

.city-page-area-arrow {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
}

.city-page-area-card:hover .city-page-area-arrow {
  color: var(--primary);
}

/* —— When / Costs —— */
.city-page-when,
.city-page-costs {
  padding: 2rem 0;
  background: color-mix(in srgb, var(--muted) 50%, var(--background));
}

@media (min-width: 768px) {
  .city-page-when,
  .city-page-costs {
    padding: 4rem 0;
  }
}

.city-page-when-desktop {
  display: none;
}

@media (min-width: 640px) {
  .city-page-when-desktop {
    display: block;
  }
  .city-page-when-mobile {
    display: none;
  }
}

.city-page-table {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--card, var(--background));
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.city-page-table-head--3,
.city-page-table-row--3 {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  align-items: center;
}

.city-page-table-head--3 {
  background: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.city-page-table-row--3 {
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  line-height: 1.5;
}

.city-page-when-symptom {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.city-page-when-warn-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #dc2626;
  flex-shrink: 0;
}

.city-page-when-urgency {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.city-page-when-urgency.is-emergency {
  color: #dc2626;
}

.city-page-when-urgency.is-moderate {
  color: #b45309;
}

.city-page-when-action {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

.city-page-when-mobile-item {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card, var(--background));
  margin-bottom: 0.5rem;
}

.city-page-when-mobile-item--extra {
  display: none;
}

.city-page-when-mobile.is-show-all .city-page-when-mobile-item--extra {
  display: block;
}

.city-page-when-mobile-head {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}

.city-page-when-mobile-symptom {
  flex: 1;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.city-page-when-mobile-urgency {
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
}

.city-page-when-mobile-action {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.city-page-cost-tip {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-cost-tip {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

.city-page-cost-desktop {
  display: none;
}

@media (min-width: 640px) {
  .city-page-cost-desktop {
    display: block;
  }
  .city-page-cost-mobile {
    display: none;
  }
}

.city-page-cost-range {
  font-weight: 700;
  color: var(--primary);
}

.city-page-cost-mobile-item {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card, var(--background));
  margin-bottom: 0.5rem;
}

.city-page-cost-mobile-item--extra {
  display: none;
}

.city-page-cost-mobile.is-show-all .city-page-cost-mobile-item--extra {
  display: block;
}

.city-page-cost-mobile-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.city-page-cost-mobile-service {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.city-page-cost-mobile-note {
  margin: 0.15rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--muted-foreground);
}

.city-page-cost-mobile-range {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.city-page-show-more {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.5rem;
  border: 0;
  background: none;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.city-page-show-more svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* —— Choose vet —— */
.city-page-choose {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .city-page-choose {
    padding: 4rem 0;
  }
}

.city-page-choose-grid {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .city-page-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .city-page-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.city-page-choose-item {
  display: flex;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--card, var(--background));
}

.city-page-choose-item .city-page-icon-plate--md {
  align-self: flex-start;
  margin-top: 0.1rem;
}

.city-page-choose-item--extra {
  display: none;
}

.city-page-choose-grid.is-show-all .city-page-choose-item--extra {
  display: flex;
}

@media (min-width: 640px) {
  .city-page-choose-item--extra {
    display: flex;
  }
  .city-page-show-more--choose {
    display: none;
  }
}

.city-page-choose-check {
  width: 1rem;
  height: 1rem;
  color: inherit;
  flex-shrink: 0;
}

.city-page-choose-title {
  margin: 0 0 0.15rem;
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
}

.city-page-choose-desc {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

@media (min-width: 768px) {
  .city-page-choose-title {
    font-size: 0.875rem;
    line-height: 1.25;
  }
  .city-page-choose-desc {
    font-size: 0.75rem;
    line-height: 1.55;
  }
}

/* —— FAQ —— */
.city-page-faq {
  padding: 2rem 0;
  background: color-mix(in srgb, var(--muted) 50%, var(--background));
}

@media (min-width: 768px) {
  .city-page-faq {
    padding: 4rem 0;
  }
}

.city-page-faq-inner {
  max-width: 48rem;
}

.city-page-faq-title,
.city-page-faq-lead {
  text-align: center;
}

.city-page-faq-lead {
  margin-left: auto;
  margin-right: auto;
}

.city-page-faq-item {
  margin-bottom: 0.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card, var(--background));
  padding: 0 0.875rem;
}

.city-page-faq .city-clinics-accordion-item {
  border-bottom: 0;
}

.city-page-faq .city-clinics-accordion-item:last-child {
  border-bottom: 0;
}

.city-page-faq .city-clinics-accordion-trigger {
  padding: 0.75rem 0;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 600;
}

.city-page-faq .city-clinics-accordion-trigger:hover {
  text-decoration: none;
}

@media (min-width: 768px) {
  .city-page-faq .city-clinics-accordion-trigger {
    padding: 1rem 0;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  .city-page-faq-item {
    padding: 0 1.25rem;
  }
}

.city-page-faq .city-clinics-accordion-content p {
  font-size: 0.75rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .city-page-faq .city-clinics-accordion-content p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

/* —— Footer —— */
.city-page-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 5rem;
}

@media (min-width: 640px) {
  .city-page-footer {
    padding-bottom: 2rem;
  }
}

.city-page-footer-inner {
  text-align: center;
}

.city-page-footer-line {
  margin: 0 0 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

.city-page-footer-meta {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--muted-foreground);
}

/* —— Mobile bar —— */
.city-page-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  padding-bottom: max(0.6rem, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
}

@media (min-width: 640px) {
  .city-page-mobile-bar {
    display: none;
  }
}

.city-page-mobile-bar-btn {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--background);
  padding: 0.6rem 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  cursor: pointer;
}

/* —— Listing address (semantic) —— */
.city-page-listing-address-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  margin: 0;
  font-style: normal;
  font: inherit;
  color: inherit;
}

/* —— City page TOC —— */
.city-page-toc {
  position: relative;
  z-index: 2;
  padding: 0.75rem 0 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.city-page-toc-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
}

.city-page-toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-page-toc-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--muted);
}

.city-page-toc-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 768px) {
  .city-page-toc-list {
    gap: 0.5rem 1rem;
  }
}
