    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --accent:       #16787c;
      --accent-hover: #0e5f63;
      --accent-light: #e4f3ef;
      --bg:           #f9f5ed;
      --surface:      #ffffff;
      --surface-soft: #f3ecdd;
      --border:       #ddd3c0;
      --border-strong:#b6a785;
      --text:         #183b56;
      --text-muted:   #5b6f80;
      --teal:         #229a9d;
      --teal-light:   #def0ec;
      --radius:       12px;
      --radius-sm:    8px;
      --shadow:       0 1px 2px rgba(15,35,58,.05), 0 12px 28px rgba(15,35,58,.06);
      --shadow-md:    0 16px 36px rgba(15,35,58,.11), 0 4px 10px rgba(15,35,58,.05);
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background: linear-gradient(180deg, #f3ecdd 0, var(--bg) 280px);
      color: var(--text);
      font-size: 14px;
      line-height: 1.55;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 16px;
      min-height: 44px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: var(--surface);
      color: #116366;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: background .15s, border-color .15s;
      white-space: nowrap;
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
      margin: 12px 24px 0;
    }
    .back-btn:hover { background: var(--accent-light); border-color: var(--border-strong); }

    /* ── Main ───────────────────────────────────────────────── */
    main {
      flex: 1;
      padding: 28px 24px 56px;
      max-width: 860px;
      width: 100%;
      margin: 0 auto;
    }

    /* ── Breadcrumb ─────────────────────────────────────────── */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .breadcrumb a { color: #116366; text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb .sep { color: var(--border); }

    /* ── Page heading ───────────────────────────────────────── */
    .page-heading { margin-bottom: 24px; }
    .page-h1 {
      font-size: 26px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.25;
      letter-spacing: 0;
      margin-bottom: 4px;
    }
    .page-subtitle {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* ── Intro + Verfahrens-Mix ─────────────────────────────── */
    .bl-intro {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--teal);
      border-radius: var(--radius);
      padding: 16px 20px;
      margin-bottom: 18px;
      box-shadow: var(--shadow);
    }
    .bl-intro p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
    .bl-intro strong { color: var(--text); }
    .vf-stats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
    .vf-stat {
      display: inline-flex; align-items: baseline; gap: 5px;
      font-size: 12px; color: var(--text);
      background: var(--teal-light); border: 1px solid #c5e6e2;
      border-radius: 999px; padding: 3px 11px;
    }
    .vf-stat-n { font-weight: 700; color: #0f766e; }

    /* ── CTA buttons (Alert / Karte) ────────────────────────── */
    .bl-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
    .bl-cta {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 18px; min-height: 44px;
      border-radius: var(--radius); font-size: 13.5px; font-weight: 600;
      text-decoration: none; cursor: pointer;
      transition: background .15s, border-color .15s, box-shadow .15s, transform .15s;
      -webkit-tap-highlight-color: transparent;
    }
    .bl-cta svg { flex-shrink: 0; }
    .bl-cta-primary {
      background: var(--accent); color: #fff; border: 1px solid var(--accent);
      box-shadow: 0 6px 16px rgba(22,120,124,.22);
    }
    .bl-cta-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
    .bl-cta-secondary {
      background: var(--surface); color: #116366; border: 1px solid var(--border-strong);
    }
    .bl-cta-secondary:hover { background: var(--accent-light); border-color: var(--accent); transform: translateY(-1px); }

    /* ── Filter toolbar ─────────────────────────────────────── */
    .bl-toolbar {
      display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
      margin-bottom: 16px;
    }
    .bl-filter-wrap { position: relative; flex: 1; min-width: 220px; }
    .bl-filter-icon {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      color: var(--text-muted); pointer-events: none;
    }
    #bl-filter {
      width: 100%; min-height: 44px; padding: 10px 14px 10px 38px;
      font-family: inherit; font-size: 14px; color: var(--text);
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); box-shadow: var(--shadow);
      transition: border-color .15s, box-shadow .15s;
      -webkit-appearance: none; appearance: none;
    }
    #bl-filter::placeholder { color: var(--text-muted); }
    #bl-filter:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22,120,124,.14); }
    .bl-filter-count { font-size: 12.5px; color: var(--text-muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
    .bl-toolbar-link { font-size: 12.5px; color: #116366; text-decoration: none; white-space: nowrap; margin-left: auto; }
    .bl-toolbar-link:hover { text-decoration: underline; }
    .bl-no-results {
      text-align: center; color: var(--text-muted); font-size: 13.5px;
      padding: 28px 16px; background: var(--surface-soft);
      border: 1px dashed var(--border-strong); border-radius: var(--radius);
    }

    /* ── Entry cards ────────────────────────────────────────── */
    .stelle-list { display: flex; flex-direction: column; gap: 12px; }
    .stelle-list .stelle-card[hidden] { display: none; }

    .stelle-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-top: 3px solid #59b7c6;
      border-radius: var(--radius);
      padding: 18px 22px;
      box-shadow: var(--shadow);
      transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
    }
    .stelle-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }

    .stelle-name {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 5px;
    }
    .stelle-name a { color: #116366; text-decoration: none; }
    .stelle-name a:hover { text-decoration: underline; }

    .stelle-addr {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .stelle-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 8px;
    }

    .badge {
      font-size: 11px;
      font-weight: 500;
      border-radius: 4px;
      padding: 2px 8px;
    }
    .badge-vf { background: #dceefb; color: #155e8f; }
    .badge-gb { background: var(--teal-light); color: #0f766e; }
    .badge-vs { background: #F3F4F6; color: #374151; }

    .stelle-quelle {
      margin-top: 10px;
      font-size: 12px;
    }
    .stelle-quelle a { color: var(--text-muted); text-decoration: none; }
    .stelle-quelle a:hover { color: #116366; text-decoration: underline; }

    /* ── Weitere Bundesländer (interne Verlinkung) ──────────── */
    .bl-weitere {
      margin-top: 36px;
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }
    .bl-weitere-h {
      font-size: 15px; font-weight: 700; color: var(--text);
      margin-bottom: 14px; letter-spacing: -.2px;
    }
    .bl-chip-grid { display: flex; flex-wrap: wrap; gap: 8px; }
    .bl-chip {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 7px 13px; min-height: 36px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 999px; font-size: 13px; font-weight: 500;
      color: #116366; text-decoration: none;
      transition: background .15s, border-color .15s, box-shadow .15s, transform .15s;
      -webkit-tap-highlight-color: transparent;
    }
    .bl-chip:hover { background: var(--accent-light); border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--shadow); }
    .bl-chip-count {
      font-size: 11px; font-weight: 600; color: var(--text-muted);
      background: var(--bg); border-radius: 999px; padding: 1px 7px;
      font-variant-numeric: tabular-nums;
    }

    /* ── Index: Bundesland-Übersicht (/bundesland/) ─────────── */
    .bl-grid { display: flex; flex-direction: column; gap: 8px; }
    .bl-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px; background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); box-shadow: var(--shadow);
      text-decoration: none; color: var(--text);
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }
    .bl-row:hover { box-shadow: var(--shadow-md); border-color: var(--accent); transform: translateY(-1px); }
    .bl-name { font-size: 15px; font-weight: 600; color: #116366; }
    .bl-count { font-size: 13px; color: var(--text-muted); font-variant-numeric: tabular-nums; }

    /* ── Footer ─────────────────────────────────────────────── */
    #site-footer {
      background: #143452;
      padding: 10px 24px;
      padding-bottom: calc(10px + env(safe-area-inset-bottom));
      text-align: center;
      font-size: 12px;
      color: #7ab8d9;
      flex-shrink: 0;
    }
    #site-footer a { color: #a8c8e0; text-decoration: none; }
    #site-footer a:hover { text-decoration: underline; color: #ffffff; }

    /* ── Responsive ─────────────────────────────────────────── */
    @media (max-width: 600px) {
      .back-btn { margin: 10px 12px 0; }
      main { padding: 16px 12px 40px; }
      .page-h1 { font-size: 20px; }
      .stelle-card { padding: 14px 16px; }
      .bl-cta { flex: 1; justify-content: center; }
      .bl-toolbar-link { margin-left: 0; }
      .bl-intro { padding: 14px 16px; }
    }
