/* ══════════════════════════════════════════════════════════════════
   PFORTE.DE – BESTATTUNGSARTEN & KONFESSIONSARTEN
   Eigenständige CSS für:
     /bestattung/bestattungsarten/*
     /bestattung/konfession/*
   Keine Abhängigkeit zu pforte-global.css oder pforte-bestattung.css
   ══════════════════════════════════════════════════════════════════ */


/* ── IMPORTS ────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');


/* ══════════════════════════════════════════════════════════════════
   1. CSS VARIABLES
   ══════════════════════════════════════════════════════════════════ */
:root {
    /* Colors - Base */
    --bg:             #F6F4F0;
    --white:          #FFF;
    --ink:            #1A1A1A;
    --ink-soft:       #3D3D3D;
    --ink-muted:      #7A7670;
    --ink-faint:      #A8A49D;
    --border:         #DDD9D2;

    /* Colors - Brand */
    --accent:         #8B7355;
    --accent-light:   #B5A48C;

    /* Colors - Sektion Bestattung (Teal) */
    --section:        #2E7D6F;
    --section-light:  #E0F2EF;
    --section-dark:   #256B5F;

    /* Colors - Alerts */
    --soforthilfe:       #C62828;
    --soforthilfe-light: #FFEBEE;

    /* Typography */
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Outfit', system-ui, sans-serif;

    /* Spacing & Layout */
    --r:   12px;
    --mw:  1400px;
    --pad: 24px;
    --sh:  0 2px 12px rgba(0, 0, 0, .06);
    --shh: 0 8px 32px rgba(0, 0, 0, .12);
}


/* ══════════════════════════════════════════════════════════════════
   2. RESET & BASE
   ══════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}


/* ══════════════════════════════════════════════════════════════════
   3. HEADER & NAVIGATION
   ══════════════════════════════════════════════════════════════════ */
.header-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 244, 240, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
}

.header-wrap.bt {
    border-bottom-color: var(--border);
}

.site-header {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 16px var(--pad);
    display: flex;
    align-items: center;
    gap: 32px;
}







/*
.logo {
    /* display: flex; 
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
    */

.logo-mark svg {
    width: 32px;
    height: 32px;
}

.logo-name {
    font-family: var(--serif);
    font-size: 1.61rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.nav-links a {
    font-size: 1.01rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 8px;
    transition: .2s;
}

.nav-links a:hover {
    background: rgba(0,0,0,.05);
    color: var(--ink);
}

.nav-links a.al {
    background: var(--section-light);
    color: var(--section);
}

.btn-login {
    margin-left: auto;
    padding: 8px 18px;
    background: var(--ink);
    color: white;
    border: 0;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.98rem;
    font-weight: 500;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    flex-shrink: 0;
}

.btn-login:hover {
    background: var(--ink-soft);
}

.hamburger {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 4px;
    color: var(--ink);
    font-size: 1.38rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 12px var(--pad);
    font-size: 1.06rem;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-menu a.al {
    color: var(--section);
    font-weight: 600;
}


/* ══════════════════════════════════════════════════════════════════
   4. SEARCH STRIP (kompakt, für Unterseiten)
   ══════════════════════════════════════════════════════════════════ */
.search-strip {
    background: linear-gradient(135deg, #1a2e2a 0%, #2E7D6F 60%, #3a9485 100%);
    padding: 10px 0;
    width: 100%;
}

.search-strip-inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.search-strip .search-form {
    border: 1.5px solid rgba(255,255,255,.2);
    background: var(--white);
    padding: 0;
    gap: 0;
    border-radius: 10px;
}

.search-strip .search-form:focus-within {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}

.search-strip .search-field label {
    font-size: 0.64rem;
    color: var(--ink-muted);
    padding: 6px 14px 0;
}

.search-strip .search-field input {
    font-size: 0.92rem;
    color: var(--ink);
    padding: 2px 14px 6px;
}

.search-strip .search-submit {
    padding: 0 22px;
    border-radius: 0 8px 8px 0;
    font-size: 0.94rem;
}

/* Search Form Base */
.search-form {
    display: flex;
    gap: 0;
    border: 2px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition: .2s;
    position: relative;
}

.search-form:focus-within {
    border-color: var(--section);
    box-shadow: 0 0 0 4px var(--section-light);
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-muted);
    padding: 12px 16px 0;
}

.search-field input {
    width: 100%;
    padding: 4px 16px 12px;
    border: 0;
    outline: none;
    font-family: var(--sans);
    font-size: 1.06rem;
    color: var(--ink);
    background: transparent;
}

.search-field input::placeholder {
    color: var(--ink-faint);
}

.search-submit {
    padding: 0 28px;
    background: var(--section);
    color: white;
    border: 0;
    border-radius: 0 12px 12px 0;
    font-family: var(--sans);
    font-size: 1.06rem;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-submit:hover {
    background: var(--section-dark);
}

/* Autocomplete */
.ac-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -2px;
    right: -2px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: var(--shh);
    z-index: 200;
    max-height: 280px;
    overflow-y: auto;
}

.ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.98rem;
    color: var(--ink-soft);
    cursor: pointer;
    transition: .15s;
}

.ac-item:hover,
.ac-item.selected {
    background: var(--section-light);
    color: var(--section);
}

.ac-item .ac-icon {
    font-size: 0.86rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.ac-item .ac-label {
    flex: 1;
}

.ac-item .ac-type {
    font-size: 0.78rem;
    color: var(--ink-faint);
    text-transform: uppercase;
    letter-spacing: .05em;
}


/* ══════════════════════════════════════════════════════════════════
   5. BESTATTUNGSARTEN – ÜBERSICHT
   ══════════════════════════════════════════════════════════════════ */

/* Hero */
.ba-overview-hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.ba-overview-hero h1 {
    font-family: var(--serif);
    font-size: 3.45rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.ba-overview-hero p {
    font-size: 1.26rem;
    opacity: .85;
    max-width: 580px;
    margin: 0 auto;
}

/* Filter Bar */
.ba-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 60px;
    z-index: 50;
}

.ba-filter-inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 14px var(--pad);
    display: flex;
    gap: 24px;
    align-items: center;
}

.ba-filter-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    flex-shrink: 0;
}

.ba-filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ba-filter-btn {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: transparent;
    font-family: var(--sans);
    font-size: 0.94rem;
    color: var(--ink-soft);
    cursor: pointer;
}

.ba-filter-btn:hover,
.ba-filter-btn.active {
    background: var(--section);
    border-color: var(--section);
    color: white;
}

/* Grid */
.ba-grid {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Cards */
.ba-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    text-decoration: none;
    color: inherit;
}

.ba-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
    border-color: transparent;
}

.ba-grid > .info-section {
    grid-column: 1 / -1;   /* spannt über alle Spalten */
}



/* Card Header — farbiger Gradient je Bestattungsart */

.ba-card-header {
    padding: 24px 25px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.ba-card-icon {
    font-size: 2.76rem;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.ba-card-header h3 {
    font-family: var(--serif);
    font-size: 1.72rem;
    font-weight: 600;
    color: white;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.ba-card-subtitle {
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}


.ba-card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.ba-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
}





.ba-card-header h3 {
    font-family: var(--serif);
    font-size: 2.07rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.ba-card-subtitle {
    font-size: 0.94rem;
    color: rgba(255,255,255,.8);
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────

/* ── FARBDEFINITIONEN (zentral, nur einmal) ─────────────────────── */
[data-type="feuer"]        { --c1:#BF360C; --c2:#D84315; --c-light:#FFCCBC; --c-dark:#8D2708; }
[data-type="erde"]         { --c1:#5D4037; --c2:#6D4C41; --c-light:#D7CCC8; --c-dark:#3E2723; }
[data-type="see"]          { --c1:#0277BD; --c2:#0288D1; --c-light:#B3E5FC; --c-dark:#01579B; }
[data-type="wald"]         { --c1:#1B5E20; --c2:#2E7D32; --c-light:#C8E6C9; --c-dark:#0D3E12; }
[data-type="anonym"]       { --c1:#424242; --c2:#616161; --c-light:#E0E0E0; --c-dark:#212121; }
[data-type="kolumbarium"]  { --c1:#8D6E63; --c2:#A1887F; --c-light:#EFEBE9; --c-dark:#5D4037; }
[data-type="diamant"]      { --c1:#6A1B9A; --c2:#7B1FA2; --c-light:#E1BEE7; --c-dark:#4A148C; }
[data-type="weltraum"]     { --c1:#1A237E; --c2:#283593; --c-light:#C5CAE9; --c-dark:#0D1355; }
[data-type="koerperspende"]{ --c1:#00695C; --c2:#00796B; --c-light:#B2DFDB; --c-dark:#004D40; }
[data-type="sozial"]       { --c1:#C62828; --c2:#D32F2F; --c-light:#FFCDD2; --c-dark:#B71C1C; }
[data-type="ausland"]      { --c1:#F57C00; --c2:#FB8C00; --c-light:#FFE0B2; --c-dark:#E65100; }
[data-type="natur"]        { --c1:#558B2F; --c2:#689F38; --c-light:#DCEDC8; --c-dark:#33691E; }







/* ═══════════════════════════════════════════════════════════
   data-type Farb-Variablen für alle 29 Vorsorge-Dokumente
   Gruppiert nach Themengruppen — juristisch-seriöse Farbfamilie
   ═══════════════════════════════════════════════════════════ */


/* ═══ BESTATTUNGSVORSORGE (Indigo / Blau-Töne) ═══ */
[data-type="verfuegung"]                  { --c1:#1A237E; --c2:#283593; --c-light:#E8EAF6; --c-dark:#0D1457; }
[data-type="vollmacht"]                   { --c1:#0D47A1; --c2:#1565C0; --c-light:#E3F2FD; --c-dark:#0A2E66; }
[data-type="vorsorgevertrag"]             { --c1:#1565C0; --c2:#1976D2; --c-light:#E3F2FD; --c-dark:#0D47A1; }
[data-type="sterbegeldversicherung"]      { --c1:#1976D2; --c2:#1E88E5; --c-light:#BBDEFB; --c-dark:#1565C0; }


/* ═══ TESTAMENT & ERBVERTRAG (Lila-Töne) ═══ */
[data-type="testament"]                   { --c1:#4A148C; --c2:#6A1B9A; --c-light:#F3E5F5; --c-dark:#2E0852; }
[data-type="eigenhaendiges-testament"]    { --c1:#6A1B9A; --c2:#7B1FA2; --c-light:#F3E5F5; --c-dark:#4A148C; }
[data-type="notarielles-testament"]       { --c1:#7B1FA2; --c2:#8E24AA; --c-light:#F3E5F5; --c-dark:#4A148C; }
[data-type="berliner-testament"]          { --c1:#8E24AA; --c2:#AB47BC; --c-light:#F3E5F5; --c-dark:#6A1B9A; }
[data-type="erbvertrag"]                  { --c1:#AB47BC; --c2:#BA68C8; --c-light:#F3E5F5; --c-dark:#7B1FA2; }
[data-type="behindertentestament"]        { --c1:#5E35B1; --c2:#673AB7; --c-light:#EDE7F6; --c-dark:#4527A0; }


/* ═══ ERBRECHT (Braun-Töne) ═══ */
[data-type="erbe"]                        { --c1:#5D4037; --c2:#6D4C41; --c-light:#EFEBE9; --c-dark:#3E2723; }
[data-type="pflichtteil"]                 { --c1:#6D4C41; --c2:#795548; --c-light:#EFEBE9; --c-dark:#5D4037; }
[data-type="pflichtteilsverzicht"]        { --c1:#795548; --c2:#8D6E63; --c-light:#EFEBE9; --c-dark:#5D4037; }
[data-type="erbengemeinschaft"]           { --c1:#8D6E63; --c2:#A1887F; --c-light:#D7CCC8; --c-dark:#6D4C41; }
[data-type="erbschein"]                   { --c1:#4E342E; --c2:#5D4037; --c-light:#D7CCC8; --c-dark:#3E2723; }
[data-type="erbausschlagung"]             { --c1:#3E2723; --c2:#4E342E; --c-light:#D7CCC8; --c-dark:#260E07; }
[data-type="testamentsvollstreckung"]     { --c1:#A1887F; --c2:#BCAAA4; --c-light:#EFEBE9; --c-dark:#795548; }
[data-type="nachlassinsolvenz"]           { --c1:#BF360C; --c2:#D84315; --c-light:#FFCCBC; --c-dark:#8D2708; }
[data-type="nachlasspflegschaft"]         { --c1:#6D4C41; --c2:#8D6E63; --c-light:#EFEBE9; --c-dark:#4E342E; }


/* ═══ SCHENKUNG & STEUER (Gold/Bernstein-Töne) ═══ */
[data-type="schenkung"]                   { --c1:#E65100; --c2:#EF6C00; --c-light:#FFE0B2; --c-dark:#BF360C; }
[data-type="vorweggenommene-erbfolge"]    { --c1:#EF6C00; --c2:#F57C00; --c-light:#FFE0B2; --c-dark:#E65100; }
[data-type="erbschaftsteuer"]             { --c1:#F57C00; --c2:#FB8C00; --c-light:#FFE0B2; --c-dark:#EF6C00; }


/* ═══ GESUNDHEIT & VOLLMACHTEN (Petrol/Türkis-Töne) ═══ */
[data-type="patientenverfuegung"]         { --c1:#00695C; --c2:#00897B; --c-light:#E0F2F1; --c-dark:#004D40; }
[data-type="vorsorgevollmacht"]           { --c1:#0277BD; --c2:#0288D1; --c-light:#E1F5FE; --c-dark:#01579B; }
[data-type="betreuungsverfuegung"]        { --c1:#00838F; --c2:#0097A7; --c-light:#E0F7FA; --c-dark:#006064; }
[data-type="organspende"]                 { --c1:#C62828; --c2:#D32F2F; --c-light:#FFCDD2; --c-dark:#B71C1C; }


/* ═══ FINANZIELLES (Grün-Töne) ═══ */
[data-type="treuhandkonto"]               { --c1:#2E7D32; --c2:#388E3C; --c-light:#E8F5E9; --c-dark:#1B5E20; }
[data-type="vorsorgeregister"]            { --c1:#388E3C; --c2:#43A047; --c-light:#E8F5E9; --c-dark:#2E7D32; }


/* ═══ SONDERFÄLLE (Cyan-Töne) ═══ */
[data-type="digitaler-nachlass"]          { --c1:#006064; --c2:#00838F; --c-light:#E0F7FA; --c-dark:#004D40; }


/* ═══ SICHERHEITS-SEITE (Bordeaux) ═══ */
[data-type="sicherheit"]                  { --c1:#8E1F2C; --c2:#A52834; --c-light:#FCE4EC; --c-dark:#5C0F1B; }


/* ── HINTERGRUND HELPERS ────────────────────────────────────────── */

/* Gradient (hell → dunkel) */
[data-type].bg-gradient {
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
    color: #fff;
}

/* Gradient mit 3 Stufen (intensiver, für Heroes) */
[data-type].bg-gradient-hero {
    background: linear-gradient(135deg, var(--c-dark) 0%, var(--c1) 60%, var(--c2) 100%);
    color: #fff;
}

/* Einfarbig, satt */
[data-type].bg-solid {
    background: var(--c1);
    color: #fff;
}

/* Einfarbig, dunkel */
[data-type].bg-dark {
    background: var(--c-dark);
    color: #fff;
}

/* Hell (dezenter Hintergrund, guter Kontrast zu dunklem Text) */
[data-type].bg-light {
    background: var(--c-light);
    color: var(--c-dark);
}


/* ── TEXT HELPERS ───────────────────────────────────────────────── */

/* Farbiger Text (satte Farbe) */
[data-type].text-color {
    color: var(--c1);
}

/* Farbiger Text (dunkler, bessere Lesbarkeit auf hellem BG) */
[data-type].text-dark {
    color: var(--c-dark);
}


/* ── BORDER HELPERS ─────────────────────────────────────────────── */

/* Kompletter farbiger Rand */
[data-type].border-color {
    border: 2px solid var(--c1);
}

/* Farbiger Rand links (für Infoboxen, Callouts) */
[data-type].border-left {
    border-left: 4px solid var(--c1);
}

/* Farbiger Rand oben */
[data-type].border-top {
    border-top: 4px solid var(--c1);
}


/* ── ICON / AKZENT HELPERS ──────────────────────────────────────── */

/* Runder Icon-Kreis mit Farbverlauf */
[data-type].icon-circle {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Icon-Kreis, hell */
[data-type].icon-circle-light {
    background: var(--c-light);
    color: var(--c-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ── BUTTON HELPERS ─────────────────────────────────────────────── */

/* Button mit Gradient */
[data-type].btn-gradient {
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
    border: none;
    /* transition: .2s; */
}

[data-type].btn-gradient:hover {
    background: linear-gradient(135deg, var(--c-dark), var(--c1));
}

/* Button Outline */
[data-type].btn-outline {
    background: transparent;
    color: var(--c1);
    border: 2px solid var(--c1);
    /* transition: .2s; */
}

[data-type].btn-outline:hover {
    background: var(--c1);
    color: #fff;
}


/* ── SHADOW / GLOW HELPERS ──────────────────────────────────────── */

/* Farbiger Schatten (subtil) */
[data-type].shadow-color {
    box-shadow: 0 8px 24px -8px var(--c1);
}

/* Farbiger Glow (stärker, für Hover-Effekte) */
[data-type].shadow-glow {
    box-shadow: 0 0 0 3px var(--c-light), 0 8px 24px -4px var(--c1);
}


/* ── BADGE / TAG HELPERS ────────────────────────────────────────── */

/* Badge dezent */
[data-type].badge-soft {
    background: var(--c-light);
    color: var(--c-dark);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 600;
    display: inline-block;
}

/* Badge kräftig */
[data-type].badge-strong {
    background: var(--c1);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 600;
    display: inline-block;
}



/* ══════════════════════════════════════════════════════════════════
   BA-CARD — data-type Farbsystem anwenden
   ══════════════════════════════════════════════════════════════════ */

/* Header: farbiger Gradient (überschreibt den dunklen Fallback) */
.ba-card[data-type] .ba-card-header {
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
}

/* Icons der Facts farbig */
.ba-card[data-type] .ba-card-fact i {
    color: var(--c1);
}

/* Tags in data-type Farbe (hell mit dunkler Schrift) */
.ba-card[data-type] .ba-tag {
    background: var(--c-light);
    color: var(--c-dark);
}

/* "Mehr erfahren" Link */
.ba-card[data-type] .ba-card-link {
    color: var(--c1);
}

.ba-card[data-type] .ba-card-link:hover {
    color: var(--c-dark);
}

[data-type] .info-content a {
    color: var(--c-dark);
    text-decoration: none;
    font-weight: 600;
}

[data-type] .info-content a:hover {
    color: var(--c1);
    text-decoration: underline;
}


.info-section[data-type] a {
    color: var(--c-dark);
    text-decoration: none;
    font-weight: 600;
}

.info-section[data-type] a:hover {
    color: var(--c1);
    text-decoration: underline;
}







/* ═══ Richtigstellung · Mythen vs. Realität ════════════════════════ */

.myth-section
{
    padding: 56px 0 24px;
}

.myth-head
{
    margin-bottom: 28px;
}

.myth-eyebrow
{
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.myth-head h2
{
    font-family: 'Inter Tight', system-ui, sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.4px;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.25;
}

.myth-intro
{
    font-size: 15px;
    line-height: 1.55;
    color: var(--muted);
    margin: 0;
}

.myth-grid
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.myth-card
{
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    overflow: hidden;
}

.myth-row
{
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    align-items: flex-start;
}

.myth-row.myth-wrong
{
    background: rgba(180, 70, 70, 0.05);
    border-bottom: 1px solid var(--line);
}

.myth-row.myth-right
{
    background: rgba(68, 82, 74, 0.04);
}

.myth-icon
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.myth-wrong .myth-icon
{
    background: rgba(180, 70, 70, 0.15);
    color: #b04646;
}

.myth-right .myth-icon
{
    background: rgba(68, 82, 74, 0.15);
    color: var(--accent);
}

.myth-label
{
    display: block;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.8;
}

.myth-wrong .myth-label
{
    color: #b04646;
}

.myth-right .myth-label
{
    color: var(--accent);
}

.myth-row p
{
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink);
}

.myth-row strong
{
    font-weight: 600;
}


/* Mobile */
@media (max-width: 640px)
{
    .myth-section
    {
        padding: 32px 0 16px;
    }
    .myth-head h2
    {
        font-size: 22px;
    }
    .myth-grid
    {
        grid-template-columns: 1fr;
    }
}











/* ══════════════════════════════════════════════════════════════════
   ORDERED LIST (nummerierte Liste) in info-section etc.
   ══════════════════════════════════════════════════════════════════ */
.info-section ol,
.info-highlight ol,
.faq-answer ol,
.info-cta ol
{
    list-style: none;
    counter-reset: info-counter;
    padding-left: 0;
    margin: 12px 0 16px 0;
    line-height: 1.7;
}

.info-section ol li,
.info-highlight ol li,
.faq-answer ol li,
.info-cta ol li
{
    position: relative;
    padding-left: 32px;
    margin-bottom: 10px;
    counter-increment: info-counter;
}

.info-section ol li::before,
.info-highlight ol li::before,
.faq-answer ol li::before,
.info-cta ol li::before
{
    content: counter(info-counter) '.';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--section, var(--c1, #555));
    min-width: 24px;
}







/*
// Farbschemas per data-type
.ba-card[data-type="feuer"]        .ba-card-header { background: linear-gradient(135deg, #D84315 0%, #F4511E 100%); }
.ba-card[data-type="erde"]         .ba-card-header { background: linear-gradient(135deg, #5D4037 0%, #6D4C41 100%); }
.ba-card[data-type="see"]          .ba-card-header { background: linear-gradient(135deg, #0277BD 0%, #0288D1 100%); }
.ba-card[data-type="wald"]         .ba-card-header { background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%); }
.ba-card[data-type="anonym"]       .ba-card-header { background: linear-gradient(135deg, #424242 0%, #616161 100%); }
.ba-card[data-type="kolumbarium"]  .ba-card-header { background: linear-gradient(135deg, #8D6E63 0%, #A1887F 100%); }
.ba-card[data-type="diamant"]      .ba-card-header { background: linear-gradient(135deg, #6A1B9A 0%, #7B1FA2 100%); }
.ba-card[data-type="weltraum"]     .ba-card-header { background: linear-gradient(135deg, #1A237E 0%, #283593 100%); }
.ba-card[data-type="koerperspende"].ba-card-header { background: linear-gradient(135deg, #00695C 0%, #00796B 100%); }
.ba-card[data-type="sozial"]       .ba-card-header { background: linear-gradient(135deg, #C62828 0%, #D32F2F 100%); }
.ba-card[data-type="ausland"]      .ba-card-header { background: linear-gradient(135deg, #F57C00 0%, #FB8C00 100%); }
.ba-card[data-type="natur"]        .ba-card-header { background: linear-gradient(135deg, #558B2F 0%, #689F38 100%); }
*/
.ba-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ba-card-desc {
    font-size: 1.01rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

.ba-card-facts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ba-card-fact {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--ink-muted);
}

.ba-card-fact i {
    color: var(--section);
    font-size: 0.86rem;
}

.ba-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.ba-tag {
    padding: 4px 12px;
    background: var(--section-light);
    color: var(--section);
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 500;
}

.ba-card-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--section);
    text-decoration: none;
    background: var(--white);
}

.ba-card-link:hover {
    background: var(--section-light);
}



@media (max-width: 768px) {
    .ba-card .ba-card-text h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        word-wrap: break-word;
        hyphens: auto;
    }
    .vorsorge-gruppe {
        padding: 0 0.5rem;
    }
    .ba-grid {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .ba-card .ba-card-text h3 {
        font-size: 1.15rem;
    }
}


/* Vergleichstabelle ------------------------------- */

        .ba-compare-section {
            background: #F8F8F8;
            padding: 60px 20px;
            margin-top: 60px;
        }
        
        .ba-compare-inner {
            max-width: var(--mw);
            margin: 0 auto;
        }
        
        .ba-compare-title {
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.88rem;
            margin-bottom: 40px;
            color: #1A1A1A;
        }
        
        .ba-compare-table {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        
        .ba-compare-table table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .ba-compare-table th {
            background: #546E7A;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .ba-compare-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .ba-compare-table tr:last-child td {
            border-bottom: none;
        }
        
        .ba-compare-table tr:hover {
            background: #F5F5F5;
        }
        
        @media (max-width: 768px) {
            .ba-overview-hero h1 { font-size: 2.3rem; }
            .ba-grid { grid-template-columns: 1fr; gap: 20px; }
            .ba-filter-inner { flex-direction: column; align-items: stretch; }
            .ba-compare-table { overflow-x: auto; }
        }



.check { color: #2E7D6F; }
.cross  { color: #C62828; }


/* ══════════════════════════════════════════════════════════════════
   6. BESTATTUNGSART – DETAILSEITE (info-*)
   ══════════════════════════════════════════════════════════════════ */

/* Hero */
.info-hero {
    padding: 48px 0 40px;
    position: relative;
    overflow: hidden;
    color: white;
}


.info-hero-inner {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 40px;
}

.info-hero-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-hero-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    flex-shrink: 0;
    color: white;
}

.info-hero-inner h1 {
    font-family: var(--serif);
    font-size: 3.22rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.info-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.88);
    /* max-width: 600px; */
}

/* Breadcrumb */
.info-breadcrumb {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 16px var(--pad) 0;
    font-size: 0.92rem;
    color: var(--white);
    display: flex;
    gap: 8px;
    align-items: center;
}

.info-breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.info-breadcrumb a:hover {
    color: var(--white);
}

/* 2-Column Grid */
.info-grid {
    max-width: var(--mw);
    margin: 48px auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}



/* Content Bereich */
.info-content {
    min-width: 0;
}

/* Table of Contents */
.info-toc {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    /* margin-bottom: 16px; */
}
.info-toc h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg);
}
.info-toc a {
    display: block;
    padding: 5px 0;
    font-size: 0.99rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: .15s;
    border-left: 2px solid transparent;
    padding-left: 10px;
}
.info-toc a:hover,
.info-toc a.active {
    color: var(--section);
    border-left-color: var(--section);
}




/* Tabellen-Wrapper (overflow-x scroll) */
.info-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--r);
    border: 1px solid var(--border);
}

/* Info-Wrap (allgemeiner Wrapper) */
.info-wrap {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* Zitat-Quelle */
.quote-source {
    display: block;
    margin-top: 12px;
    font-size: 0.92rem;
    color: var(--ink-muted);
    font-style: normal;
    font-family: var(--sans);
}

.info-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    margin-bottom: 24px;
}

.info-section h2 {
    font-family: var(--serif);
    font-size: 1.84rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

.info-section h3 {
    font-family: var(--serif);
    font-size: 1.38rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ink);
}

.info-section p {
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

.info-section ul {
    list-style: none;
    margin-bottom: 14px;
}

.info-section ul li {
    padding: 4px 0 4px 22px;
    position: relative;
    font-size: 1.03rem;
    color: var(--ink-soft);
}

.info-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--section);
    font-weight: 600;
}

/* Highlight Box */
.info-highlight {
    background: var(--section-light);
    border-left: 3px solid var(--section);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin-top: 20px 0;
    font-size: 1.03rem;
    color: var(--ink-soft);
}

/* Quote */
.info-quote {
    background: var(--bg);
    border-radius: var(--r);
    padding: 24px 28px;
    margin: 24px 0;
    font-family: var(--serif);
    font-size: 1.32rem;
    font-style: italic;
    color: var(--ink-soft);
    border: 1px solid var(--border);
    position: relative;
}

.info-quote::before {
    content: '"';
    font-size: 4.6rem;
    color: var(--section-light);
    position: absolute;
    top: -10px;
    left: 16px;
    font-family: var(--serif);
    line-height: 1;
}

/* Steps / Ablauf */
.info-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    counter-reset: step;
}

.info-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    counter-increment: step;
}

.info-step-content {
    flex: 1;
}

.info-step::before {
    content: counter(step);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--section);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.01rem;
    flex-shrink: 0;
}

/* Tabelle */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.01rem;
    margin: 16px 0;
}

.info-table th {
    background: var(--section-light);
    color: var(--section);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.94rem;
}

.info-table td {
    padding: 11px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft);
}

.info-table tr:last-child td {
    border-bottom: 0;
}


/* ═══════════════════════════════════════════════════════════
   INFO HERO STATS — Stat-Bubbles in Hero-Sektion
   (verwendet z.B. auf /bestattung/konfession/nicht-religioes)
   ═══════════════════════════════════════════════════════════ */

.info-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.info-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .85rem;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.info-hero-stat i {
    font-size: 1.03rem;
    opacity: .9;
}

/* Mobile: kleinere Bubbles */
@media (max-width: 640px) {
    .info-hero-stats {
        gap: .4rem;
        margin-top: 1rem;
    }
    .info-hero-stat {
        padding: .35rem .7rem;
        font-size: 0.86rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   INFO HERO STATS — Pillen-Bubbles in Hero-Sektion
   (verwendet z.B. auf /bestattung/konfession/nicht-religioes)
   ═══════════════════════════════════════════════════════════ */

.info-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1.25rem;
}

.info-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .85rem;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    white-space: nowrap;
}

.info-hero-stat i {
    font-size: 1.03rem;
    opacity: .9;
}


/* ═══════════════════════════════════════════════════════════
   INFO CARD GRID — gemeinsames Pattern für:
   - .info-vergleich-grid / .info-vergleich-item / .info-vergleich-icon
   - .info-ritual-grid    / .info-ritual-item    / .info-ritual-icon
   - .info-ablauf-grid    / .info-ablauf-item    / .info-ablauf-icon
   Alle drei nutzen dieselbe Card-Optik — nur die Klassennamen
   variieren je Sektion (semantisch unterschiedliche Inhalte).
   ═══════════════════════════════════════════════════════════ */

.info-vergleich-grid,
.info-ritual-grid,
.info-ablauf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.info-vergleich-item,
.info-ritual-item,
.info-ablauf-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1.25rem 1rem;
    background: var(--paper, #fff);
    border: 1px solid var(--line, #e5e5e5);
    border-radius: 12px;
}

.info-vergleich-item:hover,
.info-ritual-item:hover,
.info-ablauf-item:hover {
    border-color: var(--c1, #757575);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/* Icon-Bubble (oben in jeder Card) */
.info-vergleich-icon,
.info-ritual-icon,
.info-ablauf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--c-light, #f5f5f5) 0%, var(--c-light, #eeeeee) 100%);
    color: var(--c-dark, #212121);
    font-size: 1.32rem;
    margin-bottom: .25rem;
}

/* Größere Schrift für Emoji-Icons (z.B. 🕯️ in info-ritual-icon) */
.info-vergleich-icon:not(:has(i)),
.info-ritual-icon:not(:has(i)),
.info-ablauf-icon:not(:has(i)) {
    font-size: 1.72rem;
}

.info-vergleich-item h4,
.info-ritual-item h4,
.info-ablauf-item h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink, #1a1a1a);
}

.info-vergleich-item p,
.info-ritual-item p,
.info-ablauf-item p {
    margin: 0;
    font-size: 1.01rem;
    line-height: 1.5;
    color: var(--ink-soft, #555);
}

/* Sub-Element — z.B. Kosten-Angabe in Vergleich-Items */
.info-vergleich-kosten {
    margin-top: auto;
    padding-top: .5rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--c-dark, #212121);
    border-top: 1px solid var(--line, #e5e5e5);
}


/* ═══════════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .info-hero-stats {
        gap: .4rem;
        margin-top: 1rem;
    }
    .info-hero-stat {
        padding: .35rem .7rem;
        font-size: 0.86rem;
    }

    .info-vergleich-grid,
    .info-ritual-grid,
    .info-ablauf-grid {
        grid-template-columns: 1fr;
        gap: .75rem;
    }
}






/* ══════════════════════════════════════════════════════════════════
   ERINNERUNGSSTÜCKE AUS ASCHE — Als Liste
   Schlicht und informativ, passend zum Seitenstil
   ══════════════════════════════════════════════════════════════════ */

.asche-liste {
    margin: 24px 0;
    display: grid;
    gap: 20px;
}

.asche-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.asche-item:last-child {
    border-bottom: 0;
}

.asche-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-light, var(--section-light));
    color: var(--c-dark, var(--section));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.26rem;
    flex-shrink: 0;
}

.asche-item-content h4 {
    font-family: var(--serif);
    font-size: 1.32rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.asche-item-content p {
    font-size: 1.03rem;
    color: var(--ink-soft);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .asche-item {
        grid-template-columns: 40px 1fr;
        gap: 14px;
    }
    .asche-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
}




.info-warning {
    background: var(--c-light, #FFEBEE);
    border-left: 5px solid var(--c1, var(--soforthilfe));
    border-radius: 8px;
    padding: 24px 28px;
    margin: 32px 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: start;
}

.info-warning-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c1, var(--soforthilfe));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.26rem;
    flex-shrink: 0;
}

.info-warning-content h4 {
    font-family: var(--serif);
    font-size: 1.38rem;
    font-weight: 700;
    color: var(--c-dark, var(--soforthilfe));
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.info-warning-content p {
    font-size: 1.06rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0 0 10px 0;
}

.info-warning-content p:last-child {
    margin-bottom: 0;
}

.info-warning-content strong {
    color: var(--c-dark, var(--ink));
    font-weight: 600;
}

@media (max-width: 600px) {
    .info-warning {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 12px;
    }
}















/* ── IMAGE PLACEHOLDER ─────────────────────────────────── */
.info-img {
    width: 100%;
    border-radius: var(--r);
    overflow: hidden;
    margin: 20px 0;
    background: var(--bg);
    border: 1px solid var(--border);
}
.info-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    color: var(--ink-faint);
}
.info-img-placeholder i {
    font-size: 2.3rem;
    margin-bottom: 10px;
    opacity: .4;
}
.info-img-placeholder .img-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-muted);
    margin-bottom: 4px;
}
.info-img-placeholder .img-desc {
    font-size: 0.83rem;
    max-width: 300px;
}

/* Breites Bild (volle Breite) */
.info-img-wide {
    margin: 24px 0;
    width: 100%;
}

.info-img-wide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bild mit Float (Text umfließt) */
.info-img-float {
    float: right;
    width: 45%;
    margin: 4px 0 16px 24px;
}
.info-img-float .info-img-placeholder {
    padding: 32px 16px;
}


.imagetext {
    position: relative;
    display: inline-block;
    line-height: 0;
    margin: 0;  /* figure hat default-margin */
}

.imagetext img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.imagetext figcaption {
    position: absolute;
    bottom: 10px;
    right: 12px;
    color: #8b8b8b;
    font-family: var(--sans);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    pointer-events: none;
    text-shadow:
        -1px -1px 0 rgba(0, 0, 0, 0.2),
         1px -1px 0 rgba(0, 0, 0, 0.2),
        -1px  1px 0 rgba(0, 0, 0, 0.2),
         1px  1px 0 rgba(0, 0, 0, 0.2);
}

.figcaption-credit {
    color: var(--ink-muted);
    font-size: 0.86rem;
    margin-left: 8px;
}



/*
/* Bild-Wrapper mit Label unten rechts 
.imagetext {
    position: relative;
    display: inline-block;
    line-height: 0;
}

.imagetext img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.imagetext::after {
    content: attr(data-label);
    position: absolute;
    bottom: 10px;
    right: 12px;
    font-family: var(--sans);
    font-size: 0.86rem;
    font-weight: 500;
    color: #000;
    letter-spacing: 0.3px;
    line-height: 1;
    pointer-events: none;
        
    color: #000;
    text-shadow:
        -1px -1px 0 rgba(255, 255, 255, 0.2),
        1px -1px 0 rgba(255, 255, 255, 0.2),
        -1px  1px 0 rgba(255, 255, 255, 0.2),
        1px  1px 0 rgba(255, 255, 255, 0.2);
}
.imagetext:not([data-label])::after {
    content: 'Symbolisches Bild, KI generiert';
}
*/

/* Sidebar */
.info-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* CTA Box ----------------------------------------*/
.info-cta {
    background: var(--section);
    border-radius: var(--r);
    padding: 24px 20px;
    color: white;
    text-align: center;
    /* margin-bottom: 16px; */
}
.info-cta h4 {
    font-size: 1.01rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.info-cta p {
    font-size: 0.86rem;
    opacity: .85;
    margin-bottom: 14px;
    line-height: 1.4;
}
.info-cta a {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    color: var(--section);
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}
.info-cta a:hover {
    background: var(--section-light);
}













/* ─── Generator-CTA Box (auf Info-Seiten) ────────────────────── */
.gen-cta {
    padding: 0.478rem 1rem;
    background: linear-gradient(135deg, #fdfaf3 0%, #f3ebd9 100%);
    border: 1px solid #e8d9b4;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.gen-cta-text {
    flex: 1;
    min-width: 260px;
}
.gen-cta-title {
    margin: 0 0 0.4rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}
.gen-cta-desc {
    margin: 0 0 0.6rem 0;
    color: #3a3a3a;
    line-height: 1.55;
    font-size: 0.95rem;
}
.gen-cta-trust {
    font-size: 0.88rem;
    color: #555;
    font-weight: 500;
}
.gen-cta-trust-icon {
    color: oklch(0.38 0.05 160);
    font-weight: 700;
    margin-right: 0.2rem;
}
.gen-cta-btn {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: oklch(0.38 0.05 160);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    white-space: nowrap;
}
.gen-cta-btn:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
@media (max-width: 600px) {
    .gen-cta {
        padding: 1.4rem 1.3rem;
    }
    .gen-cta-btn {
        width: 100%;
        text-align: center;
    }
}


















/* Related Links --------------------------------------------------------*/
.info-related {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    /* margin-bottom: 16px; */
}
.info-related h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-muted);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--bg);
}
.info-related a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 1.01rem;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid var(--bg);
    transition: .15s;
}
.info-related a:last-child { border-bottom: 0; }
.info-related a:hover { color: var(--section); }
.info-related a i {
    width: 18px;
    text-align: center;
    font-size: 0.86rem;
    color: var(--ink-faint);
}








/* FAQ */
.info-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    font-family: var(--sans);
    font-size: 1.06rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
    gap: 12px;
}

.faq-question:hover {
    color: var(--section);
}

.faq-arrow {
    font-size: 0.86rem;
    color: var(--ink-muted);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 0 16px;
    font-size: 1.01rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}
.faq-sources {
    margin-top: 20px !important;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 0.9rem !important;
    color: var(--ink-muted) !important;
    line-height: 1.6;
}

.faq-sources a {
    color: var(--ink-soft);
    text-decoration: underline;
    text-decoration-color: var(--border);
}

.faq-sources a:hover {
    text-decoration-color: currentColor;
}




/* ───────────────────────────────────────────────────────────
   FAKTEN-BOX (Schnelle Infos)
   ─────────────────────────────────────────────────────────── */

.ba-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
    gap: 15px;
    margin: 30px 0;
}

.ba-fact {
    background: linear-gradient(135deg, var(--section-light) 0%, white 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.ba-fact-icon {
    font-size: 2.88rem;
    margin-bottom: 10px;
    color: var(--section-color);
    opacity: 0.8;
}

.ba-fact-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--section-color);
    margin-bottom: 5px;
}

.ba-fact-label {
    font-size: 1.03rem;
    color: #666;
    font-weight: 500;
}

/* Tablet & kleinere Desktops */
@media (max-width: 900px) {
    .ba-fact {
        padding: 16px;
    }
    .ba-fact-icon {
        font-size: 1.72rem;
    }
    .ba-fact-value {
        font-size: 1.61rem;
    }
    .ba-fact-label {
        font-size: 0.92rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .ba-facts {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .ba-fact {
        padding: 12px;
    }
    .ba-fact-icon {
        font-size: 1.49rem;
    }
    .ba-fact-value {
        font-size: 1.38rem;
    }
    .ba-fact-label {
        font-size: 0.83rem;
    }
}





/* Timeline */
.ba-timeline {
    position: relative;
    padding-left: 28px;
}

.ba-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--section-light);
}

.ba-timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.ba-timeline-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--section);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--section-light);
}

.ba-timeline-item h4 {
    font-size: 1.03rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.ba-timeline-item p {
    font-size: 0.97rem;
    color: var(--ink-muted);
    line-height: 1.5;
}



/* ───────────────────────────────────────────────────────────────────────────────────────────────────────────
   VERGLEICHS-BOX (Vor-/Nachteile)
   ─────────────────────────────────────────────────────────────────────────────────────────────────────────── */

.ba-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .ba-comparison {
        grid-template-columns: 1fr;
    }
}

.ba-pros,
.ba-cons {
    padding: 25px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.ba-pros {
    border-left: 4px solid #4CAF50;
}

.ba-cons {
    border-left: 4px solid #FF5722;
}

.ba-pros h4,
.ba-cons h4 {
    margin: 0 0 15px 0;
    font-size: 1.32rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ba-pros h4 {
    color: #4CAF50;
}

.ba-cons h4 {
    color: #FF5722;
}

.ba-pros ul,
.ba-cons ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.ba-pros li,
.ba-cons li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.ba-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.38rem;
}

.ba-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #FF5722;
    font-weight: bold;
    font-size: 1.38rem;
}


.ba-pros ul li::before,
.ba-cons ul li::before {
    top: 0;
    line-height: 1.6;
    font-size: 18px;
}

/* ───────────────────────────────────────────────────────────
   SIDEBAR - ALTERNATIVE BESTATTUNGSARTEN
   ─────────────────────────────────────────────────────────── */

.ba-alternatives {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    /* margin-bottom: 20px; */
}

.ba-alternatives h4 {
    margin: 0 0 15px 0;
    font-size: 1.26rem;
    font-weight: 600;
    color: #1A1A1A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-alternatives a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #F8F8F8;
    color: #444;
    text-decoration: none;
    font-size: 1.09rem;
    transition: all 0.2s;
}

.ba-alternatives a:hover {
    background: var(--section-light);
    color: var(--section-color);
}

.ba-alternatives a i {
    font-size: 1.26rem;
    opacity: 0.7;
}






/* ══════════════════════════════════════════════════════════════════
   8. BESTATTUNGSARTEN – INFO-HERO FARBEN (Detailseiten)
   Nutzt zentrale data-type Variablen (siehe Sektion mit Helpers)
   ══════════════════════════════════════════════════════════════════ */

/* Hero auf Detailseiten — data-type überschreibt Fallback */
.info-hero[data-type] {
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
}

/* Icon-Kreis im Hero */
.info-hero[data-type] .info-hero-icon {
    background: rgba(255,255,255,.15);
}




/* ══════════════════════════════════════════════════════════════════
   9. KONFESSIONEN – ÜBERSICHT
   ══════════════════════════════════════════════════════════════════ */

/* Hero */
.konf-overview-hero {
    background: linear-gradient(135deg, #2E3B4E 0%, #1A2332 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.konf-overview-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,.05) 0%, transparent 50%);
}

.konf-hero-content {
    position: relative;
    z-index: 1;
}

.konf-overview-hero h1 {
    font-family: var(--serif);
    font-size: 3.45rem;
    font-weight: 600;
    margin: 0 0 20px;
}

.konf-overview-hero p {
    font-size: 1.38rem;
    opacity: .85;
    max-width: var(--mw);
    margin: 0 auto;
}

/* Stats */
.konf-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,.15);
    flex-wrap: wrap;
}

.konf-stat {
    text-align: center;
}

.konf-stat-value {
    font-family: var(--serif);
    font-size: 2.88rem;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.konf-stat-label {
    font-size: 0.98rem;
    opacity: .7;
}

/* Grid */
.konf-grid {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}












/* Konfessions-Karte */
.konf-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: .3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.konf-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.15);
}

/* Card Header – farbiger Gradient-Bereich */
.konf-card-header {
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #5D4037 0%, #795548 100%); /* Fallback */
}


.konf-card[data-type] .konf-card-header {
    background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
}




.konf-card-header::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.konf-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    transition: .3s;
}


.konf-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.07rem;
    color: white;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}

.konf-card-header h3 {
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.konf-card-subtitle {
    font-size: 0.98rem;
    color: rgba(255,255,255,.8);
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: .9;
}

/* Card Body */
.konf-card-body {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.konf-card-stats {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.konf-card-stat {
    text-align: center;
    font-size: 0.86rem;
    color: var(--ink-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.konf-card-stat i {
    font-size: 0.92rem;
    color: var(--section);
}

.konf-card-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.konf-card-highlights h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ink-muted);
    margin-bottom: 6px;
}

.konf-highlight-item {
    font-size: 0.97rem;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.konf-highlight-item i {
    color: var(--section);
    font-size: 0.86rem;
    width: 14px;
    flex-shrink: 0;
}

.konf-card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.konf-tag {
    padding: 4px 12px;
    background: var(--section-light);
    color: var(--section);
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 500;
}

.konf-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-top: 1px solid var(--border);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--section);
    text-decoration: none;
    transition: .2s;
    background: var(--white);
}

.konf-card-link:hover {
    background: var(--section-light);
}










/* ══════════════════════════════════════════════════════════════════
   KONFESSIONEN — data-type Farb-System
   (analog zu Bestattungsarten — wirkt auf info-hero, ba-card,
   info-section etc. über die CSS-Variablen --c1, --c2, --c-light, --c-dark)
   ══════════════════════════════════════════════════════════════════ */

[data-type="christlich"] {
    --c1: #5D4037;
    --c2: #795548;
    --c-light: #D7CCC8;
    --c-dark: #3E2723;
}

[data-type="katholisch"] {
    --c1: #6D4C41;
    --c2: #8D6E63;
    --c-light: #EFEBE9;
    --c-dark: #4E342E;
}

[data-type="evangelisch"] {
    --c1: #4E342E;
    --c2: #6D4C41;
    --c-light: #D7CCC8;
    --c-dark: #3E2723;
}

[data-type="islamisch"] {
    --c1: #00695C;
    --c2: #00897B;
    --c-light: #B2DFDB;
    --c-dark: #004D40;
}

[data-type="juedisch"] {
    --c1: #1565C0;
    --c2: #1976D2;
    --c-light: #BBDEFB;
    --c-dark: #0D47A1;
}

[data-type="orthodox"] {
    --c1: #6A1B9A;
    --c2: #7B1FA2;
    --c-light: #E1BEE7;
    --c-dark: #4A148C;
}

[data-type="hinduistisch"] {
    --c1: #D84315;
    --c2: #F4511E;
    --c-light: #FFCCBC;
    --c-dark: #BF360C;
}

[data-type="buddhistisch"] {
    --c1: #F57C00;
    --c2: #FB8C00;
    --c-light: #FFE0B2;
    --c-dark: #E65100;
}

[data-type="naturspirituell"] {
    --c1: #558B2F;
    --c2: #689F38;
    --c-light: #DCEDC8;
    --c-dark: #33691E;
}

[data-type="nicht-religioes"] {
    --c1: #616161;
    --c2: #757575;
    --c-light: #E0E0E0;
    --c-dark: #424242;
}






[data-type="kosten"] {
    --c1: #37474F;
    --c2: #455A64;
    --c-light: #ECEFF1;
    --c-dark: #263238;
}
 
[data-type="vorsorge"] {
    --c1: #1A237E;
    --c2: #283593;
    --c-light: #E8EAF6;
    --c-dark: #0D1457;
}
 







/* Farbschemas per data-type */
/*
.konf-card[data-type="christlich"]     .konf-card-header { background: linear-gradient(135deg, #5D4037 0%, #795548 100%); }
.konf-card[data-type="muslimisch"]     .konf-card-header { background: linear-gradient(135deg, #00695C 0%, #00897B 100%); }
.konf-card[data-type="juedisch"]       .konf-card-header { background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%); }
.konf-card[data-type="nichtreligi"]    .konf-card-header { background: linear-gradient(135deg, #616161 0%, #757575 100%); }
.konf-card[data-type="hindu"]          .konf-card-header { background: linear-gradient(135deg, #D84315 0%, #F4511E 100%); }
.konf-card[data-type="buddhistisch"]   .konf-card-header { background: linear-gradient(135deg, #F57C00 0%, #FB8C00 100%); }
.konf-card[data-type="orthodox"]       .konf-card-header { background: linear-gradient(135deg, #6A1B9A 0%, #7B1FA2 100%); }
.konf-card[data-type="naturspirituel"] .konf-card-header { background: linear-gradient(135deg, #558B2F 0%, #689F38 100%); }
*/


/* Info Sektion (unten auf Übersicht) */
.konf-info-section {
    background: #F8F8F8;
    padding: 60px 20px;
    margin-top: 60px;
}

.konf-info-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.konf-info-title {
    text-align: center;
    margin-bottom: 48px;
}

.konf-info-title h2 {
    font-family: var(--serif);
    font-size: 2.53rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.konf-info-title p {
    color: var(--ink-muted);
    font-size: 1.09rem;
}

.konf-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.konf-info-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px;
}

.konf-info-card h4 {
    font-family: var(--serif);
    font-size: 1.26rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
}

.konf-info-card p {
    font-size: 0.98rem;
    color: var(--ink-muted);
    line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════════
   10. UTILITIES & SHARED
   ══════════════════════════════════════════════════════════════════ */
.container {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 600;
    background: var(--section-light);
    color: var(--section);
}

.stars {
    color: #F59E0B;
    font-size: 0.98rem;
    letter-spacing: .05em;
}

.nbox {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px 24px;
}

.nbox h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.nbox p {
    font-size: 0.98rem;
    color: var(--ink-muted);
    line-height: 1.55;
}


/* ══════════════════════════════════════════════════════════════════
   11. MODAL & LIGHTBOX
   ══════════════════════════════════════════════════════════════════ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: var(--pad);
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
}

.modal h2 {
    font-family: var(--serif);
    font-size: 1.84rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-sub {
    font-size: 1.01rem;
    color: var(--ink-muted);
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: 0;
    font-size: 1.26rem;
    cursor: pointer;
    color: var(--ink-muted);
    transition: .2s;
}

.modal-close:hover {
    color: var(--ink);
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 600;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lb-content {
    position: relative;
    max-width: 900px;
    width: 90vw;
    height: 500px;
    background: var(--ink);
    border-radius: 8px;
    overflow: hidden;
}

.lb-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: rgba(0,0,0,.6);
    color: white;
    font-size: 0.98rem;
}

.lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,.5);
    border: 0;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    z-index: 10;
}

.lb-close:hover {
    background: rgba(0,0,0,.8);
}




/* ══════════════════════════════════════════════════════════════════
   12. FOOTER
   ══════════════════════════════════════════════════════════════════ */


   

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #1e1e1e; color: #ccc; padding: 56px 0 0; margin-top: 80px; }

.footer-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #333;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 10px; }
.footer-logo text { fill: #ccc !important; }
.footer-logo path { fill: #ccc !important; }
.footer-slogan { font-size: 14.95px; color: #888; font-style: italic; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col-title { font-size: 13.8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 16.1px; color: #888; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-copy { font-size: 14.95px; color: #666; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 20.7px; opacity: 0.6; transition: opacity var(--transition); }
.footer-social a:hover { opacity: 1; }









/* ══════════════════════════════════════════════════════════════════
   13. RESPONSIVE
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .konf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .konf-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ba-alternatives {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-sidebar {
        position: static;
    }
    .info-img-float {
        float: none;
        width: 100%;
        margin: 16px 0;
    }
    .site-header {
        padding: 14px 20px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .ba-comparison {
        grid-template-columns: 1fr;
    }
    .ba-overview-hero h1,
    .konf-overview-hero h1 {
        font-size: 2.3rem;
    }
    .info-hero-inner h1 {
        font-size: 2.18rem;
    }
    .konf-stats {
        gap: 24px;
    }
}


@media (max-width: 768px) {
    /*
    .ba-timeline {
        padding-left: 30px;
    }
    
    .ba-timeline-item {
        padding-left: 15px;
    }
    
    .ba-facts {
        grid-template-columns: repeat(1, 1fr);
    }
    */
}




@media (max-width: 600px) {
    :root {
        --pad: 16px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .site-header {
        padding: 12px 16px;
    }
    .ba-grid {
        grid-template-columns: 1fr;
    }
    .konf-grid {
        grid-template-columns: 1fr;
    }
    .konf-info-grid {
        grid-template-columns: 1fr;
    }

    .ba-alternatives {
        grid-template-columns: 1fr;
    }
    .ba-filter-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .modal {
        padding: 24px 20px;
    }
    .search-strip {
        padding: 10px 0;
    }
    .lb-content {
        height: 300px;
    }

    
    .footer-nav { grid-template-columns: 1fr 1fr; }
}











/* ═══════════════════════════════════════════════════════════
   VORSORGE-GRUPPEN-STARTSEITEN
   Verwandte-Themen-Grid und Hero-Breadcrumb
   ═══════════════════════════════════════════════════════════ */


/* Breadcrumb im Hero */
.info-breadcrumb-hero {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.info-breadcrumb-hero a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.info-breadcrumb-hero a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Verwandte-Themen-Grid */
.vorsorge-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.vorsorge-related-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.25rem;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-left: 4px solid var(--c1, #1A237E);
    border-radius: 8px;
    text-decoration: none;
    color: var(--ink, #1A237E);
}

.vorsorge-related-card i {
    font-size: 1.4rem;
    color: var(--c1, #1A237E);
    flex-shrink: 0;
}

.vorsorge-related-card span {
    font-size: 1rem;
    font-weight: 600;
}


/* Mobile */
@media (max-width: 768px) {
    .vorsorge-related-grid {
        grid-template-columns: 1fr;
    }
}

.vorsorge-team-hinweis {
    display: flex;
    gap: 1.25rem;
    max-width: var(--mw);
    margin: 1.5rem auto 2.5rem;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border-left: 4px solid #F9A825;
    border-radius: 8px;
    padding: 20px;
}

.vorsorge-team-icon {
    flex-shrink: 0;
    font-size: 1.8rem;
    color: #F9A825;
    line-height: 1;
}

.vorsorge-team-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 0.6rem;
    color: #5D4037;
}

.vorsorge-team-text p:last-child {
    margin-bottom: 0;
}

.vorsorge-team-signatur {
    font-style: italic;
    color: #6D4C41;
    margin-top: 0.75rem !important;
}

@media (max-width: 768px) {
    .vorsorge-team-hinweis {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.25rem 1rem;
        margin: 1rem 0.5rem 1.75rem;
    }
}












/* ═══════════════════════════════════════════════════════════
   VORSORGE-HUB — nur Themengruppen-Header
   Die ba-card-Elemente nutzen 1:1 das vorhandene Styling
   von /bestattung/bestattungsarten/
   ═══════════════════════════════════════════════════════════ */

.vorsorge-gruppe {
    margin: 2.5rem auto 1rem;
    max-width: var(--mw);
    padding: 0 1rem;
}

.vorsorge-gruppe-header {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--c-light, #E0E0E0);
}

.vorsorge-gruppe-header h2 {
    font-size: 1.5rem;
    margin: 0 0 0.4rem;
    color: var(--ink, #1A237E);
}

.vorsorge-gruppe-header h2 i {
    margin-right: 0.5rem;
    color: var(--c1, #1A237E);
}

.vorsorge-gruppe-header p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-soft, #5D4037);
    margin: 0;
}

@media (max-width: 768px) {
    .vorsorge-gruppe-header h2 {
        font-size: 1.25rem;
    }
    .vorsorge-gruppe-header p {
        font-size: 0.95rem;
    }
}