/* Einheitliche Topbar + Notfall-Strip für alle Stadtteil-Seiten (Struktur wie Rodenkirchen) */
header.site-header {
  background: transparent !important;
  position: relative;
  z-index: 150;
}
header.site-header .topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 0;
  min-height: 0;
}
header.site-header .topbar::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  top: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  z-index: -1;
}
header.site-header .topbar .brand img {
  max-height: 56px;
  height: 56px;
  width: min(200px, 18vw);
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: lighten;
}
header.site-header .brand,
header.site-header .nav-links a,
header.site-header .nav-links .nav-toggle {
  color: #ffffff !important;
}
header.site-header .brand:hover,
header.site-header .nav-links a:hover {
  color: #86efac !important;
}
header.site-header .nav-links {
  font-size: 15px;
}
@media (max-width: 600px) {
  header.site-header .topbar {
    padding: 10px 0;
  }
  header.site-header .topbar .brand img {
    max-height: 46px;
    height: 46px;
    width: auto;
    max-width: 140px;
  }
  header.site-header .brand {
    font-size: 14px;
  }
}

/* Notfall-Strip: kompakte Größe wie Rodenkirchen */
.notfall-strip {
  padding: 18px 20px 24px;
  min-height: 150px;
}
.notfall-strip .notfall-label {
  font-size: clamp(11px, 1.3vw, 13px);
}
.notfall-strip .notfall-headline {
  font-size: clamp(24px, 4.5vw, 42px);
  margin: 0 0 6px;
}
.notfall-strip .notfall-phone {
  font-size: clamp(24px, 4.5vw, 38px);
  padding: 12px 24px;
}
@media (max-width: 600px) {
  .notfall-strip {
    padding: 16px 16px 22px;
    min-height: 160px;
  }
  .notfall-strip .notfall-headline {
    font-size: clamp(22px, 7vw, 30px);
    margin: 0 0 10px;
  }
  .notfall-strip .notfall-phone {
    font-size: clamp(22px, 7vw, 28px);
    padding: 14px 20px;
  }
}
