/* ═══════════════════════════════════════════════════════════════════════════
   ratgeber.css — IBAZ Sicherheitsdienst · Ratgeber (Blog)
   ───────────────────────────────────────────────────────────────────────────
   Teil 1: Tokens, Reset, Nav, Hamburger, Mobile-Leiste, Footer, Buttons —
           wortgleich aus objektschutz-berlin.html übernommen (identische Optik).
           Einzige Abweichung: „nav {…}" → „#nav {…}", weil die Brotkrumen-
           <nav> sonst in der fixen Kopfleiste kleben würde (Element-Selektor).
   Teil 2: Artikel-Stile (Hero dunkel, Artikel hell). KEINE Media-Query legt
           den Artikeltext auf dunklen Grund — pruefen.py wacht darüber.
   Fonts kommen inline aus dem <head> (@font-face, root-absolut). 0 externe Aufrufe.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens (identisch zu index.html) ─────────────────── */
:root {
    --navy:      #0F172A;
    --navy-mid:  #1E293B;
    --navy-lt:   #334155;
    --blue:      #0369A1;
    --blue-lt:   #0EA5E9;
    --blue-dk:   #075985;
    --bg:        #F8FAFC;
    --bg-2:      #F1F5F9;
    --bg-card:   #FFFFFF;
    --text:      #020617;
    --text-2:    #475569;
    --text-3:    #64748B;
    --gold:      #CA8A04;
    --green:     #047857;
    --border:    #E2E8F0;
    --border-dk: #CBD5E1;

    --e1: 0 1px 3px rgba(15,23,42,.08);
    --e2: 0 4px 16px rgba(15,23,42,.1);
    --e3: 0 12px 40px rgba(15,23,42,.14);
    --e-blue: 0 8px 24px rgba(3,105,161,.25);

    --r:   8px;
    --rl:  14px;
    --rxl: 20px;

    --z-card:    10;
    --z-sticky:  20;
    --z-nav:     30;
    --z-overlay: 50;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', 'OpenSans-Fallback', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
::selection { background: var(--blue); color: #fff; }

.scroll-prog {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 100%;
    transform: scaleX(0); transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--blue), var(--blue-lt));
    z-index: 60; pointer-events: none; will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#nav {
    position: fixed;
    top: 14px; left: 14px; right: 14px;
    z-index: var(--z-nav);
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 26px;
    background: rgba(15,23,42,.92);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: var(--rxl);
    transition: all .25s ease;
}
#nav.scrolled {
    top: 8px;
    background: rgba(15,23,42,.97);
    border-color: rgba(255,255,255,.14);
    box-shadow: var(--e3);
}

.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
/* DSGVO-konform Siegel im Header */
.brand-group { display: flex; align-items: center; gap: 12px; }
.dsgvo-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 11px;
    border: 1px solid #fff; background: #fff; color: #0F172A;
    border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .3px;
    text-decoration: none; white-space: nowrap; line-height: 1; transition: background .2s, border-color .2s, color .2s; }
.dsgvo-badge:hover { box-shadow: 0 4px 14px rgba(0,0,0,.22); transform: translateY(-1px); }
.dsgvo-badge svg { flex-shrink: 0; color: #047857; }
@media (max-width: 768px) { .dsgvo-badge-txt { display: none; } .dsgvo-badge { padding: 7px; } }
.logo-mark {
    width: 46px; height: 46px; object-fit: contain; flex-shrink: 0;
    filter: brightness(0) invert(1);
}
.logo-name { display: block; font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 17px; font-weight: 700; color: #fff; }
.logo-sub { display: block; font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 2px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    display: block; padding: 9px 15px;
    color: rgba(255,255,255,.7);
    text-decoration: none; font-size: 14px; font-weight: 500;
    border-radius: var(--r); transition: all .2s ease; cursor: pointer;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 2px; }
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
    background: var(--blue-lt); border-radius: 2px;
    transform: scaleX(0); transform-origin: left;
    transition: transform .25s cubic-bezier(.16,1,.3,1);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: #fff; }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta {
    background: var(--blue) !important;
    color: #fff !important; font-weight: 600 !important;
    padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--blue-dk) !important; box-shadow: var(--e-blue) !important; }

.ham { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; background: none; border: none; }
.ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }

/* ── BUTTONS (aus der Vorlage) ───────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 52px; padding: 0 30px;
    background: var(--blue); color: #fff; border: none; border-radius: var(--r);
    font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; transition: all .2s ease;
    position: relative; overflow: hidden;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -130%;
    width: 55%; height: 100%; z-index: 0;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transform: skewX(-22deg);
    transition: left .6s cubic-bezier(.16,1,.3,1);
}
.btn-primary:hover::after { left: 150%; }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: var(--e-blue); }
.btn-primary:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 3px; }

.btn-outline-w {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 52px; padding: 0 26px;
    background: transparent; color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--r); font-size: 15px; font-weight: 500;
    text-decoration: none; cursor: pointer; transition: all .2s ease;
}
.btn-outline-w:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-outline-w:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 3px; }

h3 { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; }
h4 { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
    background: var(--navy);
    padding: 52px 6% 28px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.fb p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 14px 0 18px; max-width: 30ch; }
.socials { display: flex; gap: 8px; }
.soc {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.45); text-decoration: none;
    transition: all .2s; cursor: pointer;
}
.soc:hover { background: rgba(3,105,161,.2); border-color: rgba(3,105,161,.4); color: var(--blue-lt); }
.soc:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 2px; }

/* Spaltentitel als h2 (Vorlage: h4) — Überschriften-Reihenfolge h1→h2 bleibt auf jeder Ratgeber-Seite lückenlos */
.fc h2, .fc h4 { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; line-height: 1.4; }
.fc ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fc ul li a { font-size: 14px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; cursor: pointer; }
.fc ul li a:hover { color: var(--blue-lt); }
.fc ul li a:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 2px; border-radius: 2px; }

.footer-bot {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bot p { font-size: 13px; color: rgba(255,255,255,.6); }
.footer-bot a { color: rgba(255,255,255,.62); text-decoration: underline; transition: color .2s; }
.footer-bot a:hover { color: var(--blue-lt); }

/* ── RESPONSIVE (Nav/Footer aus der Vorlage) ─────────────────── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Hamburger schon ab 1220 px: mit sechs Einträgen läuft die Leiste zwischen 769 und ~1080 px über
   (gemessen 14.09.2026; 1220 px = derselbe Umbruch wie auf den vier Hauptseiten, deren acht Einträge erst ab 1.202 px passen) */
@media (max-width: 1220px) {
    .nav-links {
        display: none; position: fixed;
        top: 80px; left: 8px; right: 8px;
        background: rgba(15,23,42,.97);
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: var(--rl); padding: 14px;
        flex-direction: column; gap: 2px;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 13px 16px; width: 100%; }
    .ham { display: flex; }
}
@media (max-width: 768px) {
    #nav { top: 8px; left: 8px; right: 8px; height: 62px; padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-bot { flex-direction: column; text-align: center; }
}
    /* Click-to-Call (Kunden-Hebel) */
.nav-call-link { background: #047857 !important; color: #fff !important; font-weight: 700 !important; display: inline-flex !important; align-items: center; gap: 6px; }
.nav-call-link:hover { background: #047857 !important; box-shadow: 0 5px 16px rgba(5,150,105,.45) !important; }
.mobile-call, .mobile-wa { display: none; }
@media (max-width: 768px) {
    .mobile-call, .mobile-wa { display: flex; position: fixed; bottom: 0; z-index: 60;
        align-items: center; justify-content: center; gap: 8px;
        color: #fff; font-weight: 800; font-size: .98rem; min-height: 52px;
        padding: 13px 8px; text-decoration: none; box-shadow: 0 -3px 14px rgba(0,0,0,.28); }
    .mobile-call { left: 0; right: 50%; background: #047857; }
    .mobile-wa { left: 50%; right: 0; background: #075E54; }
    .mobile-call:active { background: #065F46; }
    .mobile-wa:active { background: #054C44; }
    body { padding-bottom: 84px; }
}

/* ═══════════════════════════════════════════════════════════════
   Teil 2 — RATGEBER-STILE
   ═══════════════════════════════════════════════════════════════ */

.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; }

/* ── HERO (dunkel: Navy, weißer Text, kompakt) ───────────────── */
.hero-artikel {
    background: var(--navy);
    color: #fff;
    padding: 124px 6% 52px;
    position: relative; overflow: hidden;
}
.hero-artikel::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(3,105,161,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3,105,161,.035) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-artikel::after {
    content: ''; position: absolute; pointer-events: none;
    top: -40%; right: -5%; width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(3,105,161,.16) 0%, transparent 60%);
    border-radius: 50%;
}
.hero-artikel-inner { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }

.brotkrumen ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.62); margin-bottom: 18px; }
.brotkrumen li + li::before { content: '›'; margin-right: 6px; color: rgba(255,255,255,.4); }
.brotkrumen a { color: rgba(255,255,255,.78); text-decoration: underline; text-underline-offset: 2px; transition: color .2s; }
.brotkrumen a:hover { color: #fff; }
.brotkrumen a:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 2px; border-radius: 2px; }

.chip {
    display: inline-block;
    padding: 5px 12px; border-radius: 100px;
    font-size: 12px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase;
    line-height: 1.3; white-space: nowrap;
}
.chip-hell { background: rgba(14,165,233,.16); color: var(--blue-lt); border: 1px solid rgba(14,165,233,.35); }
.chip-dunkel { background: rgba(3,105,161,.08); color: var(--blue-dk); border: 1px solid rgba(3,105,161,.18); }

.hero-artikel h1 {
    font-family: 'Poppins', 'Poppins-Fallback', sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.6rem);
    font-weight: 800; line-height: 1.18; letter-spacing: -.6px;
    color: #fff; margin: 16px 0 14px;
    overflow-wrap: anywhere; hyphens: auto;
}
.hero-artikel .teaser { font-size: 1.125rem; color: rgba(255,255,255,.74); line-height: 1.7; max-width: 64ch; }
.hero-artikel .meta { font-size: 13.5px; color: rgba(255,255,255,.62); margin-top: 18px; }
.hero-uebersicht .teaser { font-size: 1.0625rem; }

/* ── ARTIKEL (hell) ──────────────────────────────────────────── */
.artikel {
    max-width: 760px; margin: 0 auto;
    padding: 44px 20px 0;
    font-size: 1.0625rem; line-height: 1.75; color: var(--text);
}
.artikel p { margin: 0 0 1.25em; }
.artikel h2 {
    font-family: 'Poppins', 'Poppins-Fallback', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.75rem);
    font-weight: 800; line-height: 1.25; letter-spacing: -.4px;
    color: var(--navy); margin: 2.2em 0 .7em;
    scroll-margin-top: 100px;
}
.artikel > h2:first-child { margin-top: 0; }
.artikel h3 {
    font-family: 'Poppins', 'Poppins-Fallback', sans-serif;
    font-size: 1.2rem; font-weight: 700; line-height: 1.3;
    color: var(--navy); margin: 1.8em 0 .55em;
    scroll-margin-top: 100px;
}
.artikel ul, .artikel ol { margin: 0 0 1.25em 1.35em; padding: 0; }
.artikel li { margin-bottom: .45em; }
.artikel li::marker { color: var(--blue); }
.artikel a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1.5px; transition: color .2s; }
.artikel a:hover { color: var(--blue-dk); }
.artikel a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }
.artikel strong { font-weight: 700; color: var(--navy); }
.artikel em { font-style: italic; }
.artikel blockquote {
    margin: 1.6em 0; padding: 14px 20px;
    border-left: 4px solid var(--blue);
    background: var(--bg-2); border-radius: 0 var(--r) var(--r) 0;
    color: var(--text-2);
}
.artikel blockquote p:last-child { margin-bottom: 0; }

/* Tabellen: wischbar auf schmalen Geräten */
.tabelle { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.6em 0; border: 1px solid var(--border); border-radius: var(--r); background: var(--bg-card); }
.tabelle table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .95rem; line-height: 1.5; }
.tabelle th { background: var(--navy); color: #fff; text-align: left; padding: 11px 14px; font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-weight: 700; font-size: .9rem; }
.tabelle td { padding: 10px 14px; border-top: 1px solid var(--border); vertical-align: top; }
.tabelle tbody tr:nth-child(even) td { background: var(--bg-2); }

/* CTA-Box (dunkel) */
.cta-box {
    background: var(--navy); color: #fff;
    border-radius: var(--rl); padding: 30px 28px;
    margin: 2.4em 0; box-shadow: var(--e3);
    position: relative; overflow: hidden;
}
.cta-box::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(60% 50% at 80% 10%, rgba(3,105,161,.22), transparent 70%);
}
.cta-box > * { position: relative; z-index: 2; }
.cta-titel { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 1.25rem; font-weight: 800; line-height: 1.3; color: #fff; margin: 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 0 20px; border-radius: var(--r);
    font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 15px; font-weight: 600;
    color: #fff; text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.28); }
/* Die CTA-Box liegt IM Artikel: .artikel a (0,1,1) schlug .cta-btn (0,1,0) — Knopftext war blau auf blau (Sichtprüfung 14.09.) */
.artikel .cta-btn, .artikel .cta-btn:hover, .artikel .cta-btn:focus-visible { color: #fff; text-decoration: none; }
.cta-btn:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 3px; }
.cta-btn-call { background: var(--green); }
.cta-btn-wa { background: #075E54; }
.cta-btn-wa:hover { background: #054C44; }
.cta-btn-anfrage { background: var(--blue); }
.cta-btn-anfrage:hover { background: var(--blue-dk); }
.cta-hinweis { font-size: 13.5px; color: rgba(255,255,255,.68); margin: 14px 0 0; }

/* FAQ (hell) */
.faq { margin-top: 1em; scroll-margin-top: 100px; }
.faq h3 { font-size: 1.1rem; color: var(--navy); margin: 1.5em 0 .5em; padding-left: 14px; border-left: 3px solid var(--blue); }
.faq p { color: var(--text); }

/* Quellen */
.quellen { font-size: .875rem; color: var(--text-3); line-height: 1.6; margin: 2.2em 0 0; padding-top: 16px; border-top: 1px solid var(--border); }
.quellen .quellen-titel { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-weight: 700; color: var(--text-2); margin: 0 0 8px; }
.quellen ol { margin: 0; padding-left: 1.4em; }
.quellen li { margin: 0 0 6px; overflow-wrap: anywhere; }
.quellen a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.quellen a:hover { color: var(--blue-dk); }

/* ── WEITERE BEITRÄGE / ÜBERSICHT: Karten ────────────────────── */
.weitere { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 6% 64px; margin-top: 56px; }
.weitere h2 { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 1.5rem; font-weight: 800; letter-spacing: -.4px; color: var(--navy); text-align: center; margin-bottom: 26px; }

.uebersicht { padding: 48px 6% 24px; }
.uebersicht .leer { text-align: center; color: var(--text-2); max-width: 60ch; margin: 0 auto; padding: 16px 0 24px; font-size: 1.0625rem; line-height: 1.7; }
.uebersicht .leer a { color: var(--blue); text-decoration: underline; }

.karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1120px; margin: 0 auto; list-style: none; }
.karte {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 14px; padding: 24px 22px 22px;
    box-shadow: var(--e1);
    display: flex; flex-direction: column; gap: 10px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.karte:hover { transform: translateY(-3px); box-shadow: var(--e2); border-color: var(--border-dk); }
.karte-kopf { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.karte time { font-size: 12.5px; color: var(--text-3); }
.karte h2, .karte h3 { font-family: 'Poppins', 'Poppins-Fallback', sans-serif; font-size: 1.125rem; font-weight: 700; line-height: 1.35; letter-spacing: 0; margin: 0; color: var(--navy); text-align: left; }
.karte h2 a, .karte h3 a { color: var(--navy); text-decoration: none; }
.karte h2 a:hover, .karte h3 a:hover { color: var(--blue); text-decoration: underline; }
.karte h2 a:focus-visible, .karte h3 a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }
.karte p { font-size: .95rem; color: var(--text-2); line-height: 1.65; margin: 0; flex: 1; }
.karte .weiter { font-size: 14px; font-weight: 700; color: var(--blue); text-decoration: none; margin-top: 2px; }
.karte .weiter:hover { text-decoration: underline; }
.karte .weiter:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }

/* Seitennummern */
.seiten { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; list-style: none; margin: 36px auto 0; max-width: 1120px; }
.seiten a, .seiten span {
    min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
    padding: 0 14px; border-radius: var(--r); border: 1px solid var(--border);
    background: var(--bg-card); color: var(--navy); text-decoration: none; font-weight: 600; font-size: 14px;
    transition: border-color .2s, color .2s;
}
.seiten a:hover { border-color: var(--blue); color: var(--blue); }
.seiten a:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.seiten [aria-current="page"] { background: var(--navy); color: #fff; border-color: var(--navy); }

.cta-wrap-ratgeber { max-width: 760px; margin: 0 auto; padding: 8px 20px 56px; }

/* ── RESPONSIVE (Ratgeber) ───────────────────────────────────── */
@media (max-width: 1100px) {
    .karten { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-artikel { padding: 96px 5% 36px; }
    .hero-artikel h1 { font-size: clamp(1.5rem, 6.5vw, 2.4rem); letter-spacing: -.3px; }
    .hero-artikel .teaser { font-size: 1.0625rem; }
    .artikel { padding: 32px 18px 0; font-size: 1.0625rem; }
    .cta-box { padding: 24px 20px; }
    .cta-btn { width: 100%; }
    .karten { grid-template-columns: 1fr; }
    .weitere { padding: 44px 5% 52px; margin-top: 44px; }
    .uebersicht { padding: 36px 5% 16px; }
}
