/* ── Stadt & Blog gemeinsame Styles ── */

.page-hero {
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-hell) 100%);
  color: var(--weiss);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,102,0,0.18);
  border: 1px solid rgba(255,102,0,0.4);
  color: #ffb380;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.page-hero h1 { color: var(--weiss); margin-bottom: 1rem; }
.page-hero h1 span { color: var(--orange); }
.page-hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.page-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .aktiv { color: rgba(255,255,255,0.9); }

/* Stadt Content */
.stadt-content { padding: 70px 0; }
.stadt-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.stadt-text h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.4rem;
}
.stadt-text h2:first-child { margin-top: 0; }
.stadt-text p { color: var(--text); line-height: 1.75; margin-bottom: 1rem; }
.stadt-text ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.stadt-text ul li {
  margin-bottom: 0.4rem;
  color: var(--text);
}

/* Sidebar */
.stadt-sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--schatten);
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}
.sidebar-tel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--orange);
  color: var(--weiss) !important;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
}
.sidebar-tel:hover {
  background: var(--orange-dunkel);
  color: var(--weiss) !important;
}
.sidebar-info { font-size: 0.85rem; color: var(--grau-text); text-align: center; }

.sidebar-services { list-style: none; }
.sidebar-services li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--grau-mittel);
  font-size: 0.92rem;
}
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.sidebar-staedte { list-style: none; }
.sidebar-staedte li { margin-bottom: 0.4rem; }
.sidebar-staedte a {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.sidebar-staedte a::before { content: '📍'; font-size: 0.75rem; }
.sidebar-staedte a:hover { color: var(--orange); }

/* Blog Index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.blog-card {
  background: var(--weiss);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--schatten);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--schatten-lg);
}
.blog-card-bild {
  height: 200px;
  background: linear-gradient(135deg, var(--blau) 0%, var(--blau-hell) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.blog-card-kategorie {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--weiss);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--grau-text);
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.blog-card h3 a { color: var(--blau); text-decoration: none; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-card p { color: var(--grau-text); font-size: 0.9rem; margin-bottom: 1rem; }
.blog-card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-card-link:hover { color: var(--orange-dunkel); }

/* Blog Artikel */
.artikel-wrap {
  padding: 70px 0;
}
.artikel-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.artikel-body h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.artikel-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.artikel-body p { line-height: 1.8; margin-bottom: 1rem; }
.artikel-body ul, .artikel-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.artikel-body ul li, .artikel-body ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.artikel-body .tipp-box {
  background: rgba(255,102,0,0.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.artikel-body .tipp-box strong { color: var(--orange); }

.artikel-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--grau-text);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--grau-mittel);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .stadt-grid { grid-template-columns: 1fr; }
  .artikel-grid { grid-template-columns: 1fr; }
  .stadt-sidebar { position: static; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 50px; }
}
