/* =========================================================================
 * City Pages - paylaşılan dark+neon şehir sayfası stilleri
 * Loaded from: /cities/render.php via $meta['extra_head']
 * Tüm renkler/spacing main.css token'larından (--neon, --bg-deep, vb).
 * ========================================================================= */

/* ================== OVERFLOW KALKANI ================== */
/* Mobil yatay scroll'a karşı koruma - marquee mask, uzun başlık, tablo gibi
   tek bir taşma sayfanın tamamını yatay scroll'a sokmasın. `clip` modern
   tarayıcılarda position:sticky/scroll-anchor ile uyumlu, `hidden` fallback. */
body.city-page { overflow-x: hidden; overflow-x: clip; }

/* İçerik gövdesi: uzun kelimeler/URL'ler kırılsın, taşmasın. */
.city-article__body { min-width: 0; overflow-wrap: anywhere; word-break: break-word; }
.city-article__body img,
.city-article__body iframe,
.city-article__body video { max-width: 100%; height: auto; }
.city-article__body pre,
.city-article__body code { white-space: pre-wrap; word-break: break-word; max-width: 100%; }

/* Marquee container - taşmanın ana adayı; mask + transform animasyonu */
.city-keywords { max-width: 100%; }
.city-kwt-marquee { width: 100%; max-width: 100%; }

/* Tüm section'lar 100vw'i geçmesin */
.city-hero, .city-article, .city-districts, .city-osbs,
.city-faq, .city-keywords, .city-others, .final-cta-section {
  max-width: 100vw;
}

/* ================== HERO ================== */
.city-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--grad-mesh), var(--bg-deep);
  overflow: hidden;
}
.city-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 10%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(124,58,237,.12), transparent 60%);
  pointer-events: none;
}
.city-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px;
  align-items: center;
}
.city-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px;
  font-size: 13.5px; color: var(--text-muted);
  margin-bottom: 22px;
}
.city-breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.city-breadcrumb a:hover { color: var(--neon); }
.city-breadcrumb span[aria-hidden] { color: var(--text-dim); opacity: .6; }

.city-hero__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  background: linear-gradient(180deg, var(--text) 0%, #c4cce0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.city-hero__sub {
  font-size: 18px; line-height: 1.55;
  color: var(--text-muted); max-width: 580px;
  margin-bottom: 32px;
}
.city-hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.city-hero__stats {
  display: flex; gap: 36px; list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--border); padding-top: 24px;
}
.city-hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.city-hero__stats strong {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 28px; line-height: 1;
  color: var(--neon);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.city-hero__stats span { font-size: 13px; color: var(--text-muted); }

.city-hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 60px rgba(34,211,238,.10);
  aspect-ratio: 4 / 3;
  background: var(--bg-deep);
}
.city-hero__visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

@media (max-width: 980px) {
  .city-hero { padding: 96px 0 56px; }
  .city-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .city-hero__stats { gap: 20px; }
  .city-hero__stats strong { font-size: 22px; }
}

/* ================== ANA İÇERİK + ASIDE ================== */
.city-article {
  padding: 72px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.city-article__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px; align-items: start;
}
@media (max-width: 980px) {
  .city-article { padding: 56px 0; }
  .city-article__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* İçerik tipografisi - eski 5.000+ kelimelik metin için okunabilir prose */
.city-article__body {
  font-size: 16.5px; line-height: 1.78;
  color: #d6deec;
}
.city-article__body .city-h2,
.city-article__body h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.18; letter-spacing: -0.02em;
  margin: 56px 0 18px;
  color: var(--text);
  position: relative;
  padding-left: 18px;
}
.city-article__body .city-h2::before,
.city-article__body h2::before {
  content: ""; position: absolute; left: 0; top: 12px; bottom: 12px;
  width: 4px; border-radius: 2px;
  background: linear-gradient(180deg, var(--neon), var(--brand));
  box-shadow: 0 0 12px rgba(34,211,238,.45);
}
.city-article__body .city-h3,
.city-article__body h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  line-height: 1.3; letter-spacing: -0.015em;
  margin: 36px 0 12px;
  color: var(--text);
}
.city-article__body p { margin: 0 0 18px; }
.city-article__body strong { color: var(--text); font-weight: 600; }
.city-article__body a {
  color: var(--neon); text-decoration: none;
  border-bottom: 1px dotted rgba(34,211,238,.4);
  transition: color .2s, border-color .2s;
}
.city-article__body a:hover { color: var(--neon-2); border-color: var(--neon-2); }

.city-article__body .city-list,
.city-article__body ul,
.city-article__body ol {
  margin: 0 0 24px; padding-left: 0; list-style: none;
}
.city-article__body .city-list li,
.city-article__body ul li,
.city-article__body ol li {
  position: relative; padding-left: 22px; margin-bottom: 0;
}
.city-article__body .city-list li::before,
.city-article__body ul li::before {
  content: ""; position: absolute; left: 4px; top: 0.65em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon); box-shadow: 0 0 8px rgba(34,211,238,.5);
}
.city-article__body ol { counter-reset: city-ol; padding-left: 24px; }
.city-article__body ol li::before {
  counter-increment: city-ol;
  content: counter(city-ol) ".";
  left: 0; top: 0; width: auto; height: auto;
  background: none; box-shadow: none;
  color: var(--neon); font-weight: 600; font-family: 'Space Grotesk', system-ui, sans-serif;
}

/* Tablo (fiyat tabloları için) - desktop normal, mobilde yatay kaydırmalı */
.city-table-wrap {
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 24px 0 32px;
  background: var(--bg-soft);
}
.city-table {
  width: 100%; border-collapse: collapse;
  font-size: 14.5px;
}
.city-table thead {
  background: linear-gradient(180deg, rgba(34,211,238,.08), rgba(34,211,238,.02));
}
.city-table th, .city-table td {
  padding: 14px 16px; text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
  white-space: normal;
}
.city-table th {
  font-weight: 600;
  color: var(--neon);
  letter-spacing: -0.01em;
  white-space: nowrap;  /* başlıklar tek satır, sütun genişliği belirler */
}
.city-table tr:last-child td { border-bottom: none; }
.city-table tbody tr:hover { background: rgba(34,211,238,.03); }

/* Mobil: tablo daralmasın, scroll-snap'le kaydırılabilir;
   sağ kenardan fade-out gradient "daha var" ipucu verir. */
@media (max-width: 720px) {
  .city-table-wrap {
    /* sağda fade-out (içerik kaydırılabilir ipucu) */
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
            mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
    scroll-snap-type: x proximity;
  }
  .city-table-wrap:focus-within,
  .city-table-wrap:hover {
    /* etkileşim sırasında mask'i kaldır */
    -webkit-mask-image: none; mask-image: none;
  }
  .city-table {
    min-width: 640px;          /* sıkışmasın - yatayda kaydırılır */
    font-size: 13.5px;
  }
  .city-table th, .city-table td {
    padding: 11px 14px;
  }
}

/* Aside */
.city-article__aside {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 20px;
}
@media (max-width: 980px) {
  .city-article__aside { position: static; }
}
.city-aside-card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.004));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.city-aside-card--alt { border-color: rgba(34,211,238,.18); }
.city-aside-card h3 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 20px; line-height: 1.25; letter-spacing: -0.015em;
  margin: 10px 0 12px; color: var(--text);
}
.city-aside-card p {
  font-size: 14.5px; line-height: 1.55; color: var(--text-muted);
  margin: 0 0 18px;
}
.city-aside-card__buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-block { width: 100%; justify-content: center; }
.city-aside-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--neon); text-decoration: none; font-weight: 500;
  font-size: 14.5px; transition: gap .2s;
}
.city-aside-link:hover { gap: 8px; color: var(--neon-2); }

/* ================== TOC (İçindekiler) ================== */
.city-toc {
  background: linear-gradient(180deg, rgba(34,211,238,.04), rgba(34,211,238,.01));
  border: 1px solid var(--border);
  border-left: 3px solid var(--neon);
  border-radius: var(--radius);
  margin: 0 0 40px;
  overflow: hidden;
}
.city-toc__summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s;
}
.city-toc__summary::-webkit-details-marker { display: none; }
.city-toc__summary:hover { background: rgba(34,211,238,.04); }
.city-toc__head {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.city-toc__head svg { color: var(--neon); }
.city-toc__count {
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  font-size: 12.5px;
  margin-left: 4px;
}
.city-toc__chev {
  color: var(--neon);
  flex-shrink: 0;
  transition: transform .25s;
}
.city-toc[open] .city-toc__chev { transform: rotate(180deg); }

.city-toc__list {
  margin: 0;
  padding: 14px 28px 22px 36px;
  list-style: none;
  counter-reset: city-toc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) {
  .city-toc__list { grid-template-columns: 1fr; }
}
.city-toc__list li {
  position: relative;
  padding-left: 38px;
  font-size: 14px;
  line-height: 1.5;
  counter-increment: city-toc;
  margin: 0;
}
.city-toc__list li::before {
  content: counter(city-toc, decimal-leading-zero);
  position: absolute; left: 10px; top: 1px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 11.5px; font-weight: 600;
  color: var(--neon); opacity: .65;
  letter-spacing: 0.02em;
  background: none; box-shadow: none;
  width: auto; height: auto; border-radius: 0;
}
.city-toc__list li a {
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: none;
  transition: color .15s;
}
.city-toc__list li a:hover { color: var(--neon); border-bottom: none; }

/* ================== Section header (.ph) - eyebrow + başlık spacing ================== */
.city-districts .ph,
.city-osbs .ph,
.city-faq .ph,
.city-keywords .ph,
.city-others .ph {
  margin-bottom: 44px;
}
/* Eyebrow rozeti (chip) ile altındaki H2 başlığı arasında boşluk -
   .page-section'a benzer kural ama city section'ları için. Final CTA
   ve aside card'lardaki eyebrow için de geçerli. */
.city-page .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.city-page .ph h2,
.city-page .final-cta h2 {
  margin-top: 0;
}
.city-districts .ph p,
.city-osbs .ph p,
.city-faq .ph p,
.city-keywords .ph p,
.city-others .ph p {
  margin-top: 12px;
}

/* ================== İLÇE GRID ================== */
.city-districts { padding: 72px 0 88px; background: var(--bg-deep); border-top: 1px solid var(--border); scroll-margin-top: 80px; }
.city-osbs      { scroll-margin-top: 80px; }
.city-faq       { scroll-margin-top: 80px; }
.city-keywords  { scroll-margin-top: 80px; }
.city-article__body h2 { scroll-margin-top: 80px; }
.city-districts__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px; margin-top: 0;
}
.city-district-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.004));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .2s, border-color .2s, background .2s;
}
.city-district-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34,211,238,.4);
  background: linear-gradient(180deg, rgba(34,211,238,.06), rgba(34,211,238,.01));
}
.city-district-card__name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 15px; font-weight: 600; color: var(--text); letter-spacing: -0.01em;
  text-transform: capitalize;
}
.city-district-card__sub { font-size: 12px; color: var(--text-muted); }

/* ================== OSB GRID ================== */
.city-osbs { padding: 72px 0; background: var(--bg); border-top: 1px solid var(--border); }
.city-osbs__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px; margin-top: 36px;
}
.city-osb-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.004));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14.5px; font-weight: 500;
  transition: border-color .2s, transform .2s;
}
.city-osb-card:hover { border-color: rgba(34,211,238,.3); transform: translateY(-1px); }
.city-osb-card svg { color: var(--neon); flex-shrink: 0; }

/* ================== SSS ================== */
.city-faq { padding: 72px 0; background: var(--bg-deep); border-top: 1px solid var(--border); }
.city-faq__list { display: flex; flex-direction: column; gap: 10px; margin-top: 36px; }
.city-faq__item {
  background: linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.004));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.city-faq__item[open] { border-color: rgba(34,211,238,.25); }
.city-faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer; list-style: none;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16.5px; font-weight: 500;
  color: var(--text); letter-spacing: -0.01em;
}
.city-faq__item summary::-webkit-details-marker { display: none; }
.city-faq__chev {
  color: var(--neon); flex-shrink: 0;
  transition: transform .25s;
}
.city-faq__item[open] .city-faq__chev { transform: rotate(180deg); }
.city-faq__answer {
  padding: 0 24px 24px;
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted);
}

/* ================== KEYWORD CLOUD (marquee) ================== */
.city-keywords {
  padding: 64px 0 72px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.city-kwt-marquee {
  display: flex; flex-direction: column; gap: 12px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.city-kwt-row {
  display: flex;
  overflow: hidden;
}
.city-kwt-track {
  display: flex; flex-shrink: 0; gap: 10px;
  white-space: nowrap;
  animation: city-kwt-scroll 50s linear infinite;
  will-change: transform;
}
.city-kwt-track--reverse {
  animation-direction: reverse;
  animation-duration: 60s;
}
.city-kwt-marquee:hover .city-kwt-track { animation-play-state: paused; }

@keyframes city-kwt-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.city-kwt-tag {
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.city-kwt-tag:hover {
  color: var(--neon);
  border-color: rgba(34,211,238,.35);
  background: rgba(34,211,238,.06);
  transform: translateY(-1px);
}

/* Reduced motion: animasyonu durdur */
@media (prefers-reduced-motion: reduce) {
  .city-kwt-track { animation: none; }
  .city-kwt-marquee {
    -webkit-mask-image: none; mask-image: none;
  }
  .city-kwt-row { overflow-x: auto; }
}

/* ================== DİĞER ŞEHİRLER ================== */
.city-others {
  position: relative;
  padding: 80px 0 88px;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
/* Neon glow accent (decorative) */
.city-others__glow {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 50%, rgba(34,211,238,.10), transparent 60%),
    radial-gradient(50% 50% at 85% 50%, rgba(139,92,246,.08), transparent 60%);
  filter: blur(20px);
  opacity: .9;
}
/* Marquee container - full bleed, sayfa kenarlarında fade */
.city-others__marquee {
  margin-top: 44px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.city-others__track {
  display: flex; align-items: stretch; gap: 18px;
  animation: marquee 38s linear infinite;
  width: max-content;
  will-change: transform;
}
/* Hover'da animasyon dursun ki kullanıcı tıklayabilsin */
.city-others__marquee:hover .city-others__track { animation-play-state: paused; }

.city-other-card {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  min-width: 240px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
}
/* Üstte ince neon çizgi (hover'da parlar) */
.city-other-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,.5), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.city-other-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,.55);
  background: linear-gradient(180deg, rgba(34,211,238,.07), rgba(255,255,255,.012));
  box-shadow: 0 10px 30px -12px rgba(34,211,238,.35);
}
.city-other-card:hover::before { opacity: 1; }

.city-other-card__pin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(34,211,238,.10);
  color: var(--neon, #22d3ee);
  border: 1px solid rgba(34,211,238,.22);
  flex: 0 0 32px;
  transition: background .25s ease, transform .25s ease;
}
.city-other-card:hover .city-other-card__pin {
  background: rgba(34,211,238,.18);
  transform: scale(1.05);
}
.city-other-card__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.city-other-card__name {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px; font-weight: 600; color: var(--text);
  letter-spacing: -0.015em; line-height: 1.2;
}
.city-other-card__sub {
  font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.02em;
}
.city-other-card__arrow {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim, #94a3b8);
  opacity: 0; transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease, color .25s ease;
}
.city-other-card:hover .city-other-card__arrow {
  opacity: 1; transform: translateX(0);
  color: var(--neon, #22d3ee);
}

/* Erişilebilirlik: hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  .city-others__track { animation: none; }
  .city-others__marquee {
    overflow-x: auto;
    -webkit-mask-image: none; mask-image: none;
  }
}

/* ================== MOBİL ================== */
@media (max-width: 720px) {
  .city-article__body { font-size: 16px; line-height: 1.7; }
  .city-article__body .city-h2,
  .city-article__body h2 { margin-top: 40px; padding-left: 14px; }
  .city-districts__grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .city-osbs__grid      { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  /* Mobilde marquee daha hızlı ve kompakt kartlar */
  .city-others { padding: 56px 0 64px; }
  .city-others__marquee { margin-top: 28px; }
  .city-others__track { gap: 12px; animation-duration: 28s; }
  .city-other-card { min-width: 200px; padding: 14px 16px; gap: 10px; }
  .city-other-card__pin { width: 28px; height: 28px; flex-basis: 28px; }
  .city-other-card__name { font-size: 14.5px; }
  .city-other-card__sub  { font-size: 11.5px; }
  /* Mobilde kompakt kart - daha küçük padding/font */
  .city-district-card { padding: 12px 10px; }
  .city-district-card__name { font-size: 13px; }
  .city-district-card__sub  { font-size: 10.5px; }
  .city-osb-card { padding: 12px 10px; gap: 8px; font-size: 12.5px; }
  .city-osb-card svg { width: 16px; height: 16px; }
  .city-hero__cta { flex-direction: column; }
  .city-hero__cta .btn { width: 100%; justify-content: center; }
  .city-hero__stats { flex-wrap: wrap; gap: 20px 28px; }
  .city-faq__item summary { padding: 16px 18px; font-size: 15.5px; }
  .city-faq__answer { padding: 0 18px 18px; }
  .city-districts .ph,
  .city-osbs .ph,
  .city-faq .ph,
  .city-keywords .ph,
  .city-others .ph { margin-bottom: 32px; }
  .city-toc { margin-bottom: 32px; }
  .city-toc__summary { padding: 14px 18px; }
  .city-toc__list { padding: 12px 22px 20px 26px; gap: 6px 22px; }
  .city-toc__list li { overflow-wrap: anywhere; padding-left: 34px; }
  .city-toc__list li::before { left: 6px; }
  .city-kwt-track { animation-duration: 36s; }
  /* Hero başlığı mobilde taşmasın - uzun kelime kırılsın */
  .city-hero__title { word-break: break-word; overflow-wrap: anywhere; }
  .city-hero__sub   { overflow-wrap: anywhere; }
  /* Aside card adres alanı mobilde container'ı taşmasın */
  .city-aside-card  { min-width: 0; }
  .city-aside-card__addr { overflow-wrap: anywhere; }
  /* Eyebrow chip uzunsa wrap olsun (örn "İZMİR HİZMET BÖLGELERİ") */
  .eyebrow { max-width: 100%; }
  .city-kwt-track--reverse { animation-duration: 44s; }
}
