/* LadeStationGuru — Ultra Clean White Minimal */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --gray-900:#171717;
  --gray-600:#525252;
  --gray-400:#a3a3a3;
  --gray-200:#e5e5e5;
  --gray-100:#f5f5f5;
  --gray-50: #fafafa;
  --white:   #ffffff;
  --font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  --radius: 6px;
  --max: 1200px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 56px; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Skip-to-content link (keyboard accessibility) */
.skip-link {
  position: absolute; top: -100%; left: 12px;
  z-index: 9999;
  background: var(--black); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top .1s;
}
.skip-link:focus { top: 0; }

/* Screen-reader only utility */
.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; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 1500;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  height: 56px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  width: 100%;
  display: flex; align-items: center; gap: 24px;
}
.nav-logo {
  font-size: 15px; font-weight: 600; letter-spacing: -0.3px;
  white-space: nowrap; color: var(--black);
}
.nav-logo span { color: var(--gray-400); font-weight: 400; }
.nav-logo-icon { display:inline-flex; align-items:center; margin-right:5px; vertical-align:middle; color:var(--black); }
/* Nav autocomplete dropdown */
.nav-suggest {
  display: none;
  position: absolute; top: calc(100% + 5px); left: 0; right: 0;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,.1);
  z-index: 300; overflow: hidden;
}
.nav-sug-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; text-decoration: none; color: var(--black);
  border-bottom: 1px solid var(--gray-50); transition: background .1s;
  min-height: 44px;
}
.nav-sug-item:last-child { border-bottom: none; }
.nav-sug-item:hover, .nav-sug-item.active { background: var(--gray-50); }
.nav-sug-item svg { flex-shrink: 0; color: var(--gray-400); }
.nav-sug-label { flex: 1; font-size: 14px; font-weight: 500; }
.nav-sug-sub { font-size: 11px; color: var(--gray-400); white-space: nowrap; }
.nav-search {
  flex: 1; max-width: 420px;
  position: relative;
}
.nav-search input {
  width: 100%; height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 0 36px 0 12px;
  font-size: 13px; font-family: var(--font);
  background: var(--gray-50);
  outline: none;
  transition: border-color .15s;
}
.nav-search input:focus { border-color: var(--gray-400); background: var(--white); }
.nav-search svg { position: absolute; right: 10px; left: auto; top: 50%; transform: translateY(-50%); color: var(--gray-400); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px; color: var(--gray-600); padding: 6px 10px;
  border-radius: var(--radius);
  transition: background .1s;
}
.nav-links a:hover { background: var(--gray-100); color: var(--black); }
.btn-pro {
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  transition: background .1s, color .1s;
}
.btn-pro:hover { background: var(--black); color: var(--white); }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }
.section + .section { border-top: 1px solid var(--gray-100); }

/* Map Hero */
.map-hero {
  position: relative;
  height: 520px;
  border-bottom: 1px solid var(--gray-200);
}
.map-hero #map { width: 100%; height: 100%; }
.map-filter-bar {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 8px; align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px 10px;
  white-space: nowrap;
}
.map-filter-bar select {
  border: none; background: none; font-size: 13px;
  font-family: var(--font); color: var(--black);
  cursor: pointer; outline: none; padding: 2px 4px;
}
.filter-sep { width: 1px; height: 16px; background: var(--gray-200); }
.map-fullscreen-btn {
  position: absolute; bottom: 12px; right: 12px; z-index: 10;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 6px 12px;
  font-size: 13px; cursor: pointer;
}
.map-fullscreen-btn:hover { background: var(--gray-50); }

/* Stats Bar */
.stats-bar {
  border-bottom: 1px solid var(--gray-100);
  padding: 16px 0;
}
.stats-bar .container { display: flex; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 20px; font-weight: 600; letter-spacing: -0.5px; }
.stat-label { font-size: 12px; color: var(--gray-400); }

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }

/* Cards */
.card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.card:hover { border-color: var(--gray-400); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.card-title { font-size: 14px; font-weight: 500; }
.card-meta { font-size: 12px; color: var(--gray-400); }
.card-top-row { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:4px; }
.kw-badge { font-size:10px; font-weight:700; color:#fff; padding:2px 6px; border-radius:3px; white-space:nowrap; flex-shrink:0; }

/* City Cards */
.city-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  transition: border-color .15s;
}
.city-card:hover { border-color: var(--gray-400); }
.city-name { font-size: 14px; font-weight: 500; }
.city-count { font-size: 12px; color: var(--gray-400); }

/* Network Cards */
.network-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  display: flex; align-items: center; gap: 10px;
  transition: border-color .15s;
}
.network-card:hover { border-color: var(--gray-400); }
.network-logo {
  width: 32px; height: 32px;
  border-radius: 4px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--gray-600);
  flex-shrink: 0;
}
.network-name { font-size: 13px; font-weight: 500; }
.network-count { font-size: 12px; color: var(--gray-400); }

/* Section Header */
.section-header { margin-bottom: 20px; display: flex; align-items: baseline; justify-content: space-between; }
.section-title { font-size: 18px; font-weight: 600; letter-spacing: -0.3px; }
.section-all { font-size: 13px; color: var(--gray-400); }
.section-all:hover { color: var(--black); }

/* Post List */
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-item {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.post-item:last-child { border-bottom: none; }
.post-title { font-size: 14px; color: var(--black); }
.post-title:hover { text-decoration: underline; }
.post-cat { font-size: 12px; color: var(--gray-400); white-space: nowrap; margin-left: 16px; }

/* Full Map Page (Round 54 — migrated from map.php inline style) */
.map-full { height: calc(100vh - 56px); height: calc(100svh - 56px); position: relative; display: flex; }
.map-full #map { flex: 1; height: 100%; }
.map-sidebar {
  width: 320px; flex-shrink: 0;
  height: 100%; display: flex; flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--gray-200);
  z-index: 10; overflow: hidden;
}
@media (max-width: 768px) {
  .map-full { flex-direction: column; }
  .map-sidebar { width: 100%; height: 40vh; height: 40svh; border-right: none; border-top: 1px solid var(--gray-200); order: 2; }
  .map-full #map { height: 60vh; height: 60svh; order: 1; }
}
.sb-head { padding: 10px 12px; border-bottom: 1px solid var(--gray-100); }
.sb-search-wrap { position: relative; }
.sb-search-wrap svg { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: var(--gray-400); pointer-events: none; }
#sb-search { width: 100%; height: 36px; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 0 10px 0 32px; font-size: 16px; font-family: var(--font); outline: none; background: var(--gray-50); }
#sb-search:focus { border-color: var(--gray-400); background: var(--white); }
@media (max-width: 768px) { #sb-search { height: 44px; } }
.sb-suggest { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-top: 4px; z-index: 100; display: none; }
.sb-suggest.open { display: block; }
.sb-suggest-item { padding: 8px 12px; cursor: pointer; border-bottom: 1px solid var(--gray-100); min-height: 44px; display: flex; flex-direction: column; justify-content: center; gap: 1px; }
.sb-suggest-item:last-child { border-bottom: none; }
.sb-suggest-item:hover { background: var(--gray-50); }
.sb-suggest-main { font-size: 11px; font-weight: 600; color: var(--black); }
.sb-suggest-sub { font-size: 10px; color: var(--gray-400); }
.sb-filters { padding: 6px 10px 4px; border-bottom: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 5px; }
.sf-row { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.sf-row--conn { padding-bottom: 2px; }
.sf-label { font-size: 10px; color: var(--gray-400); white-space: nowrap; margin-right: 2px; }
@media (max-width: 768px) {
  .sf-row { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fc, .fc-conn { flex-shrink: 0; font-size: 11px; min-height: 36px; display: inline-flex; align-items: center; padding: 0 9px; }
}
.fc { font-size: 11px; font-weight: 500; padding: 3px 9px; border: 1px solid var(--gray-200); border-radius: 20px; cursor: pointer; background: var(--white); transition: all .1s; white-space: nowrap; }
.fc.active { background: var(--black); color: var(--white); border-color: var(--black); }
.fc:hover:not(.active) { border-color: var(--gray-400); }
.fc-conn { font-size: 10px; font-weight: 500; padding: 2px 8px; border: 1px solid var(--gray-200); border-radius: 20px; cursor: pointer; background: var(--white); transition: all .1s; white-space: nowrap; color: var(--gray-600); }
.fc-conn.active { background: #1a6fb5; color: var(--white); border-color: #1a6fb5; }
.fc-conn:hover:not(.active) { border-color: #1a6fb5; color: #1a6fb5; }
.sb-kw { padding: 8px 12px; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px; }
.sb-kw label { font-size: 11px; color: var(--gray-400); white-space: nowrap; }
#kw-slider { flex: 1; accent-color: var(--black); }
#kw-val { font-size: 11px; font-weight: 600; min-width: 50px; text-align: right; }
.sb-count { padding: 8px 12px; font-size: 11px; color: var(--gray-400); border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.sb-count-num { font-weight: 600; color: var(--black); }
.sb-loading { display: none; width: 12px; height: 12px; border: 2px solid var(--gray-200); border-top-color: var(--black); border-radius: 50%; animation: spin .6s linear infinite; }
.sb-list { flex: 1; overflow-y: auto; }
.sb-empty { padding: 24px 16px; text-align: center; font-size: 13px; color: var(--gray-400); }
.si { padding: 10px 12px; border-bottom: 1px solid var(--gray-100); cursor: pointer; transition: background .1s; min-height: 44px; }
.si:hover { background: var(--gray-50); }
.si-head { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; }
.si-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.si-name { font-size: 13px; font-weight: 500; line-height: 1.3; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.si-kw { font-size: 11px; font-weight: 700; white-space: nowrap; }
.si-meta { font-size: 11px; color: var(--gray-400); padding-left: 16px; display: flex; gap: 8px; }
.map-ctrl-gps { position: absolute; bottom: 80px; right: 12px; z-index: 500; width: 44px; height: 44px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: background .1s; }
.map-ctrl-gps:hover { background: var(--gray-50); }
.map-ctrl-gps.locating { animation: pulse .8s ease-in-out infinite alternate; }
@keyframes pulse { to { border-color: var(--black); } }
.lsg-popup { min-width: 180px; }
.lsg-popup-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; }
.lsg-popup-row { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--gray-600); margin-bottom: 2px; }
.lsg-popup-kw { font-size: 13px; font-weight: 700; color: var(--black); }
.lsg-popup-link { display: block; margin-top: 8px; font-size: 12px; color: var(--black); text-decoration: underline; }
.map-legend { position: absolute; bottom: 12px; left: 12px; z-index: 500; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 8px 12px; font-size: 11px; display: flex; flex-direction: column; gap: 4px; }
.legend-row { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
@media (max-width: 768px) { .map-legend { display: none; } }

/* Footer */
/* SEO footer grid */
.footer-seo { border-top: 1px solid var(--gray-100); padding: 48px 0 40px; background: #fff; }
.footer-seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-seo-head { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--black); }
.footer-seo-col { display: flex; flex-direction: column; gap: 9px; }
.footer-seo-col a { font-size: 13px; color: var(--gray-500); text-decoration: none; line-height: 1.3; transition: color .12s; }
.footer-seo-col a:hover { color: var(--black); }
.footer-seo-col a:last-child { margin-top: 3px; font-size: 12px; font-weight: 600; color: var(--gray-400); }
.footer-seo-col a:last-child:hover { color: var(--black); }
@media (max-width: 900px) { .footer-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; } }
@media (max-width: 480px) { .footer-seo-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 20px; } .footer-seo-col a { font-size: 12px; } .footer-seo-head { font-size: 12px; } }

.footer {
  border-top: 1px solid var(--gray-200);
  padding: 32px 0;
  margin-top: 0;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--gray-400); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--gray-400); }
.footer-links a:hover { color: var(--black); }

/* Page Header */
.page-header { padding: 36px 0 24px; border-bottom: 1px solid var(--gray-100); margin-bottom: 32px; }
.page-header h1 { font-size: 28px; font-weight: 600; letter-spacing: -0.5px; }
.page-header p { font-size: 15px; color: var(--gray-600); margin-top: 6px; }
.breadcrumb { font-size: 13px; color: var(--gray-400); margin-bottom: 10px; padding-top: 20px; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { margin: 0 6px; }

/* Leaflet overrides — minimal */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.08) !important;
  border: 1px solid var(--gray-200) !important;
  font-family: var(--font) !important;
}
.leaflet-popup-content { margin: 12px 14px !important; font-size: 13px !important; }
.leaflet-popup-tip { display: none !important; }
.leaflet-control-zoom a {
  border: 1px solid var(--gray-200) !important;
  color: var(--black) !important;
  font-size: 16px !important;
}
.leaflet-control-zoom a:hover { background: var(--gray-50) !important; }
.leaflet-control-attribution { font-size: 10px !important; }

/* ── GLOBAL OVERFLOW PREVENTION ── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100vw; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .map-hero { height: 380px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .stats-bar .container { gap: 20px; flex-wrap: wrap; }
  /* Nav */
  .nav-inner { gap: 12px; }
  .nav-links { display: none; }
  .nav-search { max-width: 100%; min-width: 0; flex: 1; }
  .nav-search input { font-size: 13px; }
  /* Page header */
  .page-header { padding: 24px 0 16px; }
  .page-header h1 { font-size: 22px; }
  /* Container */
  .container { padding: 0 16px; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
  .nav-logo { font-size: 14px; }
  .container { padding: 0 12px; }
  /* Cards as links: 44px tap target on single-column layout */
  .card { min-height: 44px; display: flex; flex-direction: column; justify-content: center; }
  /* Post list items: min 44px for easy tapping */
  .post-item { min-height: 44px; align-items: center; }
}

/* ── VIDEO COMPONENTS (global) ── */
.vid-hero {
  position: relative;
  overflow: hidden;
}
.vid-hero video, .vid-strip video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.vid-overlay {
  position: relative; z-index: 2;
  background: linear-gradient(105deg, rgba(0,0,0,.70) 40%, rgba(0,0,0,.18) 100%);
  display: flex; align-items: center;
  width: 100%;
}
.vid-overlay-center {
  background: rgba(0,0,0,.52);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  width: 100%;
}
.vid-text { padding: 0 32px; max-width: 560px; }
.vid-text h1, .vid-text h2 { color: #fff; margin: 0 0 10px; }
.vid-text p { color: rgba(255,255,255,.82); line-height: 1.65; margin: 0 0 20px; }
.vid-badge { display: inline-block; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; letter-spacing: .4px; text-transform: uppercase; margin-bottom: 12px; }
.vid-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.vid-cta-w { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; background: #fff; color: #0a0a0a; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .15s; }
.vid-cta-w:hover { background: #f0f0f0; }
.vid-cta-o { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; border: 1.5px solid rgba(255,255,255,.55); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; }
.vid-cta-o:hover { border-color: #fff; }

/* Strip: compact horizontal video with text */
.vid-strip {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* Video card grid */
.vid-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.vid-card {
  position: relative; border-radius: 12px; overflow: hidden;
  display: block; text-decoration: none; background: var(--gray-900);
}
.vid-card video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .7; transition: opacity .3s;
}
.vid-card:hover video { opacity: .92; }
.vid-card-body {
  position: relative; z-index: 2;
  padding: 36px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
}
.vid-card-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.vid-card-title { display: block; font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }

/* Image mosaic strip */
.img-mosaic { display: grid; gap: 8px; }
.img-mosaic-3 { grid-template-columns: 2fr 1fr 1fr; }
.img-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 8px; }
.img-mosaic-main { grid-row: span 2; }

@media (max-width: 768px) {
  .vid-cards { grid-template-columns: 1fr; }
  .vid-text { padding: 0 16px; max-width: 100%; }
  .vid-text h1 { font-size: 22px !important; }
  .vid-text h2 { font-size: 20px !important; }
  .vid-text p { font-size: 14px; margin-bottom: 16px; }
  .vid-badge { font-size: 11px; }
  .img-mosaic-3 { grid-template-columns: 1fr; grid-auto-rows: 140px; height: auto !important; }
  .img-mosaic-main { grid-row: span 1; }
  .vid-ctas { gap: 8px; }
  /* Touch-freundliche CTA-Buttons: kompaktere Schrift auf Mobile */
  .vid-cta-w, .vid-cta-o { font-size: 13px; padding: 0 18px; }
}
@media (max-width: 480px) {
  .vid-cards { grid-template-columns: 1fr; }
  .vid-text { padding: 0 12px; }
  .vid-ctas { flex-direction: column; align-items: flex-start; }
}

/* ── BURGER MENU ── */
.nav-right-btns {
  display: none; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0;
}
.nav-burger {
  display: flex;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 20px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-mobile {
  display: none;
  position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
  z-index: 1490;
  background: var(--white);
  flex-direction: column;
  padding: 8px 0 24px;
  overflow-y: auto;
  border-top: 1px solid var(--gray-100);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 24px;
  font-size: 16px; font-weight: 500; color: var(--black);
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { background: var(--gray-50); }
.nav-mobile a svg { color: var(--gray-400); flex-shrink: 0; }
.nav-mobile-pro {
  margin: 16px 24px 0 !important;
  background: var(--black) !important; color: #fff !important;
  border-radius: var(--radius) !important;
  justify-content: center !important;
  border-bottom: none !important;
  padding: 14px !important;
}

@media (max-width: 768px) {
  .nav-right-btns { display: flex; }
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .nav-inner { gap: 8px; justify-content: space-between; }
  .nav-search { flex: 1; min-width: 0; }
}
@media (max-width: 400px) {
  /* Keep search visible but compact — logo + search + burger fits at 375px */
  .nav-search { flex: 1; min-width: 60px; }
  .nav-search input { font-size: 12px; padding: 0 28px 0 8px; }
  .nav-logo { font-size: 13px; }
}

/* ── FOOTER MOBILE ── */
@media (max-width: 640px) {
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 8px; }
  .footer-links a { padding: 8px 6px; min-height: 44px; display: inline-flex; align-items: center; font-size: 13px; }
}

/* ── UX ROUND 3 — Responsive Layout Fixes ── */

/* Station page: header + stats full-width, then 2-col layout */
.station-layout { display:grid; grid-template-columns:1fr 340px; gap:32px; padding:0 0 48px; align-items:start; }
.station-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:16px 0 0; }
.station-stat-val-sm { font-size: 15px; font-weight: 700; }

/* Network page */
.net-all-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
.net-hl-pricing { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-bottom:32px; }
.pricing-table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; }

/* Connector index */
.conn-index-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }

/* Connector detail */
.conn-detail-layout { display:grid; grid-template-columns:1fr 280px; gap:36px; align-items:start; }
.conn-stats-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:28px; }

/* General table scroll wrapper */
.table-scroll { overflow-x:auto; -webkit-overflow-scrolling:touch; }

@media (max-width: 768px) {
  /* Station */
  .station-layout { grid-template-columns:1fr; }
  /* Map appears right after stats on mobile */
  .station-map-card { order:-1; }

  /* Connector detail */
  .conn-detail-layout { grid-template-columns:1fr; }

  /* Network */
  .net-all-grid { grid-template-columns:repeat(2,1fr); }
  .net-hl-pricing { grid-template-columns:1fr; gap:20px; }
  .net-detail-hero { height:200px !important; }
  table.pricing-table { min-width:360px; }

  /* Post body table: horizontal scroll */
  .post-body table { display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; max-width:100%; }

  /* Section spacing reduction */
  .section { padding:28px 0; }
}

@media (max-width: 640px) {
  .station-stats-grid { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 480px) {
  /* Station + Connector stats: 2-col instead of 3 */
  .station-stats-grid, .conn-stats-grid { grid-template-columns:repeat(2,1fr); }

  /* Network */
  .net-all-grid { grid-template-columns:1fr; }
  .net-hero-grid { grid-template-columns:1fr !important; }
  .net-detail-hero { height:160px !important; }

  /* Connector index */
  .conn-index-grid { grid-template-columns:1fr; }
}

/* ── UX ROUND 4 — Map heights, Hero heights, Grids, Breadcrumb ── */

/* City page hero + mini-map */
.city-hero { height:260px; overflow:hidden; position:relative; margin-bottom:0; }
.city-hero img { width:100%; height:100%; object-fit:cover; display:block; }
.city-mini-map { height:320px; border-radius:var(--radius); border:1px solid var(--gray-200); margin-bottom:36px; overflow:hidden; }

/* State page mini-map + cities grid */
.state-mini-map { height:300px; border:1px solid var(--gray-200); border-radius:var(--radius); margin-bottom:32px; }
.state-cities-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:10px; margin-bottom:40px; }

/* Network detail map */
.net-detail-map { height:340px; border-radius:var(--radius); border:1px solid var(--gray-200); margin-bottom:32px; }

/* Connector detail hero */
.conn-hero { height:280px; overflow:hidden; position:relative; }

/* SEO intro grid (home) */
.seo-intro-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

@media (max-width: 768px) {
  /* City */
  .city-hero { height:200px; }
  .city-mini-map { height:240px; margin-bottom:24px; }

  /* State */
  .state-mini-map { height:240px; margin-bottom:24px; }
  .state-cities-grid { grid-template-columns:repeat(4,1fr); }

  /* Network */
  .net-detail-map { height:240px; margin-bottom:24px; }

  /* Connector */
  .conn-hero { height:200px; }

  /* Breadcrumb: scroll rather than overflow, hide scrollbar bar */
  .breadcrumb { overflow-x:auto; white-space:nowrap; -webkit-overflow-scrolling:touch; scrollbar-width:none; -ms-overflow-style:none; padding-bottom:0; }
  .breadcrumb::-webkit-scrollbar { display:none; }

  /* SEO intro grid */
  .seo-intro-grid { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  /* State cities */
  .state-cities-grid { grid-template-columns:repeat(3,1fr); }
}

@media (max-width: 480px) {
  /* City */
  .city-hero { height:170px; }
  .city-mini-map { height:200px; }

  /* State */
  .state-mini-map { height:200px; }
  .state-cities-grid { grid-template-columns:repeat(2,1fr); }

  /* Network */
  .net-detail-map { height:200px; }

  /* Connector */
  .conn-hero { height:170px; }
  .conn-hero h1 { font-size:20px !important; }

  /* State strip text scaling */
  .state-strip-inner > div > div:nth-child(2) { font-size:16px !important; }
}

/* ── UX ROUND 6 — iOS Auto-Zoom, Touch Targets, Tools Bar ── */

/* iOS Auto-Zoom Fix: alle Inputs müssen ≥16px sein auf Mobile
   (Safari/iOS zoomt automatisch rein bei font-size < 16px in Inputs) */
@media (max-width: 768px) {
  .nav-search input { font-size: 16px !important; }
  #hero-search { font-size: 16px; }
}
/* Override: 400px hat 12px gesetzt — auf 16px zwingen */
@media (max-width: 400px) {
  .nav-search input { font-size: 16px !important; padding: 0 28px 0 8px; }
}

/* Tools Bar: CSS-Klasse ersetzt inline Styles + JS-Hover */
.tools-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--gray-200); border-radius: 20px;
  font-size: 13px; font-weight: 500; color: var(--black);
  text-decoration: none; background: var(--white);
  transition: border-color .15s;
  white-space: nowrap;
}
.tools-link:hover { border-color: var(--black); }

@media (max-width: 640px) {
  .tools-link { font-size: 12px; padding: 8px 12px; min-height: 44px; }
}

/* Hero filter chips */
.hc {
  min-height: 36px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; padding: 5px 12px;
  border-radius: 20px; border: 1.5px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  cursor: pointer; color: var(--black); transition: all .12s; white-space: nowrap;
}
.hc.active, .hc:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── UX ROUND 7 — Cards, Touch Targets, Map Heights ── */

/* Connector index cards — CSS hover (löst JS-onmouseover ab) */
.conn-card {
  border: 1px solid var(--gray-200); border-radius: 12px;
  overflow: hidden; display: block; text-decoration: none;
  color: inherit; transition: border-color .15s, box-shadow .15s;
}
.conn-card:hover { border-color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,.06); }

/* Connector card image: responsive height */
.conn-card-img { height: 160px; overflow: hidden; }
@media (max-width: 640px) { .conn-card-img { height: 120px; } }
.conn-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Connector sidebar links — 44px touch targets */
.conn-sidebar-link {
  display: flex; align-items: center;
  font-size: 13px; font-weight: 500;
  padding: 10px 0; min-height: 44px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--black); text-decoration: none;
}

/* Ratgeber/Guide box links — touch targets */
.guide-link {
  font-size: 12px; padding: 7px 14px;
  border: 1px solid var(--gray-200); border-radius: 6px;
  color: var(--black); text-decoration: none; background: var(--white);
  display: inline-flex; align-items: center;
  transition: border-color .15s;
}
.guide-link:hover { border-color: var(--black); }
@media (max-width: 640px) { .guide-link { min-height: 44px; } }

/* Dunkle Variante Guide-Link (z.B. Ladezeit-Rechner Button) */
.guide-link-dark {
  font-size: 12px; padding: 7px 14px;
  background: var(--black); color: #fff; border-radius: 6px;
  text-decoration: none; font-weight: 500;
  display: inline-flex; align-items: center;
  transition: background .15s;
}
.guide-link-dark:hover { background: var(--gray-900); }
@media (max-width: 640px) { .guide-link-dark { min-height: 44px; } }

/* SEO intro section: padding auf Mobile reduzieren */
.seo-intro-section { padding: 36px 0 0; }
@media (max-width: 768px) { .seo-intro-section { padding: 20px 0 0; } }

/* Page-Header H1: fluid scaling */
@media (max-width: 480px) {
  .page-header h1 { font-size: clamp(18px, 5.5vw, 22px); }
}

/* Connector detail map: responsive height */
@media (max-width: 768px) { #conn-map { height: 220px !important; } }
@media (max-width: 480px) { #conn-map { height: 180px !important; } }

/* ── UX ROUND 9 — Touch Targets, Smooth Scroll, Network Hero ── */

/* Smooth scroll für Anchor-Links */
html { scroll-behavior: smooth; }

/* Network detail hero: responsive heights */
@media (max-width: 768px) { .net-detail-hero { height: 220px !important; } }
@media (max-width: 480px) { .net-detail-hero { height: 180px !important; } }

/* Network FAQ toggle: min 44px */
/* Global FAQ accordion */
.faq-item { border: 1px solid var(--gray-200); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 14px 16px; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  background: #fff; min-height: 44px; user-select: none;
}
.faq-q::after { content: '＋'; font-size: 16px; color: var(--gray-400); flex-shrink: 0; }
.faq-q.open::after { content: '－'; }
.faq-a { display: none; padding: 12px 16px; font-size: 14px; color: var(--gray-600); line-height: 1.65; border-top: 1px solid var(--gray-200); background: var(--gray-50); }
.faq-a.open { display: block; }

/* Connector index card body */
.conn-card-body { padding: 16px 18px 20px; }
.conn-card-type-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--gray-400); margin-bottom: 5px;
}
.conn-card-name-text { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.conn-card-desc-text { font-size: 13px; color: var(--gray-600); }
.conn-card-kw-text { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--gray-400); }

/* Connector comparison table */
.conn-table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 13px; }
.conn-table th {
  padding: 9px 12px; text-align: left;
  border: 1px solid var(--gray-200); background: var(--gray-50); font-weight: 600;
}
.conn-table th:last-child { text-align: left; }
.conn-table td { padding: 8px 12px; border: 1px solid var(--gray-200); }
.conn-table tr:nth-child(even) td { background: var(--gray-50); }
.conn-table td.num { text-align: right; }
.conn-table td.status-ok { color: #16a34a; font-weight: 600; }
.conn-table td.status-warn { color: #ca8a04; font-weight: 600; }
.conn-table td.status-bad { color: #9a3412; font-weight: 600; }
.conn-table a { color: var(--black); }

/* Connector sidebar guide links */
.conn-guide-link {
  display: flex; align-items: center;
  font-size: 13px; font-weight: 500;
  padding: 10px 0; min-height: 44px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--black); text-decoration: none;
  transition: color .1s;
}
.conn-guide-link:hover { color: var(--gray-600); }
.conn-guide-link:last-child { border-bottom: none; padding-bottom: 0; }

/* Connector sidebar CTA button */
.conn-sidebar-cta {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px;
  background: #fff; color: #0a0a0a;
  font-size: 13px; font-weight: 600;
  border-radius: 6px; text-decoration: none;
  transition: background .15s;
}
.conn-sidebar-cta:hover { background: var(--gray-100); }

/* Station page: Ratgeber-Links Touch-Target */
.station-guide-link {
  font-size: 13px; color: var(--black); text-decoration: none;
  min-height: 44px; display: flex; align-items: center;
}
.station-guide-link:hover { text-decoration: underline; }

/* Hero bottom "Vollbild-Karte" button: 44px auf Mobile */
@media (max-width: 640px) { .hero-btn { height: 44px !important; } }

/* ── UX ROUND 10 — Finale Polierung ── */

/* City-Card list variant (NRW, Hamburg etc.): min touch height
   Gilt für alle city-card ohne image (height kommt von local <style>) */
.city-card { min-height: 44px; }

/* Post layout: engeres Padding auf kleinen Screens */
@media (max-width: 480px) {
  .post-layout { padding: 24px 12px 40px !important; }
  .post-hero-inner { padding: 0 12px; }
}

/* Network + Connector Hero H1: fluid auf Mobile */
@media (max-width: 480px) {
  .net-detail-hero-overlay h1 { font-size: clamp(18px, 5vw, 24px) !important; }
}

/* Word break für lange URLs/Begriffe in Post-Body */
.post-body { word-break: break-word; overflow-wrap: break-word; }
.yt-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); margin: 16px 0; background: var(--gray-50); }
.yt-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.yt-embed-source { font-size: 13px; color: var(--gray-500); margin-top: -8px; margin-bottom: 16px; }
.yt-embed-theme { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-400); margin: 24px 0 4px; }
.yt-embed-transition { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin: 12px 0 4px; }

/* Vs-comparison table: normal table on desktop, stacked cards on mobile */
.vs-compare-wrap { margin-top: 24px; }
.vs-compare { width: 100%; border-collapse: collapse; }
.vs-compare thead th { text-align: left; padding: 10px 12px; font-size: 12px; color: var(--gray-400); text-transform: uppercase; border-bottom: 1px solid var(--gray-200); }
.vs-compare thead th:first-child { width: 40%; }
.vs-compare tbody th { text-align: left; padding: 10px 12px; font-weight: 600; white-space: nowrap; }
.vs-compare tbody td { padding: 10px 12px; }
.vs-compare .vs-win { font-weight: 700; }
.vs-compare-note td { font-size: 13px; color: var(--gray-400); padding: 0 12px 14px; border-bottom: 1px solid var(--gray-100); }
@media (max-width: 640px) {
  .vs-compare thead { display: none; }
  .vs-compare, .vs-compare tbody, .vs-compare tr { display: block; width: 100%; }
  .vs-compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 12px; padding: 12px 0 4px; border-top: 1px solid var(--gray-200); }
  .vs-compare-row th { grid-column: 1 / -1; padding: 0 0 6px; font-size: 12px; text-transform: uppercase; color: var(--gray-400); white-space: normal; }
  .vs-compare-row td { padding: 0; }
  .vs-compare-row td[data-label]::before { content: attr(data-label); display: block; font-size: 11px; color: var(--gray-400); margin-bottom: 2px; }
  .vs-compare-note { border-top: none; }
  .vs-compare-note td { padding: 4px 0 10px; border-bottom: none; }
}

/* Full model spec table: normal table on desktop, stacked cards on mobile */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table thead th { text-align: left; padding: 10px 12px; font-size: 12px; color: var(--gray-400); text-transform: uppercase; border-bottom: 1px solid var(--gray-200); }
.spec-table tbody th { text-align: left; padding: 10px 12px; font-weight: 600; white-space: nowrap; border-bottom: 1px solid var(--gray-100); }
.spec-table tbody td { padding: 10px 12px; border-bottom: 1px solid var(--gray-100); }
@media (max-width: 640px) {
  .spec-table thead { display: none; }
  .spec-table, .spec-table tbody, .spec-table tr { display: block; width: 100%; }
  .spec-table tbody tr { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
  .spec-table tbody th { grid-column: 1 / -1; padding: 0 0 6px; border: none; }
  .spec-table tbody td { padding: 0; border: none; }
  .spec-table tbody td[data-label]::before { content: attr(data-label); display: block; font-size: 11px; color: var(--gray-400); margin-bottom: 2px; }
}

/* ── UX ROUND 21 — Ghost Button, Overscroll ── */

/* Reusable ghost/outline button (Alle anzeigen, secondary CTAs) */
.ghost-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 24px;
  border: 1px solid var(--gray-200); border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--black);
  text-decoration: none; transition: border-color .15s;
}
.ghost-btn:hover { border-color: var(--gray-400); }

/* Prevent page-bounce when scrolling sidebar list to end (iOS/Android) */
.sb-list { overscroll-behavior: contain; }

/* ── UX ROUND 20 — Station Nav Buttons ── */

.station-nav-btn {
  display: inline-flex; align-items: center;
  min-height: 44px; padding: 0 18px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  font-size: 14px; font-weight: 500;
  text-decoration: none; color: var(--black);
  transition: background .1s;
}
.station-nav-btn:hover { background: var(--gray-50); }
.station-nav-btn-secondary {
  border-color: var(--gray-200); color: var(--gray-600);
}
.station-nav-btn-secondary:hover { border-color: var(--gray-400); }

/* ── UX ROUND 12 — Video CTAs, State City Cards, City SEO Links ── */

/* State-page: Stadt-Kacheln mit Bild */
.state-city-img-card {
  position: relative; border-radius: 8px; overflow: hidden;
  height: 130px; display: block; text-decoration: none;
}
.state-city-img-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .3s;
}
.state-city-img-card:hover img { transform: scale(1.05); }
.state-city-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 8px 7px;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
}
.state-city-img-name { color: #fff; font-size: 12px; font-weight: 600; display: block; }
.state-city-img-count { color: rgba(255,255,255,.75); font-size: 10px; }

/* Network page: CTA buttons */
.net-cta-btn {
  font-size: 13px; font-weight: 600; padding: 0 16px;
  min-height: 44px; display: inline-flex; align-items: center;
  background: var(--black); color: #fff;
  border-radius: 6px; text-decoration: none; white-space: nowrap;
  transition: background .15s;
}
.net-cta-btn:hover { background: var(--gray-900); }

/* City-page: SEO inline-links */
.city-seo-link {
  font-size: 13px; color: var(--black); text-decoration: underline;
}
.city-seo-link:hover { color: var(--gray-600); }

/* ── UX ROUND 11 — TOC, Sidebar Links, Focus, Print ── */

/* Post TOC links: 44px touch targets, CSS hover */
.toc-link {
  font-size: 13px; color: var(--black); text-decoration: none;
  padding: 10px 0; min-height: 44px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; line-height: 1.4;
  transition: color .1s;
}
.toc-link:hover { color: var(--gray-600); }
.toc-link:last-child { border-bottom: none; }

/* Post sidebar Schnellfilter links: 44px touch targets */
.sidebar-filter-link {
  font-size: 13px; font-weight: 500; color: var(--black);
  text-decoration: none; padding: 10px 12px;
  border: 1px solid var(--gray-200); border-radius: 6px;
  min-height: 44px; display: flex; align-items: center;
  transition: border-color .15s;
}
.sidebar-filter-link:hover { border-color: var(--black); }

/* Hero chips: letzter Chip nicht abgeschnitten beim Scrollen */
@media (max-width: 640px) {
  .hero-chips { padding-right: 8px; }
}

/* Keyboard-Navigation: sichtbarer Focus-Ring */
:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 2px;
  border-radius: 2px;
}
a:focus-visible, button:focus-visible { outline-offset: 3px; }

/* Print: unnötige Elemente ausblenden */
@media print {
  .nav, .nav-mobile, .footer, .hero-overlay, .hero-bottom,
  .map-spd-legend, .post-sidebar, .vid-ctas, .post-cta { display: none !important; }
  .post-layout { grid-template-columns: 1fr !important; }
  .hero { height: 120px !important; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 10px; color: #666; }
}

/* ── UX ROUND 24 — Home inline-style extraction ── */

/* SEO intro info cards */
.info-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
}
.info-card-label {
  display:flex; align-items:center; gap:6px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--gray-400); margin-bottom: 8px;
}

/* Tools bar strip */
.tools-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.tools-bar-inner {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.tools-bar-label {
  font-size: 13px; font-weight: 700;
  color: var(--gray-400); text-transform: uppercase;
  letter-spacing: .5px; flex-shrink: 0;
}
@media (max-width: 768px) {
  .tools-bar-inner { overflow-x: auto; padding-bottom: 6px; flex-wrap: nowrap !important; }
  .tools-bar-inner > a { flex-shrink: 0; }
}

/* Second post-cards row gap */
.post-cards + .post-cards { margin-top: 12px; }

/* ── UX ROUND 25 — Post page inline-style extraction ── */

/* Ratgeber index: grey intro/tools panel */
.rg-intro-box {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
}
.rg-intro-box p { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin: 0 0 14px; }
.rg-intro-tools { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.rg-intro-label {
  font-size: 12px; font-weight: 700;
  color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px;
}

/* Post detail: italic teaser lead paragraph */
.post-teaser {
  font-size: 16px; line-height: 1.7;
  color: var(--gray-600); margin-bottom: 28px; font-style: italic;
}

/* Post sidebar: CTA strong, TOC nav, filter list */
.post-cta strong { font-size: 14px; }
.toc-nav-inner { display: flex; flex-direction: column; gap: 4px; }
.sidebar-filter-list { display: flex; flex-direction: column; gap: 8px; }

/* ── UX ROUND 26 — City page inline-style extraction ── */

/* City hero overlay */
.city-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.55));
}
.city-hero-caption {
  position: absolute; bottom: 24px;
  left: 0; right: 0; text-align: center;
}
.city-hero-title {
  color: #fff; font-size: clamp(18px, 5vw, 28px);
  font-weight: 700; letter-spacing: -.5px; margin: 0;
}
.city-hero-subtitle { color: rgba(255,255,255,.85); font-size: 14px; margin: 6px 0 0; }

/* City video strip (moved from local <style>) */
.city-vstrip { height: 180px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
@media (max-width: 640px) { .city-vstrip { height: 150px; } }
.city-vstrip-inner {
  position: relative; z-index: 2; height: 100%;
  background: rgba(0,0,0,.48);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 16px;
}
.city-vstrip-title { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.3px; margin-bottom: 8px; }
.city-vstrip-subtitle { font-size: 14px; color: rgba(255,255,255,.8); margin-bottom: 16px; }

/* City image mosaic (moved from local <style>) */
.city-mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; height: 180px; margin-bottom: 36px; border-radius: 10px; overflow: hidden; }
.city-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) {
  .city-mosaic { grid-template-columns: 1fr 1fr; height: 130px; }
  .city-mosaic img:last-child { display: none; }
}

/* City SEO content block */
.city-seo-block { border-top: 1px solid var(--gray-100); padding-top: 36px; margin-bottom: 48px; }
.city-seo-block h2 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.city-seo-block p { font-size: 14px; line-height: 1.7; color: var(--gray-600); max-width: 720px; }
.city-seo-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
/* Separator dot in link lists */
.sep-dot { color: var(--gray-300); }
/* Inline text link (dark, semi-bold) used in SEO prose blocks */
.text-link { color: var(--black); font-weight: 500; }
/* Repeated section h2 in city/network pages */
.section-h2 { font-size: 17px; font-weight: 600; margin-bottom: 14px; }

/* ── UX ROUND 27 — State page inline-style extraction ── */

/* State overview: video hero height */
.bl-hero { height: 320px; }
@media (max-width: 768px) { .bl-hero { height: 240px; } }
@media (max-width: 480px) { .bl-hero { height: 200px; } }

/* State overview: 4-col card grid (moved from local <style>) */
.bl-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.bl-card {
  position: relative; border-radius: 10px; overflow: hidden;
  height: 150px; display: block; text-decoration: none;
  background: var(--gray-900);
}
.bl-card video { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); min-width: 100%; min-height: 100%; object-fit: cover; opacity: .65; transition: opacity .3s; }
.bl-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; display: block; transition: transform .35s, opacity .3s; }
.bl-card:hover img, .bl-card:hover video { opacity: .9; }
.bl-card:hover img { transform: scale(1.05); }
.bl-card-noimg { background: var(--gray-50); border: 1px solid var(--gray-200); display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.bl-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 14px 12px; background: linear-gradient(transparent, rgba(0,0,0,.7)); z-index: 2; }
.bl-card-name { display: block; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: -.2px; }
.bl-card-count { display: block; color: rgba(255,255,255,.75); font-size: 12px; margin-top: 2px; }
.bl-card-noimg .bl-card-name { color: var(--black); }
.bl-card-noimg .bl-card-count { color: var(--gray-400); }
@media (max-width: 900px) { .bl-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 640px) { .bl-grid { grid-template-columns: repeat(2,1fr); } .bl-card { height: 120px; } }
@media (max-width: 400px) { .bl-grid { grid-template-columns: 1fr; } }

/* State detail: SEO info box */
.state-seo-box {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px;
}
.state-seo-box h2 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.state-seo-box p { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin: 0 0 10px; }
.state-seo-box p:last-child { font-size: 14px; color: var(--gray-600); margin-bottom: 0; }

/* State detail: video strip (moved from local <style>) */
.state-strip { height: 200px; border-radius: var(--radius); margin-bottom: 40px; }
@media (max-width: 768px) { .state-strip { height: 160px; } }
.state-strip-inner {
  position: relative; z-index: 2; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 35%, rgba(0,0,0,.15));
  display: flex; align-items: center; padding: 0 24px;
  border-radius: var(--radius);
}
.state-strip-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.state-strip-title { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.4px; margin-bottom: 10px; }

/* State detail: Ratgeber box */
.state-ratgeber-box { background: var(--gray-50); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 48px; }
.state-ratgeber-title { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.state-ratgeber-links { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── UX ROUND 28 — Network detail inline-style extraction ── */

/* Network detail hero (base — breakpoints already exist above) */
.net-detail-hero { position: relative; height: 300px; overflow: hidden; }
.net-detail-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.net-detail-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 35%, rgba(0,0,0,.6));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 0;
}
.net-hero-title { color: #fff; font-size: 28px; font-weight: 700; letter-spacing: -.5px; margin: 0; }
.net-hero-subtitle { color: rgba(255,255,255,.8); font-size: 15px; margin: 6px 0 0; }

/* Network stats row */
.net-stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 24px 0 32px; }
.net-stat-box { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 14px 16px; }
.net-stat-box .val { font-size: 22px; font-weight: 700; letter-spacing: -.5px; }
.net-stat-box .lbl { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
@media (max-width: 768px) { .net-stat-row { grid-template-columns: 1fr 1fr; } }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 12px 0 28px; }
.pricing-table th { background: var(--gray-50); padding: 10px 12px; text-align: left; border: 1px solid var(--gray-200); font-weight: 600; }
.pricing-table td { padding: 9px 12px; border: 1px solid var(--gray-200); }
.pricing-table tr:nth-child(even) td { background: var(--gray-50); }
.pricing-note { font-size: 11px; color: var(--gray-400); }

/* Network highlights */
.net-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 12px 0 24px; }
.net-highlight-item { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--gray-700); }
.net-highlight-item::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 768px) { .net-highlights { grid-template-columns: 1fr; } }

/* Shared section h2 style */
.net-h2 { font-size: 17px; font-weight: 700; margin-bottom: 14px; }
.net-h2-lg { font-size: 20px; font-weight: 700; margin-bottom: 16px; }

/* Network description paragraph */
.net-desc-p { font-size: 15px; color: var(--gray-600); max-width: 720px; margin-bottom: 20px; }

/* Related post + CTA boxes */
.net-box {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 20px 24px; margin-bottom: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.net-box-label { font-size: 13px; color: var(--gray-400); margin-bottom: 4px; }
.net-box-title { font-size: 15px; font-weight: 600; }
.net-box-subtitle { font-size: 13px; color: var(--gray-500); margin-top: 2px; }

/* FAQ block spacing */
.faq-block { margin: 32px 0; }

/* ── Station page SEO upgrade ── */

/* Header row: title + badges */
.station-header-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 0; }
.station-badges { display: flex; gap: 6px; flex-shrink: 0; padding-top: 4px; }
.badge-24h {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .3px;
  background: #e8f5e9; color: #2e7d32; border-radius: 20px; padding: 3px 10px;
}
.badge-free {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .3px;
  background: #e3f2fd; color: #1565c0; border-radius: 20px; padding: 3px 10px;
}

.station-h1 { font-size: 24px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 4px; }
.station-address { color: var(--gray-600); font-size: 15px; margin-bottom: 24px; font-style: normal; }

/* Auto-generated intro text */
.station-autotext {
  font-size: 14px; line-height: 1.7; color: var(--gray-600);
  margin: 0 0 24px; padding: 14px 16px;
  background: var(--gray-50); border-radius: var(--radius);
  border-left: 3px solid var(--gray-200);
}

/* Internal links */
.station-intlinks { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.station-intlink {
  font-size: 13px; color: var(--black); text-decoration: none;
  border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 5px 13px; transition: border-color .15s, background .15s;
}
.station-intlink:hover { border-color: var(--gray-400); background: var(--gray-50); }
.station-intlink-secondary { color: var(--gray-600); }

/* Mini Ladezeit-Rechner */
.station-rechner {
  margin: 24px 0; padding: 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); background: var(--white);
}
.station-rechner-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--gray-400); margin-bottom: 12px; }
.rechner-inputs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.rechner-label { font-size: 13px; color: var(--gray-600); display: flex; flex-direction: column; gap: 4px; }
.rechner-label input { width: 90px; border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 6px 10px; font-size: 14px; font-weight: 600; }
.rechner-result { font-size: 18px; font-weight: 700; }
.rechner-hint { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

/* Car compatibility */
.station-compat { border-top: 1px solid var(--gray-100); padding: 28px 0 32px; }
.station-compat-title { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.compat-group { margin-bottom: 14px; }
.compat-group-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: var(--gray-400); margin-bottom: 8px; }
.compat-cars { display: flex; flex-wrap: wrap; gap: 7px; }
.compat-car {
  font-size: 13px; padding: 4px 12px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 20px;
  color: var(--gray-700); text-decoration: none; transition: border-color .15s, color .15s;
}
a.compat-car:hover { border-color: var(--gray-400); color: var(--black); }

/* FAQ */
.station-faq { border-top: 1px solid var(--gray-100); padding: 32px 0 48px; }
.station-faq-title { font-size: 18px; font-weight: 600; margin-bottom: 16px; }
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  padding: 14px 16px; font-size: 14px; font-weight: 600; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 18px; font-weight: 300; color: var(--gray-400); flex-shrink: 0; }
details[open] .faq-q::after { content: '−'; }
details[open] .faq-a { display: block; }
.faq-a { padding: 0 16px 14px; font-size: 14px; line-height: 1.65; color: var(--gray-600); }

/* Stat boxes */
.station-stat-box { border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 16px; }
.station-stat-val { font-size: 22px; font-weight: 700; }
.station-stat-lbl { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* Details table */
.station-detail-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.station-detail-table tr { border-bottom: 1px solid var(--gray-100); }
.station-detail-table th { padding: 10px 0; color: var(--gray-400); width: 140px; font-weight: 400; text-align: left; }
.station-detail-table td { padding: 10px 0 10px 16px; font-weight: 500; }

/* Nav buttons wrapper */
.station-nav-btns { margin-top: 24px; display: flex; gap: 10px; flex-wrap: wrap; }

/* Ratgeber box */
.station-ratgeber-box { margin-top: 28px; background: var(--gray-50); border-radius: var(--radius); padding: 16px; }
.station-ratgeber-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; color: var(--gray-400); margin-bottom: 10px;
}

/* Sticky map card */
.station-map-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; position: sticky; top: 72px;
}
#mini-map { height: 380px; }
.station-map-footer { padding: 12px 14px; border-top: 1px solid var(--gray-100); display: flex; gap: 12px; flex-wrap: wrap; }
.station-map-link { font-size: 13px; text-decoration: underline; color: var(--black); }

/* POI section */
.poi-section { border-top: 1px solid var(--gray-100); padding: 32px 0 40px; }
.poi-section-title { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.poi-section-sub { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }
.poi-loading { font-size: 14px; color: var(--gray-400); }
.poi-empty { font-size: 14px; color: var(--gray-400); }
.poi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.poi-card {
  display: block;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none; color: var(--black);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.poi-card:hover { border-color: var(--gray-400); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.poi-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.poi-meta { font-size: 12px; color: var(--gray-400); margin-top: 2px; }

/* Nearby stations section */
.station-nearby { border-top: 1px solid var(--gray-100); padding-top: 32px; padding-bottom: 48px; }
.station-nearby h2 { font-size: 18px; font-weight: 600; margin-bottom: 16px; }

/* ── UX ROUND 32 — Scrollbar hide, search aria-label, input a11y ── */

/* Hide scrollbar on horizontal-scroll containers (keeps scroll functionality) */
.hero-chips,
.sb-filters,
.cat-tabs {
  scrollbar-width: none; /* Firefox */
}
.hero-chips::-webkit-scrollbar,
.sb-filters::-webkit-scrollbar,
.cat-tabs::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Suggest dropdown shadow improvement */
.hero-suggest,
.sb-suggest { box-shadow: 0 4px 20px rgba(0,0,0,.10); }

/* Nav search: min touch height on mobile */
@media (max-width: 768px) {
  .nav-search input { font-size: 16px; height: 44px; } /* prevents iOS auto-zoom */
}

/* ── UX ROUND 33 — Station mini-map mobile, connector hero inline fix ── */

/* On mobile, station layout is 1-column → sticky map makes no sense */
@media (max-width: 768px) {
  .station-map-card { position: static; }
}

/* Connector hero img: was inline style, extract to CSS */
.conn-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── UX ROUND 34 — Post body figure/caption CSS ── */
.post-figure { margin: 28px 0; border-radius: 8px; overflow: hidden; }
.post-figure img { width: 100%; height: auto; display: block; }
.post-figure figcaption { font-size: 12px; color: var(--gray-400); padding: 8px 0 0; text-align: center; }

/* ── ROUND 53 — Home.php <style> block migrated to style.css ── */

/* Map hero */
.hero { position: relative; height: calc(65vh - 56px); min-height: 360px; max-height: 620px; }
@media (max-width: 768px) { .hero { height: calc(70vh - 56px); min-height: 380px; max-height: 560px; } }
@media (max-width: 480px) { .hero { height: calc(70vh - 56px); min-height: 360px; max-height: 500px; } }
.hero #map { width: 100%; height: 100%; isolation: isolate; }

/* Hero search overlay */
.hero-overlay { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 1100; width: min(580px, calc(100% - 32px)); display: flex; flex-direction: column; gap: 8px; }
.hero-search-box { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 10px; box-shadow: 0 4px 24px rgba(0,0,0,.10); display: flex; align-items: center; overflow: hidden; }
.hero-search-box svg { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0; margin-left: 14px; }
#hero-search { flex: 1; height: 48px; border: none; outline: none; font-size: 15px; font-family: var(--font); background: transparent; padding: 0 12px; }
#hero-search::placeholder { color: var(--gray-400); }
.hero-search-btn { height: 48px; padding: 0 20px; background: var(--black); color: var(--white); border: none; font-size: 14px; font-weight: 500; font-family: var(--font); cursor: pointer; white-space: nowrap; transition: background .15s; }
.hero-search-btn:hover { background: var(--gray-900); }
.hero-suggest { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: 10px; display: none; overflow: hidden; }
.hero-suggest.open { display: block; }
.hero-suggest-item { padding: 10px 16px; font-size: 14px; cursor: pointer; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 10px; min-height: 44px; }
.hero-suggest-item:last-child { border-bottom: none; }
.hero-suggest-item:hover { background: var(--gray-50); }
.hero-suggest-icon { color: var(--gray-400); flex-shrink: 0; }

/* Hero tagline badge */
.hero-tagline { align-self: center; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border: 1px solid var(--gray-200); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--black); white-space: nowrap; margin: 0; }

/* Hero chips row */
.hero-chips { display: flex; gap: 6px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }

/* Hero bottom bar */
.hero-bottom { position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 1100; display: flex; justify-content: space-between; align-items: flex-end; pointer-events: none; }
.hero-count-badge { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border: 1px solid var(--gray-200); border-radius: 8px; padding: 6px 12px; font-size: 12px; color: var(--gray-600); pointer-events: none; }
.hero-count-badge strong { color: var(--black); font-weight: 700; }
.hero-actions { display: flex; gap: 6px; pointer-events: all; }
.gps-locating { animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Stats bar */
.stats-strip { background: var(--white); border-bottom: 1px solid var(--gray-100); padding: 20px 0; }
.stats-strip .container { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { display: flex; flex-direction: column; align-items: center; padding: 0 32px; border-right: 1px solid var(--gray-100); }
.stat-item:last-child { border-right: none; }
.stat-item-num { font-size: 26px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.stat-item-label { font-size: 11px; color: var(--gray-400); margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* USP strip */
.usp-strip { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 11px 0; }
.usp-strip .container { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.usp-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--gray-600); white-space: nowrap; }
.usp-item svg { color: var(--black); flex-shrink: 0; }

/* Section heads */
.sec-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.sec-title { font-size: 17px; font-weight: 600; letter-spacing: -.3px; }
.sec-more { font-size: 13px; color: var(--gray-400); }
.sec-more:hover { color: var(--black); }

/* Ratgeber post cards */
.ratgeber-section { padding: 44px 0; border-top: 1px solid var(--gray-100); }
.post-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.post-card-home { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; display: block; text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.post-card-home:hover { border-color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.post-card-img { height: 160px; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.post-card-home:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 14px 16px 18px; }
.post-card-cat { font-size: 10px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 5px; display: block; }
.post-card-title { font-size: 14px; font-weight: 600; letter-spacing: -.2px; line-height: 1.35; }

/* City image cards (homepage grid — distinct from .city-card list variant) */
.cities-section { padding: 40px 0 48px; border-top: 1px solid var(--gray-100); }
.city-img-card { position: relative; border-radius: 10px; overflow: hidden; height: 160px; display: block; text-decoration: none; background: var(--gray-100); }
.city-img-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.city-img-card:hover img { transform: scale(1.06); }
.city-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 10px 9px; background: linear-gradient(transparent, rgba(0,0,0,.62)); }
.city-card-name { display: block; color: #fff; font-size: 13px; font-weight: 600; letter-spacing: -.1px; line-height: 1.2; }
.city-card-count { display: block; color: rgba(255,255,255,.75); font-size: 11px; margin-top: 1px; }
.city-card-noimg { background: var(--gray-50); border: 1px solid var(--gray-200); display: flex; flex-direction: column; justify-content: flex-end; padding: 10px 12px; }
.city-card-noimg .city-card-name { color: var(--black); }
.city-card-noimg .city-card-count { color: var(--gray-400); }
.city-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }

/* Map speed legend */
.map-spd-legend { position: absolute; bottom: 12px; left: 12px; z-index: 1099; pointer-events: none; }

/* Video feature (full-width) */
.video-feature { position: relative; height: 380px; overflow: hidden; border-top: 1px solid var(--gray-100); }
.video-feature video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; object-fit: cover; }
.video-feature-overlay { position: relative; z-index: 2; height: 380px; background: linear-gradient(105deg, rgba(0,0,0,.72) 38%, rgba(0,0,0,.18) 100%); display: flex; align-items: center; }
.video-feature-text { max-width: 520px; padding: 0 32px; }
.video-feature-text h2 { font-size: 28px; font-weight: 700; letter-spacing: -.6px; color: #fff; margin: 0 0 12px; line-height: 1.2; }
.video-feature-text p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.8); margin: 0 0 22px; }
.video-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.video-cta-primary { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; background: #fff; color: #0a0a0a; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background .15s; }
.video-cta-primary:hover { background: #f0f0f0; }
.video-cta-secondary { display: inline-flex; align-items: center; min-height: 44px; padding: 0 22px; border: 1.5px solid rgba(255,255,255,.55); color: #fff; border-radius: 8px; font-size: 14px; font-weight: 500; text-decoration: none; transition: border-color .15s; }
.video-cta-secondary:hover { border-color: #fff; }

/* Video cards grid */
.video-cards-section { padding: 40px 0 48px; border-top: 1px solid var(--gray-100); }
.video-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.video-card { position: relative; border-radius: 12px; overflow: hidden; height: 200px; display: block; text-decoration: none; background: var(--gray-900); }
.video-card video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity .3s; }
.video-card:hover video { opacity: .9; }
.video-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 16px 14px; background: linear-gradient(transparent, rgba(0,0,0,.75)); z-index: 2; }
.video-card-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.65); margin-bottom: 4px; }
.video-card-title { display: block; font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }

/* Home responsive */
@media (max-width: 900px) { .city-cards { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .video-cards-grid { grid-template-columns: 1fr; }
  .video-feature, .video-feature-overlay { height: 260px; }
  .video-feature-text h2 { font-size: 20px; }
  .video-feature-text p { font-size: 13px; margin-bottom: 14px; }
  .usp-strip .container { gap: 12px 20px; justify-content: flex-start; }
  .stats-strip .container { flex-wrap: wrap; gap: 0; justify-content: flex-start; }
  .stat-item { padding: 10px 20px; border-right: none; border-bottom: 1px solid var(--gray-100); flex: 0 0 50%; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; flex: 0 0 100%; border-right: none !important; align-items: center; border-top: 1px solid var(--gray-100); }
  .video-card { height: 160px; }
}
@media (max-width: 640px) {
  .map-spd-legend { display: none; }
  .city-cards { grid-template-columns: repeat(2, 1fr); }
  .city-img-card { height: 130px; }
  .video-feature, .video-feature-overlay { height: 240px; }
  .video-feature-text { padding: 0 16px; }
  .video-feature-text h2 { font-size: 18px; }
  .video-feature-text p { font-size: 12px; line-height: 1.45; margin-bottom: 12px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; }
  .gps-label { display: none; }
  .stat-item { flex: 0 0 50%; }
  .stat-item-num { font-size: 20px; }
}
@media (max-width: 400px) {
  .video-feature, .video-feature-overlay { height: 200px; }
  .city-cards { grid-template-columns: repeat(2, 1fr); }
  .city-img-card { height: 110px; }
}
@media (max-width: 1024px) {
  .post-cards { grid-template-columns: repeat(2, 1fr); }
  .post-card-home:first-child { grid-column: 1 / -1; }
  .post-card-home:first-child .post-card-img { height: 220px; }
  .post-card-img { height: 130px; }
}
@media (max-width: 480px) {
  .post-card-home:first-child .post-card-img { height: 190px; }
  .post-card-img { height: 110px; }
  .post-card-title { font-size: 13px; }
}
@media (max-width: 360px) { .post-cards { grid-template-columns: 1fr; } .post-card-home:first-child { grid-column: auto; } }

/* ── Blog index ── */
.rg-index-wrap { padding: 24px 0 64px; }

/* Category pills */
.cat-tabs { display: flex; gap: 6px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px 0 20px; margin: 0 0 8px; }
.cat-tab { display: inline-flex; align-items: center; padding: 7px 16px; border: 1.5px solid var(--gray-200); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--gray-600); text-decoration: none; white-space: nowrap; transition: border-color .15s, color .15s, background .15s; }
.cat-tab:hover { border-color: var(--black); color: var(--black); }
.cat-tab.active { background: var(--black); color: #fff; border-color: var(--black); }

/* Hero post */
.blog-hero { display: block; position: relative; height: 340px; border-radius: 12px; overflow: hidden; text-decoration: none; background-size: cover; background-position: center; margin-bottom: 20px; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 55%, transparent 100%); padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; }
.blog-hero-badge { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; }
.blog-hero-title { font-size: 22px; font-weight: 700; color: #fff; line-height: 1.25; letter-spacing: -.3px; margin-bottom: 8px; }
.blog-hero-teaser { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.55; }
@media (max-width: 640px) { .blog-hero { height: 240px; } .blog-hero-title { font-size: 18px; } .blog-hero-teaser { display: none; } }

/* Tools strip */
.blog-tools-strip { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 36px; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.blog-tools-label { font-size: 11px; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: .5px; margin-right: 4px; }
.blog-tool-chip { display: inline-flex; align-items: center; padding: 6px 12px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 6px; font-size: 12px; font-weight: 500; color: var(--gray-700); text-decoration: none; transition: border-color .15s; }
.blog-tool-chip:hover { border-color: var(--black); color: var(--black); }

/* Section heading */
.blog-section { margin-bottom: 44px; }
.blog-section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--black); }
.blog-section-title { font-size: 16px; font-weight: 700; letter-spacing: -.2px; color: var(--black); }
.blog-section-more { font-size: 13px; color: var(--gray-400); text-decoration: none; }
.blog-section-more:hover { color: var(--black); }

/* Post grid (within sections) */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.post-card { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; display: block; text-decoration: none; color: inherit; transition: border-color .15s, box-shadow .15s; }
.post-card:hover { border-color: var(--black); box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.post-card .post-card-img { height: 160px; overflow: hidden; }
.post-card .post-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card .post-card-body { padding: 13px 14px 16px; }
.post-card-teaser { font-size: 12.5px; color: var(--gray-500); line-height: 1.5; margin-top: 5px; }

/* Latest / rest: horizontal list */
.blog-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
.blog-list-item { display: flex; gap: 14px; align-items: center; padding: 12px 14px; text-decoration: none; color: inherit; border-bottom: 1px solid var(--gray-100); transition: background .15s; }
.blog-list-item:last-child { border-bottom: none; }
.blog-list-item:hover { background: var(--gray-50); }
.blog-list-item img { width: 80px; height: 60px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.blog-list-body { flex: 1; min-width: 0; }
.blog-list-title { font-size: 13.5px; font-weight: 600; line-height: 1.35; letter-spacing: -.1px; }

/* Tablet */
@media (max-width: 1024px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }

/* Mobile */
@media (max-width: 640px) {
  .post-grid { grid-template-columns: 1fr; gap: 0; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; }
  .post-card { border: none; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .post-card:last-child { border-bottom: none; }
  .post-card:first-child .post-card-img { height: 190px; }
  .post-card:not(:first-child) { display: flex; flex-direction: row; }
  .post-card:not(:first-child) .post-card-img { width: 100px; min-width: 100px; height: 76px; flex-shrink: 0; }
  .post-card:not(:first-child) .post-card-img img { height: 100%; }
  .post-card:not(:first-child) .post-card-body { padding: 9px 11px; display: flex; flex-direction: column; justify-content: center; }
  .post-card:not(:first-child) .post-card-teaser { display: none; }
  .post-card:not(:first-child) .post-card-title { font-size: 13px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .blog-section-head { border-bottom-width: 1.5px; }
  .blog-list-item img { width: 66px; height: 50px; }
}

/* ── ROUND 55 — post.php <style> blocks migrated to style.css ── */
.rg-hero { height: 280px; }
@media (max-width: 768px) { .rg-hero { height: 220px; } }
@media (max-width: 480px) { .rg-hero { height: 180px; } }
.post-hero { position: relative; height: 340px; overflow: hidden; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.6)); display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 0; }
.post-hero-inner { max-width: 780px; margin: 0 auto; padding: 0 20px; }
.post-hero-cat { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 8px; display: block; }
.post-hero-title { color: #fff; font-size: clamp(22px,4vw,32px); font-weight: 700; letter-spacing: -.5px; line-height: 1.2; margin: 0 0 10px; }
.post-hero-meta { color: rgba(255,255,255,.7); font-size: 13px; }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 40px; max-width: 1100px; margin: 0 auto; padding: 36px 20px 60px; }
.post-body h2 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; margin: 32px 0 12px; }
.post-body h2:first-child { margin-top: 0; }
.post-body h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; }
.post-body p { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin-bottom: 14px; }
.post-body ul, .post-body ol { font-size: 15px; line-height: 1.7; color: var(--gray-700); margin-bottom: 14px; padding-left: 20px; }
.post-body li { margin-bottom: 6px; }
.post-body a { color: var(--black); text-decoration: underline; }
.post-body a:hover { color: var(--gray-600); }
.post-body table { margin: 16px 0; width: 100%; border-radius: 8px; overflow: hidden; }
.post-body details { background: var(--white); }
.post-body details summary { font-weight: 500; }
.post-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-box { border: 1px solid var(--gray-200); border-radius: 10px; padding: 18px; }
.sidebar-box-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); margin-bottom: 12px; }
.sidebar-related a { display: flex; align-items: center; gap: 10px; min-height: 44px; font-size: 13px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--gray-100); color: var(--black); text-decoration: none; }
.sidebar-related a:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related a:hover { color: var(--gray-600); }
.related-item img { width: 60px; height: 45px; object-fit: cover; border-radius: 5px; flex-shrink: 0; }
.related-item span { flex: 1; line-height: 1.35; }
.post-cta { background: var(--gray-900); color: #fff; border-radius: 10px; padding: 20px; text-align: center; }
.post-cta p { font-size: 14px; color: rgba(255,255,255,.8); margin: 6px 0 14px; }
.post-cta a { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; background: #fff; color: var(--black); font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: 6px; text-decoration: none; }
@media (max-width: 768px) { .post-layout { grid-template-columns: 1fr; } .post-hero { height: 240px; } }
@media (max-width: 480px) { .post-hero { height: 180px; } .post-hero-title { font-size: clamp(16px,5vw,24px) !important; } }

/* ── Nav dropdowns ── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 3px; }
.nav-caret { opacity: .5; transition: transform .15s; flex-shrink: 0; }
.nav-item.drop-open .nav-caret { transform: rotate(180deg); opacity: .8; }
.nav-drop {
  display: none; position: absolute; top: calc(100% + 2px); left: 50%;
  transform: translateX(-50%); min-width: 190px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  padding: 5px; z-index: 200;
}
.nav-item.drop-open .nav-drop { display: block; }
.nav-drop a {
  display: block; padding: 8px 12px; font-size: 13px; font-weight: 500;
  color: var(--gray-700); border-radius: 6px; white-space: nowrap;
}
.nav-drop a:hover { background: var(--gray-50); color: var(--black); }
.nav-drop-sep { height: 1px; background: var(--gray-100); margin: 4px 0; }
.nav-drop-all { font-weight: 600; color: var(--black) !important; }
/* Mobile drawer search */
.nav-mobile-search {
  display: flex; align-items: center; gap: 8px;
  margin: 8px 16px 4px; height: 44px;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: var(--gray-50); padding: 0 12px; flex-shrink: 0;
}
.nav-mobile-search svg { color: var(--gray-400); flex-shrink: 0; }
.nav-mobile-search input {
  flex: 1; border: none; background: transparent;
  font-size: 15px; font-family: var(--font);
  outline: none; color: var(--black);
}
.nav-mobile-search input::placeholder { color: var(--gray-400); }
.nav-mobile-suggest {
  display: none; margin: 0 16px 4px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
}
.nav-mobile-suggest a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; font-size: 13px; font-weight: 500;
  color: var(--black); border-bottom: 1px solid var(--gray-50);
  text-decoration: none; min-height: 44px;
}
.nav-mobile-suggest a:last-child { border-bottom: none; }
.nav-mobile-suggest a:hover { background: var(--gray-50); }
/* Mobile drawer additions */
.nav-mobile-sep { height: 1px; background: var(--gray-100); margin: 4px 0; }
.nav-mobile-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); padding: 10px 16px 4px; }
.nav-mobile-cities { display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 16px 8px; }
.nav-mobile-cities a { font-size: 13px; font-weight: 500; color: var(--gray-700); padding: 5px 10px; background: var(--gray-50); border-radius: 20px; border: 1px solid var(--gray-200); text-decoration: none; }
.nav-mobile-cities a:hover { background: var(--gray-100); }

/* ── Mobile search icon ── */
.nav-search-btn {
  display: none; width: 36px; height: 36px; flex-shrink: 0;
  align-items: center; justify-content: center;
  border: 1px solid var(--gray-200); border-radius: var(--radius);
  background: var(--gray-50); cursor: pointer;
  color: var(--gray-400); padding: 0;
}
.nav-search-btn:hover { background: var(--gray-100); }
@media (max-width: 768px) {
  .nav-search { display: none !important; }
  .nav-search-btn { display: flex; }
  .nav-search.open {
    display: block !important; position: fixed;
    top: 56px; left: 0; right: 0; z-index: 998;
    background: var(--white); border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 4px 16px rgba(0,0,0,.1); padding: 10px 16px;
  }
  .nav-search.open input { width: 100%; height: 44px; font-size: 16px !important; }
}

/* ── Newsletter Strip ── */
.nl-strip {
  background: var(--black); color: #fff;
  padding: 32px 0;
  border-top: 1px solid #111;
}
.nl-strip-inner {
  display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap;
}
.nl-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .7px; color: rgba(255,255,255,.5); margin-bottom: 4px;
}
.nl-title { font-size: 17px; font-weight: 700; letter-spacing: -.3px; }
.nl-sub { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 3px; }
.nl-form {
  display: flex; gap: 0; flex: 1; min-width: 280px; max-width: 420px;
}
.nl-form input[type=email] {
  flex: 1; height: 44px; padding: 0 14px;
  border: 1px solid rgba(255,255,255,.25); border-right: none;
  border-radius: 6px 0 0 6px;
  background: rgba(255,255,255,.08); color: #fff;
  font-size: 14px; font-family: var(--font); outline: none;
}
.nl-form input[type=email]::placeholder { color: rgba(255,255,255,.35); }
.nl-form input[type=email]:focus { border-color: rgba(255,255,255,.5); }
.nl-btn {
  height: 44px; padding: 0 20px;
  background: #fff; color: #0a0a0a;
  border: none; border-radius: 0 6px 6px 0;
  font-size: 14px; font-weight: 600; font-family: var(--font);
  cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.nl-btn:hover { background: #f0f0f0; }
.nl-btn:disabled { opacity: .6; cursor: default; }
.nl-success {
  flex: 1; font-size: 14px; color: rgba(255,255,255,.8);
  padding: 10px 0;
}
@media (max-width: 640px) {
  .nl-strip-inner { flex-direction: column; align-items: stretch; gap: 16px; }
  .nl-form { max-width: 100%; }
  .nl-text { text-align: center; }
}

/* ── App Download Banner (mobile only) ── */
.app-banner {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  position: relative; z-index: 90;
}
@media (max-width: 768px) { .app-banner { display: block; } }
.app-banner-inner {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
}
.app-banner-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--black); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.app-banner-text {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.app-banner-text strong {
  font-size: 13px; font-weight: 600; display: block;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-banner-text span {
  font-size: 11px; color: var(--gray-400);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-install-btn {
  flex-shrink: 0;
  background: var(--black); color: #fff;
  border: none; border-radius: 6px;
  font-size: 12px; font-weight: 600; font-family: var(--font);
  padding: 8px 14px; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.app-install-btn:hover { background: #333; }
.app-ios-hint {
  display: flex; align-items: center; gap: 5px; justify-content: center;
  font-size: 12px; color: var(--gray-400); padding: 6px 14px 10px;
}
.app-banner-close {
  flex-shrink: 0; background: none; border: none;
  padding: 8px; cursor: pointer; color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .1s;
}
.app-banner-close:hover { background: var(--gray-100); }

/* ── UX ROUND 35 — City quick stats, card lift, footer cities ── */

/* City quick stats strip */
.city-quick-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 24px;
}
.cqs-item {
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.cqs-num { font-size: 22px; font-weight: 700; letter-spacing: -.5px; line-height: 1; }
.cqs-lbl { font-size: 11px; color: var(--gray-400); margin-top: 4px; text-transform: uppercase; letter-spacing: .4px; }
@media (max-width: 640px) { .city-quick-stats { grid-template-columns: repeat(2, 1fr); } }

/* City "X weitere Stationen" hint */
.city-more-hint {
  font-size: 13px; color: var(--gray-400); margin-top: 14px; text-align: center;
}
.city-more-hint a { color: var(--black); text-decoration: underline; }
.city-more-hint a:hover { color: var(--gray-600); }

/* Footer city quick links */
.footer-cities {
  width: 100%; border-top: 1px solid var(--gray-100);
  padding-top: 14px; margin-top: 14px;
  display: flex; flex-wrap: wrap; gap: 4px; justify-content: center;
}
.footer-cities a {
  font-size: 12px; color: var(--gray-400); padding: 4px 8px;
  border-radius: 4px; transition: color .1s;
}
.footer-cities a:hover { color: var(--black); }

/* ── Map: Lightning bolt markers ─────────────────────────── */
.lsg-bolt { background: none !important; border: none !important; }
.lsg-bolt svg { display: block; width: 13px; height: 20px; }

/* ── Station Hero (2026-04-19 redesign) ──────────────────── */
.st-hero { background: #fff; border: 1px solid var(--gray-200); border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.st-hero-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.st-tag {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 500; color: var(--black);
  border: 1px solid var(--gray-200); border-radius: 20px;
  padding: 5px 13px; background: #fff;
}
.st-tag-hpc, .st-tag-dc, .st-tag-ac, .st-tag-net, .st-tag-h24, .st-tag-free { background: #fff; color: var(--black); border-color: var(--gray-200); }
.st-hero-h1  { font-size: clamp(20px, 4vw, 28px); font-weight: 700; letter-spacing: -.4px; margin: 0 0 5px; line-height: 1.3; }
.st-hero-addr { font-size: 13px; color: #777; font-style: normal; }
.st-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-top: 18px; }
.st-stat { background: #f8f8f8; border-radius: 8px; padding: 14px 10px; text-align: center; }
.st-stat-num { font-size: 22px; font-weight: 700; line-height: 1.1; }
.st-stat-num-sm { font-size: 15px; }
.st-stat-unit { font-size: 11px; color: #888; font-weight: 400; margin-left: 2px; }
.st-stat-lbl { font-size: 11px; color: #999; margin-top: 4px; }
.st-stat-green .st-stat-num { color: #16a34a; }
.st-kw-track { height: 5px; background: #f0f0f0; border-radius: 3px; margin-top: 16px; overflow: hidden; }
.st-kw-fill  { height: 100%; background: #0a0a0a; border-radius: 3px; }
.st-kw-lbl   { font-size: 11px; color: #aaa; margin-top: 5px; display: block; }
@media(max-width:600px) { .st-stats-row { grid-template-columns: repeat(2,1fr); } }

/* ── Station Guide Cards ──────────────────────────────────── */
.st-guide-box { margin-top: 20px; }
.st-guide-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: #888; font-weight: 600; margin-bottom: 10px; }
.st-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.st-guide-card {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 10px;
  background: #fff; border: 1px solid var(--gray-200);
  font-size: 13px; font-weight: 600; color: #222; text-decoration: none;
  line-height: 1.3; transition: border-color .15s, box-shadow .15s;
}
.st-guide-card:hover { border-color: var(--gray-300); box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.st-guide-card-thumb { width: 44px; height: 44px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
@media (max-width: 640px) {
  .st-guide-grid { grid-template-columns: 1fr; }
}

/* ── Station Calculator (upgrade) ────────────────────────── */
.st-calc { border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; margin-top: 20px; }
.st-calc-header { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; background: #f9f9f9; border-bottom: 1px solid var(--gray-200); }
.st-calc-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: #555; }
.st-calc-kw { font-size: 12px; font-weight: 700; background: #0a0a0a; color: #fff; padding: 2px 10px; border-radius: 100px; }
.st-calc-body { padding: 16px; }
.st-calc-result { font-size: 28px; font-weight: 700; color: #0a0a0a; margin: 14px 0 4px; }

/* ── POI skeleton + card upgrade ────────────────────────────── */
.poi-skel { height: 64px; border-radius: 8px; background: linear-gradient(90deg,#f0f0f0 25%,#e8e8e8 50%,#f0f0f0 75%); background-size: 200% 100%; animation: poi-shimmer 1.4s infinite; }
@keyframes poi-shimmer { 0%{background-position:-200% 0} 100%{background-position:200% 0} }
