/* =================================================================
 * Tierschutz Libelle — site.css
 * Editorial / warm / restrained. Bordeaux + Gold + Cream identity,
 * but composed like a magazine, not a CMS dashboard.
 * No SCSS build, no external requests, only system-font stacks.
 * ================================================================= */

/* ---------- Tokens ---------- */
:root {
    --tl-bordeaux:        #7d2f2f;
    --tl-bordeaux-deep:   #5a1f1f;
    --tl-bordeaux-soft:   #9a4848;
    --tl-gold:            #c89a3a;
    --tl-gold-bright:     #e2b955;
    --tl-gold-deep:       #8d6a1f;
    --tl-cream:           #f3eee4;
    --tl-cream-soft:      #faf6ee;
    --tl-paper:           #ffffff;
    --tl-ink:             #221c19;
    --tl-ink-soft:        #5a4f48;
    --tl-rule:            #e6dac5;

    --tl-font-display: Georgia, "Iowan Old Style", "Apple Garamond", "Palatino Linotype", "Times New Roman", serif;
    --tl-font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --tl-shadow-sm: 0 1px 2px rgba(40, 22, 22, 0.05), 0 2px 6px rgba(40, 22, 22, 0.04);
    --tl-shadow-md: 0 4px 14px rgba(40, 22, 22, 0.08), 0 12px 32px -16px rgba(40, 22, 22, 0.18);
    --tl-shadow-lg: 0 18px 48px -22px rgba(40, 22, 22, 0.35);

    /* Bootstrap variable overrides */
    --bs-primary: var(--tl-bordeaux);
    --bs-primary-rgb: 125, 47, 47;
    --bs-warning: var(--tl-gold);
    --bs-warning-rgb: 200, 154, 58;
    --bs-body-bg: var(--tl-cream);
    --bs-body-color: var(--tl-ink);
    --bs-link-color: var(--tl-bordeaux);
    --bs-link-hover-color: var(--tl-bordeaux-deep);
    --bs-link-color-rgb: 125, 47, 47;
    --bs-body-font-family: var(--tl-font-body);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
/* Guard gegen versehentlichen Horizontal-Scroll (z.B. der mobile
 * Schützlinge-Streifen). Gehört auf ``body``, NICHT ``html``: beim
 * Root-Element gelten Sonder-Propagationsregeln zum Viewport, ``clip``
 * greift dort nicht. ``clip`` statt ``hidden`` → kein Scroll-Container,
 * daher bleibt ``position: sticky`` (Datenschutz-TOC) intakt und die
 * vertikale Achse normal; interne overflow-x:auto-Bereiche (Karussell)
 * scrollen weiterhin. */
body { overflow-x: clip; }

body {
    font-family: var(--tl-font-body);
    color: var(--tl-ink);
    background: var(--tl-cream);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.tl-display, .tl-serif {
    font-family: var(--tl-font-display);
    font-weight: 600;
    color: var(--tl-ink);
    letter-spacing: -0.005em;
    line-height: 1.18;
}

p { line-height: 1.65; }

a { transition: color 0.15s ease; }

::selection { background: var(--tl-gold); color: var(--tl-bordeaux-deep); }

/* ---------- Reusable bits ---------- */

/* Eyebrow label — gold caps, used above section headlines */
.tl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-deep);
    margin: 0 0 0.85rem;
}
.tl-eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* Buttons */
.btn { font-family: var(--tl-font-body); }
.btn-primary {
    --bs-btn-bg: var(--tl-bordeaux);
    --bs-btn-border-color: var(--tl-bordeaux);
    --bs-btn-hover-bg: var(--tl-bordeaux-deep);
    --bs-btn-hover-border-color: var(--tl-bordeaux-deep);
    --bs-btn-active-bg: var(--tl-bordeaux-deep);
    --bs-btn-active-border-color: var(--tl-bordeaux-deep);
}
.btn-warning, .btn-gold {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--tl-gold);
    --bs-btn-border-color: var(--tl-gold);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--tl-gold-deep);
    --bs-btn-hover-border-color: var(--tl-gold-deep);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--tl-gold-deep);
    --bs-btn-active-border-color: var(--tl-gold-deep);
}
.btn-outline-primary {
    --bs-btn-color: var(--tl-bordeaux);
    --bs-btn-border-color: var(--tl-bordeaux);
    --bs-btn-hover-bg: var(--tl-bordeaux);
    --bs-btn-hover-border-color: var(--tl-bordeaux);
    --bs-btn-active-bg: var(--tl-bordeaux-deep);
}

/* Inline arrow link — used in cards and CTAs */
.tl-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--tl-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tl-bordeaux);
    text-decoration: none;
    border: 0;
    padding: 0;
    background: transparent;
}
.tl-arrow-link::after {
    content: "→";
    font-family: var(--tl-font-body);
    font-weight: 400;
    transform: translateX(0);
    transition: transform 0.2s ease;
}
.tl-arrow-link:hover { color: var(--tl-bordeaux-deep); }
.tl-arrow-link:hover::after { transform: translateX(4px); }

.tl-arrow-link--gold { color: var(--tl-gold-deep); }
.tl-arrow-link--gold:hover { color: var(--tl-bordeaux); }

/* Section headline cluster */
.tl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-section-head h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    margin: 0;
    color: var(--tl-bordeaux);
    font-style: italic;
    font-weight: 500;
}
.tl-section-head .tl-eyebrow { margin-bottom: 0.3rem; }

/* ---------- Page wrapper ---------- */
.tl-page {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    background: var(--tl-paper);
    box-shadow: var(--tl-shadow-lg);
    position: relative;
}
.tl-page > .container,
.tl-page .container {
    max-width: 100%;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}
.tl-content {
    padding: 0 1.75rem;
}
@media (max-width: 575.98px) {
    .tl-content { padding: 0 1rem; }
    .tl-page > .container,
    .tl-page .container { padding-left: 1rem; padding-right: 1rem; }
}

/* ---------- Header (fixed over hero) ---------- */
.tl-page-top {
    position: relative;
    background: #4a2a26;
}
.tl-page-top .tl-header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1240px;
    z-index: 10;
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.tl-header { font-family: var(--tl-font-body); }
.tl-header.tl-header--scrolled {
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.22);
}

/* Single-row bar — Brand · Nav · Social */
.tl-header-bar {
    background: linear-gradient(180deg, rgba(40, 26, 22, 0.62), rgba(40, 26, 22, 0.46));
    color: #fff;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(232, 200, 130, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition:
        padding 0.3s ease,
        background 0.3s ease,
        backdrop-filter 0.34s ease,
        -webkit-backdrop-filter 0.34s ease;
}
.tl-header-bar > .container {
    /* Tighten the inner padding and allow the nav to drop into a second
       row on mobile while the brand + icons + burger stay on row one. */
    padding-left: 1rem;
    padding-right: 1rem;
    flex-wrap: wrap;
}
.tl-header--scrolled .tl-header-bar {
    background: rgba(40, 26, 22, 0.94);
    padding: 0.35rem 0;
}

/* Brand — never shrinks, always fully visible */
.tl-brand {
    color: #fff;
    flex-shrink: 0;
    min-width: 0;          /* allow inner ellipsis */
    max-width: 100%;
}
.tl-brand:hover { color: #fff; }
.tl-brand-logo {
    width: auto;
    max-height: 46px;
    background: var(--tl-paper);
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3), 0 0 0 1px rgba(200, 154, 58, 0.35);
    transition: max-height 0.3s ease, padding 0.3s ease;
    flex-shrink: 0;
}
.tl-header--scrolled .tl-brand-logo { max-height: 38px; padding: 2px; }
.tl-brand-name {
    font-family: var(--tl-font-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.005em;
    line-height: 1.1;
    transition: font-size 0.3s ease;
    white-space: nowrap;
}
.tl-brand-tagline {
    font-family: var(--tl-font-body);
    font-size: 0.64rem;
    color: var(--tl-gold-bright);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 2px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.3s, max-height 0.3s, margin 0.3s;
    max-height: 1.5em;
    opacity: 1;
}
.tl-header--scrolled .tl-brand-tagline { opacity: 0; max-height: 0; margin: 0; }
.tl-header--scrolled .tl-brand-name { font-size: 0.98rem; }

/* Tagline collapses gracefully when the viewport gets tight, so the nav
   never has to wrap. Three breakpoints because the WP-style site has 6
   menu items to fit between brand and social cluster. */
@media (max-width: 1199.98px) {
    .tl-brand-logo { max-height: 42px; }
    .tl-brand-name { font-size: 1.04rem; }
    .tl-brand-tagline { font-size: 0.6rem; letter-spacing: 0.12em; }
}
@media (max-width: 1199.98px) and (min-width: 1080px) {
    /* Mid-desktop range: hide the tagline so the nav and the social cluster
       always have enough room for their full content. */
    .tl-brand-tagline { opacity: 0; max-height: 0; margin: 0; }
    .tl-brand-logo { max-height: 38px; padding: 2px; }
    .tl-brand-name { font-size: 1rem; }
    .tl-header-bar > .container { gap: 0.5rem !important; }
    .tl-social-link {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 0.78rem;
        background: transparent;
        border-color: rgba(255,255,255,0.10);
    }
    .tl-header-actions { gap: 0.15rem !important; }
}

/* <681px: icons stay visible. Tagline wraps onto 2+ lines so brand,
   icons and burger still fit comfortably side-by-side. */
@media (max-width: 680.98px) {
    .tl-header-bar > .container { gap: 0.45rem !important; }
    .tl-brand-logo { max-height: 40px; padding: 2px; }
    .tl-brand > span:last-child {
        max-width: 12.5rem;          /* 200px */
        min-width: 0;
    }
    .tl-brand-name {
        font-size: 0.96rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .tl-brand-tagline {
        white-space: normal;        /* allow wrap to next lines */
        overflow: visible;
        text-overflow: clip;
        font-size: 0.58rem;
        line-height: 1.22;
        letter-spacing: 0.1em;
        max-height: none;
    }
    .tl-social-link {
        width: 1.55rem;
        height: 1.55rem;
        font-size: 0.74rem;
        background: transparent;
        border-color: rgba(255,255,255,0.10);
    }
    .tl-header-actions { gap: 0.1rem !important; }
}

/* Drawer icon cluster — hidden by default; only used at <440px */
.tl-drawer-actions { display: none; }

/* <440px: header icons move into the burger drawer */
@media (max-width: 439.98px) {
    .tl-header-actions { display: none !important; }
    .tl-toggler { margin-left: auto !important; }

    .tl-drawer-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.6rem;
        padding: 1rem 1rem 0.9rem;
        margin: 0.6rem 0 0.2rem;
        background: rgba(0, 0, 0, 0.22);
        border-top: 1px solid rgba(232, 200, 130, 0.34);
        border-radius: 0 0 4px 4px;
    }
    .tl-drawer-actions .tl-social-link {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.05rem;
        background: rgba(232, 200, 130, 0.12);
        border: 1px solid rgba(232, 200, 130, 0.45);
        color: var(--tl-gold-bright);
    }
    .tl-drawer-actions .tl-social-link:hover {
        background: var(--tl-gold);
        border-color: var(--tl-gold);
        color: var(--tl-bordeaux-deep);
    }

    /* brand can use the freed space — modest column max-width */
    .tl-header-bar > .container { gap: 0.4rem !important; }
    .tl-brand-logo { max-height: 38px; }
    .tl-brand > span:last-child { max-width: 12rem; }
    .tl-brand-name { font-size: 0.92rem; }
    .tl-brand-tagline { font-size: 0.55rem; line-height: 1.2; }
    .tl-toggler { padding: 0.35rem 0.6rem; }
}

/* Mobile toggler */
.tl-toggler {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 0.25rem 0.55rem;
    border-radius: 3px;
    line-height: 1;
}
.tl-toggler:focus { box-shadow: none; outline: none; }
.tl-toggler-icon {
    font-size: 1.6rem;
    line-height: 1;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}
.tl-toggler[aria-expanded="true"] .tl-toggler-icon::before {
    content: "\F659"; /* bi-x-lg — Schließen-Geste wenn Drawer offen */
}

/* Drawer-Overlay — unterhalb 1080px IMMER gerendert (transparent),
   damit Blur und Tint per transition symmetrisch ein- UND ausfaden.
   Würde der Pseudo nur via :has() rendern, wäre das Schließen hart. */
@media (max-width: 1079.98px) {
    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 5;             /* unter Header (z=10), über Seiteninhalt */
        background: rgba(40, 26, 22, 0);
        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
        opacity: 0;
        pointer-events: none;
        transition:
            background 0.34s ease,
            backdrop-filter 0.34s ease,
            -webkit-backdrop-filter 0.34s ease,
            opacity 0.34s ease;
    }
}
/* Trigger schließt .collapsing ein, damit der Blur direkt beim Tap einsetzt
   (Bootstrap setzt .show erst NACH der Aufklapp-Animation).
   Regeln NUR im Mobile-Range scharf — wird das Browserfenster bei offenem
   Drawer auf Desktop-Breite vergrößert, behält Bootstrap die .show-Klasse,
   das page-locking overflow:hidden würde sonst kleben bleiben. */
@media (max-width: 1079.98px) {
    body:has(.tl-nav-wrap.show, .tl-nav-wrap.collapsing) {
        overflow: hidden;
    }
    body:has(.tl-nav-wrap.show, .tl-nav-wrap.collapsing)::before {
        background: rgba(40, 26, 22, 0.30);
        backdrop-filter: blur(8px) saturate(0.85);
        -webkit-backdrop-filter: blur(8px) saturate(0.85);
        opacity: 1;
    }
    /* Header-eigenen Blur deaktivieren, solange Overlay aktiv ist —
       sonst doppelt geblurrt (Overlay + Header). */
    body:has(.tl-nav-wrap.show, .tl-nav-wrap.collapsing) .tl-header-bar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
@media (max-width: 1079.98px) {
    /* Bei niedriger Viewport-Höhe muss der Drawer intern scrollen können,
       sonst sind Menüpunkte und Drawer-Aktionen unerreichbar. */
    .tl-nav-wrap {
        max-height: calc(100dvh - 5rem);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
}

/* Custom display helpers — break at 1080px instead of Bootstrap's 992px,
   because below 1080 there isn't enough horizontal room for 6 menu items
   plus the brand and the social cluster on one line. */
.tl-d-mobile { display: inline-flex; }
.tl-d-desktop { display: none; }
@media (min-width: 1080px) {
    .tl-d-mobile { display: none !important; }
    .tl-d-desktop { display: flex !important; }
}

/* Nav */
.tl-nav-wrap { flex: 1 1 auto; }
@media (min-width: 1080px) {
    .tl-nav-wrap {
        display: flex !important;
        justify-content: center;
    }
}
.tl-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;     /* never wrap on desktop */
    gap: 0;
    min-width: 0;
}
.tl-nav-item {
    position: relative;
}
.tl-nav-link {
    color: rgba(255,255,255,0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.18s, background 0.18s, padding 0.3s ease, font-size 0.3s ease;
    white-space: nowrap;
}
.tl-nav-link::after {
    content: "";
    position: absolute;
    left: 0.6rem; right: 0.6rem;
    bottom: 0.3rem;
    height: 2px;
    background: var(--tl-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.22s ease;
}
@media (max-width: 1199.98px) and (min-width: 1080px) {
    .tl-nav-link {
        padding: 0.4rem 0.5rem;
        font-size: 0.86rem;
    }
    .tl-nav-link::after { left: 0.5rem; right: 0.5rem; }
}
.tl-nav-link:hover { color: var(--tl-gold-bright); }
.tl-nav-link:hover::after { transform: scaleX(1); }
.tl-nav-link.active {
    color: var(--tl-gold-bright);
}
.tl-nav-link.active::after { transform: scaleX(1); }
/* Branch-active: Gold-Tönung wenn ein Kind die aktive Seite ist —
   gilt auf Desktop UND Mobile (deshalb außerhalb der Media-Query). */
.tl-nav-link.tl-branch-active { color: var(--tl-gold-bright); }
.tl-nav-caret {
    font-size: 0.7em;
    opacity: 0.7;
    transition: transform 0.2s ease;
}
.tl-nav-item:hover .tl-nav-caret,
.tl-nav-item:focus-within .tl-nav-caret { transform: rotate(180deg); }

/* Submenu (desktop) */
.tl-submenu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 3px;
    box-shadow: var(--tl-shadow-md);
    min-width: 13rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    z-index: 20;
}
.tl-submenu::before {
    content: "";
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: var(--tl-paper);
    border-left: 1px solid var(--tl-rule);
    border-top: 1px solid var(--tl-rule);
}
.tl-submenu li { margin: 0; }
.tl-submenu a {
    display: block;
    padding: 0.45rem 1rem;
    color: var(--tl-ink);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    border-left: 2px solid transparent;
}
.tl-submenu a:hover {
    background: var(--tl-cream-soft);
    color: var(--tl-bordeaux);
    border-left-color: var(--tl-gold);
    padding-left: 1.15rem;
}
.tl-submenu a.active {
    color: var(--tl-bordeaux);
    border-left-color: var(--tl-gold);
    background: var(--tl-cream-soft);
}
/* Hover-Reveal greift erst ab 1080 px — sonst kollidiert das absolute
   Submenu-Modell (transform: translate(-50%, 0)) mit dem statischen
   Drawer-Layout im Overlap-Bereich 992–1079. */
@media (min-width: 1080px) {
    .tl-has-sub:hover > .tl-submenu,
    .tl-has-sub:focus-within > .tl-submenu {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        transition-delay: 0s;
    }
}

/* Submenüs nutzen Bootstrap-Collapse für den Mobile-Drawer. Auf Desktop
   würde Bootstraps `display:none` für `.collapse:not(.show)` das absolute
   Hover-Modell brechen — daher zurück auf `block`, damit Opacity/Visibility
   weiter Show/Hide steuern. Der Toggle-Button ist Mobile-only. */
@media (min-width: 1080px) {
    .tl-submenu.collapse,
    .tl-submenu.collapse:not(.show) {
        display: block;
    }
}
.tl-sub-toggle { display: none; }

/* Social cluster — never gets pushed off the row.
   Always visible. On any viewport <1080 it gets margin-left:auto so it
   sits at the right of the brand, just left of the burger. */
.tl-header-actions {
    color: #fff;
    flex-shrink: 0;
    display: flex;
}
@media (max-width: 1079.98px) {
    .tl-header-actions { margin-left: auto; }
}
.tl-social-link {
    color: #fff;
    width: 1.85rem; height: 1.85rem;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, width 0.3s ease, height 0.3s ease;
    text-decoration: none;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.tl-social-link:hover {
    background: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    border-color: var(--tl-gold);
    transform: translateY(-1px);
}

/* Mobile / tight desktop (< 1080px) */
@media (max-width: 1079.98px) {
    .tl-nav-wrap {
        order: 99;          /* always renders below brand + actions + toggler */
        flex-basis: 100%;
        margin-top: 0.6rem;
    }
    .tl-nav {
        flex-direction: column;
        align-items: stretch;
        background: rgba(0, 0, 0, 0.35);
        border-radius: 4px;
        padding: 0.4rem 0;
    }
    .tl-nav-item { width: 100%; }
    .tl-nav-link {
        padding: 0.7rem 1rem;
        font-size: 0.78rem;
        justify-content: space-between;
    }
    .tl-nav-link::after { display: none; }
    .tl-submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255,255,255,0.06);
        border: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0.25rem 0;
        margin: 0;
    }
    .tl-submenu::before { display: none; }
    .tl-submenu a {
        color: rgba(255,255,255,0.85);
        padding: 0.45rem 1.5rem 0.45rem 2rem;
    }
    .tl-submenu a:hover {
        background: rgba(255,255,255,0.05);
        color: var(--tl-gold-bright);
        border-left-color: var(--tl-gold);
    }

    /* Mobile-Drawer: Item mit Untermenü wird zur Flex-Row mit
       Link links, Toggle-Button rechts, Submenu nimmt 100% darunter ein. */
    .tl-has-sub {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .tl-has-sub > .tl-nav-link {
        flex: 1 1 auto;
        min-width: 0;
    }
    /* Caret im Link ist nur Desktop-Hover-Indikator — auf Mobile übernimmt
       der Toggle-Button die Drehung via aria-expanded. */
    .tl-has-sub > .tl-nav-link .tl-nav-caret { display: none; }
    .tl-sub-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        padding: 0 1.1rem;
        background: transparent;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.9rem;
        line-height: 1;
        cursor: pointer;
        transition: background 0.18s, color 0.18s;
    }
    .tl-sub-toggle:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--tl-gold-bright);
    }
    .tl-sub-toggle:focus-visible {
        outline: 2px solid var(--tl-gold);
        outline-offset: -2px;
    }
    .tl-sub-toggle .bi-chevron-down {
        display: inline-block;
        transition: transform 0.22s ease;
    }
    .tl-sub-toggle[aria-expanded="true"] {
        color: var(--tl-gold-bright);
    }
    .tl-sub-toggle[aria-expanded="true"] .bi-chevron-down {
        transform: rotate(180deg);
    }
    .tl-has-sub > .tl-submenu {
        flex: 0 0 100%;
    }
}

/* ---------- Hero ---------- */
.tl-hero {
    position: relative;
    min-height: 380px;
    padding-top: 5rem;
    background-size: cover;
    background-position: center;
    background-color: #4a2a26;
    color: #fff;
    margin-bottom: 0;
    overflow: hidden;
    isolation: isolate;
}
/* Bigger hero on the home page only */
.tl-hero--home { min-height: 600px; }
.tl-hero--home .tl-hero-inner { min-height: 460px; }
/* Hero-Bild je Ansicht: Desktop nutzt --hero-bg-d, Mobile (≤575.98px)
 * --hero-bg-m mit Fallback auf Desktop, falls kein Mobile-Bild gepflegt.
 * Die Vars werden inline am Element gesetzt (home_page.html). */
.tl-hero--home { background-image: var(--hero-bg-d); }
/* Mobile-Lead ist standardmäßig (Desktop) ausgeblendet. */
.tl-hero-lead--mobile { display: none; }

/* /schuetzlinge/ Hero — Mode-spezifische Tones für die Archiv-Stati.
   Gold-Glow runtergeregelt + Wash etwas dunkler/kühler, damit der
   Memorial-Charakter sich von den aktiven Modi absetzt. */
.tl-hero--vermittelt::after,
.tl-hero--verstorben::after { opacity: 0.45; }
.tl-hero--verstorben { background-color: #2a1a18; }
.tl-hero--verstorben::before {
    background:
        linear-gradient(95deg, rgba(25,16,14,0.55) 0%, rgba(25,16,14,0.30) 60%, rgba(25,16,14,0.0) 90%),
        linear-gradient(180deg, transparent 50%, rgba(20,12,10,0.30) 100%);
}
.tl-hero--verstorben .tl-hero-eyebrow,
.tl-hero--vermittelt .tl-hero-eyebrow { color: #e8d5a8; }

/* Light, unobtrusive global wash so the photo keeps its life. */
.tl-hero::before {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(95deg, rgba(25, 16, 14, 0.32) 0%, rgba(25, 16, 14, 0.10) 40%, rgba(25, 16, 14, 0.0) 70%),
        linear-gradient(180deg, transparent 60%, rgba(20, 12, 10, 0.18) 100%);
    z-index: 1;
}
/* Subtle gold glow — present but quiet */
.tl-hero::after {
    content: "";
    position: absolute;
    right: -15%; top: -25%;
    width: 65%; height: 70%;
    background: radial-gradient(closest-side, rgba(232, 188, 88, 0.13), transparent 72%);
    z-index: 1;
    pointer-events: none;
}

.tl-hero-inner {
    position: relative;
    z-index: 2;
    padding: 2rem 1.75rem 2.5rem;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
}

.tl-hero-content {
    position: relative;
    max-width: 36rem;
    color: #fff;
    animation: tlHeroRise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
    isolation: isolate;
}
/* Soft local "spotlight scrim" behind the text — gives readability without
   tinting the whole image. Sits a generous bleed around the content so the
   blur fades into the photo cleanly. */
.tl-hero-content::before {
    content: "";
    position: absolute;
    inset: -1.5rem -3rem -2rem -3rem;
    background:
        radial-gradient(ellipse at 32% 65%,
            rgba(15, 10, 8, 0.55) 0%,
            rgba(15, 10, 8, 0.32) 35%,
            rgba(15, 10, 8, 0.10) 60%,
            transparent 80%);
    filter: blur(28px);
    z-index: -1;
    pointer-events: none;
}
@media (max-width: 575.98px) {
    .tl-hero-content::before { inset: -1rem -1.5rem; }
}
@keyframes tlHeroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.tl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: #f5d480;
    margin: 0 0 1.1rem;
    text-shadow: 0 1px 3px rgba(15, 10, 8, 0.7);
}
.tl-hero-eyebrow::before {
    content: "";
    width: 2.2rem;
    height: 1px;
    background: currentColor;
    opacity: 0.85;
}
.tl-hero-title {
    font-family: var(--tl-font-display);
    color: #fff;
    font-size: clamp(1.85rem, 4.6vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.012em;
    margin: 0 0 0.85rem;
    text-shadow:
        0 1px 2px rgba(15, 10, 8, 0.65),
        0 2px 14px rgba(15, 10, 8, 0.55);
}
.tl-hero-title em {
    color: var(--tl-gold-bright);
    font-style: italic;
    font-weight: 500;
}
.tl-hero-lead {
    font-family: var(--tl-font-body);
    font-size: 1.02rem;
    line-height: 1.6;
    color: #fff;
    max-width: 32rem;
    margin: 0 0 1.4rem;
    text-shadow:
        0 1px 2px rgba(15, 10, 8, 0.6),
        0 1px 8px rgba(15, 10, 8, 0.5);
}
.tl-hero-lead p:last-child { margin-bottom: 0; }

.tl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    align-items: center;
}
.tl-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    text-decoration: none;
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.55);
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.tl-hero-cta:hover {
    background: var(--tl-gold-bright);
    color: var(--tl-bordeaux-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(0,0,0,0.55);
}
/* Sekundärer CTA als Ghost-Pill — gleiche Form/Typo wie der Primärbutton,
   aber transparent mit Rand + Blur, damit er auf dem Hero-Foto liest und als
   gleichwertiger Partner neben „Unsere Schützlinge" wirkt. */
.tl-hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    background: rgba(40, 26, 22, 0.30);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    padding: 0.72rem 1.35rem;
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-shadow: 0 1px 3px rgba(15, 10, 8, 0.6);
    transition: transform 0.18s, background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.tl-hero-cta-secondary .bi {
    font-size: 0.95em;
    transition: transform 0.18s;
}
.tl-hero-cta-secondary:hover {
    color: var(--tl-bordeaux-deep);
    background: var(--tl-gold-bright);
    border-color: var(--tl-gold-bright);
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -8px rgba(0,0,0,0.55);
}
.tl-hero-cta-secondary:hover .bi { transform: translateX(3px); }

@media (max-width: 575.98px) {
    .tl-hero {
        min-height: 280px;
        padding-top: 4rem;
    }
    /* Startseite-Hero füllt den sichtbaren Screen. ``svh`` (small viewport)
     * statt ``vh`` → keine Cutoffs durch ein-/ausfahrende Browser-
     * Adressleiste. ``vh`` als Fallback für sehr alte Engines davor. */
    .tl-hero--home {
        min-height: 100vh;
        min-height: 100svh;
        /* Mobile-Bild, sonst Fallback auf Desktop-Bild. */
        background-image: var(--hero-bg-m, var(--hero-bg-d));
    }
    /* Inner erbt vom Base ``display:flex; align-items:flex-end`` (Content
     * unten). KEIN ``justify-content`` setzen — das ist die Row-Hauptachse
     * und würde den Content nach rechts schieben. Großzügiges Bottom-
     * Padding gibt dem Text Luft vom Rand + Platz für den Scroll-Cue. */
    .tl-hero--home .tl-hero-inner {
        min-height: 100vh;
        min-height: 100svh;
        padding: 2rem 1.25rem 5.5rem;
    }
    .tl-hero-inner {
        padding: 1.25rem 1rem 1.5rem;
        min-height: 200px;
    }
    .tl-hero-title { font-size: 1.85rem; line-height: 1.1; }
    .tl-hero-lead { font-size: 0.95rem; }
    /* Vollbild-Hero verträgt eine präsentere Headline. */
    .tl-hero--home .tl-hero-title { font-size: 2.4rem; }
    /* Mobile: Desktop-Lead aus, Mobile-Lead an. Der Mobile-Text ist
     * entweder der eigene ``hero_subtitle_mobile`` oder (Fallback) der
     * Desktop-Text — in beiden Fällen auf ~2 Zeilen gekürzt (line-clamp),
     * damit ein versehentlich langer Fallback nicht erschlägt. */
    .tl-hero--home .tl-hero-lead--desktop { display: none; }
    .tl-hero--home .tl-hero-lead--mobile {
        display: block;
        margin-bottom: 1.1rem;
    }
    .tl-hero--home .tl-hero-lead--mobile p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin: 0;
    }
    .tl-hero--home .tl-hero-lead--mobile p ~ p { display: none; }
    /* Scroll-Cue nur auf dem mobilen Home-Hero sichtbar. */
    .tl-hero--home .tl-hero-scrollcue { display: flex; }
}

/* ---------- Mission Tiles (replaces old tl-action-cards-banner) ---------- */
.tl-mission {
    background: var(--tl-cream-soft);
    margin-left: -1.75rem;
    margin-right: -1.75rem;
    padding: 3rem 1.75rem 3.25rem;
    position: relative;
}
@media (max-width: 575.98px) {
    .tl-mission { margin-left: -1rem; margin-right: -1rem; padding: 2rem 1rem 2.25rem; }
}
.tl-mission::before {
    content: "";
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    width: 60%;
    max-width: 240px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tl-gold), transparent);
    opacity: 0.6;
}
.tl-mission-head {
    text-align: center;
    margin-bottom: 2.25rem;
}
.tl-mission-head h2 {
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    font-weight: 500;
    margin: 0 0 0.5rem;
}
.tl-mission-head p {
    color: var(--tl-ink-soft);
    max-width: 38rem;
    margin: 0 auto;
    font-size: 0.98rem;
}

.tl-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991.98px) { .tl-mission-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px)    { .tl-mission-grid { grid-template-columns: 1fr; } }

.tl-tile-card {
    background: var(--tl-paper);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: var(--tl-ink);
    display: flex;
    flex-direction: column;
    box-shadow: var(--tl-shadow-sm);
    border: 1px solid var(--tl-rule);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}
.tl-tile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--tl-shadow-md);
    border-color: rgba(200, 154, 58, 0.4);
    color: var(--tl-ink);
}
.tl-tile-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--tl-cream);
    position: relative;
}
.tl-tile-img img,
.tl-tile-img > svg {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tl-tile-card:hover .tl-tile-img img,
.tl-tile-card:hover .tl-tile-img > svg {
    transform: scale(1.05);
}
.tl-tile-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    color: var(--tl-gold-bright);
    font-size: 2.5rem;
    transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tl-tile-card:hover .tl-tile-img-placeholder { transform: scale(1.05); }

.tl-tile-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 65%, rgba(35, 24, 22, 0.32) 100%);
    pointer-events: none;
}
.tl-tile-body {
    padding: 1.1rem 1.15rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tl-tile-title {
    font-family: var(--tl-font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--tl-bordeaux);
    margin: 0 0 0.5rem;
    line-height: 1.15;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.tl-tile-title i { font-size: 1.15rem; color: var(--tl-gold); }
.tl-tile-text {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--tl-ink-soft);
    margin: 0 0 0.95rem;
    flex: 1;
}
.tl-tile-cta {
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tl-bordeaux);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.tl-tile-cta::after {
    content: "→";
    transition: transform 0.2s ease;
}
.tl-tile-card:hover .tl-tile-cta::after { transform: translateX(4px); }

/* ---------- Editorial section under mission ---------- */
.tl-editorial {
    padding: 3rem 0 1.5rem;
}
/* Breiter Spalten-Gutter nur, wo die Spalten (col-lg-*) nebeneinander stehen.
   Darunter stapeln sie — der -1.25rem-Negativmargin von 2.5rem würde sonst
   das schmale 1rem-Padding von .tl-content überschreiten und horizontalen
   Scroll auf Mobil erzeugen. Default-Gutter (1.5rem → -0.75rem) passt. */
@media (min-width: 992px) {
    .tl-editorial > .row { --bs-gutter-x: 2.5rem; }
}

/* News list */
.tl-news-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--tl-rule);
}
@media (max-width: 575.98px) { .tl-news-feature { grid-template-columns: 1fr; } }
.tl-news-feature-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--tl-cream);
}
.tl-news-feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.tl-news-feature:hover .tl-news-feature-img img { transform: scale(1.04); }
.tl-news-feature .tl-news-date {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tl-gold-deep);
    margin-bottom: 0.55rem;
}
.tl-news-feature h3 {
    font-family: var(--tl-font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 0.7rem;
}
.tl-news-feature h3 a { color: var(--tl-ink); text-decoration: none; }
.tl-news-feature h3 a:hover { color: var(--tl-bordeaux); }
.tl-news-feature .tl-news-excerpt {
    color: var(--tl-ink-soft);
    line-height: 1.6;
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.tl-news-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--tl-rule);
    align-items: center;
}
.tl-news-item:last-child { border-bottom: 0; }
.tl-news-item-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 3px;
    background: var(--tl-cream);
}
.tl-news-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.tl-news-item:hover .tl-news-item-img img { transform: scale(1.06); }
.tl-news-item-img-empty {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--tl-cream) 0%, var(--tl-cream-soft) 100%);
    color: var(--tl-gold-deep);
    font-size: 1.4rem;
}
.tl-news-item h4 {
    font-family: var(--tl-font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 0.25rem;
}
.tl-news-item h4 a { color: var(--tl-ink); text-decoration: none; }
.tl-news-item h4 a:hover { color: var(--tl-bordeaux); }
.tl-news-item .tl-news-date {
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tl-gold-deep);
    font-weight: 600;
}

/* ============================================================
 * /neuigkeiten/ — Index-Seite: Feature-Card + Card-Grid
 * Editorial-Magazin-Layout statt Bullet-Liste; reusen
 * `tl-news-feature` (modifier --solo), neue `tl-news-card`
 * für die Folge-Artikel im 2-3-Spalten-Grid.
 * ============================================================ */
.tl-newsindex { padding-top: 1.75rem; }
.tl-newsindex__intro {
    max-width: 38rem;
    margin: 0 auto 2rem;
    font-family: var(--tl-font-display);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--tl-ink-soft);
    line-height: 1.6;
    text-align: center;
}
.tl-newsindex__empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--tl-ink-soft);
    font-family: var(--tl-font-display);
}

/* Solo-Variante des Feature-Cards: mehr Atemraum, größere Typo,
   weil keine kleineren News-Items darüber bündig liegen. */
.tl-news-feature--solo {
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding: 0 0 2.2rem;
    margin: 0 0 2.5rem;
    align-items: center;
}
.tl-news-feature--solo h2 {
    font-family: var(--tl-font-display);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 0.85rem;
}
.tl-news-feature--solo h2 a { color: var(--tl-ink); text-decoration: none; }
.tl-news-feature--solo h2 a:hover { color: var(--tl-bordeaux); }
.tl-news-feature__meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}
.tl-news-feature--solo .tl-news-date { margin-bottom: 0; }
.tl-news-feature--solo .tl-news-excerpt {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.55;
}

/* Source-Badge (Facebook, später ggf. Newsletter etc.) */
.tl-news-source {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: var(--tl-ink-soft);
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 999px;
    padding: 0.18rem 0.55rem 0.22rem;
}
.tl-news-source--facebook i { color: #1877f2; font-size: 0.95em; }

/* Grid für die restlichen Artikel */
.tl-newsindex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem 1.75rem;
    margin-top: 0.5rem;
}

.tl-news-card {
    display: flex;
    flex-direction: column;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tl-news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--tl-shadow-md);
    border-color: var(--tl-rule);
}
.tl-news-card__img {
    display: block;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--tl-cream);
}
.tl-news-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.tl-news-card:hover .tl-news-card__img img { transform: scale(1.04); }
.tl-news-card__body {
    padding: 1.05rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tl-news-card__meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.45rem;
    flex-wrap: wrap;
}
.tl-news-card__meta .tl-news-date {
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    font-weight: 600;
    margin: 0;
}
.tl-news-card__meta .tl-news-source {
    /* In der Card brauchen wir keine Wortmarke, nur das Icon. */
    padding: 0.18rem 0.4rem;
}
.tl-news-card h3 {
    font-family: var(--tl-font-display);
    font-size: 1.12rem;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}
.tl-news-card h3 a { color: var(--tl-ink); text-decoration: none; }
.tl-news-card h3 a:hover { color: var(--tl-bordeaux); }
.tl-news-card__excerpt {
    color: var(--tl-ink-soft);
    line-height: 1.55;
    font-size: 0.92rem;
    margin: 0 0 0.85rem;
    /* Auf 3 Zeilen begrenzen, damit Cards höhengleich starten. */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tl-news-card__cta { margin-top: auto; }

/* ---------- Mission statement / pull quote ---------- */
.tl-quote {
    margin: 2.5rem 0 2rem;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--tl-rule);
    border-bottom: 1px solid var(--tl-rule);
    position: relative;
}
.tl-quote::before {
    content: "\201C";
    position: absolute;
    left: 50%;
    top: -0.6rem;
    transform: translateX(-50%);
    background: var(--tl-paper);
    padding: 0 0.8rem;
    font-family: var(--tl-font-display);
    font-size: 2.4rem;
    color: var(--tl-gold);
    line-height: 1;
}
.tl-quote p {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 1.9vw, 1.45rem);
    line-height: 1.45;
    color: var(--tl-ink);
    max-width: 42rem;
    margin: 0 auto 0.85rem;
    font-weight: 400;
}
.tl-quote cite {
    display: block;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tl-gold-deep);
    font-weight: 600;
}

/* --- Längeres Mehrabsatz-Zitat (z. B. Rescue-Manifest auf der Startseite) -- */
.tl-quote--rescue {
    padding: 2.5rem 0 2.25rem;
    margin-top: 3rem;
}
.tl-quote--rescue p {
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.55;
    margin-bottom: 1rem;
    color: var(--tl-ink-soft);
}
.tl-quote--rescue p:first-of-type {
    font-size: clamp(1.05rem, 1.65vw, 1.3rem);
    color: var(--tl-ink);
}
.tl-quote--rescue p:nth-of-type(3) {
    /* "Sie sollen dir nicht leid tun." — einzelner emphatischer Satz */
    font-style: normal;
    font-weight: 600;
    color: var(--tl-bordeaux);
    margin-top: 0.4rem;
    margin-bottom: 1.2rem;
}
.tl-quote--rescue p:nth-of-type(4) {
    /* "Mach etwas. Hilf zu retten. Spende. ..." — Aufforderung */
    color: var(--tl-ink);
}
.tl-quote--rescue p:last-of-type {
    margin-bottom: 1.6rem;
}

.tl-quote-paw {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tl-gold);
    margin-top: 0.25rem;
}
.tl-quote-paw svg {
    display: block;
    transition: transform 0.4s ease;
}
.tl-quote--rescue:hover .tl-quote-paw svg {
    transform: rotate(-8deg) scale(1.05);
}

/* ---------- Newsletter block ---------- */
.tl-newsletter-cta {
    background: linear-gradient(180deg, var(--tl-cream-soft) 0%, var(--tl-cream) 100%);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 2rem 1.75rem;
    margin: 2rem 0;
    position: relative;
    text-align: center;
    box-shadow: var(--tl-shadow-sm);
    overflow: hidden;
}
.tl-newsletter-cta::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 100%);
}
.tl-newsletter-cta .tl-eyebrow { justify-content: center; }
.tl-newsletter-cta h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    margin: 0 0 0.5rem;
}
.tl-newsletter-cta p {
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    max-width: 32rem;
    margin: 0 auto 1.2rem;
}
.tl-newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 26rem;
    margin: 0 auto;
}
.tl-newsletter-form .form-control {
    border: 1px solid var(--tl-rule);
    border-radius: 999px;
    padding: 0.65rem 1.1rem;
    background: var(--tl-paper);
    flex: 1;
    min-width: 14rem;
    font-size: 0.92rem;
}
.tl-newsletter-form .form-control:focus {
    border-color: var(--tl-bordeaux);
    box-shadow: 0 0 0 3px rgba(125, 47, 47, 0.12);
    outline: none;
}
.tl-newsletter-form .btn {
    border-radius: 999px;
    padding: 0.65rem 1.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

/* Einwilligung gemäß Art. 6 Abs. 1 lit. a DSGVO — kein "Datenschutz
   akzeptieren", sondern aktive Einwilligung in die konkrete Verarbeitung. */
.tl-newsletter-consent {
    flex-basis: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.6rem;
    text-align: left;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--tl-ink-soft);
    cursor: pointer;
}
.tl-newsletter-consent input[type="checkbox"] {
    margin-top: 0.18rem;
    accent-color: var(--tl-bordeaux);
    flex-shrink: 0;
}
.tl-newsletter-consent a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: var(--tl-gold);
    text-underline-offset: 2px;
}
.tl-newsletter-consent a:hover { color: var(--tl-bordeaux-deep); }

.tl-newsletter-form--sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tl-newsletter-form--sidebar .form-control { flex: 1 1 12rem; min-width: 0; }
.tl-newsletter-form--sidebar .tl-newsletter-consent {
    font-size: 0.74rem;
    line-height: 1.4;
}

/* ---------- Sidebar widgets ---------- */
.tl-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.tl-sidebar-widget {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.25rem 1.35rem 1.4rem;
    box-shadow: var(--tl-shadow-sm);
    position: relative;
}
.tl-sidebar-widget::before {
    content: "";
    position: absolute;
    top: 0; left: 1.35rem; right: 1.35rem;
    height: 2px;
    background: var(--tl-gold);
    opacity: 0.85;
}
.tl-sidebar-widget h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tl-bordeaux);
    margin: 0.25rem 0 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--tl-rule);
}

/* PayPal widget — give it a little more presence on the home page */
.tl-sidebar-widget--paypal { background: var(--tl-cream-soft); }

/* ---------- Card-Grid (Animal listings) ---------- */
.tl-tile {
    /* Background = Footer-BG, damit kein weißer Spalt entsteht, wenn die Row
       gestreckt wird (langer Name in einem Sibling-Tile macht alle Tiles
       höher → Footer-Flex füllt zwar, aber Border-Radius/overflow-Kanten
       blieben sonst weiß). */
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
    text-decoration: none;
    color: var(--tl-ink);
    display: flex;
    flex-direction: column;
}
.tl-tile:hover {
    box-shadow: var(--tl-shadow-md);
    transform: translateY(-3px);
    border-color: rgba(200, 154, 58, 0.45);
    color: var(--tl-ink);
}
.tl-tile-img-wrap {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--tl-cream);
}
.tl-tile-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tl-tile:hover .tl-tile-img-wrap img { transform: scale(1.05); }

/* Sortier-Toggle — zweite Reihe neben den Modus-Tabs. */
.tl-sort-toggle {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    margin-top: 0.55rem;
    width: 100%;
}
.tl-sort-toggle__label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-muted, #8a847b);
    font-size: 0.66rem;
    font-weight: 700;
}
.tl-sort-toggle a {
    color: var(--tl-ink);
    text-decoration: none;
    padding: 0.18em 0.1em;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.tl-sort-toggle a:hover { color: var(--tl-bordeaux); }
.tl-sort-toggle a.is-active {
    color: var(--tl-bordeaux);
    border-bottom-color: var(--tl-gold);
    font-weight: 600;
}

/* Slim Meta-Row für die Listing-Sektion — schlanke Zeile mit Count + Sort,
   keine Section-h2 mehr (Filter-Kontext steht bereits im Top-Strip darüber). */
.tl-results-bar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-results-bar__count {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--tl-ink-soft);
}
.tl-results-bar__count strong {
    color: var(--tl-bordeaux);
    font-weight: 500;
    font-style: italic;
}
/* Sort-Toggle innerhalb der Slim-Row: italic + muted Sprache, damit es
   nicht mit dem Count konkurriert. Aktive Tab bordeaux statt gold
   (passt zur Mode-Tab-Logik im Top-Strip). Scoped, damit andere
   `.tl-sort-toggle`-Vorkommen unberührt bleiben. */
.tl-results-bar .tl-sort-toggle {
    margin-top: 0;
    width: auto;
    font-size: 0.86rem;
}
.tl-results-bar .tl-sort-toggle__label {
    letter-spacing: 0.22em;
    font-weight: 600;
}
.tl-results-bar .tl-sort-toggle a {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-ink-soft);
    padding: 0.1rem 0.2rem;
}
.tl-results-bar .tl-sort-toggle a:hover { color: var(--tl-bordeaux); }
.tl-results-bar .tl-sort-toggle a.is-active {
    color: var(--tl-bordeaux);
    border-bottom-color: var(--tl-bordeaux);
    font-weight: 500;
}

/* Year-Group — Trenner zwischen Jahrgängen wenn nach Jahr sortiert wird. */
.tl-year-group + .tl-year-group { margin-top: 2.5rem; }
.tl-year-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0 1rem;
    font-family: var(--tl-font-display);
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    color: var(--tl-bordeaux);
}
.tl-year-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--tl-rule);
}
.tl-year-divider__label { white-space: nowrap; }

/* Footer below tile image — full-width band with the animal name in display serif */
.tl-tile-foot {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: var(--tl-cream-soft);
    border-top: 3px solid var(--tl-gold);
    transition: background 0.2s ease, border-color 0.2s ease;
}
/* Name-Bereich füllt den verfügbaren Platz und zentriert den Namen darin */
.tl-tile-foot__name {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 0.9rem 0.5rem;
}
/* Badge-Bereich sitzt natürlich am unteren Rand, weil flex-grow:0 (default)
   und vorheriger Sibling (__name) den Rest absorbiert. */
.tl-tile-foot__badge {
    padding: 0 0.9rem 0.85rem;
}
.tl-tile-name {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1.15;
    color: var(--tl-bordeaux);
}
.tl-tile-status {
    display: inline-block;
    font-family: var(--tl-font-body);
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    opacity: 0.78;
}
.tl-tile:hover .tl-tile-foot { background: var(--tl-cream); }

/* Status variants — colored footer band signals state without a separate badge */
.tl-tile--placed { background: var(--tl-bordeaux); }
.tl-tile--placed .tl-tile-foot {
    background: var(--tl-bordeaux);
    border-top-color: var(--tl-gold-bright);
}
.tl-tile--placed:hover .tl-tile-foot { background: var(--tl-bordeaux-deep); }
.tl-tile--placed .tl-tile-name { color: #fff; }
.tl-tile--placed .tl-tile-status { color: var(--tl-gold-bright); }

.tl-tile--sponsored { background: #2f6f6a; }
.tl-tile--sponsored .tl-tile-foot {
    background: #2f6f6a;
    border-top-color: #7fc3ba;
}
.tl-tile--sponsored:hover .tl-tile-foot { background: #255853; }
.tl-tile--sponsored .tl-tile-name { color: #fff; }
.tl-tile--sponsored .tl-tile-status { color: #a9ded6; }

.tl-tile--deceased { background: #3a3f44; }
.tl-tile--deceased .tl-tile-foot {
    background: #3a3f44;
    border-top-color: #6e7479;
}
.tl-tile--deceased:hover .tl-tile-foot { background: #2c3033; }
.tl-tile--deceased .tl-tile-name { color: var(--tl-cream); font-style: normal; }
.tl-tile--deceased .tl-tile-status { color: rgba(255,255,255,0.65); }

/* Abschluss-Karte im Schützlinge-Streifen — letzte „Karte", die das Ende der
   Kurzliste markiert und zur Gesamtübersicht führt. Erbt von .tl-tile (gleiche
   Höhe/Breite im Streifen), füllt sich aber als gold-flächige CTA. */
.tl-tile--more {
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.9rem;
    padding: 1.5rem 1.1rem;
    background: linear-gradient(165deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    border-color: var(--tl-bordeaux-deep);
    color: #fff;
}
.tl-tile--more:hover {
    border-color: var(--tl-gold);
    box-shadow: 0 8px 22px -10px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}
.tl-tile-more__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    font-size: 1.35rem;
    transition: background 0.18s, transform 0.18s;
}
.tl-tile--more:hover .tl-tile-more__icon {
    background: var(--tl-gold-bright);
    transform: translateX(4px);
}
.tl-tile-more__text {
    font-family: var(--tl-font-body);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    color: #fff;
}

/* Editorial filter tabs — replaces the disconnected btn-group */
.tl-section-head--filterable {
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem 1.5rem;
}
.tl-section-head__back {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.tl-section-head__back:hover { color: var(--tl-bordeaux); }

.tl-filter-tabs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin-left: auto;
    padding-bottom: 0.1rem;
}
.tl-filter-tabs a {
    font-family: var(--tl-font-body);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-ink-soft);
    text-decoration: none;
    padding: 0.55rem 0.85rem 0.45rem;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}
.tl-filter-tabs a:hover { color: var(--tl-bordeaux); }
.tl-filter-tabs a.is-active {
    color: var(--tl-bordeaux);
    border-bottom-color: var(--tl-bordeaux);
}
/* Aktions-Reiter (Zuhause suchen / Pate werden) als gefüllte Bordeaux-Buttons,
   damit sie sich klar von den neutralen Archiv-Modi (Verpatet/Vermittelt/
   Verstorben) und dem neutralen „Alle" absetzen. */
.tl-filter-tabs a[data-mode="adoption"],
.tl-filter-tabs a[data-mode="patenschaft"] {
    color: #fff;
    background: var(--tl-bordeaux);
    border-radius: 999px;
    padding: 0.5rem 1.05rem 0.45rem;
    border-bottom-color: transparent;
}
.tl-filter-tabs a[data-mode="adoption"]:not(.is-active):hover,
.tl-filter-tabs a[data-mode="patenschaft"]:not(.is-active):hover {
    color: #fff;
    background: var(--tl-bordeaux-deep);
    border-bottom-color: transparent;
}
/* Ausgewählter Aktions-Reiter hebt sich rein farblich klar vom anderen ab:
   sattes, tiefes Bordeaux gegenüber dem helleren Grundton der nicht gewählten
   Kachel. */
.tl-filter-tabs a[data-mode="adoption"].is-active,
.tl-filter-tabs a[data-mode="patenschaft"].is-active {
    color: #fff;
    background: #481518;
    border-bottom-color: transparent;
}
@media (max-width: 575px) {
    .tl-filter-tabs { width: 100%; margin-left: 0; }
    .tl-filter-tabs a { padding: 0.45rem 0.6rem 0.4rem; font-size: 0.7rem; }
}

/* Status badges */
.badge.status-available { background: #1d6f48; }
.badge.status-placed    { background: var(--tl-gold-deep); color: #fff; }
.badge.status-deceased  { background: #4a4f55; }

/* ---------- Gallery ---------- */
.tl-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.6rem;
    margin: 1rem 0;
}
.tl-gallery img {
    width: 100%; height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.3s ease;
}
.tl-gallery img:hover { transform: scale(1.03); }

/* ---------- Symbol-CAPTCHA (klickbare Symbol-Auswahl) ---------- */
/* Bewusst sehr zurückhaltend, damit es sich in das Editorial-Form-Layout
   einfügt: gleiche Borderfarbe und -dicke wie die Text-Inputs, gleiche
   Label-Typografie wie die anderen Formularlabels. */
/* Captcha-Label: zweizeilig (Eyebrow + kurze Aufforderung), aber
   gesamthöhenmäßig knapp, damit es neben Single-Line-Form-Labels
   wie "TELEFON (OPTIONAL)" möglichst wenig Y-Offset erzeugt. */
.tl-captcha-label {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 0.45rem;
    line-height: 1;
}
.tl-captcha-label__eye {
    font-family: var(--tl-font-body);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    line-height: 1.1;
}
.tl-captcha-label__prompt {
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--tl-bordeaux);
    line-height: 1.1;
}
.tl-captcha-label__prompt + .tl-captcha-label__prompt,
.tl-captcha-label__eye + .tl-captcha-label__prompt { margin-top: 1px; }

/* Persönliche-Daten-Zeile im Inquiry-Form: Cols bottom-alignen, damit das
   Captcha-Grid (mit zweizeiligem Label) auf gleicher Y-Position landet wie
   das Telefon-Input daneben (mit einzeiligem Label). Ohne diese Regel
   "schwebt" der Captcha-Block ein paar px tiefer. */
.tl-detail-inquiry__form .row.g-3 > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.tl-captcha-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.4rem;
    /* Füllt die Form-Spalte komplett aus, damit das Captcha auf gleicher
       horizontaler Breite liegt wie die Text-Inputs daneben/darüber. */
}
.tl-captcha-tile {
    appearance: none;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    /* Exakt selbe Außenmaße wie .form-control im Inquiry-Form
       (padding 0.6rem + line-height 1.5 × 0.95rem font-size + 2 × 1px border ≈ 44px),
       damit jede Tile baseline-gleich wie das Telefon-Input daneben rendert. */
    height: 44px;
    padding: 4px;
    box-sizing: border-box;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tl-captcha-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
    transition: opacity 0.15s;
}
.tl-captcha-tile:hover {
    border-color: var(--tl-gold);
    background: var(--tl-cream-soft);
}
.tl-captcha-tile:hover img { opacity: 1; }
.tl-captcha-tile.is-selected,
.tl-captcha-tile[aria-checked="true"] {
    border-color: var(--tl-bordeaux);
    background: var(--tl-cream-soft);
}
.tl-captcha-tile.is-selected img,
.tl-captcha-tile[aria-checked="true"] img { opacity: 1; }
.tl-captcha-tile:focus-visible {
    outline: 1px solid var(--tl-gold);
    outline-offset: 2px;
}
@media (max-width: 575px) {
    .tl-captcha-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Detail page sidebar (animal info) ---------- */
.tl-info-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    padding: 1.1rem 1.3rem 1.3rem;
    border-radius: 4px;
    box-shadow: var(--tl-shadow-sm);
}
.tl-info-card h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--tl-rule);
    padding-bottom: 0.5rem;
    margin-bottom: 0.85rem;
}

/* ---------- Partners block ---------- */
.tl-partners {
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    margin: 2rem 0;
    text-align: center;
}
.tl-partners .tl-eyebrow { justify-content: center; }
.tl-partners h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    font-weight: 500;
}
.tl-partners-intro {
    font-size: 0.93rem;
    color: var(--tl-ink-soft);
    max-width: 38rem;
    margin: 0 auto 1.4rem;
}
.tl-partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
}
.tl-partners-grid img {
    max-height: 56px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.8) opacity(0.75);
    transition: filter 0.25s, transform 0.25s;
}
.tl-partners-grid a:hover img {
    filter: none;
    transform: scale(1.05);
}

/* ---------- Footer ---------- */
.tl-footer {
    background: var(--tl-cream-soft);
    border-top: 1px solid var(--tl-rule);
    padding: 3rem 0 0;
    margin-top: 3.5rem;
    position: relative;
}
.tl-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%; max-width: 380px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tl-gold), transparent);
    opacity: 0.6;
}
.tl-footer h5 {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.85rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-footer ul { list-style: none; padding: 0; margin: 0; }
.tl-footer li { padding: 0.25rem 0; font-size: 0.9rem; }
.tl-footer a {
    color: var(--tl-ink-soft);
    text-decoration: none;
    transition: color 0.15s, padding 0.15s;
}
.tl-footer a:hover {
    color: var(--tl-bordeaux);
    padding-left: 4px;
}

.tl-footer-bottom {
    background: var(--tl-bordeaux-deep);
    color: #fff;
    padding: 1.5rem 0 1.4rem;
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    position: relative;
}
.tl-footer-bottom::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--tl-gold);
    opacity: 0.85;
}
.tl-footer-bottom a { color: var(--tl-gold-bright); text-decoration: none; }
.tl-footer-bottom a:hover { color: #fff; }
.tl-footer-bottom .tl-social-link { margin: 0 0.2rem; }
.tl-footer-bottom .tl-footer-meta { margin-top: 0.85rem; opacity: 0.92; }


/* ---------- Hero stays edge-to-edge inside the page wrapper ---------- */
.tl-page main { width: 100%; }

/* ========================================================================
 * Detail-Seite (Schützling) — magazine spread
 * Aufbau:  Meta-Leiste + Galerie (Lead + Thumbs) + Lead-Italic + Body
 * Sidebar: Steckbrief-Karten mit Gold-Top-Akzent
 * ======================================================================== */
.tl-detail { padding-top: 1.75rem; }

/* --- Meta-Leiste oberhalb der Galerie ---------------------------------- */
.tl-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.4rem;
    padding: 0 0 1.1rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid var(--tl-rule);
    position: relative;
}
.tl-detail-meta::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 4rem; height: 1px;
    background: var(--tl-gold);
}
.tl-detail-meta__back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-bordeaux);
    text-decoration: none;
    padding-right: 1rem;
    border-right: 1px solid var(--tl-rule);
    margin-right: 0.4rem;
    transition: color 0.18s, transform 0.18s;
}
.tl-detail-meta__back i { transition: transform 0.18s ease; }
.tl-detail-meta__back:hover { color: var(--tl-bordeaux-deep); }
.tl-detail-meta__back:hover i { transform: translateX(-3px); }
.tl-detail-meta__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.1rem;
    align-items: center;
}
.tl-detail-meta__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tl-ink-soft);
}
.tl-detail-meta__chip i {
    color: var(--tl-gold-deep);
    font-size: 0.95em;
}
@media (max-width: 575.98px) {
    .tl-detail-meta__back { border-right: 0; padding-right: 0; margin-right: 0; }
}

/* --- Status-Pille (Meta-Leiste + Steckbrief) --------------------------- */
.tl-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.85rem 0.32rem 0.6rem;
    border-radius: 999px;
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: var(--tl-cream-soft);
    color: var(--tl-ink);
    border: 1px solid var(--tl-rule);
    line-height: 1;
    white-space: nowrap;
}
.tl-status-pill__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    background: currentColor;
}
.tl-status-pill--available {
    background: rgba(29, 111, 72, 0.10);
    border-color: rgba(29, 111, 72, 0.28);
    color: #176039;
}
.tl-status-pill--available .tl-status-pill__dot {
    background: #1d6f48;
    box-shadow: 0 0 0 3px rgba(29, 111, 72, 0.20);
    animation: tlStatusPulse 2.6s ease-out infinite;
}
.tl-status-pill--placed {
    background: rgba(200, 154, 58, 0.13);
    border-color: rgba(200, 154, 58, 0.38);
    color: var(--tl-gold-deep);
}
.tl-status-pill--placed .tl-status-pill__dot { background: var(--tl-gold); }
.tl-status-pill--sponsored {
    background: rgba(47, 111, 106, 0.12);
    border-color: rgba(47, 111, 106, 0.34);
    color: #245a55;
}
.tl-status-pill--sponsored .tl-status-pill__dot { background: #2f6f6a; }
.tl-status-pill--deceased {
    background: #ece6dc;
    border-color: #d8cfc1;
    color: #4a4f55;
}
.tl-status-pill--deceased .tl-status-pill__dot { background: #4a4f55; }
@keyframes tlStatusPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(29, 111, 72, 0.22); }
    50%      { box-shadow: 0 0 0 7px rgba(29, 111, 72, 0.0); }
}

/* --- Galerie ----------------------------------------------------------- */
.tl-detail-gallery {
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.tl-detail-gallery__lead {
    display: block;
    aspect-ratio: 5 / 3;
    max-height: 460px;
    overflow: hidden;
    border-radius: 4px;
    background: var(--tl-cream);
    box-shadow: var(--tl-shadow-md);
    position: relative;
    isolation: isolate;
}
.tl-detail-gallery__lead::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 -90px 90px -60px rgba(15, 8, 6, 0.30);
}
.tl-detail-gallery__lead img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tl-detail-gallery__lead:hover img { transform: scale(1.025); }

.tl-detail-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 0.55rem;
}
.tl-detail-gallery__thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 3px;
    background: var(--tl-cream);
    display: block;
    position: relative;
    box-shadow: var(--tl-shadow-sm);
}
.tl-detail-gallery__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: saturate(0.92);
}
.tl-detail-gallery__thumb:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}
.tl-detail-gallery__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(40, 22, 22, 0.06);
    border-radius: inherit;
    pointer-events: none;
}
.tl-detail-gallery--solo .tl-detail-gallery__lead { aspect-ratio: 16 / 9; max-height: 420px; }

/* News-Variante: nur Thumb-Grid (Hero-Bild ist bereits als Page-Hero
   prominent, hier brauchen wir keinen Lead). Größere Mindestbreite,
   damit auch wenige Bilder als ansehnliche Galerie wirken. */
.tl-detail-gallery--news {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--tl-rule);
    position: relative;
}
.tl-detail-gallery--news::before {
    content: "Galerie";
    position: absolute;
    top: -0.55rem;
    left: 0;
    background: var(--tl-paper);
    padding-right: 0.85rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-deep);
}
.tl-detail-gallery--news .tl-detail-gallery__thumbs {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.7rem;
}

/* --- Body --------------------------------------------------------------
 * Migrationsdaten kommen oft als raw_html ohne <p> (nur \n\n). Damit die
 * Absätze sichtbar werden, raw_html-Block auf pre-line stellen, ohne den
 * Text-Wrap der Zeichen aus den Fugen zu treiben. */
.tl-detail-body {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--tl-ink);
}
.tl-detail-body > * + * { margin-top: 0.85rem; }
.tl-detail-body p { margin: 0 0 1rem; }
.tl-detail-body p:last-child { margin-bottom: 0; }
.tl-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    margin: 1.25rem 0;
    box-shadow: var(--tl-shadow-sm);
}
.tl-detail-body h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: 1.3rem;
    margin: 1.6rem 0 0.6rem;
    font-weight: 500;
}
.tl-detail-body a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: var(--tl-gold);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.tl-detail-body a:hover { color: var(--tl-bordeaux-deep); }
.tl-detail-body .w-block-raw_html,
.tl-detail-body .block-raw_html {
    white-space: pre-line;
}

/* --- Sidebar ---------------------------------------------------------- */
.tl-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.tl-detail-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.4rem 1.5rem 1.55rem;
    box-shadow: var(--tl-shadow-sm);
    position: relative;
    overflow: hidden;
}
.tl-detail-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 60%, transparent 100%);
    opacity: 0.9;
}
.tl-detail-card__head {
    margin-bottom: 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-detail-card__head .tl-eyebrow {
    margin: 0 0 0.3rem;
    color: var(--tl-gold-deep);
}
.tl-detail-card__head h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.32rem;
    margin: 0;
    line-height: 1.18;
    letter-spacing: -0.005em;
}

/* Tier-Liste */
.tl-detail-animals {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tl-detail-animal {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 0.55rem 0;
}
.tl-detail-animal + .tl-detail-animal {
    margin-top: 0.35rem;
    padding-top: 0.95rem;
    border-top: 1px dashed var(--tl-rule);
}
.tl-detail-animal__icon {
    width: 2.6rem;
    height: 2.6rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--tl-cream-soft) 0%, #fcf6e8 100%);
    color: var(--tl-bordeaux);
    border: 1px solid rgba(200, 154, 58, 0.35);
    box-shadow:
        inset 0 0 0 3px var(--tl-paper),
        0 1px 4px rgba(125, 47, 47, 0.08);
    font-size: 1.1rem;
}
.tl-detail-animal--female .tl-detail-animal__icon { color: #a83a6a; }
.tl-detail-animal--male   .tl-detail-animal__icon { color: #2c5b87; }
.tl-detail-animal__icon--neutral { color: var(--tl-bordeaux); }
.tl-detail-animal__body {
    flex: 1;
    min-width: 0;
}
.tl-detail-animal__body h3 {
    font-family: var(--tl-font-display);
    font-size: 1.18rem;
    font-weight: 600;
    color: var(--tl-ink);
    margin: 0 0 0.18rem;
    letter-spacing: -0.005em;
    line-height: 1.15;
}
.tl-detail-animal__meta {
    margin: 0;
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    color: var(--tl-ink-soft);
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.tl-detail-animal__sep { color: var(--tl-gold); font-weight: 700; }
.tl-detail-animal__pills {
    list-style: none;
    margin: 0.55rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.tl-detail-animal__pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    background: rgba(29, 111, 72, 0.08);
    border: 1px solid rgba(29, 111, 72, 0.22);
    color: #176039;
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem 0.22rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1;
}
.tl-detail-animal__pills i { font-size: 0.92em; }

/* Steckbrief-Fakten */
.tl-detail-facts {
    margin: 0;
    padding: 0;
}
.tl-detail-fact {
    display: grid;
    grid-template-columns: minmax(6.5rem, auto) 1fr;
    gap: 1rem;
    padding: 0.6rem 0;
    align-items: baseline;
    position: relative;
}
.tl-detail-fact + .tl-detail-fact {
    border-top: 1px dotted var(--tl-rule);
}
.tl-detail-fact dt {
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--tl-gold-deep);
    margin: 0;
}
.tl-detail-fact dd {
    margin: 0;
    font-family: var(--tl-font-display);
    font-size: 1rem;
    color: var(--tl-ink);
    text-align: right;
    font-weight: 500;
}
.tl-detail-fact dd .tl-status-pill {
    font-family: var(--tl-font-body);
    font-size: 0.64rem;
}

/* Beziehungs-Block (Pate/Adopter): Name oben, „seit …" als kleiner
 * Subtext darunter. */
.tl-relation + .tl-relation { margin-top: 0.4rem; }
.tl-relation__name {
    display: block;
    line-height: 1.2;
}
.tl-relation__since {
    display: block;
    font-family: var(--tl-font-body);
    font-size: 0.74rem;
    font-style: italic;
    font-weight: 400;
    color: var(--tl-muted, rgba(0,0,0,0.55));
    margin-top: 0.1rem;
    line-height: 1.2;
}

/* Tags + Kategorien */
.tl-detail-tags {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--tl-rule);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.tl-detail-tags__group { display: flex; flex-direction: column; gap: 0.45rem; }
.tl-detail-tags__label {
    font-family: var(--tl-font-body);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-ink-soft);
    font-weight: 700;
}
.tl-detail-tags__list { display: flex; flex-wrap: wrap; gap: 0.35rem; }

/* Chip-Element für Kategorien (klickbar) und Tags (passiv) */
.tl-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.75rem;
    background: var(--tl-bordeaux);
    color: #fff;
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--tl-bordeaux);
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
    line-height: 1.2;
}
.tl-chip:hover {
    background: var(--tl-bordeaux-deep);
    border-color: var(--tl-bordeaux-deep);
    color: #fff;
    transform: translateY(-1px);
}
.tl-chip--ghost {
    background: transparent;
    color: var(--tl-bordeaux);
    border-color: rgba(125, 47, 47, 0.32);
    font-weight: 500;
}
.tl-chip--ghost::before {
    content: "#";
    color: var(--tl-gold-deep);
    margin-right: 0.18em;
    font-weight: 700;
}
.tl-chip--ghost:hover {
    background: var(--tl-cream-soft);
    color: var(--tl-bordeaux-deep);
    border-color: rgba(125, 47, 47, 0.55);
}
.tl-chip__count {
    margin-left: 0.45em;
    padding-left: 0.45em;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 500;
    opacity: 0.85;
}
.tl-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
}

/* Share-Karte: bestehendes share_buttons.html-Markup neu stylen */
.tl-detail-card--share .tl-share { padding: 0; }
.tl-detail-card--share .tl-share > strong { display: none; }
.tl-detail-card--share .tl-share .btn {
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    margin: 0 0.3rem 0.3rem 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-width: 1px;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .tl-detail-sidebar { margin-top: 1.25rem; }
}

/* ========================================================================
 * Detail-Seite — Anfrage-Formular (Adoption / Patenschaft)
 * ======================================================================== */
.tl-detail-inquiry {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.6rem 1.7rem 1.85rem;
    margin: 2rem 0 1rem;
    box-shadow: var(--tl-shadow-sm);
    position: relative;
    overflow: hidden;
}
.tl-detail-inquiry::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 60%, transparent 100%);
    opacity: 0.9;
}
.tl-detail-inquiry__head {
    margin-bottom: 1.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-detail-inquiry__head .tl-eyebrow {
    margin: 0 0 0.4rem;
    color: var(--tl-gold-deep);
}
.tl-detail-inquiry__head h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    margin: 0 0 0.5rem;
    line-height: 1.16;
    letter-spacing: -0.005em;
}
.tl-detail-inquiry__lede {
    font-family: var(--tl-font-body);
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--tl-ink-soft);
    margin: 0;
    max-width: 38rem;
}
.tl-detail-inquiry__multi {
    margin: 0.85rem 0 0;
    padding: 0.55rem 0.85rem;
    background: rgba(200, 154, 58, 0.08);
    border-left: 3px solid var(--tl-gold);
    border-radius: 0 3px 3px 0;
    font-size: 0.85rem;
    color: var(--tl-ink-soft);
    line-height: 1.5;
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    max-width: 42rem;
}
.tl-detail-inquiry__multi i {
    color: var(--tl-gold-deep);
    font-size: 1em;
    margin-top: 0.18em;
    flex-shrink: 0;
}

.tl-detail-inquiry__form > * + * { margin-top: 1.1rem; }

.tl-detail-inquiry__label {
    display: block;
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    margin: 0 0 0.45rem;
}

/* Pill-Group für die Anliegen-Auswahl ------------------------------------ */
.tl-detail-inquiry__modes {
    border: 0;
    padding: 0;
    margin: 0 0 0.4rem;
}
.tl-detail-inquiry__modes legend {
    float: none;
    width: auto;
    padding: 0;
    margin: 0 0 0.55rem;
}
.tl-detail-inquiry__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tl-detail-inquiry__pill {
    flex: 1 1 12rem;
    cursor: pointer;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 999px;
    padding: 0.7rem 1rem;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.tl-detail-inquiry__pill input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.tl-detail-inquiry__pill span {
    display: block;
    text-align: center;
    font-family: var(--tl-font-body);
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--tl-ink);
    line-height: 1.25;
}
.tl-detail-inquiry__pill:hover {
    border-color: rgba(200, 154, 58, 0.55);
    background: #fcf7e8;
}
.tl-detail-inquiry__pill:has(input[type="radio"]:checked) {
    background: var(--tl-bordeaux);
    border-color: var(--tl-bordeaux);
    box-shadow: 0 4px 14px -6px rgba(125, 47, 47, 0.45);
    transform: translateY(-1px);
}
.tl-detail-inquiry__pill:has(input[type="radio"]:checked) span {
    color: #fff;
}
.tl-detail-inquiry__pill:has(input[type="radio"]:focus-visible) {
    outline: 2px solid var(--tl-gold);
    outline-offset: 2px;
}

/* Patenschafts-Beitrag — zwei separate Container für Voll/Teil ---------- */
.tl-detail-inquiry__amounts {
    display: none;
    background: var(--tl-cream-soft);
    border: 1px dashed rgba(200, 154, 58, 0.45);
    border-radius: 4px;
    padding: 1rem 1.1rem 1.1rem;
}
.tl-detail-inquiry__amounts .tl-detail-inquiry__label { color: var(--tl-bordeaux); }
.tl-detail-inquiry__amounts .form-select {
    border-radius: 999px;
    border: 1px solid var(--tl-rule);
    background-color: var(--tl-paper);
    padding: 0.55rem 1rem;
    font-family: var(--tl-font-body);
    font-size: 0.95rem;
}
.tl-detail-inquiry__amount-hint {
    margin: 0.55rem 0 0;
    font-size: 0.78rem;
    color: var(--tl-ink-soft);
    font-style: italic;
}
.tl-detail-inquiry__amount-total {
    margin: 0.55rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--tl-bordeaux);
    letter-spacing: 0.01em;
}

/* Tier-Auswahl bei Multi-Animal-Listings ---------------------------------- */
.tl-detail-inquiry__animals {
    border: 1px dashed rgba(200, 154, 58, 0.45);
    border-radius: 4px;
    padding: 0.85rem 1.1rem 1rem;
    background: var(--tl-cream-soft);
    margin: 0;
}
.tl-detail-inquiry__animal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 0.4rem;
}
.tl-detail-inquiry__animal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.tl-detail-inquiry__animal:hover {
    border-color: var(--tl-gold);
}
.tl-detail-inquiry__animal:has(input:checked) {
    background: rgba(200, 154, 58, 0.18);
    border-color: var(--tl-gold);
}
.tl-detail-inquiry__animal.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
    text-decoration-color: var(--tl-ink-soft);
}
.tl-detail-inquiry__animal.is-disabled:hover {
    border-color: var(--tl-rule);
}
.tl-detail-inquiry__animal.is-disabled input[type="checkbox"] {
    cursor: not-allowed;
}
.tl-detail-inquiry__animal input[type="checkbox"] {
    margin: 0;
    accent-color: var(--tl-bordeaux);
}
.tl-detail-inquiry__animal-hint {
    margin: 0.6rem 0 0;
    font-size: 0.78rem;
    color: var(--tl-ink-soft);
    font-style: italic;
}
/* :has()-basierte Show/Hide-Logik — kein JS nötig.
   Voll-Block sichtbar wenn Vollpate gewählt (oder als Default, falls nur
   sponsorship_full verfügbar ist). Teil-Block analog.
   Hidden-Variante: wenn nur 1 Modus verfügbar ist, rendert das Template
   `inquiry_type` als `<input type="hidden">` — dort greift `:checked` nicht,
   deshalb zusätzlich auf das Hidden-Element matchen. */
.tl-detail-inquiry:has(input[name="inquiry_type"][value="sponsorship_full"]:checked) .tl-detail-inquiry__amounts--full,
.tl-detail-inquiry:has(input[type="hidden"][name="inquiry_type"][value="sponsorship_full"]) .tl-detail-inquiry__amounts--full,
.tl-detail-inquiry:has(input[name="inquiry_type"][value="sponsorship_partial"]:checked) .tl-detail-inquiry__amounts--partial,
.tl-detail-inquiry:has(input[type="hidden"][name="inquiry_type"][value="sponsorship_partial"]) .tl-detail-inquiry__amounts--partial {
    display: block;
}

/* Inputs ----------------------------------------------------------------- */
.tl-detail-inquiry__form .form-control,
.tl-detail-inquiry__form .form-select {
    border-radius: 4px;
    border: 1px solid var(--tl-rule);
    background-color: var(--tl-paper);
    padding: 0.6rem 0.85rem;
    font-family: var(--tl-font-body);
    font-size: 0.95rem;
    color: var(--tl-ink);
    transition: border-color 0.18s, box-shadow 0.18s;
}
.tl-detail-inquiry__form .form-control:focus,
.tl-detail-inquiry__form .form-select:focus {
    border-color: var(--tl-bordeaux);
    box-shadow: 0 0 0 3px rgba(125, 47, 47, 0.12);
    outline: none;
}
.tl-detail-inquiry__form textarea.form-control {
    resize: vertical;
    min-height: 8rem;
}
.tl-detail-inquiry__form .is-invalid {
    border-color: #b03a2e;
}
.tl-detail-inquiry__form .is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(176, 58, 46, 0.15);
}
.tl-detail-inquiry__form .invalid-feedback {
    color: #b03a2e;
    font-size: 0.78rem;
    margin-top: 0.3rem;
}

/* Datenschutz ------------------------------------------------------------ */
.tl-detail-inquiry__legal {
    background: var(--tl-cream-soft);
    border-left: 3px solid var(--tl-gold);
    padding: 0.85rem 1rem;
    border-radius: 0 4px 4px 0;
}
.tl-detail-inquiry__legal .form-check {
    margin: 0;
}
.tl-detail-inquiry__legal .form-check-input {
    margin-top: 0.2rem;
    border: 1px solid var(--tl-rule);
}
.tl-detail-inquiry__legal .form-check-input:checked {
    background-color: var(--tl-bordeaux);
    border-color: var(--tl-bordeaux);
}
.tl-detail-inquiry__legal .form-check-label {
    font-size: 0.85rem;
    color: var(--tl-ink-soft);
    line-height: 1.5;
}
.tl-detail-inquiry__legal a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: var(--tl-gold);
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.tl-detail-inquiry__legal a:hover { color: var(--tl-bordeaux-deep); }

/* Submit ----------------------------------------------------------------- */
.tl-detail-inquiry__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.4rem;
}
.tl-detail-inquiry__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    border: 0;
    font-family: var(--tl-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    text-decoration: none;
    box-shadow: 0 6px 18px -8px rgba(125, 47, 47, 0.5);
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.tl-detail-inquiry__submit:hover {
    background: var(--tl-gold-bright);
    color: var(--tl-bordeaux-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px -8px rgba(125, 47, 47, 0.55);
}
.tl-detail-inquiry__submit:active { transform: translateY(0); }
.tl-detail-inquiry__submit i { font-size: 1em; }

/* Thanks-Variante -------------------------------------------------------- */
.tl-detail-thanks { padding: 1.6rem 1.7rem 1.85rem; }
.tl-detail-thanks__body {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--tl-ink);
    margin: 0 0 0.85rem;
}
.tl-detail-thanks__hint {
    font-size: 0.9rem;
    color: var(--tl-ink-soft);
    margin: 0 0 1.4rem;
}
.tl-detail-thanks__hint a { color: var(--tl-bordeaux); }
.tl-detail-thanks__actions { display: flex; }

/* Mobile — Pills stapeln, Submit volle Breite --------------------------- */
@media (max-width: 575.98px) {
    .tl-detail-inquiry { padding: 1.3rem 1.1rem 1.5rem; }
    .tl-detail-inquiry__pill { flex-basis: 100%; }
    .tl-detail-inquiry__actions { justify-content: stretch; }
    .tl-detail-inquiry__submit { width: 100%; justify-content: center; }
}

/* ========================================================================
 * Galerie-Lightbox (natives <dialog>-Element)
 * ======================================================================== */
.tl-lightbox {
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    max-width: none;
    max-height: none;
    width: 100vw;
    height: 100vh;
    inset: 0;
    margin: 0;
    overflow: hidden;
    overscroll-behavior: contain;
}
.tl-lightbox::backdrop {
    background: rgba(15, 8, 6, 0.86);
    backdrop-filter: blur(6px) saturate(0.85);
    -webkit-backdrop-filter: blur(6px) saturate(0.85);
}
.tl-lightbox[open] {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: tlLightboxIn 0.22s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes tlLightboxIn {
    from { opacity: 0; transform: scale(0.985); }
    to   { opacity: 1; transform: scale(1); }
}

.tl-lightbox__figure {
    margin: 0;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}
.tl-lightbox__img {
    max-width: 95vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
    background: #1a0f0d;
}
.tl-lightbox__caption {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.86);
    max-width: 80ch;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.tl-lightbox__caption[hidden] { display: none; }

/* Steuer-Buttons --------------------------------------------------------- */
.tl-lightbox__close,
.tl-lightbox__nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 12, 10, 0.55);
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.18s, border-color 0.18s, transform 0.18s, color 0.18s;
}
.tl-lightbox__close:hover,
.tl-lightbox__nav:hover {
    background: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    border-color: var(--tl-gold);
}
.tl-lightbox__close:focus-visible,
.tl-lightbox__nav:focus-visible {
    outline: 2px solid var(--tl-gold-bright);
    outline-offset: 3px;
}
.tl-lightbox__close { top: 1rem;   right: 1rem; }
.tl-lightbox__nav   { top: 50%; transform: translateY(-50%); }
.tl-lightbox__nav--prev { left: 1rem; }
.tl-lightbox__nav--next { right: 1rem; }
.tl-lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
.tl-lightbox__close[hidden],
.tl-lightbox__nav[hidden] { display: none; }

/* Zähler unten links ---------------------------------------------------- */
.tl-lightbox__counter {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    font-family: var(--tl-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(20, 12, 10, 0.5);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.tl-lightbox__counter[hidden] { display: none; }

@media (max-width: 575.98px) {
    .tl-lightbox__close,
    .tl-lightbox__nav { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
    .tl-lightbox__close { top: 0.6rem; right: 0.6rem; }
    .tl-lightbox__nav--prev { left: 0.4rem; }
    .tl-lightbox__nav--next { right: 0.4rem; }
    .tl-lightbox__img { max-height: 76vh; }
    .tl-lightbox__counter { bottom: 0.7rem; left: 0.7rem; font-size: 0.7rem; }
}

/* ========================================================================
 * Spenden-Seite (/spenden) — Editorial-Layout
 * ======================================================================== */

.tl-spenden-intro {
    text-align: center;
    max-width: 44rem;
    margin: 3rem auto 2.5rem;
    padding: 0 1rem;
}
.tl-spenden-intro .tl-eyebrow { justify-content: center; }
.tl-spenden-intro h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
}
.tl-spenden-intro p {
    color: var(--tl-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}
.tl-spenden-intro strong { color: var(--tl-ink); font-weight: 600; }

/* Hilfe-Cards: Variante von tl-tile-card OHNE Bild, mit Icon-Medaillon */
.tl-mission--help { margin-top: 1rem; }
.tl-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991.98px) { .tl-help-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px)    { .tl-help-grid { grid-template-columns: 1fr; } }

/* Zwei-Karten-Variante (z. B. Vollpate / Teilpate): mittig, breiter, nicht über volle Section-Breite gestreckt */
.tl-help-grid--duo {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.5rem;
}
@media (max-width: 560px) { .tl-help-grid--duo { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------------
   Ansprechpartner — Detail-Card (Render-Variante A aus Mockup)
   --------------------------------------------------------------------------- */
.tl-person-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--tl-shadow-md, 0 6px 18px -8px rgba(40,30,20,.16));
    position: relative;
    display: flex;
    flex-direction: column;
}
.tl-person-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 100%);
}
.tl-person-card__photo {
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--tl-gold) 0%, var(--tl-bordeaux) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 3.5rem;
    line-height: 1;
    padding-bottom: 1rem;
    overflow: hidden;
}
.tl-person-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-person-card__body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.tl-person-card__role {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tl-gold-deep);
    margin: 0 0 0.3rem;
}
.tl-person-card__name {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.5rem;
    margin: 0 0 0.6rem;
    line-height: 1.1;
}
.tl-person-card__bio {
    font-size: 0.9rem;
    color: var(--tl-ink-soft);
    line-height: 1.55;
    margin: 0 0 1rem;
}
.tl-person-card__contact {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--tl-rule);
    margin-top: auto;
}
.tl-person-card__icon {
    width: 2rem; height: 2rem;
    border-radius: 50%;
    background: var(--tl-cream);
    color: var(--tl-bordeaux);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.tl-person-card__icon:hover { background: var(--tl-bordeaux); color: var(--tl-gold-bright, #e7be67); }

/* ---------------------------------------------------------------------------
   Mention chip (inline) — Render-Mode "chip"
   --------------------------------------------------------------------------- */
.tl-mention {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--tl-cream);
    border: 1px solid var(--tl-gold);
    color: var(--tl-bordeaux);
    font-style: italic;
    padding: 0.02em 0.55em;
    border-radius: 999px;
    font-family: var(--tl-font-display);
    font-size: 0.95em;
    line-height: 1.5;
    vertical-align: baseline;
    text-decoration: none;
    white-space: nowrap;
}

.tl-help-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.6rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: var(--tl-shadow-sm);
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}
.tl-help-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 100%);
    opacity: 0.75;
    transition: opacity 0.25s ease;
}
.tl-help-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tl-shadow-md);
    border-color: rgba(200, 154, 58, 0.45);
}
.tl-help-card:hover::before { opacity: 1; }

.tl-help-card-icon {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    color: var(--tl-gold-bright);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 0 1.05rem;
    box-shadow: 0 6px 14px -6px rgba(125, 47, 47, 0.55);
}
.tl-help-card-title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.45rem;
    margin: 0 0 0.3rem;
    line-height: 1.15;
}
.tl-help-card-amount {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    margin: 0 0 0.85rem;
}
.tl-help-card-amount strong { color: var(--tl-bordeaux); font-weight: 700; }
.tl-help-card-text {
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 1.1rem;
    flex: 1;
}
.tl-help-card-text em { font-style: italic; color: var(--tl-ink); }

/* Bank-Panel + Sachspenden — zweispaltig */
.tl-give-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0 2.5rem;
    scroll-margin-top: 100px;
}
@media (max-width: 880px) { .tl-give-row { grid-template-columns: 1fr; gap: 1.25rem; } }

.tl-bank-panel {
    background: linear-gradient(160deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    color: var(--tl-cream-soft);
    border-radius: 6px;
    padding: 2rem 2rem 2.1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tl-shadow-md);
}
.tl-bank-panel::before {
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(226, 185, 85, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.tl-bank-panel::after {
    /* Großes Display-Serif-Ornament — dezenter Akzent */
    content: "\20AC";
    position: absolute;
    right: 1.2rem;
    bottom: -1.5rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 14rem;
    line-height: 1;
    color: rgba(226, 185, 85, 0.08);
    pointer-events: none;
}
.tl-bank-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-bright);
    margin: 0 0 0.6rem;
    position: relative;
}
.tl-bank-panel__eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: var(--tl-gold-bright);
}
.tl-bank-panel__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-cream-soft);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0 0 0.65rem;
    position: relative;
}
.tl-bank-panel__lead {
    color: rgba(243, 238, 228, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.4rem;
    max-width: 30rem;
    position: relative;
}
.tl-bank-panel__details {
    margin: 0 0 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
}
.tl-bank-panel__details > div {
    display: grid;
    grid-template-columns: 10rem 1fr;
    align-items: baseline;
    gap: 2rem;
    padding-bottom: 0.7rem;
    border-bottom: 1px solid rgba(226, 185, 85, 0.22);
}
.tl-bank-panel__details > div:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-bank-panel__details dt {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-bright);
    margin: 0;
}
.tl-bank-panel__details dd {
    margin: 0;
    color: var(--tl-cream-soft);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}
.tl-iban {
    font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
    font-size: 1.02rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    color: var(--tl-gold-bright);
}
.tl-paypal {
    font-weight: 600;
    color: var(--tl-gold-bright);
    word-break: break-word;
}
.tl-copy-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(226, 185, 85, 0.15);
    border: 1px solid rgba(226, 185, 85, 0.45);
    color: var(--tl-gold-bright);
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.tl-copy-btn:hover {
    background: var(--tl-gold);
    border-color: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    transform: translateY(-1px);
}
.tl-copy-btn.is-copied {
    background: var(--tl-gold-bright);
    border-color: var(--tl-gold-bright);
    color: var(--tl-bordeaux-deep);
    box-shadow: 0 0 0 4px rgba(226, 185, 85, 0.22);
}
.tl-copy-btn i { font-size: 0.85rem; }

/* Toast-Pop direkt über dem Button — pseudo-element, animiert nur via .is-copied */
.tl-copy-btn::after {
    content: "✓ IBAN kopiert";
    position: absolute;
    bottom: calc(100% + 0.55rem);
    left: 50%;
    transform: translate(-50%, 0.35rem);
    background: var(--tl-gold-bright);
    color: var(--tl-bordeaux-deep);
    padding: 0.4rem 0.85rem;
    border-radius: 4px;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.55);
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.tl-copy-btn::before {
    /* kleines Dreieck unter dem Toast */
    content: "";
    position: absolute;
    bottom: calc(100% + 0.2rem);
    left: 50%;
    transform: translate(-50%, 0.35rem);
    border: 5px solid transparent;
    border-top-color: var(--tl-gold-bright);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.tl-copy-btn.is-copied::after,
.tl-copy-btn.is-copied::before {
    opacity: 1;
    transform: translate(-50%, 0);
}
.tl-bank-panel__note {
    color: rgba(243, 238, 228, 0.78);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
    position: relative;
}
.tl-bank-panel__note a {
    color: var(--tl-gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(226, 185, 85, 0.45);
    text-underline-offset: 2px;
}
.tl-bank-panel__note a:hover {
    color: #fff;
    text-decoration-color: var(--tl-gold-bright);
}

/* Bank-Panel — Mobile: Label/Wert stacken, IBAN bekommt volle Breite */
@media (max-width: 560px) {
    .tl-bank-panel {
        padding: 1.6rem 1.35rem 1.7rem;
    }
    .tl-bank-panel__details {
        gap: 1rem;
    }
    .tl-bank-panel__details > div {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding-bottom: 0.9rem;
    }
    .tl-bank-panel__details dd {
        font-size: 0.98rem;
    }
    .tl-iban {
        font-size: 1rem;
        word-break: break-word;
    }
    .tl-bank-panel::after {
        font-size: 10rem;
        right: 0.6rem;
        bottom: -1rem;
    }
}

/* Side-list (Sachspenden) */
.tl-side-list {
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 6px;
    padding: 1.85rem 1.85rem 2rem;
}
.tl-side-list__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.55rem;
    margin: 0 0 0.55rem;
}
.tl-side-list__lead {
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 1.25rem;
}
.tl-side-list__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.tl-side-list__items li {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    gap: 0.85rem;
    align-items: start;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-side-list__items li:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-side-list__items i {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 50%;
    color: var(--tl-bordeaux);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.tl-side-list__items strong {
    display: block;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    margin: 0 0 0.15rem;
}
.tl-side-list__items span {
    display: block;
    color: var(--tl-ink-soft);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* Impact-Grid — "Wofür wir deine Spende einsetzen" */
.tl-impact { margin: 1rem 0 2.5rem; }
.tl-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}
@media (max-width: 991.98px) { .tl-impact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)    { .tl-impact-grid { grid-template-columns: 1fr; } }

.tl-impact-item {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.6rem 1.3rem 1.4rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s ease, transform 0.22s ease;
}
.tl-impact-item:hover {
    border-color: rgba(200, 154, 58, 0.5);
    transform: translateY(-3px);
}
.tl-impact-item__num {
    position: absolute;
    top: 0.7rem;
    right: 0.95rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--tl-cream);
    pointer-events: none;
    user-select: none;
}
.tl-impact-item > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: var(--tl-gold-deep);
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 50%;
    font-size: 1.1rem;
    margin: 0 0 0.85rem;
}
.tl-impact-item h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.15rem;
    margin: 0 0 0.45rem;
}
.tl-impact-item p {
    color: var(--tl-ink-soft);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

/* FAQ / Details-Akkordeon — native <details> */
.tl-faq {
    margin: 1rem 0 2.75rem;
}
.tl-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 56rem;
    margin: 0 auto;
}
.tl-faq-item {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tl-faq-item[open] {
    border-color: rgba(200, 154, 58, 0.55);
    box-shadow: var(--tl-shadow-sm);
}
.tl-faq-item > summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: 1.6rem 1fr 1.2rem;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.1rem;
    line-height: 1.25;
    transition: background 0.18s ease, color 0.18s ease;
}
.tl-faq-item > summary::-webkit-details-marker { display: none; }
.tl-faq-item > summary > i:first-child {
    color: var(--tl-gold);
    font-size: 1.1rem;
    font-style: normal;
}
.tl-faq-item > summary:hover {
    background: var(--tl-cream-soft);
    color: var(--tl-bordeaux-deep);
}
.tl-faq-chevron {
    font-style: normal;
    color: var(--tl-bordeaux);
    font-size: 1rem;
    transition: transform 0.22s ease;
    justify-self: end;
}
.tl-faq-item[open] > summary > .tl-faq-chevron { transform: rotate(-180deg); }
.tl-faq-item[open] > summary { background: var(--tl-cream-soft); }

.tl-faq-body {
    padding: 0.35rem 1.2rem 1.3rem 3.45rem;
    color: var(--tl-ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
    border-top: 1px solid var(--tl-rule);
    background: var(--tl-paper);
    animation: tlFaqFade 0.22s ease;
}
.tl-faq-body p { margin: 0.85rem 0 0; }
.tl-faq-body p:first-child { margin-top: 0.85rem; }
.tl-faq-body strong { color: var(--tl-ink); font-weight: 600; }
.tl-faq-body em { font-style: italic; color: var(--tl-ink); }
.tl-faq-body a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: var(--tl-gold);
    text-underline-offset: 2px;
}
.tl-faq-body a:hover { color: var(--tl-bordeaux-deep); }

.tl-faq-address {
    display: block;
    font-style: normal;
    background: var(--tl-cream-soft);
    border-left: 3px solid var(--tl-gold);
    padding: 0.85rem 1.1rem;
    margin: 0.95rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--tl-ink);
    border-radius: 0 4px 4px 0;
}
.tl-faq-address strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
}

.tl-faq-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    background: rgba(200, 154, 58, 0.08);
    border: 1px solid rgba(200, 154, 58, 0.28);
    border-radius: 4px;
    padding: 0.7rem 0.95rem;
    font-size: 0.9rem;
    color: var(--tl-ink);
}
.tl-faq-note i {
    color: var(--tl-gold-deep);
    font-size: 1.05rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
}

@keyframes tlFaqFade {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 575.98px) {
    .tl-faq-item > summary { padding: 0.85rem 1rem; font-size: 1rem; }
    .tl-faq-body { padding: 0.35rem 1rem 1.1rem 1rem; }
}

/* Final-CTA-Band */
.tl-cta-band {
    margin: 1.5rem 0 3rem;
    padding: 2.6rem 1.75rem 2.8rem;
    text-align: center;
    background:
        linear-gradient(180deg, var(--tl-cream-soft) 0%, var(--tl-cream) 100%);
    border: 1px solid var(--tl-rule);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.tl-cta-band::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 50%, var(--tl-bordeaux) 100%);
}
.tl-cta-band .tl-eyebrow { justify-content: center; }
.tl-cta-band h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    margin: 0 0 0.5rem;
}
.tl-cta-band p {
    color: var(--tl-ink-soft);
    max-width: 34rem;
    margin: 0 auto 1.5rem;
    font-size: 0.98rem;
}
.tl-cta-band__actions {
    display: flex;
    gap: 0.9rem 1.4rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
/* Secondary-CTA-Variante für helle Hintergründe (Cream-Band statt Dark-Hero):
   Weiße Schrift wäre unlesbar, deshalb Bordeaux + Bordeaux-Underline.
   Wirkt wie der ``__cta-ghost`` aus dem Schützling-Detail-Hero. */
.tl-cta-band .tl-hero-cta-secondary {
    color: var(--tl-bordeaux);
    border-bottom-color: var(--tl-bordeaux);
    text-shadow: none;
}
.tl-cta-band .tl-hero-cta-secondary:hover {
    color: var(--tl-bordeaux-deep);
    border-bottom-color: var(--tl-bordeaux-deep);
}

/* =================================================================
 * /ueber-uns/ — About page (flexible_page_ueber_uns.html)
 * Editorial spread: origin story, pillars, process, team grid.
 * ================================================================= */

/* Origin / Story spread — Magazine-Style: Foto floated in der Story-Spalte */
.tl-about-origin {
    margin: 1.25rem 0 3rem;
    max-width: 64rem;
}
.tl-about-origin__copy { min-width: 0; }

/* Foto wird im Lead-Block floated — wirkt wie ein redaktioneller Beitrag */
.tl-about-origin__media {
    position: relative;
    margin: 0.35rem 1.6rem 0.75rem 0;
    float: left;
    width: 230px;
    max-width: 45%;
    shape-outside: margin-box;
}
@media (max-width: 575.98px) {
    .tl-about-origin__media {
        float: none;
        width: 190px;
        margin: 0.25rem auto 1.25rem 0;
    }
}
.tl-about-origin__media img {
    display: block;
    width: 100%;
    height: auto;
    /* Quellbild ist nur 555×556 — natürliches Quadrat, kein Hochskalieren */
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center 35%;
    border-radius: 2px;
    box-shadow: var(--tl-shadow-md);
    /* Mildes Editorial-Grading kaschiert die geringe Auflösung */
    filter: saturate(0.92) contrast(0.96);
}
/* Polaroid-artige Innenrand-Linie */
.tl-about-origin__media::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 2px;
    pointer-events: none;
    z-index: 1;
}
/* Gold-Offsetrahmen */
.tl-about-origin__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--tl-gold);
    border-radius: 2px;
    transform: translate(0.45rem, 0.45rem);
    z-index: -1;
    pointer-events: none;
}
.tl-about-origin__media figcaption {
    margin-top: 0.7rem;
    padding-top: 0.55rem;
    border-top: 1px solid var(--tl-rule);
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 0.95rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.tl-about-origin__cap-eyebrow {
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-deep);
}
/* Clearfix damit Stats/Note nicht ins floated Bild hineinlaufen */
.tl-about-origin__copy::after {
    content: "";
    display: block;
    clear: both;
}

.tl-about-origin__copy {
    min-width: 0;
}
.tl-about-origin__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.8rem, 3.4vw, 2.5rem);
    line-height: 1.15;
    margin: 0 0 1.1rem;
}
.tl-about-origin__copy p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--tl-ink-soft);
    margin: 0 0 1.1rem;
}
.tl-about-origin__copy .tl-about-origin__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--tl-ink);
}
.tl-about-origin__copy strong {
    color: var(--tl-bordeaux);
    font-weight: 600;
}
.tl-about-origin__dropcap {
    float: left;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 3.6rem;
    line-height: 0.85;
    margin: 0.35rem 0.55rem 0 0;
    padding: 0 0.1rem;
}

.tl-about-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem 1.5rem;
    margin: 1.4rem 0 0;
    padding: 1.05rem 1.25rem;
    background: var(--tl-cream-soft);
    border-left: 3px solid var(--tl-gold);
    border-radius: 0 4px 4px 0;
    clear: left;
}
@media (max-width: 681px) {
    .tl-about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tl-about-stats > div { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.tl-about-stats dt {
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
}
.tl-about-stats dd {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.25;
}
.tl-about-origin__note {
    font-size: 0.95rem;
    color: var(--tl-ink-soft);
    line-height: 1.65;
    margin: 0;
}

/* Pillars */
.tl-about-pillars { margin: 1.25rem 0 3rem; }
.tl-about-pillars__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.95rem;
}
@media (max-width: 1080px) { .tl-about-pillars__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 681px)  { .tl-about-pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .tl-about-pillars__grid { grid-template-columns: 1fr; } }

.tl-pillar {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.4rem 1.15rem 1.2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.tl-pillar:hover {
    border-color: rgba(200, 154, 58, 0.55);
    transform: translateY(-3px);
    box-shadow: var(--tl-shadow-sm);
}
.tl-pillar__num {
    position: absolute;
    top: 0.55rem;
    right: 0.85rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--tl-cream);
    pointer-events: none;
    user-select: none;
}
.tl-pillar > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    color: var(--tl-bordeaux);
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 50%;
    font-size: 1.1rem;
    margin: 0 0 0.85rem;
}
.tl-pillar h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0 0 0.4rem;
}
.tl-pillar p {
    color: var(--tl-ink-soft);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Process strip — image left, ordered steps right */
.tl-about-process {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
    align-items: center;
    margin: 2rem 0 3rem;
    padding: clamp(1.25rem, 3vw, 2.25rem) clamp(1rem, 2.5vw, 1.75rem);
    background:
        linear-gradient(180deg, var(--tl-cream-soft) 0%, var(--tl-paper) 100%);
    border: 1px solid var(--tl-rule);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.tl-about-process::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-gold) 0%, var(--tl-bordeaux) 100%);
}
@media (max-width: 991.98px) {
    .tl-about-process { grid-template-columns: 1fr; }
}

.tl-about-process__media { margin: 0; }
.tl-about-process__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 3px;
    box-shadow: var(--tl-shadow-md);
}
.tl-about-process__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 2.8vw, 2.1rem);
    line-height: 1.2;
    margin: 0 0 0.85rem;
}
.tl-about-process__lead {
    color: var(--tl-ink-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.4rem;
    max-width: 38rem;
}

.tl-about-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    counter-reset: tlsteps;
}
.tl-about-steps > li {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 1rem;
    align-items: start;
    padding-bottom: 0.85rem;
    border-bottom: 1px dashed var(--tl-rule);
}
.tl-about-steps > li:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-about-steps__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: var(--tl-bordeaux);
    color: var(--tl-cream);
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px var(--tl-cream-soft);
}
.tl-about-steps > li > div { display: flex; flex-direction: column; gap: 0.1rem; min-width: 0; }
.tl-about-steps strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    line-height: 1.25;
}
.tl-about-steps span:not(.tl-about-steps__num) {
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* Team grid */
.tl-about-team { margin: 1rem 0 2.5rem; scroll-margin-top: 6rem; }
.tl-about-team__note {
    margin: 0;
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    text-align: right;
    line-height: 1.6;
}
.tl-about-team__note .tl-arrow-link { margin-top: 0.2rem; }

.tl-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}
@media (max-width: 1080px) { .tl-team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; } }
@media (max-width: 480px)  { .tl-team-grid { grid-template-columns: 1fr; } }

/* Vorstand: 3 Karten */
.tl-team-grid--vorstand { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .tl-team-grid--vorstand { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 681px)  { .tl-team-grid--vorstand { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }

/* Crew: 2 Karten – schmaler & zentriert, damit Karten nicht überdimensional wirken */
.tl-team-grid--crew {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.4rem;
}
@media (max-width: 681px) { .tl-team-grid--crew { grid-template-columns: 1fr; max-width: 480px; } }

/* Sehr schmale Screens: horizontales Layout fällt zurück auf vertikal */
@media (max-width: 440px) {
    .tl-team-card { flex-direction: column; min-height: 0; }
    .tl-team-card__photo {
        flex: 0 0 auto;
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .tl-team-card__body {
        border-left: none;
        border-top: 1px solid var(--tl-rule);
    }
    .tl-team-card__photo::after {
        inset: auto 0 0 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(180deg, rgba(34, 28, 25, 0) 0%, rgba(34, 28, 25, 0.4) 100%);
        opacity: 0.45;
    }
    .tl-team-card:hover .tl-team-card__photo::after { opacity: 0.65; }
}

/* Crew-Section spacing */
.tl-about-crew {
    margin-top: 2.6rem;
    padding-top: 2.2rem;
    border-top: 1px dashed var(--tl-rule);
}
.tl-section-head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.tl-section-head--center > div { max-width: 42ch; }

.tl-team-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 180px;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.tl-team-card:hover {
    border-color: rgba(200, 154, 58, 0.55);
    transform: translateY(-3px);
    box-shadow: var(--tl-shadow-md);
}
.tl-team-card__photo {
    flex: 0 0 38%;
    position: relative;
    overflow: hidden;
    background: var(--tl-cream-soft);
}
.tl-team-card__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.6s ease;
}
.tl-team-card:hover .tl-team-card__photo img { transform: scale(1.04); }
.tl-team-card__photo::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 auto;
    width: 60%;
    right: 0;
    background: linear-gradient(90deg, rgba(34, 28, 25, 0) 0%, rgba(34, 28, 25, 0.18) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
}
.tl-team-card:hover .tl-team-card__photo::after { opacity: 0.4; }

.tl-team-card__body {
    padding: 1rem 1.15rem 1.05rem;
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    border-left: 1px solid var(--tl-rule);
    flex: 1 1 auto;
    min-width: 0;
}
.tl-team-card__name {
    font-family: var(--tl-font-display);
    font-weight: 500;
    color: var(--tl-ink);
    font-size: 1.2rem;
    line-height: 1.2;
    margin: 0;
}
.tl-team-card__name em {
    font-style: italic;
    color: var(--tl-bordeaux);
    font-weight: 500;
}
.tl-team-card__role {
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tl-gold-deep);
    margin: 0;
}
.tl-team-card__bio {
    color: var(--tl-ink-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.35rem 0 0;
}

/* Vermittlungs-Grundsätze — sachliche Aussagen-Box (kein Zitat) */
.tl-about-principles {
    margin: 2rem 0 2.5rem;
    padding: 1.4rem 1.6rem 1.55rem;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-left: 3px solid var(--tl-gold);
    border-radius: 0 4px 4px 0;
}
.tl-about-principles .tl-eyebrow { margin-bottom: 0.45rem; }
.tl-about-principles p {
    margin: 0;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-ink);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.55;
}
.tl-about-principles p strong {
    font-style: normal;
    color: var(--tl-bordeaux);
    font-weight: 600;
}

@media (max-width: 681px) {
    .tl-about-team__note { text-align: left; }
    .tl-section-head { flex-direction: column; align-items: flex-start; }
    .tl-section-head--center { align-items: center; text-align: center; }
}

/* =================================================================
 * /jahresrueckblicke/ — Jahresrückblicke-Archiv
 * Editorial Magazin-Stack: Intro + Featured-Spread + Cover-Grid
 * ================================================================= */

/* Intro */
.tl-jr-intro {
    margin: 1.25rem 0 2.5rem;
    max-width: 60rem;
}
.tl-jr-intro__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 2.6vw, 2.05rem);
    line-height: 1.2;
    margin: 0 0 0.95rem;
}
.tl-jr-intro__lead {
    color: var(--tl-ink);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 1.3rem;
}
.tl-jr-intro__lead p:last-child { margin-bottom: 0; }

/* Hinweis-Box */
.tl-jr-note {
    display: grid;
    grid-template-columns: 1.4rem 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.95rem 1.15rem;
    background: rgba(200, 154, 58, 0.08);
    border: 1px solid rgba(200, 154, 58, 0.28);
    border-radius: 4px;
    color: var(--tl-ink);
    font-size: 0.93rem;
    line-height: 1.55;
}
.tl-jr-note > i {
    color: var(--tl-gold-deep);
    font-size: 1.15rem;
    margin-top: 0.1rem;
}
.tl-jr-note strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    margin-right: 0.25rem;
}

/* Featured (aktueller Rückblick) — Magazine-Spread */
.tl-jr-featured {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(1.75rem, 4vw, 3.25rem);
    align-items: start;
    margin: 0 0 3.25rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background:
        radial-gradient(circle at 80% 0%, rgba(200, 154, 58, 0.10) 0%, transparent 55%),
        linear-gradient(180deg, var(--tl-cream-soft) 0%, var(--tl-paper) 100%);
    border: 1px solid var(--tl-rule);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}
.tl-jr-featured::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tl-bordeaux) 0%, var(--tl-gold) 50%, var(--tl-bordeaux) 100%);
}
@media (max-width: 991.98px) {
    .tl-jr-featured { grid-template-columns: 1fr; }
}

.tl-jr-featured__cover {
    position: relative;
    margin: 0;
    max-width: 360px;
}
@media (max-width: 991.98px) {
    .tl-jr-featured__cover { max-width: 280px; }
}
.tl-jr-featured__cover a {
    display: block;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: var(--tl-shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-jr-featured__cover a:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 60px -22px rgba(40, 22, 22, 0.5);
}
.tl-jr-cover-img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 0.707;
    object-fit: cover;
    object-position: center top;
}
.tl-jr-featured__cover::after {
    /* Gold-Offset hinter dem Cover */
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--tl-gold);
    border-radius: 3px;
    transform: translate(0.6rem, 0.6rem);
    z-index: -1;
    pointer-events: none;
}
.tl-jr-featured__cover-meta {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}
.tl-jr-featured__year-badge {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.4rem;
    line-height: 1;
}

.tl-jr-filesize {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tl-gold-deep);
}
.tl-jr-filesize i { font-size: 0.95rem; }

.tl-jr-featured__body { min-width: 0; }
.tl-jr-featured__title {
    font-family: var(--tl-font-display);
    font-weight: 500;
    color: var(--tl-ink);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    margin: 0.4rem 0 0.7rem;
}
.tl-jr-featured__title em {
    font-style: italic;
    color: var(--tl-bordeaux);
    font-weight: 500;
}
.tl-jr-featured__lead {
    color: var(--tl-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 1.35rem;
}
.tl-jr-featured__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.tl-jr-featured__actions .tl-hero-cta,
.tl-jr-featured__actions .tl-cta-outline {
    font-size: 0.85rem;
    padding: 0.7rem 1.15rem;
}
.tl-jr-featured__actions .tl-cta-outline {
    padding: calc(0.7rem - 1.5px) calc(1.15rem - 1.5px);
}

/* Outline-Pill-Variante des Primary-CTA — für Content-Bereich auf hellem
   Hintergrund (z. B. Jahresrückblicke-Featured). Gleiche Form/Größe wie
   `tl-hero-cta`, aber transparent mit Bordeaux-Border, gefüllt beim Hover. */
.tl-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: transparent;
    color: var(--tl-bordeaux-deep);
    border: 1.5px solid var(--tl-bordeaux-deep);
    padding: calc(0.75rem - 1.5px) calc(1.4rem - 1.5px);
    border-radius: 999px;
    font-family: var(--tl-font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    text-decoration: none;
    transition: transform 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
}
.tl-cta-outline:hover {
    background: var(--tl-bordeaux-deep);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px -10px rgba(0,0,0,0.45);
}
.tl-cta-outline:focus-visible {
    outline: 2px solid var(--tl-gold);
    outline-offset: 2px;
}

/* Archiv */
.tl-jr-archive { margin: 0 0 2.75rem; }
.tl-jr-archive__note {
    margin: 0;
    color: var(--tl-ink-soft);
    font-size: 0.9rem;
    text-align: right;
    font-style: italic;
}
@media (max-width: 681px) {
    .tl-jr-archive__note { text-align: left; }
}

.tl-jr-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}
@media (max-width: 1080px) { .tl-jr-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 681px)  { .tl-jr-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 440px)  { .tl-jr-grid { grid-template-columns: 1fr; } }

.tl-jr-card {
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.tl-jr-card:hover {
    border-color: rgba(200, 154, 58, 0.55);
    transform: translateY(-3px);
    box-shadow: var(--tl-shadow-md);
}
.tl-jr-card__cover {
    position: relative;
    display: block;
    background: var(--tl-cream-soft);
    overflow: hidden;
    text-decoration: none;
    border-bottom: 1px solid var(--tl-rule);
}
.tl-jr-card__cover .tl-jr-cover-img {
    aspect-ratio: 0.707;
    transition: transform 0.5s ease;
}
.tl-jr-card:hover .tl-jr-card__cover .tl-jr-cover-img { transform: scale(1.035); }

.tl-jr-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 0.707;
    color: var(--tl-rule);
    font-size: 3rem;
}
.tl-jr-card__year {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: rgba(40, 26, 22, 0.86);
    color: var(--tl-cream);
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    padding: 0.35rem 0.6rem;
    border-radius: 2px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(200, 154, 58, 0.4);
}
.tl-jr-card__body {
    padding: 0.8rem 0.9rem 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex-grow: 1;
}
.tl-jr-card__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.02rem;
    line-height: 1.25;
    margin: 0;
}
.tl-jr-card__meta {
    margin: 0;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--tl-ink-soft);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.tl-jr-card__meta i { color: var(--tl-bordeaux); font-size: 0.85rem; }
.tl-jr-card__actions {
    margin-top: auto;
    padding-top: 0.55rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
.tl-jr-card__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--tl-bordeaux);
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.tl-jr-card__download:hover {
    background: var(--tl-bordeaux);
    color: var(--tl-cream);
    border-color: var(--tl-bordeaux);
}

/* =================================================================
 * /kontakt/ — Kontakt-Seite (contact_page.html)
 * Schnellkontakt-Strip + Formular-Spread + Datenschutz-Box
 * ================================================================= */

/* Schnellkontakt-Strip — 4 Cards mit Icon + Label + Wert + Hinweis */
.tl-contact-channels {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.95rem;
    margin: 1.5rem 0 2.5rem;
}
@media (max-width: 1080px) { .tl-contact-channels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .tl-contact-channels { grid-template-columns: 1fr; } }

.tl-contact-channel {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.05rem 1.15rem 1.1rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.tl-contact-channel:not(.tl-contact-channel--static):hover {
    border-color: rgba(200, 154, 58, 0.55);
    transform: translateY(-3px);
    box-shadow: var(--tl-shadow-sm);
    color: inherit;
}
.tl-contact-channel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    color: var(--tl-bordeaux);
    font-size: 1.35rem;
    flex-shrink: 0;
}
.tl-contact-channel:not(.tl-contact-channel--static):hover .tl-contact-channel__icon {
    background: var(--tl-bordeaux);
    color: var(--tl-cream);
    border-color: var(--tl-bordeaux);
}
.tl-contact-channel__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.tl-contact-channel__body .tl-eyebrow { margin: 0 0 0.05rem; }
.tl-contact-channel__body strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    line-height: 1.25;
    word-break: break-word;
}
.tl-contact-channel__hint {
    font-size: 0.78rem;
    color: var(--tl-ink-soft);
    line-height: 1.4;
    margin-top: 0.15rem;
}
.tl-contact-channel__social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-family: var(--tl-font-body);
    font-size: 0.92rem;
    margin: 0.1rem 0 0;
}
.tl-contact-channel__social a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--tl-bordeaux);
    font-weight: 600;
    text-decoration: none;
}
.tl-contact-channel__social a:hover { color: var(--tl-bordeaux-deep); }
.tl-contact-channel__social a i { font-size: 1.05rem; color: var(--tl-gold-deep); }

/* Formular-Spread: Form links (2fr), Side rechts (1fr) */
.tl-contact-spread {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
    margin: 0 0 3rem;
}
@media (max-width: 991.98px) {
    .tl-contact-spread { grid-template-columns: 1fr; }
}

/* Form-Card überschreibt minimal tl-detail-inquiry für /kontakt/-Kontext */
.tl-contact-form { margin: 0; }
.tl-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.75rem 1.4rem;
}

/* Side: Bild oben + Steps-Panel unten */
.tl-contact-side {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.tl-contact-side__media {
    position: relative;
    margin: 0;
}
.tl-contact-side__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 3px;
    box-shadow: var(--tl-shadow-md);
}
.tl-contact-side__media::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--tl-gold);
    border-radius: 3px;
    transform: translate(0.55rem, 0.55rem);
    z-index: -1;
    pointer-events: none;
}
.tl-contact-side__media figcaption {
    margin-top: 0.7rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1rem;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.tl-contact-side__cap-eye {
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-deep);
}

.tl-contact-side__panel {
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-left: 3px solid var(--tl-gold);
    border-radius: 0 4px 4px 0;
    padding: 1.2rem 1.3rem 1.3rem;
}
.tl-contact-side__panel .tl-eyebrow { margin-bottom: 0.55rem; }
.tl-contact-side__panel-lead {
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 0.95rem;
}

.tl-contact-shortcuts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.tl-contact-shortcuts > li { margin: 0; }
.tl-contact-shortcuts a {
    display: grid;
    grid-template-columns: 1.8rem 1fr;
    gap: 0.85rem;
    align-items: start;
    padding: 0.7rem 0.85rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 3px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.tl-contact-shortcuts a:hover {
    border-color: rgba(200, 154, 58, 0.55);
    background: var(--tl-paper);
    transform: translateX(2px);
}
.tl-contact-shortcuts a > i {
    color: var(--tl-bordeaux);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}
.tl-contact-shortcuts a > div { display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }
.tl-contact-shortcuts strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 0.98rem;
    line-height: 1.25;
}
.tl-contact-shortcuts span {
    color: var(--tl-ink-soft);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* =================================================================
 * /sarah/ — Editorial-Portrait einer Vereinsfreundin
 * Sun-bleached letter from Crete. Olive accent, paper texture,
 * stamp graphic, polaroid hero, mosaic gallery.
 * Reusable as tl-friend-* / tl-letter / tl-mosaic for future portraits.
 * ================================================================= */

:root {
    --tl-olive:       #6e7c5b;
    --tl-olive-soft:  #93a07e;
    --tl-olive-deep:  #525e44;
    --tl-postcard:    #f7eed7;
}

/* ---------- Hero — Reportage spread, not a dark background blob ---------- */
.tl-friend-hero {
    background: linear-gradient(180deg, var(--tl-cream-soft) 0%, var(--tl-cream) 100%);
    border-bottom: 1px solid var(--tl-rule);
    /* padding-top kompensiert den fixed Header (~4.5rem) plus Atemraum für Stamp */
    padding: 6rem 1.75rem 3rem;
    position: relative;
    overflow: hidden;
}
@media (max-width: 720px) { .tl-friend-hero { padding-top: 5rem; } }
.tl-friend-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 12% 8%, rgba(200, 154, 58, 0.10), transparent 60%),
        radial-gradient(ellipse 60% 50% at 92% 88%, rgba(125, 47, 47, 0.06), transparent 60%);
    pointer-events: none;
}
.tl-friend-hero__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 4vw, 3.25rem);
    align-items: center;
}
@media (max-width: 880px) { .tl-friend-hero__inner { grid-template-columns: 1fr; gap: 1.75rem; } }

.tl-friend-hero__copy { position: relative; }
.tl-friend-hero__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1.2rem;
}
.tl-friend-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--tl-font-body);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--tl-bordeaux);
}
.tl-friend-hero__eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--tl-bordeaux), var(--tl-gold));
}
.tl-friend-hero__stamp {
    transform: rotate(-4deg);
    background: var(--tl-postcard);
    color: var(--tl-olive-deep);
    border: 1.5px dashed var(--tl-olive);
    padding: 0.5rem 0.9rem 0.45rem;
    border-radius: 2px;
    font-family: var(--tl-font-body);
    text-align: center;
    line-height: 1;
    box-shadow: 0 6px 16px -10px rgba(82, 94, 68, 0.45);
    flex-shrink: 0;
}
.tl-friend-hero__stamp-main {
    display: block;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--tl-olive-deep);
}
.tl-friend-hero__stamp small {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--tl-olive);
    margin-top: 0.3rem;
}
@media (max-width: 480px) {
    .tl-friend-hero__topline { justify-content: flex-start; }
    .tl-friend-hero__stamp { transform: rotate(-2deg); }
}

.tl-friend-hero__title {
    font-family: var(--tl-font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.92;
    color: var(--tl-bordeaux);
    margin: 0.2rem 0 1.1rem;
    font-weight: 500;
    letter-spacing: -0.015em;
}
.tl-friend-hero__title em {
    color: var(--tl-gold);
    font-style: normal;
    font-family: var(--tl-font-body);
    font-weight: 300;
}
.tl-friend-hero__byline {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-ink);
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.55;
    margin: 0 0 1.6rem;
    max-width: 34rem;
}
.tl-friend-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem 1.25rem;
    margin: 0;
    padding-top: 1.1rem;
    border-top: 1px solid var(--tl-rule);
    max-width: 28rem;
}
@media (max-width: 480px) { .tl-friend-hero__meta { grid-template-columns: 1fr 1fr; } }
.tl-friend-hero__meta > div { display: flex; flex-direction: column; gap: 0.15rem; }
.tl-friend-hero__meta dt {
    font-family: var(--tl-font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--tl-gold-deep);
}
.tl-friend-hero__meta dd {
    margin: 0;
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-bordeaux);
    font-size: 0.95rem;
    line-height: 1.25;
}

/* Polaroid-style hero photo */
.tl-friend-hero__media {
    margin: 0;
    justify-self: center;
    background: var(--tl-paper);
    padding: 0.85rem 0.85rem 2.4rem;
    box-shadow: var(--tl-shadow-md), 0 25px 55px -25px rgba(40, 22, 22, 0.35);
    transform: rotate(2deg);
    max-width: 320px;
    position: relative;
    transition: transform 0.5s ease;
}
.tl-friend-hero__media:hover { transform: rotate(0); }
.tl-friend-hero__media::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -0.7rem;
    width: 4rem;
    height: 1.1rem;
    background: rgba(125, 47, 47, 0.18);
    transform: translateX(-50%) rotate(-3deg);
    border-radius: 1px;
    box-shadow: 0 2px 4px -2px rgba(40, 22, 22, 0.25);
}
.tl-friend-hero__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 247 / 395;
    object-fit: cover;
    background: var(--tl-cream);
}
.tl-friend-hero__media figcaption {
    position: absolute;
    bottom: 0.55rem;
    left: 0.95rem;
    right: 0.95rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--tl-ink-soft);
    line-height: 1.3;
    text-align: left;
}
.tl-friend-hero__cap-eyebrow {
    display: block;
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.55rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--tl-olive);
    margin-bottom: 0.15rem;
}

/* ---------- Letter — Sarah in eigenen Worten ---------- */
.tl-letter {
    padding: 3rem 0 2rem;
    display: flex;
    justify-content: center;
}
.tl-letter__paper {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 238, 215, 0.35)),
        var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 2px;
    padding: clamp(1.5rem, 4vw, 3rem) clamp(1.4rem, 5vw, 3.5rem) clamp(1.75rem, 4vw, 2.5rem);
    max-width: 760px;
    width: 100%;
    box-shadow: var(--tl-shadow-md);
    position: relative;
}
/* Linke Marginal-Linie (wie ein klassisches Notizbuch) — die horizontale
   Linierung bewusst weggelassen, weil sie mit der Zeilenhöhe des Fließtexts
   einen zweiten, konkurrierenden Rhythmus erzeugt. */
.tl-letter__paper::after {
    content: "";
    position: absolute;
    left: 2.5rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    border-left: 1px solid rgba(125, 47, 47, 0.18);
    pointer-events: none;
}
@media (max-width: 600px) { .tl-letter__paper::after { display: none; } }

.tl-letter__head { margin: 0 0 1.2rem; position: relative; }
.tl-letter__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tl-font-body);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--tl-olive);
    margin: 0 0 0.55rem;
}
.tl-letter__eyebrow::before {
    content: "";
    width: 1.75rem;
    height: 1px;
    background: var(--tl-olive-soft);
}
.tl-letter__greeting {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.45rem, 3vw, 1.95rem);
    line-height: 1.2;
    margin: 0;
}
.tl-letter__greeting em { color: var(--tl-gold-deep); font-style: italic; }

.tl-letter__body {
    font-family: var(--tl-font-display);
    color: var(--tl-ink);
    font-size: 1.04rem;
    /* Integer-Pixel-Zeilenhöhe: 1.75rem = 28px bei 16px-root.
       Liefert einen sauberen vertikalen Rhythmus und vermeidet
       Sub-Pixel-Rundungen zwischen Paragraphen. */
    line-height: 1.75rem;
    position: relative;
    display: flow-root;
    /* Georgia rendert Ziffern als Oldstyle-Figures — Lining-Figures bringen
       alle Zahlen auf eine einheitliche Cap-Höhe. */
    font-variant-numeric: lining-nums;
    font-kerning: normal;
}
.tl-letter__body p { margin: 0 0 1.4rem; }
.tl-letter__body p:last-child { margin-bottom: 0; }
/* Lead behält bewusst dieselbe Font-Size wie der Fließtext — eine größere
   Type würde innerhalb des 1.7rem-Line-Box die Baseline minimal nach unten
   verschieben und den Text aus dem Linien-Grid drücken. Hervorhebung des
   Lead-Paragraphs kommt über die Dropcap. */
/* Dropcap: spannt EXAKT 2 Body-Zeilen — also 3.5rem (= 56px = 2 × 28px).
   Float-Höhe muss ein exakter Integer-Pixel-Wert auf dem Body-Grid sein,
   sonst schubst die Float-Wrap-Logik nachfolgende Zeilen aus dem Raster.
   font-size: 3.5rem + line-height: 1 + zero padding/margin = 56px clean. */
.tl-letter__dropcap {
    float: left;
    font-family: var(--tl-font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--tl-bordeaux);
    padding: 0 0.4rem 0 0;
    margin: 0;
    font-style: italic;
    font-weight: 600;
}
/* Strong + em behalten genau die Schrift-Metrik des Fließtexts —
   keine zweite Schriftstärke, kein zweiter Stil, kein abweichendes
   Letter-Spacing. Emphasis erfolgt rein über Farbe (und bei em zusätzlich
   über den natürlichen Italic-Slant von Georgia). */
.tl-letter__body strong {
    color: var(--tl-bordeaux);
    font-weight: inherit;
    font-style: inherit;
}
.tl-letter__body em {
    color: var(--tl-gold-deep);
    font-weight: inherit;
}

.tl-letter__sign { margin-top: 1.6rem; font-style: italic; }
.tl-letter__sign-line {
    display: block;
    font-family: var(--tl-font-display);
    font-size: 1.7rem;
    color: var(--tl-bordeaux);
    line-height: 1;
    font-style: italic;
    letter-spacing: 0.01em;
    transform: rotate(-2deg);
    transform-origin: left center;
    margin-bottom: 0.25rem;
}
.tl-letter__sign-sub {
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--tl-ink-soft);
}

.tl-letter__link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
    padding: 0.85rem 1.1rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    color: var(--tl-bordeaux);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--tl-shadow-sm);
}
.tl-letter__link:hover {
    transform: translateY(-2px);
    border-color: var(--tl-olive);
    box-shadow: var(--tl-shadow-md);
}
.tl-letter__link > i:first-child { color: var(--tl-olive); font-size: 1.35rem; }
.tl-letter__link > i:last-child { color: var(--tl-gold); font-size: 0.95rem; transition: transform 0.2s ease; }
.tl-letter__link:hover > i:last-child { transform: translate(2px, -2px); }
.tl-letter__link span {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.25;
}
.tl-letter__link strong {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 1rem;
}
.tl-letter__link em {
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: lowercase;
    color: var(--tl-ink-soft);
}

/* ---------- Numbers strip ---------- */
.tl-friend-numbers {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
    margin: 1.5rem 0 3rem;
    padding: 1.75rem 1rem;
    background: var(--tl-paper);
    border-top: 1px solid var(--tl-rule);
    border-bottom: 1px solid var(--tl-rule);
}
@media (max-width: 720px) {
    .tl-friend-numbers { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.25rem 1rem; }
    .tl-friend-numbers__rule { display: none; }
}
.tl-friend-numbers__cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
}
.tl-friend-numbers__big {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 4.5rem);
    color: var(--tl-bordeaux);
    line-height: 0.95;
    letter-spacing: -0.02em;
}
.tl-friend-numbers__label {
    font-family: var(--tl-font-body);
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--tl-gold-deep);
    margin-top: 0.35rem;
}
.tl-friend-numbers__note {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-ink-soft);
    font-size: 0.86rem;
    margin-top: 0.25rem;
    max-width: 20rem;
    line-height: 1.4;
}
.tl-friend-numbers__rule {
    width: 1px;
    height: 4.5rem;
    background: linear-gradient(180deg, transparent, var(--tl-rule) 30%, var(--tl-rule) 70%, transparent);
}

/* ---------- Reportage spread ---------- */
.tl-friend-context {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(1.25rem, 4vw, 3rem);
    margin: 2.5rem 0 3rem;
    align-items: start;
}
@media (max-width: 880px) { .tl-friend-context { grid-template-columns: 1fr; } }

.tl-friend-context__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    margin: 0.5rem 0 1rem;
    line-height: 1.18;
}
.tl-friend-context__lead {
    color: var(--tl-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 36rem;
}
.tl-friend-context__lead em { color: var(--tl-ink); }

.tl-friend-context__facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tl-friend-context__facts > li {
    display: grid;
    grid-template-columns: 3.2rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1rem 0;
    border-top: 1px solid var(--tl-rule);
}
.tl-friend-context__facts > li:last-child { border-bottom: 1px solid var(--tl-rule); }
.tl-friend-context__num {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-olive);
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
}
.tl-friend-context__facts strong {
    display: block;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.12rem;
    margin: 0 0 0.3rem;
    line-height: 1.25;
}
.tl-friend-context__facts span {
    color: var(--tl-ink-soft);
    font-size: 0.94rem;
    line-height: 1.6;
}

.tl-friend-side {
    background: var(--tl-postcard);
    border: 1px dashed var(--tl-olive-soft);
    border-radius: 3px;
    padding: 1.4rem 1.4rem 1.5rem;
    position: relative;
    align-self: start;
}
.tl-friend-side::before {
    content: "";
    position: absolute;
    top: -0.7rem; left: -0.7rem;
    width: 1.4rem; height: 1.4rem;
    border-top: 1px solid var(--tl-olive);
    border-left: 1px solid var(--tl-olive);
}
.tl-friend-side::after {
    content: "";
    position: absolute;
    bottom: -0.7rem; right: -0.7rem;
    width: 1.4rem; height: 1.4rem;
    border-bottom: 1px solid var(--tl-olive);
    border-right: 1px solid var(--tl-olive);
}
.tl-friend-side .tl-eyebrow { color: var(--tl-olive); }
.tl-friend-side .tl-eyebrow::before { background: var(--tl-olive-soft); }
.tl-friend-side h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.25rem;
    margin: 0.45rem 0 0.65rem;
    line-height: 1.2;
}
.tl-friend-side p {
    color: var(--tl-ink-soft);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0 0 0.9rem;
}

/* ---------- Foto-Mosaik ---------- */
.tl-friend-mosaic { margin: 2rem 0 2.5rem; }
.tl-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 9.5rem;
    gap: 0.85rem;
}
@media (max-width: 1024px) { .tl-mosaic { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 8.5rem; } }
@media (max-width: 720px)  { .tl-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 9rem; } }

.tl-mosaic__tile {
    margin: 0;
    overflow: hidden;
    background: var(--tl-paper);
    padding: 0.4rem 0.4rem 0.4rem;
    box-shadow: var(--tl-shadow-sm);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0.4s ease;
}
.tl-mosaic__tile::after {
    content: "";
    position: absolute;
    inset: 0.4rem;
    background: linear-gradient(180deg, rgba(40, 22, 22, 0) 60%, rgba(40, 22, 22, 0.12) 100%);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.tl-mosaic__tile:hover {
    transform: scale(1.025) rotate(-0.4deg);
    box-shadow: var(--tl-shadow-md);
    z-index: 2;
}
.tl-mosaic__tile:hover::after { opacity: 0; }
.tl-mosaic__tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease;
    filter: saturate(0.92) contrast(1.02);
}
.tl-mosaic__tile:hover img { filter: saturate(1.05) contrast(1.04); }

/* Tile-Größen — abhängig von Bildorientierung & gewünschter Komposition */
.tl-mosaic__tile--p          { grid-column: span 1; grid-row: span 2; }   /* portrait */
.tl-mosaic__tile--l          { grid-column: span 2; grid-row: span 1; }   /* landscape */
.tl-mosaic__tile--s          { grid-column: span 2; grid-row: span 2; }   /* square */
.tl-mosaic__tile--span-r2    { grid-row: span 3; }                        /* extra-hoch */
.tl-mosaic__tile--span-c2    { grid-column: span 3; }                     /* extra-breit */

@media (max-width: 1024px) {
    .tl-mosaic__tile--p { grid-column: span 1; grid-row: span 2; }
    .tl-mosaic__tile--l { grid-column: span 2; grid-row: span 1; }
    .tl-mosaic__tile--s { grid-column: span 2; grid-row: span 2; }
    .tl-mosaic__tile--span-r2 { grid-row: span 2; }
    .tl-mosaic__tile--span-c2 { grid-column: span 2; }
}
@media (max-width: 720px) {
    .tl-mosaic__tile--p,
    .tl-mosaic__tile--l,
    .tl-mosaic__tile--s { grid-column: span 1; grid-row: span 1; }
    .tl-mosaic__tile--p { grid-row: span 2; }
    .tl-mosaic__tile--s { grid-row: span 2; }
    .tl-mosaic__tile--span-r2 { grid-row: span 2; }
    .tl-mosaic__tile--span-c2 { grid-column: span 2; }
}

/* Friend-note variant of about-principles */
.tl-friend-note { margin-top: 2.5rem; border-left: 4px solid var(--tl-olive); }
.tl-friend-note .tl-eyebrow { color: var(--tl-olive); }
.tl-friend-note .tl-eyebrow::before { background: var(--tl-olive-soft); }

/* ---------- /adoption/ — Editorial-spezifisch ---------- */
.tl-section-head__note {
    margin: 0 0 0.6rem;
    color: var(--tl-ink-soft);
    font-size: 0.92rem;
    text-align: right;
    line-height: 1.6;
    max-width: 22rem;
}
.tl-section-head__note em { font-style: italic; color: var(--tl-ink); }

.tl-adopt-check { margin: 2.5rem 0 2rem; }
.tl-adopt-check__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    row-gap: 0.25rem;
}
@media (max-width: 720px) { .tl-adopt-check__grid { grid-template-columns: 1fr; } }
.tl-adopt-check__grid > li { border-bottom: 1px dashed var(--tl-rule); padding-bottom: 0.95rem; padding-top: 0.85rem; }
.tl-adopt-check__grid > li:nth-last-child(-n+2) { border-bottom: 0; padding-bottom: 0.4rem; }
@media (max-width: 720px) {
    .tl-adopt-check__grid > li:nth-last-child(-n+2) { border-bottom: 1px dashed var(--tl-rule); padding-bottom: 0.95rem; }
    .tl-adopt-check__grid > li:last-child { border-bottom: 0; }
}

/* =====================================================================
 * Impressum — /impressum/ — flexible_page_impressum.html
 * Editorial Rechtliches: Vereins-Visitenkarte + Vertretungs-Sidebar,
 * Vereinszweck-Band, Bildnachweise als nummerierte Editorial-Liste.
 * ===================================================================== */

/* Offenlegung-Intro — wie tl-spenden-intro, eigene Klasse für künftige Tweaks. */
.tl-imprint-intro {
    text-align: center;
    max-width: 44rem;
    margin: 3rem auto 2.5rem;
    padding: 0 1rem;
}
.tl-imprint-intro .tl-eyebrow { justify-content: center; }
.tl-imprint-intro h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}
.tl-imprint-intro h2 em {
    font-style: italic;
    color: var(--tl-gold-deep);
}
.tl-imprint-intro p {
    color: var(--tl-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
}
.tl-imprint-intro strong { color: var(--tl-ink); font-weight: 600; }

/* Vereins-Visitenkarte + Sidebar — zweispaltig wie tl-give-row, etwas
 * stärker zugunsten der Hauptkarte. */
.tl-imprint-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0 3rem;
    align-items: stretch;
}
@media (max-width: 880px) { .tl-imprint-row { grid-template-columns: 1fr; gap: 1.25rem; } }

/* ---- Hauptkarte (Diensteanbieter) — Bordeaux-Verlauf wie tl-bank-panel ---- */
.tl-imprint-card {
    background: linear-gradient(160deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    color: var(--tl-cream-soft);
    border-radius: 6px;
    padding: 2.1rem 2.1rem 1.85rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tl-shadow-md);
}
.tl-imprint-card::before {
    /* Sanfter goldener Glow oben rechts — wie bei tl-bank-panel */
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(226, 185, 85, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.tl-imprint-card::after {
    /* Großes Display-Serif-Ornament: §-Zeichen */
    content: "\00A7";
    position: absolute;
    right: 1.5rem;
    bottom: -2rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 13rem;
    line-height: 1;
    color: rgba(226, 185, 85, 0.07);
    pointer-events: none;
    transform: rotate(-6deg);
}
.tl-imprint-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-bright);
    margin: 0 0 0.6rem;
    position: relative;
}
.tl-imprint-card__eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: var(--tl-gold-bright);
}
.tl-imprint-card__title {
    font-family: var(--tl-font-display);
    font-weight: 500;
    color: var(--tl-cream-soft);
    font-size: clamp(1.7rem, 2.6vw, 2.15rem);
    margin: 0 0 0.7rem;
    line-height: 1.15;
    position: relative;
    letter-spacing: 0.005em;
}
.tl-imprint-card__title em {
    font-style: italic;
    color: var(--tl-gold-bright);
    font-weight: 400;
}
.tl-imprint-card__lead {
    color: rgba(243, 238, 228, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.5rem;
    max-width: 32rem;
    position: relative;
}

.tl-imprint-card__details {
    margin: 0 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
}
.tl-imprint-card__details > div {
    display: grid;
    grid-template-columns: 8rem 1fr;
    align-items: baseline;
    gap: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(226, 185, 85, 0.22);
}
.tl-imprint-card__details > div:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-imprint-card__details dt {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-bright);
    margin: 0;
}
.tl-imprint-card__details dd {
    margin: 0;
    color: var(--tl-cream-soft);
    font-family: var(--tl-font-body);
    font-size: 1.02rem;
    line-height: 1.45;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 0.85rem;
}
.tl-imprint-card__details dd address {
    margin: 0;
    font-style: normal;
    line-height: 1.45;
    flex: 1 1 auto;
}
.tl-imprint-link {
    color: var(--tl-cream-soft);
    text-decoration: underline;
    text-decoration-color: rgba(226, 185, 85, 0.45);
    text-underline-offset: 3px;
    font-variant-numeric: tabular-nums lining-nums;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.tl-imprint-link:hover {
    color: var(--tl-gold-bright);
    text-decoration-color: var(--tl-gold-bright);
}
.tl-imprint-card__note {
    color: rgba(243, 238, 228, 0.78);
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.tl-imprint-card__note i {
    color: var(--tl-gold-bright);
    margin-top: 0.15rem;
}
.tl-imprint-card__note a {
    color: var(--tl-gold-bright);
    text-decoration: underline;
    text-decoration-color: rgba(226, 185, 85, 0.45);
    text-underline-offset: 2px;
}
.tl-imprint-card__note a:hover {
    color: #fff;
    text-decoration-color: var(--tl-gold-bright);
}

/* Generischer Copy-Toast — überschreibt die IBAN-spezifische ::after-Phrase
 * aus tl-copy-btn, damit auch E-Mail/Telefon-Buttons sinnvoll feedbacken. */
.tl-copy-btn--generic::after { content: "\2713  kopiert"; }

/* ---- Sidebar (Vertretung & Register) — Cream-soft, gleiche Höhe wie Card ---- */
.tl-imprint-side {
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 6px;
    padding: 1.9rem 1.9rem 1.7rem;
    display: flex;
    flex-direction: column;
}
.tl-imprint-side .tl-eyebrow { margin-bottom: 0.6rem; }
.tl-imprint-side__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.55rem;
    line-height: 1.2;
    margin: 0 0 1.3rem;
}

.tl-imprint-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tl-imprint-facts li {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    align-items: start;
    gap: 0.9rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--tl-rule);
}
.tl-imprint-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.tl-imprint-facts__icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--tl-bordeaux);
    font-size: 1rem;
    box-shadow: 0 1px 2px rgba(40,22,22,0.04);
}
.tl-imprint-facts dt {
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    margin: 0 0 0.25rem;
}
.tl-imprint-facts dd {
    margin: 0;
    color: var(--tl-ink);
    font-size: 0.98rem;
    line-height: 1.5;
    font-variant-numeric: lining-nums;
}
.tl-imprint-facts dd strong { font-weight: 600; }
.tl-imprint-zvr {
    font-family: var(--tl-font-body);
    font-feature-settings: "tnum" 1;
    font-variant-numeric: tabular-nums lining-nums;
    color: var(--tl-bordeaux);
    font-weight: 600;
}

.tl-imprint-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.7rem;
    padding: 0.25rem 0.7rem;
    background: var(--tl-paper);
    border: 1px solid var(--tl-rule);
    border-radius: 999px;
    color: var(--tl-bordeaux);
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.tl-imprint-pdf i { font-size: 0.95rem; color: var(--tl-bordeaux); }
.tl-imprint-pdf:hover {
    border-color: var(--tl-gold);
    color: var(--tl-bordeaux-deep);
    background: #fffbf3;
    transform: translateY(-1px);
}

/* ---- Vereinszweck-Band — zentriert, magazinhaft ---- */
.tl-imprint-mission {
    text-align: center;
    max-width: 46rem;
    margin: 3rem auto;
    padding: 2.2rem 1.5rem;
    position: relative;
}
.tl-imprint-mission::before,
.tl-imprint-mission::after {
    /* schmale gold-zu-transparent Strich-Akzente oben und unten */
    content: "";
    position: absolute;
    left: 50%;
    width: 4.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--tl-gold) 50%, transparent 100%);
    transform: translateX(-50%);
}
.tl-imprint-mission::before { top: 0; }
.tl-imprint-mission::after  { bottom: 0; }
.tl-imprint-mission .tl-eyebrow { justify-content: center; }
.tl-imprint-mission h2 {
    font-family: var(--tl-font-display);
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 2.7vw, 2.05rem);
    margin: 0.4rem 0 1rem;
    line-height: 1.25;
}
.tl-imprint-mission h2 em {
    font-style: italic;
    color: var(--tl-gold-deep);
}
.tl-imprint-mission p {
    color: var(--tl-ink-soft);
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
    font-variant-numeric: lining-nums;
}
.tl-imprint-mission p strong { color: var(--tl-ink); font-weight: 600; }
.tl-imprint-mission p .tl-arrow-link { margin-left: 0.2rem; }

/* ---- Bildnachweise — nummerierte Editorial-Liste ---- */
.tl-imprint-credits {
    margin: 3rem 0 2.5rem;
}
.tl-imprint-credits .tl-section-head h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    margin: 0 0 0.4rem;
    line-height: 1.2;
}
.tl-imprint-credits__lead {
    color: var(--tl-ink-soft);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    max-width: 44rem;
}
.tl-imprint-credits__lead em {
    font-style: italic;
    color: var(--tl-bordeaux-soft);
}

.tl-imprint-credits-list {
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
    border-top: 1px solid var(--tl-rule);
}
.tl-imprint-credits-list li {
    display: grid;
    grid-template-columns: 3.2rem 1fr auto;
    align-items: baseline;
    gap: 1.1rem;
    padding: 1.05rem 0.25rem;
    border-bottom: 1px solid var(--tl-rule);
    transition: background 0.18s ease;
}
.tl-imprint-credits-list li:hover {
    background: linear-gradient(90deg, rgba(243,238,228,0.55) 0%, transparent 80%);
}
.tl-imprint-credits-list__num {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-gold-deep);
    font-size: 1.45rem;
    line-height: 1;
    font-variant-numeric: lining-nums;
}
.tl-imprint-credits-list__body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}
.tl-imprint-credits-list__author {
    font-family: var(--tl-font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--tl-ink);
    text-decoration: none;
    letter-spacing: 0.002em;
    transition: color 0.2s ease;
}
.tl-imprint-credits-list__author:hover { color: var(--tl-bordeaux); }
.tl-imprint-credits-list__title {
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-ink-soft);
    font-size: 0.96rem;
    line-height: 1.4;
}
.tl-imprint-credits-list__title a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--tl-rule);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.tl-imprint-credits-list__title a:hover {
    color: var(--tl-bordeaux);
    border-bottom-color: var(--tl-bordeaux);
}
.tl-imprint-credits-list__src {
    font-family: var(--tl-font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tl-gold-deep);
    white-space: nowrap;
}

/* ---- Cross-Link zu Datenschutz ---- */
.tl-imprint-crosslink {
    margin: 3rem 0 4rem;
    padding: 1.7rem 2rem;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-left: 3px solid var(--tl-bordeaux);
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.5rem;
}
.tl-imprint-crosslink p {
    margin: 0.2rem 0 0;
    color: var(--tl-ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
}
.tl-arrow-link--lg {
    font-size: 1rem;
}

/* ---- Mobile-Verfeinerungen ---- */
@media (max-width: 560px) {
    .tl-imprint-card {
        padding: 1.7rem 1.4rem 1.6rem;
    }
    .tl-imprint-card__details > div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        padding-bottom: 0.95rem;
    }
    .tl-imprint-card__details dd { font-size: 0.98rem; }
    .tl-imprint-card::after {
        font-size: 9rem;
        right: 0.6rem;
        bottom: -1.5rem;
    }
    .tl-imprint-side {
        padding: 1.5rem 1.4rem 1.4rem;
    }
    .tl-imprint-facts li {
        grid-template-columns: 2.1rem 1fr;
        gap: 0.7rem;
    }
    .tl-imprint-pdf {
        margin-left: 0;
        margin-top: 0.4rem;
    }
    .tl-imprint-facts dd {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.3rem 0.7rem;
    }
    .tl-imprint-credits-list li {
        grid-template-columns: 2.3rem 1fr;
        row-gap: 0.3rem;
    }
    .tl-imprint-credits-list__src {
        grid-column: 2 / 3;
        justify-self: start;
        font-size: 0.65rem;
    }
    .tl-imprint-crosslink {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1.4rem 1.4rem;
    }
}

/* =====================================================================
 * Datenschutz — /datenschutz/ — flexible_page_datenschutz.html
 * Editorial Rechtliches: Quick-Facts-Strip, sticky-TOC + dunkle Verantwortliche-
 * Card, nummerierte Sections, Tiles für Datenerfassung, Service-Card für Brevo,
 * FAQ-Pattern für DSGVO-Rechte. Wiederverwendet tl-imprint-link/-crosslink,
 * tl-faq-item, tl-copy-btn, tl-eyebrow, tl-arrow-link.
 * ===================================================================== */

/* ---- Intro + Quick-Facts ---- */
.tl-privacy-intro {
    text-align: center;
    max-width: 46rem;
    margin: 3rem auto 2.5rem;
    padding: 0 1rem;
}
.tl-privacy-intro .tl-eyebrow { justify-content: center; }
.tl-privacy-intro h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}
.tl-privacy-intro h2 em { font-style: italic; color: var(--tl-gold-deep); }
.tl-privacy-intro p {
    color: var(--tl-ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.tl-privacy-intro strong { color: var(--tl-ink); font-weight: 600; }

.tl-privacy-quickfacts {
    list-style: none;
    margin: 1.4rem auto 0;
    padding: 1rem 1.2rem;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1.2rem;
    text-align: left;
}
@media (min-width: 720px) {
    .tl-privacy-quickfacts { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.tl-privacy-quickfacts li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--tl-ink-soft);
}
.tl-privacy-quickfacts li i {
    color: var(--tl-bordeaux);
    font-size: 1.05rem;
    flex: 0 0 auto;
}
.tl-privacy-quickfacts strong { color: var(--tl-ink); font-weight: 600; }

/* ---- TOC + Verantwortliche-Card (Top-Row) ---- */
.tl-privacy-toprow {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 2rem;
    margin: 2rem 0 3rem;
    align-items: start;
}
@media (max-width: 880px) {
    .tl-privacy-toprow { grid-template-columns: 1fr; gap: 1.25rem; }
}

.tl-privacy-toc {
    background: #fff;
    border: 1px solid var(--tl-rule);
    border-left: 3px solid var(--tl-bordeaux);
    border-radius: 4px;
    padding: 1.2rem 1.3rem 1.3rem;
    position: sticky;
    top: 5rem;
}
.tl-privacy-toc .tl-eyebrow { margin-bottom: 0.7rem; }
.tl-privacy-toc ol {
    list-style: none;
    counter-reset: tl-toc;
    margin: 0;
    padding: 0;
}
.tl-privacy-toc li {
    counter-increment: tl-toc;
    border-bottom: 1px dotted var(--tl-rule);
}
.tl-privacy-toc li:last-child { border-bottom: 0; }
.tl-privacy-toc li a {
    display: grid;
    grid-template-columns: 1.8rem 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0;
    font-size: 0.93rem;
    color: var(--tl-ink-soft);
    text-decoration: none;
    line-height: 1.35;
    transition: color 0.15s ease;
}
.tl-privacy-toc li a::before {
    content: counter(tl-toc, decimal-leading-zero);
    font-family: var(--tl-font-display);
    font-style: italic;
    color: var(--tl-gold-deep);
    font-size: 0.95rem;
}
.tl-privacy-toc li a:hover { color: var(--tl-bordeaux); }
@media (max-width: 880px) {
    .tl-privacy-toc { position: static; }
}

/* Verantwortliche-Card — analog tl-imprint-card, eigenes Ornament (Schloss). */
.tl-privacy-card {
    background: linear-gradient(160deg, var(--tl-bordeaux) 0%, var(--tl-bordeaux-deep) 100%);
    color: var(--tl-cream-soft);
    border-radius: 6px;
    padding: 2.1rem 2.1rem 1.85rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--tl-shadow-md);
    scroll-margin-top: 5rem;
}
.tl-privacy-card::before {
    content: "";
    position: absolute;
    top: -40%; right: -20%;
    width: 70%;
    height: 180%;
    background: radial-gradient(ellipse at center, rgba(226, 185, 85, 0.18) 0%, transparent 60%);
    pointer-events: none;
}
.tl-privacy-card__num {
    position: absolute;
    top: 1.1rem;
    right: 1.4rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(226, 185, 85, 0.18);
    pointer-events: none;
}
.tl-privacy-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-gold-bright);
    margin: 0 0 0.6rem;
    position: relative;
}
.tl-privacy-card__eyebrow::before {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: var(--tl-gold-bright);
}
.tl-privacy-card__title {
    font-family: var(--tl-font-display);
    font-weight: 500;
    color: var(--tl-cream-soft);
    font-size: clamp(1.6rem, 2.4vw, 2rem);
    margin: 0 0 0.7rem;
    line-height: 1.18;
    position: relative;
}
.tl-privacy-card__title em {
    font-style: italic;
    color: var(--tl-gold-bright);
    font-weight: 400;
}
.tl-privacy-card__lead {
    color: rgba(243, 238, 228, 0.78);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0 0 1.3rem;
    max-width: 36rem;
    position: relative;
}
.tl-privacy-card__details {
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tl-privacy-card__details > div {
    display: grid;
    grid-template-columns: 9rem 1fr;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(243, 238, 228, 0.12);
    gap: 0.6rem;
}
.tl-privacy-card__details > div:last-child { border-bottom: 0; }
.tl-privacy-card__details dt {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(226, 185, 85, 0.82);
}
.tl-privacy-card__details dd {
    margin: 0;
    color: var(--tl-cream-soft);
    font-size: 1.02rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.8rem;
}
.tl-privacy-card__details dd address {
    font-style: normal;
    margin: 0;
    line-height: 1.5;
}
.tl-privacy-card .tl-imprint-link {
    color: var(--tl-gold-bright);
    text-decoration: none;
    border-bottom: 1px dotted rgba(226, 185, 85, 0.55);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.tl-privacy-card .tl-imprint-link:hover {
    color: #fff;
    border-bottom-color: var(--tl-gold-bright);
}
.tl-privacy-card__note {
    position: relative;
    margin: 0;
    padding: 0.85rem 1rem;
    background: rgba(0, 0, 0, 0.18);
    border-left: 2px solid var(--tl-gold-bright);
    border-radius: 3px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(243, 238, 228, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.tl-privacy-card__note i { color: var(--tl-gold-bright); margin-top: 0.15rem; }
.tl-privacy-card__note a {
    color: var(--tl-gold-bright);
    border-bottom: 1px dotted rgba(226, 185, 85, 0.55);
    text-decoration: none;
}
.tl-privacy-card__note a:hover { color: #fff; }

/* ---- Nummerierte Sections ---- */
.tl-privacy-section {
    margin: 3rem 0;
    scroll-margin-top: 5rem;
}
.tl-privacy-section__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.1rem 1.4rem;
    align-items: end;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--tl-rule);
    margin: 0 0 1.5rem;
}
.tl-privacy-section__num {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-gold-deep);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
}
.tl-privacy-section__head h2 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    margin: 0;
    line-height: 1.2;
}
.tl-privacy-section__head h2 em {
    font-style: italic;
    color: var(--tl-gold-deep);
}
.tl-privacy-section__body p {
    color: var(--tl-ink-soft);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 0.9rem;
}
.tl-privacy-section__body p:last-child { margin-bottom: 0; }
.tl-privacy-section__body strong { color: var(--tl-ink); font-weight: 600; }
.tl-privacy-section__body em { font-style: italic; color: var(--tl-ink); }
.tl-privacy-section__body a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: rgba(123, 28, 40, 0.3);
    text-underline-offset: 3px;
}
.tl-privacy-section__body a:hover { color: var(--tl-bordeaux-deep); }

/* ---- Rechtsgrundlagen-Grid ---- */
.tl-privacy-legal {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
@media (max-width: 720px) { .tl-privacy-legal { grid-template-columns: 1fr; } }
.tl-privacy-legal li {
    background: #fff;
    border: 1px solid var(--tl-rule);
    border-radius: 4px;
    padding: 1.1rem 1.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1rem;
    align-items: center;
}
.tl-privacy-legal__art {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-radius: 3px;
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--tl-bordeaux);
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.tl-privacy-legal li strong {
    display: block;
    color: var(--tl-ink);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.15rem;
}
.tl-privacy-legal li span {
    color: var(--tl-ink-soft);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ---- Tiles: Datenerfassung ---- */
.tl-privacy-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
}
@media (max-width: 720px) { .tl-privacy-tiles { grid-template-columns: 1fr; } }
.tl-privacy-tile {
    background: #fff;
    border: 1px solid var(--tl-rule);
    border-radius: 5px;
    padding: 1.4rem 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.tl-privacy-tile__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.18rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}
.tl-privacy-tile__kicker i {
    color: var(--tl-gold-deep);
    font-style: normal;
    font-size: 1.15rem;
}
.tl-privacy-tile p {
    color: var(--tl-ink-soft);
    font-size: 0.96rem;
    line-height: 1.65;
    margin: 0;
}
.tl-privacy-tile p strong { color: var(--tl-ink); font-weight: 600; }
.tl-privacy-tile a {
    color: var(--tl-bordeaux);
    text-decoration: underline;
    text-decoration-color: rgba(123, 28, 40, 0.3);
    text-underline-offset: 3px;
}
.tl-privacy-tile__legal {
    margin-top: auto !important;
    padding-top: 0.8rem;
    border-top: 1px dotted var(--tl-rule);
    font-size: 0.8rem !important;
    letter-spacing: 0.04em;
    color: var(--tl-ink-soft) !important;
    font-style: italic;
}

/* ---- Service-Card: Brevo ---- */
.tl-privacy-service {
    margin-top: 1.5rem;
    background: var(--tl-cream-soft);
    border: 1px solid var(--tl-rule);
    border-left: 3px solid var(--tl-gold-deep);
    border-radius: 4px;
    padding: 1.4rem 1.6rem 1.3rem;
}
.tl-privacy-service__head { margin-bottom: 1rem; }
.tl-privacy-service__kicker {
    display: block;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tl-gold-deep);
    margin-bottom: 0.25rem;
}
.tl-privacy-service__head h3 {
    font-family: var(--tl-font-display);
    font-style: italic;
    font-weight: 500;
    color: var(--tl-bordeaux);
    font-size: 1.45rem;
    margin: 0;
    line-height: 1.2;
}
.tl-privacy-service__facts {
    display: flex;
    flex-direction: column;
    margin: 0 0 1rem;
}
.tl-privacy-service__facts > div {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 0.6rem 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px dotted var(--tl-rule);
}
.tl-privacy-service__facts > div:last-child { border-bottom: 0; }
@media (max-width: 560px) {
    .tl-privacy-service__facts > div {
        grid-template-columns: 1fr;
        gap: 0.15rem;
        padding: 0.55rem 0 0.7rem;
    }
}
.tl-privacy-service__facts dt {
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--tl-ink-soft);
}
.tl-privacy-service__facts dd {
    margin: 0;
    color: var(--tl-ink);
    font-size: 0.96rem;
    line-height: 1.5;
}
.tl-privacy-service__avv {
    margin: 0;
    padding: 0.8rem 1rem;
    background: #fff;
    border: 1px solid var(--tl-rule);
    border-radius: 3px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--tl-ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.tl-privacy-service__avv i { color: var(--tl-bordeaux); margin-top: 0.15rem; }
.tl-privacy-service__avv strong { color: var(--tl-ink); font-weight: 600; }

/* ---- Mobile-Verfeinerungen ---- */
@media (max-width: 560px) {
    .tl-privacy-card {
        padding: 1.7rem 1.4rem 1.6rem;
    }
    .tl-privacy-card__details > div {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        padding-bottom: 0.85rem;
    }
    .tl-privacy-section__head {
        grid-template-columns: 1fr;
        gap: 0.4rem;
        padding-bottom: 0.85rem;
        margin-bottom: 1.2rem;
    }
    .tl-privacy-legal li {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }
}

/* ============================================================
 * Schützling-Detail – Editorial Hero (Split-Layout)
 * Linke Spalte: Eyebrow + Italic-Titel + Lead + Meta + CTAs.
 * Rechte Spalte: Featured-Image als Polaroid mit Eckakzenten.
 * ============================================================ */
.tl-detail-hero {
    background: var(--tl-cream-soft);
    /* padding-top kompensiert den fixed Header (~4.5rem) plus Atemraum */
    padding: 6rem 1.75rem 2.75rem;
    position: relative;
    overflow: hidden;
}
.tl-detail-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--tl-bordeaux) 0%,
        var(--tl-gold) 60%,
        var(--tl-bordeaux-soft) 100%);
}
.tl-detail-hero__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
/* --- Topline (Back-Link + Eyebrow auf einer Linie) --- */
.tl-detail-hero__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.65rem 1.4rem;
    margin-bottom: 1.4rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--tl-rule);
    position: relative;
}
.tl-detail-hero__topline::after {
    content: "";
    position: absolute;
    left: 0; bottom: -1px;
    width: 3rem; height: 1px;
    background: var(--tl-gold);
}
/* --- Back-Link --- */
.tl-detail-hero__back {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--tl-bordeaux);
    text-decoration: none;
    font-family: var(--tl-font-body);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.18s ease;
}
.tl-detail-hero__back:hover { color: var(--tl-bordeaux-deep); }
.tl-detail-hero__back i { transition: transform 0.18s ease; align-self: center; }
.tl-detail-hero__back:hover i { transform: translateX(-3px); }

/* --- Eyebrow (Status · Tierart) — kein eigener Hyphen-Rule mehr,
       Topline-Underline übernimmt die Akzent-Funktion. --- */
.tl-detail-hero__eyebrow {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: var(--tl-font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-weight: 700;
    color: var(--tl-bordeaux);
    margin-left: auto;
}
.tl-detail-hero__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--tl-gold);
    box-shadow: 0 0 0 3px rgba(200, 154, 58, 0.18);
    flex: 0 0 auto;
    align-self: center;
}
/* Status-spezifische Dot-Farben analog zu .tl-status-pill */
.tl-detail-hero__eyebrow--placed   .tl-detail-hero__dot {
    background: var(--tl-bordeaux);
    box-shadow: 0 0 0 3px rgba(125, 47, 47, 0.18);
}
.tl-detail-hero__eyebrow--deceased .tl-detail-hero__dot {
    background: var(--tl-ink-soft);
    box-shadow: 0 0 0 3px rgba(90, 79, 72, 0.18);
}
.tl-detail-hero__eyebrow--placed,
.tl-detail-hero__eyebrow--deceased { color: var(--tl-ink-soft); }

/* --- Titel + Lead --- */
.tl-detail-hero__title {
    font-family: var(--tl-font-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.018em;
    /* Unterlängen (g, y, p …) der letzten Zeile ragen bei line-height 1.02
       unter die Box; zusammen mit overflow:hidden (fürs Zeilen-Clamp) wurden
       sie abgeschnitten. padding-bottom gibt ihnen Platz innerhalb der
       sichtbaren Box; margin-bottom kompensiert, damit der Abstand zum Lead
       gleich bleibt. */
    padding-bottom: 0.16em;
    margin: 0 0 calc(1rem - 0.16em);
    color: var(--tl-ink);
    /* Sehr lange Tier-Listen-Titel nach 3 Zeilen mit „…" abschneiden,
       damit der Hero seine Balance zum Polaroid behält. */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
}
.tl-detail-hero__stop {
    color: var(--tl-bordeaux);
    font-style: italic;
    font-weight: 500;
    margin-left: 0.02em;
}
.tl-detail-hero__lead {
    font-family: var(--tl-font-display);
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--tl-ink-soft);
    font-style: italic;
    max-width: 32rem;
    margin: 0 0 1.6rem;
}

/* --- Meta-Dreispalter --- */
.tl-detail-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 1.75rem;
    margin: 0 0 1.75rem;
    padding: 1.1rem 0 1.2rem;
    border-top: 1px solid var(--tl-rule);
    border-bottom: 1px solid var(--tl-rule);
}
.tl-detail-hero__meta dt {
    font-family: var(--tl-font-body);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--tl-ink-soft);
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.tl-detail-hero__meta dd {
    margin: 0;
    font-family: var(--tl-font-display);
    font-size: 1.05rem;
    color: var(--tl-ink);
}

/* --- CTAs --- */
.tl-detail-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.9rem 1.5rem;
}
.tl-detail-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--tl-bordeaux);
    color: var(--tl-cream-soft);
    text-decoration: none;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px -10px rgba(90, 31, 31, 0.55);
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.tl-detail-hero__cta:hover {
    background: var(--tl-bordeaux-deep);
    color: var(--tl-cream-soft);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(90, 31, 31, 0.65);
}
.tl-detail-hero__cta-ghost {
    color: var(--tl-bordeaux);
    text-decoration: none;
    font-family: var(--tl-font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.18s;
}
.tl-detail-hero__cta-ghost:hover { color: var(--tl-bordeaux-deep); }

/* --- Polaroid-Foto --- */
.tl-detail-hero__media {
    position: relative;
    justify-self: center;
    max-width: 480px;
    width: 100%;
}
.tl-detail-hero__media figure {
    position: relative;
    background: var(--tl-paper);
    padding: 1rem 1rem 3rem;
    box-shadow:
        0 1px 1px rgba(40, 22, 22, 0.08),
        0 18px 40px -16px rgba(40, 22, 22, 0.32),
        0 36px 60px -28px rgba(40, 22, 22, 0.28);
    transform: rotate(-1.5deg);
    transition: transform 0.35s ease;
    margin: 0;
}
.tl-detail-hero__media:hover figure { transform: rotate(-0.4deg) translateY(-4px); }
.tl-detail-hero__photo {
    display: block;
    overflow: hidden;
}
.tl-detail-hero__photo img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: saturate(0.96);
    transition: transform 0.45s ease;
}
.tl-detail-hero__media:hover .tl-detail-hero__photo img { transform: scale(1.02); }
.tl-detail-hero__media figcaption {
    position: absolute;
    bottom: 0.8rem; left: 1rem; right: 1rem;
    font-family: var(--tl-font-display);
    font-size: 0.92rem;
    font-style: italic;
    color: var(--tl-ink-soft);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
}
.tl-detail-hero__media figcaption em {
    font-style: italic;
    color: var(--tl-ink);
    /* Lange Tier-Namen sauber abschneiden statt umbrechen. */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.tl-detail-hero__cap-eyebrow {
    font-family: var(--tl-font-body);
    font-style: normal;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--tl-bordeaux);
    font-weight: 600;
    flex: 0 0 auto;
}
/* Eckakzente — Bordeaux + Gold */
.tl-detail-hero__media::before {
    content: "";
    position: absolute;
    top: -8px; left: -8px;
    width: 28px; height: 28px;
    border-top: 2px solid var(--tl-bordeaux);
    border-left: 2px solid var(--tl-bordeaux);
    opacity: 0.7;
    pointer-events: none;
}
.tl-detail-hero__media::after {
    content: "";
    position: absolute;
    bottom: -8px; right: -8px;
    width: 28px; height: 28px;
    border-bottom: 2px solid var(--tl-gold);
    border-right: 2px solid var(--tl-gold);
    opacity: 0.85;
    pointer-events: none;
}

/* --- Responsive --- */
@media (max-width: 820px) {
    .tl-detail-hero { padding: 5rem 1rem 2rem; }
    .tl-detail-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
    .tl-detail-hero__media { order: -1; max-width: 320px; }
    .tl-detail-hero__photo img { height: 360px; }
    .tl-detail-hero__title { font-size: clamp(2.1rem, 7.5vw, 2.8rem); }
    .tl-detail-hero__meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .tl-detail-hero__lead { font-size: 1.05rem; }
}
@media (max-width: 440px) {
    .tl-detail-hero__meta { grid-template-columns: 1fr; gap: 0.7rem; }
    .tl-detail-hero__photo img { height: 300px; }
}

/* Reduced motion: Polaroid bleibt gerade ausgerichtet. */
@media (prefers-reduced-motion: reduce) {
    .tl-detail-hero__media figure,
    .tl-detail-hero__media:hover figure { transform: none; }
}

/* Detail-Gallery: Variante ohne Lead-Bild (Featured liegt im Hero). */
.tl-detail-gallery--thumbs-only { margin-top: 0; }

/* ---------- Admin-Edit-FAB (nur für is_staff) ---------------------
 * Floating-Pill unten-rechts, ersetzt den Wagtail-Userbar. Globaler
 * Schnellsprung in den Admin auf jeder Page-served-View — Schützling,
 * News, Editorial-Seiten etc. Greift nur, wenn `page` im Context
 * existiert (also Wagtail-Page-Rendering, keine Allauth/Custom-Views). */
.tl-admin-edit-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.95rem 1.6rem;
    background: var(--tl-bordeaux);
    color: #fff;
    border-radius: 999px;
    box-shadow: var(--tl-shadow-md);
    font-family: var(--tl-font-body);
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.tl-admin-edit-fab:hover,
.tl-admin-edit-fab:focus-visible {
    background: var(--tl-bordeaux-deep);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--tl-shadow-lg);
    outline: none;
}
.tl-admin-edit-fab i { font-size: 1.4rem; }
@media (max-width: 600px) {
    .tl-admin-edit-fab {
        bottom: 1rem;
        right: 1rem;
        padding: 0.85rem;
        width: 3.2rem;
        height: 3.2rem;
        justify-content: center;
    }
    .tl-admin-edit-fab span { display: none; }
    .tl-admin-edit-fab i { font-size: 1.55rem; }
}

/* ---------- Mobile Home: Scroll-Cue + Schützlinge-Streifen ----------
 * Beide nur auf Phone-Viewports sichtbar (Desktop unverändert). Der
 * Cue lädt zum Weiterscrollen vom full-height-Hero zum Tier-Streifen
 * ein; der Bounce wird durch den Reduce-Motion-Block unten automatisch
 * deaktiviert. */
.tl-hero-scrollcue {
    display: none;
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    width: 2.6rem;
    height: 2.6rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(15, 10, 8, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    text-decoration: none;
    z-index: 5;
    animation: tl-scrollcue-bounce 1.8s ease-in-out infinite;
}
.tl-hero-scrollcue i { font-size: 1.3rem; line-height: 1; }
@keyframes tl-scrollcue-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(5px); }
}

/* ---------- Schützlinge-Streifen (Startseite, Mobil + Desktop) ----------
 * Horizontaler Scroll-Snap-Streifen mit echten Tieren (Zuhause- ODER
 * Paten-suchend). Karten-Breite je Breakpoint so, dass die nächste Karte
 * angeschnitten bleibt = Wisch-Hint, der zum Scrollen einlädt. */
.tl-pets-strip {
    margin: 2.5rem 0 1rem;
}
.tl-pets-strip__head {
    display: flex;
    align-items: center;          /* Eyebrow + „Alle ansehen" auf gleicher Höhe */
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.tl-pets-strip__head .tl-eyebrow {
    margin-bottom: 0;             /* Stack-Margin im Inline-Header neutralisieren */
}
.tl-pets-strip__controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.tl-pets-strip__controls .tl-arrow-link { white-space: nowrap; }
/* Pfeil-Buttons — nur ab Tablet (auf Mobil wischt man). JS blendet sie aus,
 * wenn der Streifen komplett passt, und deaktiviert sie an den Enden. */
.tl-pets-nav {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid var(--tl-gold);
    background: transparent;
    color: var(--tl-gold-deep);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s;
}
@media (min-width: 576px) {
    .tl-pets-nav { display: inline-flex; }
}
.tl-pets-nav.is-hidden { display: none !important; }
.tl-pets-nav:hover:not(:disabled) {
    background: var(--tl-gold);
    color: #fff;
    border-color: var(--tl-gold);
}
.tl-pets-nav:disabled {
    opacity: 0.3;
    cursor: default;
}
.tl-pets-strip__scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.75rem;
    scrollbar-width: none;
}
.tl-pets-strip__scroll::-webkit-scrollbar { display: none; }
/* _tile.html-Wurzel ist eine Bootstrap-Spalte — im Streifen auf feste
 * Karten-Breite umstellen. Desktop: ~4 Karten sichtbar. */
.tl-pets-strip__scroll > [class*="col-"] {
    flex: 0 0 22%;
    max-width: 22%;
    padding: 0;
    scroll-snap-align: start;
}
@media (max-width: 991.98px) {
    .tl-pets-strip__scroll > [class*="col-"] { flex-basis: 30%; max-width: 30%; }
}
@media (max-width: 767.98px) {
    .tl-pets-strip__scroll > [class*="col-"] { flex-basis: 44%; max-width: 44%; }
}
@media (max-width: 575.98px) {
    /* Aus dem schmalen .tl-content-Padding ausbrechen, damit der Streifen
     * randlos wischt; ~1,5 Karten sichtbar. */
    .tl-pets-strip {
        margin: 1.5rem -1rem 0.5rem;
    }
    .tl-pets-strip__head { padding: 0 1rem; }
    .tl-pets-strip__scroll {
        gap: 0.75rem;
        padding: 0 1rem 0.5rem;
    }
    .tl-pets-strip__scroll > [class*="col-"] { flex-basis: 62%; max-width: 62%; }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
