/* City landing pages — glass-card layout on the shared map background. */

.city-panel { padding: 1.75rem; max-height: calc(100dvh - 2.5rem); overflow-y: auto; max-width: 24rem; }
.city-panel--wide { max-width: 34rem; }

.logo-link { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.city-panel .logo-row { margin-bottom: 1.25rem; }

.stat-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.stat-chips span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary-foreground);
  background: oklch(0.968 0.007 247.9 / 0.9);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  white-space: nowrap;
}

.city-intro { font-size: 0.8rem; color: var(--muted-foreground); line-height: 1.55; margin-bottom: 1.1rem; }

.cta-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.cta-btn:hover { opacity: 0.9; }
.cta-btn:active { transform: scale(0.985); }

.city-section-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.cat-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; margin-bottom: 1.25rem; }
.cat-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  background: oklch(1 0 0 / 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem 0.6rem;
  text-align: center;
}
.cat-link:hover { background: oklch(1 0 0 / 0.85); }

.city-links { display: flex; flex-wrap: wrap; gap: 0.35rem 0.4rem; margin-bottom: 1.25rem; }
.city-links a {
  font-size: 0.75rem;
  color: var(--secondary-foreground);
  text-decoration: none;
  background: oklch(0.968 0.007 247.9 / 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.6rem;
}
.city-links a:hover { background: oklch(1 0 0 / 0.9); }
.city-links .all-link, .city-links a.all-link { color: var(--primary); font-weight: 600; }
.city-links--index { max-height: 55dvh; overflow-y: auto; }

.city-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-top: 1px solid oklch(0 0 0 / 0.06);
  padding-top: 0.9rem;
  font-size: 0.72rem;
}
.city-footer a { color: var(--muted-foreground); text-decoration: none; }
.city-footer a:hover { color: var(--foreground); }
.city-footer span { color: oklch(0 0 0 / 0.2); }
