/* ============================================================
   Rastplatz-Treffpunkte – Hauptstylesheet
   Ästhetik: Nacht-Autobahn, industrial, dunkel & präzise
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500&display=swap');

/* ── Variablen ────────────────────────────────────────────── */
/* Scroll-Offset für sticky Header */
html {
  scroll-padding-top: 120px; /* Mobile header height */
}

:root {
  --bg:          #0d0f12;
  --bg2:         #13161b;
  --bg3:         #1a1f27;
  --border:      #252b36;
  --accent:      #f0a500;
  --accent2:     #e07b00;
  --text:        #d4d8e0;
  --text-muted:  #717a8a;
  --text-light:  #f0f2f5;
  --danger:      #e05252;
  --success:     #4caf7d;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(0,0,0,.5);
  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --max-w:       1200px;
  --transition:  .2s ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent2); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
main { flex: 1; padding: 40px 0; }

/* ── Header ──────────────────────────────────────────────── */

/* Versteckte Checkbox für reines CSS-Menü */
.nav-check {
  display: none;
}

.site-header {
  background: var(--bg2);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

/* Logo */
.site-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-logo span { color: var(--accent); }
.site-logo small {
  display: block;
  font-size: .58rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  color: var(--text);
  padding: 6px 12px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition), color var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--accent);
  color: var(--bg);
}

/* Overlay (Desktop: unsichtbar) */
.nav-overlay { display: none; }

/* Hamburger Label (Desktop: unsichtbar) */
.nav-toggle { display: none; }

/* Suche */
.header-search {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.header-search input {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 7px 12px;
  border-radius: var(--radius);
  font-size: .85rem;
  width: 160px;
  outline: none;
  transition: border-color var(--transition);
}
.header-search input:focus { border-color: var(--accent); }
.header-search button {
  background: var(--accent);
  border: none;
  color: var(--bg);
  padding: 7px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .9rem;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header-search button:hover { background: var(--accent2); }

/* ── Mobile ab 768px ─────────────────────────────────────── */
@media (max-width: 768px) {

  html { scroll-padding-top: 115px; }

  /* Header bleibt sticky auf Mobile */
  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    padding: 10px 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Logo nimmt linke Seite */
  .site-logo {
    font-size: 1.1rem;
    flex: 1;
    min-width: 0;
  }
  .site-logo small { display: none; }

  /* Suche in zweite Reihe */
  .header-search {
    order: 3;
    width: 100%;
  }
  .header-search input {
    flex: 1;
    width: auto;
  }

  /* Hamburger anzeigen */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    flex-shrink: 0;
    order: 2;
    transition: border-color var(--transition);
  }
  .nav-toggle:hover { border-color: var(--accent); }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
  }

  /* Nav: standardmäßig außerhalb, startet UNTER dem Header */
  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: -280px;
    width: 260px;
    height: 100vh;
    background: var(--bg2);
    border-left: 2px solid var(--accent);
    /* padding-top = Header-Höhe auf Mobile (2 Zeilen = ~115px) */
    padding: 115px 16px 24px;
    gap: 4px;
    z-index: 150;          /* UNTER dem sticky Header (200)! */
    transition: right .3s ease;
    overflow-y: auto;
    justify-content: flex-start;
    flex: none;
  }
  .site-nav a {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    position: relative;
    z-index: 151;          /* Über Menü-Hintergrund */
    pointer-events: auto;  /* Klickbar erzwingen */
  }

  /* Overlay: HINTER dem Menü, nur links davon sichtbar */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 100;          /* Unter Header (200) und Menü (150) */
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    cursor: pointer;
  }

  /* Checkbox aktiviert → Menü einschieben */
  .nav-check:checked ~ .header-inner .site-nav {
    right: 0;
  }
  .nav-check:checked ~ .header-inner .site-nav .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hamburger → X */
  .nav-check:checked ~ .header-inner .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-check:checked ~ .header-inner .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-check:checked ~ .header-inner .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 400px) {
  .site-logo { font-size: .95rem; }
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--bg2);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-img {
  width: 100%;
  max-height: 420px;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
  opacity: .55;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,15,18,.85) 40%, rgba(13,15,18,.3) 100%);
  display: flex;
  align-items: center;
}
.hero-content { padding: 40px; max-width: 600px; }
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.hero-content h1 em { color: var(--accent); font-style: normal; }
.hero-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 480px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform .15s;
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent2); color: var(--bg); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg); }

/* ── Länder-Grid ─────────────────────────────────────────── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.country-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.country-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.country-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.country-card:hover::before { transform: scaleX(1); }
.country-card h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}
.country-card .count {
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-head);
  color: var(--accent);
  display: block;
  line-height: 1;
}
.country-card .count-label { font-size: .82rem; color: var(--text-muted); }

/* ── Bundesland-Liste ────────────────────────────────────── */
.bundesland-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}
.bundesland-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color var(--transition), background var(--transition);
}
.bundesland-card:hover { border-color: var(--accent); background: var(--bg3); }
.bundesland-card .bl-name {
  font-weight: 600;
  color: var(--text-light);
  font-size: .95rem;
}
.bundesland-card .bl-count {
  background: var(--bg3);
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: .95rem;
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ── Eintrags-Liste ──────────────────────────────────────── */
.entry-list { display: flex; flex-direction: column; gap: 16px; }
.entry-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  transition: border-color var(--transition);
}
.entry-card:hover { border-color: var(--accent); }
.entry-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.entry-card .entry-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: .04em;
}
.tag.autobahn { border-color: #3a6fd8; color: #6fa3f0; }
.tag.bundesstrasse { border-color: #4caf7d; color: #7dd4a8; }
.tag.bundesland { border-color: var(--accent); color: var(--accent); }
.entry-card .entry-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.entry-card .entry-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.entry-rating { display: flex; gap: 3px; align-items: center; }
.star { color: var(--text-muted); font-size: 1rem; }
.star.filled { color: var(--accent); }
.rating-count { font-size: .8rem; color: var(--text-muted); margin-left: 4px; }

/* ── Detail-Seite ────────────────────────────────────────── */
.detail-header {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.detail-header h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.detail-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.detail-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.info-item { background: var(--bg3); border-radius: var(--radius); padding: 14px 16px; }
.info-item .label { font-size: .75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.info-item .value { font-weight: 600; color: var(--text-light); font-size: .95rem; }

/* ── Bewertung ───────────────────────────────────────────── */
.rating-section {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 24px;
}
.rating-section h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.star-selector { display: flex; gap: 8px; margin-bottom: 16px; }
.star-selector input[type=radio] { display: none; }
.star-selector label {
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition), transform .1s;
}
.star-selector label:hover,
.star-selector label:hover ~ label { color: var(--accent); }
.star-selector input:checked ~ label { color: var(--text-muted); }
.star-selector input:checked + label,
.star-selector input:checked + label ~ label { color: var(--accent); }
/* RTL-Trick für Sterne */
.star-selector { flex-direction: row-reverse; }
.star-selector label:hover ~ label,
.star-selector label:hover { color: var(--accent); }

/* ── Formulare ───────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  padding: 10px 14px;
  font-size: .95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23717a8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honeypot { display: none !important; }
.form-hint { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }
.alert {
  padding: 12px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
  border-left: 4px solid;
}
.alert-success { background: rgba(76,175,125,.12); border-color: var(--success); color: #7dd4a8; }
.alert-error { background: rgba(224,82,82,.12); border-color: var(--danger); color: #f08080; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); }

/* ── Page Title ──────────────────────────────────────────── */
.page-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.page-subtitle { color: var(--text-muted); font-size: .95rem; margin-bottom: 28px; }

/* ── Section Titles ──────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 50px; height: 2px;
  background: var(--accent);
}

/* ── Sidebar ─────────────────────────────────────────────── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.sidebar-widget {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-widget h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-links a {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
  color: var(--text);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--accent); }
.sidebar-links .count { color: var(--text-muted); font-size: .8rem; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination { margin: 32px 0; }
.pagination ul {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.pagination li a, .pagination li span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: background var(--transition), border-color var(--transition);
}
.pagination li.active a, .pagination li a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0 20px;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-brand .site-logo { font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── Strassen-Badge ──────────────────────────────────────── */
.strasse-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 4px 10px;
  border-radius: 4px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.strasse-badge.autobahn {
  background: #003399;
  color: white;
  border: 2px solid #6090ff;
}
.strasse-badge.bundesstrasse {
  background: #f5f5f5;
  color: #111;
  border: 2px solid #aaa;
}
.strasse-badge.sonstige {
  background: var(--bg3);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ── Responsive ──────────────────────────────────────────── */
/* ── Layout Responsive ──────────────────────────────────── */

/* Mobile: Hero direkt unter sticky Header – kein Overlap */
@media (max-width: 768px) {
  /* Header ist 2-zeilig ~110px – Hero soll direkt drunter starten */
  .hero {
    margin-top: 0;
  }
  /* Kein extra padding nötig da header sticky und normal im flow */
}

@media (max-width: 900px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .country-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .country-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-img {
    object-position: center bottom;
    min-height: 240px;
  }
  .hero-content { padding: 20px 16px 24px; }
  .detail-header { padding: 14px; }
  .entry-card { grid-template-columns: 1fr; }
}

/* ── Utilities ───────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.flex-gap { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Flaggen-Bilder (Chrome-safe statt Emoji) ─────────────── */
.flag-img {
  width: 22px;
  height: 15px;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
}


/* ── Leere Bundesland-Karten (0 Einträge) ────────────────── */
.bundesland-card--empty {
  opacity: .55;
}
.bundesland-card--empty:hover {
  opacity: .85;
  border-color: var(--border);
}
.bl-count--zero {
  color: var(--text-muted) !important;
  background: transparent !important;
  border-color: transparent !important;
}
