/* ── City catalog page ── */

.city-hero-subtitle {
  font-size: clamp(0.9375rem, 2vw, 1rem);
  color: var(--text-muted);
  max-width: 36rem;
  line-height: 1.6;
  margin-top: 0.375rem;
}

.city-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.city-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.375rem 0.875rem;
  background: rgb(255 255 255 / 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgb(149 184 162 / 0.28);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}

.city-hero-pill-icon {
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Catalog wrapper */
.city-catalog-wrap {
  padding-top: 0.25rem;
  padding-bottom: 4rem;
}

.city-catalog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.city-catalog-count {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.3;
}

.city-catalog-count strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--calm-dark);
  letter-spacing: -0.025em;
  margin-right: 0.1875rem;
  vertical-align: middle;
}

/* CTA band at bottom */
.city-cta-band {
  margin-top: 2.5rem;
  padding: 2rem 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgb(149 184 162 / 0.15) 0%,
    rgb(169 214 229 / 0.2) 100%
  );
  border: 1px solid rgb(149 184 162 / 0.22);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}

.city-cta-band-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
}

.city-cta-band-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 30rem;
  line-height: 1.55;
  margin: 0;
}

.city-cta-band .btn {
  margin-top: 0.375rem;
}

@media (max-width: 479px) {
  .city-hero-pills {
    gap: 0.375rem;
  }

  .city-hero-pill {
    font-size: 0.75rem;
    padding: 0.3125rem 0.75rem;
  }

  .city-catalog-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .city-cta-band {
    padding: 1.5rem 1.25rem 1.75rem;
  }
}
