/* ═══════════════════════════════════════════════
 * CK Bold — Components
 * Reihenfolge: Layout-Utilities · Header · Mobile-Nav · Hero · Sections · CTA · Footer · Topic-Pages
 * ═══════════════════════════════════════════════ */

/* ── Layout-Utilities ───────────────────────── */
.ck-bold-container {
    max-width: var(--bold-container);
    margin: 0 auto;
    padding: 0 var(--bold-section-pad-x);
}

.ck-bold-container--narrow {
    max-width: var(--bold-container-narrow);
}

.ck-bold-section {
    padding: var(--bold-section-pad-y) var(--bold-section-pad-x);
    position: relative;
}

.ck-bold-section--green {
    background: var(--bold-green-dark);
    color: var(--bold-white);
}

.ck-bold-section--green h2,
.ck-bold-section--green h3 {
    color: var(--bold-white);
}

.ck-bold-section--bright {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
}

.ck-bold-section--bright h2,
.ck-bold-section--bright h3 {
    color: var(--bold-green-deep);
}

.ck-bold-section--cream {
    background: var(--bold-cream);
}

/* ── Pill-Buttons (das Krause-Markenzeichen) ─── */
.ck-bold-btn,
.ck-bold-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--bold-radius-pill);
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform var(--bold-transition), box-shadow var(--bold-transition), background var(--bold-transition), color var(--bold-transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.ck-bold-btn--primary,
.ck-bold-cta {
    background: var(--bold-white);
    color: var(--bold-green-dark);
}

.ck-bold-btn--primary:hover,
.ck-bold-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 61, 40, 0.2);
    color: var(--bold-green-dark);
}

.ck-bold-btn--dark {
    background: var(--bold-green-dark);
    color: var(--bold-white);
}

.ck-bold-btn--dark:hover {
    background: var(--bold-green-deep);
    color: var(--bold-white);
    transform: translateY(-1px);
}

.ck-bold-btn--bright {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
}

.ck-bold-btn--bright:hover {
    background: var(--bold-white);
    color: var(--bold-green-deep);
}

.ck-bold-cta__arrow {
    font-weight: 400;
    margin-left: 4px;
}

/* ── Header ─────────────────────────────────── */
.ck-bold-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 18px 0;
    transition: background var(--bold-transition), box-shadow var(--bold-transition);
    background: var(--bold-grashalm);
    box-shadow: 0 4px 20px rgba(0, 61, 40, 0.12);
}

/* Eingeloggte Nutzer: den fixen Header unter die WP-Admin-Bar schieben,
   sonst verdeckt sie Brand + Menü (auf Live sind wegen der Login-Wall alle
   eingeloggt). Öffentlich (ohne Admin-Bar) bleibt der Header bei top:0. */
.admin-bar .ck-bold-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .ck-bold-header {
        top: 46px;
    }
}

/* Hauptmenü durchgehend in Grashalm-Grün — auch als Overlay über dem Hero
   und im gescrollten Zustand (kein transparenter/dunkelgrüner Wechsel mehr). */
.ck-bold-header--overlay {
    background: var(--bold-grashalm);
    box-shadow: 0 4px 20px rgba(0, 61, 40, 0.12);
}

.ck-bold-header--overlay.is-scrolled {
    background: var(--bold-grashalm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.ck-bold-header__inner {
    max-width: var(--bold-container);
    margin: 0 auto;
    padding: 0 var(--bold-section-pad-x);
    display: flex;
    align-items: center;
    gap: 16px;
}

.ck-bold-nav {
    flex: 1;
    min-width: 0;
}

.ck-bold-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.ck-bold-nav__list a {
    color: var(--bold-green-deep);
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 6px 0;
    transition: color var(--bold-transition);
    letter-spacing: 0;
    white-space: nowrap;
}

/* Menüpunkte durchgehend dunkelgrün auf dem Grashalm-Hintergrund
   (Kontrast ~5,7:1, WCAG-AA), beim Hover Wechsel auf Weiß. */
.ck-bold-header:not(.ck-bold-header--overlay) {
    color: var(--bold-green-deep);
}

/* Brand-Menüpunkt "Claudia Kalisch" — als Name in Gruene Type (Display,
   italic), hebt sich von den PT-Sans-Menüpunkten ab und verlinkt auf die
   Startseite. Gruene Type liegt NUR italic vor → font-style: italic Pflicht. */
.ck-bold-nav__list .ck-nav-brand a {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1;
    padding-right: 4px;
    /* Brand + Menü teilen sich die Grundlinie (Baseline-Ausrichtung, per
       Pixel-Messung: Ink-Mitten <1px Differenz). Kein vertikaler Nudge nötig. */
}

.ck-bold-nav__list a:hover {
    color: var(--bold-white);
}

/* CTA "Mitmachen" rechts oben — Pille im Krause-Stil (non-italic) */
.ck-bold-cta {
    padding: 12px 24px;
    font-size: 0.95rem;
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

/* "Mitmachen"-Pille im Header durchgehend dunkelgrün gefüllt — hebt sich
   klar vom Grashalm-Hintergrund ab (in allen Header-Zuständen gleich). */
.ck-bold-header .ck-bold-cta {
    background: var(--bold-green-deep);
    color: var(--bold-white);
}

/* Spenden-Button: pink (Störer-Farbe), überall (Header + Mobile-Nav) */
.ck-bold-cta--pink,
.ck-bold-header .ck-bold-cta--pink {
    background: var(--bold-pink) !important;
    color: var(--bold-white) !important;
}

.ck-bold-cta--pink:hover,
.ck-bold-header .ck-bold-cta--pink:hover {
    background: var(--bold-pink) !important;
    color: var(--bold-white) !important;
    filter: brightness(1.08);
}

.ck-bold-burger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    z-index: 220;
}

.ck-bold-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--bold-green-deep);
    border-radius: 2px;
    transition: transform var(--bold-transition), opacity var(--bold-transition);
}

.ck-bold-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--bold-green-dark); }
.ck-bold-burger.active span:nth-child(2) { opacity: 0; }
.ck-bold-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--bold-green-dark); }

/* Nav-Kollaps zum Burger: die volle Nav (Brand + 6 Punkte + Spenden-Pille)
   passt verdichtet bis ~945px in eine Zeile → Burger erst ≤960px, damit
   z. B. iPad-Querformat (1024px) noch die volle Nav zeigt und nichts umbricht. */
@media (max-width: 960px) {
    /* Spenden-Pille + Menüpunkte in die Burger-Overlay auslagern, ABER den
       Brand „Claudia Kalisch" (Gruene Type) links stehen lassen, damit die
       Menüleiste nicht leer wirkt. */
    .ck-bold-header .ck-bold-cta { display: none; }
    .ck-bold-nav__list li:not(.ck-nav-brand) { display: none; }
    .ck-bold-burger {
        display: flex;
        margin-left: auto;
    }
}

/* ── Mobile-Nav (Fullscreen-Overlay) ────────── */
.ck-bold-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: var(--bold-green-dark);
    color: var(--bold-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--bold-transition), visibility var(--bold-transition);
}

.ck-bold-mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.ck-bold-mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--bold-white);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--bold-transition), border-color var(--bold-transition);
}

.ck-bold-mobile-nav__close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--bold-white);
}

.ck-bold-mobile-nav__inner {
    text-align: center;
    width: 100%;
}

.ck-bold-mobile-nav__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.ck-bold-mobile-nav__list li {
    margin: 12px 0;
}

.ck-bold-mobile-nav__list a {
    color: var(--bold-white);
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
    text-decoration: none;
}

.ck-bold-cta--mobile {
    background: var(--bold-white);
    color: var(--bold-green-dark);
    font-size: 1.1rem;
    padding: 16px 36px;
}

/* ── Footer ─────────────────────────────────── */
.ck-bold-footer {
    background: var(--bold-green-dark);
    color: var(--bold-white);
    padding: var(--bold-space-xl) var(--bold-section-pad-x) var(--bold-space-md);
    margin-top: 0;
}

.ck-bold-footer__inner {
    max-width: var(--bold-container);
    margin: 0 auto;
}

.ck-bold-footer__claim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-align: center;
    margin-bottom: 40px;
    color: var(--bold-white);
}

.ck-bold-footer__sun {
    display: block;
    font-size: 56px;
    line-height: 1;
}

.ck-bold-footer__social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.ck-bold-footer__social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bold-white);
    color: var(--bold-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.8rem;
    transition: transform var(--bold-transition), background var(--bold-transition);
}

.ck-bold-footer__social-link:hover {
    background: var(--bold-yellow);
    color: var(--bold-green-deep);
    transform: translateY(-2px);
}

.ck-bold-footer__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.ck-bold-footer__brand-pre {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
}

.ck-bold-footer__brand-name {
    display: block;
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 0.95;
    color: var(--bold-white);
}

.ck-bold-footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    text-align: right;
}

.ck-bold-footer__meta a,
.ck-bold-footer__meta-list a {
    color: var(--bold-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity var(--bold-transition);
}

.ck-bold-footer__meta a:hover,
.ck-bold-footer__meta-list a:hover {
    opacity: 1;
    color: var(--bold-green-bright);
}

.ck-bold-footer__meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

@media (max-width: 720px) {
    .ck-bold-footer__cols {
        grid-template-columns: 1fr;
    }
    .ck-bold-footer__meta {
        align-items: flex-start;
        text-align: left;
    }
    .ck-bold-footer__meta-list {
        align-items: flex-start;
    }
}

/* Spacer für fixed-header — wenn nicht front-page */
.ck-bold-body:not(.home) .ck-bold-content {
    padding-top: 96px;
}

/* Detailseiten mit dunkelgrünem Intro-Hero: kein creme Spacer — der Hero reicht
   direkt unter den Header (sein großer Top-Innenabstand hält den Titel frei).
   !important schlägt die Spacer-Regel oben (gleiche Spezifität). */
.ck-bold-body.ck-has-intro-hero .ck-bold-content {
    padding-top: 0 !important;
}

/* ── HERO (Bold) — Vollbild-Foto wie Krause ─── */
.ck-bold-hero {
    position: relative;
    min-height: 100vh;
    background: var(--bold-green-deep);
    color: var(--bold-white);
    overflow: hidden;
    margin-bottom: 0;
    /* Hellgrüner Abschluss-Streifen am unteren Hero-Rand — greift die Menü-
       farbe (Grashalm) wieder auf und klammert so optisch mit der Kopfleiste. */
    border-bottom: clamp(10px, 1.2vw, 16px) solid var(--bold-grashalm);
}

/* ── Startseite: FERTIGE Hero-Grafik ──────────────────────────────
   Das Startseiten-Foto (startseite.jpg) enthält Name, 13.9.-Störer und
   Porträt bereits fest eingebaut. Deshalb die dynamischen Theme-Overlays
   ausblenden und das Foto als VOLLSTÄNDIGES, responsives Bild zeigen
   (natürliches Seitenverhältnis, nie beschnitten) — so bleibt der
   eingebaute Text auf JEDER Bildschirmgröße komplett sichtbar.
   padding-top schiebt das Bild unter den fixierten Header (~80px). */
body.home .ck-bold-hero {
    min-height: 0;
    padding-top: 80px;
    background: var(--bold-green-deep);
}
body.home .ck-bold-hero__photo {
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
}
body.home .ck-bold-hero__tint,
body.home .ck-bold-hero__name,
body.home .ck-bold-hero__sticker,
body.home .ck-bold-hero__portrait {
    display: none;
}

/* Hero-Foto (Claudia Kalisch) als Vollbild-Hintergrund — Motiv rechts, Name links */
.ck-bold-hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Claudia sitzt im Motiv rechts. Auf schmalen/hohen Viewports schneidet
       object-fit:cover die Seiten weg — der Fokus wandert deshalb per Media-
       Query nach rechts, damit ihr Gesicht immer im Bild bleibt. */
    object-position: 50% 28%;
    z-index: 1;
}

.ck-bold-hero__tint {
    position: absolute;
    inset: 0;
    /* Links abgedunkelt für den weißen Namen, rechts transparent (Claudia bleibt klar);
       unten leichte Tönung für den Sticker. */
    background:
        linear-gradient(90deg, rgba(0, 61, 40, 0.62) 0%, rgba(0, 61, 40, 0.28) 38%, rgba(0, 61, 40, 0) 62%),
        linear-gradient(180deg, rgba(0, 61, 40, 0.12) 0%, rgba(0, 61, 40, 0) 30%, rgba(0, 61, 40, 0.30) 100%);
    z-index: 2;
}

.ck-bold-hero__name {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(4.25rem, 9.5vw, 9rem);
    line-height: 0.86;
    color: var(--bold-white);
    margin: 0;
    /* Name links über der ruhigen grünen Fläche, vertikal zentriert */
    text-align: left;
    letter-spacing: -0.01em;
    text-shadow: 0 6px 50px rgba(0, 0, 0, 0.45);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: clamp(24px, 6vw, 96px);
    right: auto;
    max-width: 58%;
    z-index: 3;
}

.ck-bold-hero__name-line {
    display: block;
}

/* Portrait-Karte: hochformatig, mittig unten, ragt aus dem Drohnenfoto */
.ck-bold-hero__portrait {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    /* vh-Kappung wie beim Namen: Karte (4:5) wird auf flachen Viewports
       kleiner, damit der Name darüber frei bleibt */
    width: min(clamp(220px, 30vw, 380px), 38vh);
    aspect-ratio: 4 / 5;
    z-index: 3;
    border: 8px solid var(--bold-white);
    border-bottom: 0;
    border-radius: var(--bold-radius-soft) var(--bold-radius-soft) 0 0;
    overflow: hidden;
    box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.4);
}

.ck-bold-hero__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.ck-bold-hero__sticker {
    position: absolute;
    left: clamp(20px, 5vw, 80px);
    bottom: clamp(60px, 10vh, 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: clamp(148px, 15.5vw, 196px);
    height: clamp(148px, 15.5vw, 196px);
    padding: clamp(10px, 1.5vw, 18px);
    background: var(--bold-pink);
    border-radius: 50%;
    transform: rotate(-8deg);
    box-shadow: var(--bold-shadow-sticker);
    z-index: 4;
}

.ck-bold-hero__sticker-text {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.12;
    color: var(--bold-white);
    display: block;
}

/* Flache, breite Viewports (Laptops mit wenig Fensterhöhe): der vertikal
   zentrierte Name reicht sonst unten in den pinken Störer (beide links).
   → Name nach oben ankern + vh-gekappt, Störer etwas kleiner + tiefer.
   Nur Desktop-Hero (>760px); der Mobile-Hero hat eigene Regeln. */
@media (min-width: 761px) and (max-height: 860px) {
    .ck-bold-hero__name {
        top: clamp(96px, 18vh, 150px);
        transform: none;
        font-size: min(clamp(3.5rem, 8vw, 7rem), 15vh);
    }
    .ck-bold-hero__sticker {
        /* Größe = Basis (196px); hier nur tiefer positionieren. Eine eigene
           Verkleinerung würde den (weiterhin großen) Text überlaufen lassen. */
        bottom: clamp(22px, 4vh, 56px);
    }
}

/* ── TEASER-SEKTIONEN (Über mich / Politik & Verwaltung): Text links, rundes Foto rechts ── */
.ck-teaser .wp-block-columns {
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
    /* Gleiche Inhaltsbreite wie die Textsektionen (760px, zentriert), damit
       Über mich/Politik nicht breiter wirken als „Aus Liebe" & Co. */
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.ck-teaser h2 {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem); /* einheitliche H2-Display-Größe */
    line-height: 0.95;
    letter-spacing: -0.015em;
    text-align: left;
    margin: 0 0 0.45em;
}
.ck-teaser .wp-block-buttons {
    justify-content: flex-start;
    margin-top: 1.4em;
}
.ck-teaser__media {
    display: flex;
    justify-content: center;
}
/* Kreisrunder Foto-Ausschnitt */
.ck-circle {
    margin: 0;
    width: 100%;
    max-width: 360px;
}
.ck-circle img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}
@media (max-width: 781px) {
    /* Mobil: Foto über den Text, alles zentriert */
    .ck-teaser .wp-block-column.ck-teaser__media { order: -1; }
    .ck-teaser .wp-block-columns,
    .ck-teaser h2 { text-align: center; }
    .ck-teaser .wp-block-buttons { justify-content: center; }
    .ck-circle { max-width: 240px; margin: 0 auto; }
}

/* ── CLAIM-SEKTION (post-Hero, „Danke!"-Block) ── */
.ck-bold-claim {
    background: var(--bold-cream);
    padding: clamp(80px, 10vw, 140px) var(--bold-section-pad-x) clamp(60px, 8vw, 100px);
    text-align: center;
}

.ck-bold-claim__inner {
    max-width: 880px;
    margin: 0 auto;
}

.ck-bold-claim__line {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    line-height: 1.1;
    color: var(--bold-green-bright);
    margin: 0 0 16px;
}

.ck-bold-claim__heading {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    color: var(--bold-green-dark);
    margin: 0 0 32px;
    letter-spacing: -0.015em;
}

.ck-bold-claim__lead {
    font-family: var(--bold-font-body);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.55;
    color: var(--bold-ink);
    max-width: 720px;
    margin: 0 auto;
}

.ck-bold-claim__lead p {
    margin: 0 0 1em;
}

.ck-bold-claim__lead p:last-child {
    margin-bottom: 0;
}

/* Gelber Schwung-Pfeil unter dem Claim (Krause-Doodle), leitet zur nächsten Sektion */
.ck-bold-claim__arrow {
    display: block;
    width: clamp(46px, 5vw, 66px);
    height: auto;
    margin: clamp(28px, 4vw, 44px) auto 0;
    color: var(--bold-yellow);
}

.ck-bold-claim .ck-doc-red {
    color: var(--bold-green-bright);
    font-weight: 700;
}

/* ── Sektionen: Bold-Adaption der .ck-section Klassen aus DB-Content ─── */
.ck-section {
    padding: clamp(64px, 8vw, 140px) clamp(20px, 4vw, 60px);
    margin: 0;
    position: relative;
}

.ck-section--alt {
    background: var(--bold-green-dark);
    color: var(--bold-white);
}

.ck-section--alt h1,
.ck-section--alt h2,
.ck-section--alt h3,
.ck-section--alt h4 {
    color: var(--bold-white);
}

.ck-section--alt a {
    color: var(--bold-white);
}

/* ── Startseite: bisherige Tanne-Sektionen (--alt) in Sand (CVI) ──────
   NUR auf der Startseite (.home). Die Topic-Detail-Intros nutzen dieselbe
   --alt-Klasse (blocks.php: ck-topic-intro) und sollen dunkelgrün bleiben.
   Die Alternation wird so zu Creme ↔ Sand; Schrift/Buttons/Social-Icons
   ziehen auf dunkelgrün um, damit auf hellem Grund nichts unlesbar wird. */
.home .ck-section--alt {
    background: var(--bold-sand);
    color: var(--bold-ink);
}

.home .ck-section--alt h1,
.home .ck-section--alt h2,
.home .ck-section--alt h3,
.home .ck-section--alt h4 {
    color: var(--bold-green-dark);
}

.home .ck-section--alt a {
    color: var(--bold-green-dark);
}

/* doc-red wie in den Creme-Sektionen (nicht Gelb wie auf Tanne) */
.home .ck-section--alt .ck-doc-red {
    color: var(--bold-green-bright);
}

/* Buttons wie in den Creme-Sektionen: dunkelgrün gefüllt, weiße Schrift */
.home .ck-section--alt .wp-block-button__link.wp-element-button,
.home .ck-section--alt .wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--bold-green-dark) !important;
    color: var(--bold-white) !important;
    border-color: transparent !important;
}

.home .ck-section--alt .wp-block-button__link.wp-element-button:hover,
.home .ck-section--alt .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--bold-green-deep) !important;
    color: var(--bold-white) !important;
}

/* Social-Icons: auf hellem Sand grüne Kreise statt weißer (sonst unsichtbar) */
.home .ck-section--alt .ck-bold-social-links a {
    background: var(--bold-green-dark);
    color: var(--bold-white);
}

.home .ck-section--alt .ck-bold-social-links a:hover {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
}

/* Startseite: die hellgrünen (--klee) Sektionen (aus Liebe / Motto / Meine
   Themen / Folge mir) auf ein noch helleres, luftigeres Grün. Schrift, Buttons
   und Plan-Pfeile sind über die --klee-Regeln bereits dunkelgrün → Kontrast
   bleibt erhalten (verbessert sich sogar). Nur auf .home gescoped. */
.home .ck-section--klee {
    background: var(--bold-green-soft);
    /* schmaler giftgrüner (Grashalm-)Streifen über jedem hellgrünen Block */
    border-top: clamp(5px, 0.6vw, 8px) solid var(--bold-grashalm);
}

/* Startseite: die farbige Oberkante der Termin-Kästen in Grashalm-Giftgrün
   (= Menü-/Hero-Streifen-Farbe). Nur die Border-Oberkante — die Datums-/Button-
   Farbe (--gt-accent) bleibt dunkler, da Grashalm auf Weiß zu kontrastarm wäre. */
.home .gt-termin-card {
    border-top-color: var(--bold-grashalm);
}

.ck-section__subtitle {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.1;
    color: inherit;
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

/* Startseite: Section-Untertitel etwas größer (wirkten neben den großen
   Headlines zu klein). Nur auf .home; der große Motto-Untertitel bleibt
   über seine ID-Regel unberührt, Themenseiten ebenfalls. */
.home .ck-section__subtitle {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    line-height: 1.0;
    max-width: 900px;
}

/* ── Motto-Sektion (Startseite) als zentrales Statement ───────────── */
#motto.ck-section {
    /* An die übrigen Startseiten-Grünsektionen angeglichen (green-soft statt
       green-bright) — einheitliche Farbwelt seit der Aufhellung (0.5.64). */
    background: var(--bold-green-soft);
    color: var(--bold-green-deep);
    text-align: center;
    overflow: hidden;
}

/* „Mein Motto" wird zum kleinen Kicker über dem Zitat */
#motto h2.wp-block-heading {
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bold-green-deep);
    margin: 0 0 clamp(28px, 4vw, 44px);
}

/* Kleiner dunkelgrüner Akzentstrich zwischen Kicker und Motto */
#motto h2.wp-block-heading::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin: 18px auto 0;
    background: var(--bold-green-deep);
    border-radius: 2px;
}

/* Das Motto selbst: großes, ruhiges Statement */
#motto .ck-section__subtitle {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.03;
    color: var(--bold-green-deep);
    max-width: 20ch;
    margin: 0 auto clamp(28px, 4vw, 40px);
}

/* Erklärtext dunkelgrün, gut lesbar auf Hellgrün */
#motto p:not(.ck-section__subtitle) {
    color: var(--bold-green-deep);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button: dunkelgrün mit hellem Text auf dem hellgrünen Grund */
#motto .wp-block-button__link {
    background: var(--bold-green-deep) !important;
    color: var(--bold-white) !important;
    border-color: var(--bold-green-deep) !important;
}

#motto .wp-block-button__link:hover {
    background: var(--bold-white) !important;
    color: var(--bold-green-deep) !important;
    border-color: var(--bold-white) !important;
}

.ck-section > h2.wp-block-heading {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 0.9;
    text-align: center;
    margin: 0 auto 28px;
    max-width: 1080px;
    letter-spacing: -0.015em;
}

/* h3-Zwischenüberschriften: klar KLEINER als h2, schlicht – linksbündig,
   ohne Hintergrund, ohne die große/zentrierte Sektions-h2-Optik. Gilt in allen
   Inhaltsbereichen. */
.ck-section h3.wp-block-heading,
.ck-topic-page__main h3.wp-block-heading,
.ck-bold-page__content h3.wp-block-heading {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: var(--bold-size-h3);
    line-height: 1.15;
    text-align: left;
    max-width: none;
    margin: 1.4em 0 0.4em;
    background: none;
    padding: 0;
    letter-spacing: -0.01em;
}

.ck-section > p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.0625rem;
    line-height: 1.65;
}

/* About-Layout (Erfahrungen → 2-Spalten mit rundem Foto) */
.ck-about {
    max-width: var(--bold-container);
    margin: 40px auto 0;
    gap: clamp(32px, 5vw, 64px) !important;
    align-items: center !important;
}

.ck-about .wp-block-column {
    flex-basis: 50%;
}

.ck-about__image {
    display: flex;
    justify-content: center;
}

.ck-about__image .wp-block-image,
.ck-about__image figure {
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    width: min(420px, 100%);
    height: min(420px, 100%);
    box-shadow: 0 30px 70px rgba(0, 61, 40, 0.2);
}

.ck-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons (Bold-Pill-Style für WP Core Buttons) */
.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    justify-content: flex-start;
}

.ck-section > .wp-block-buttons,
.ck-section .ck-about ~ .wp-block-buttons {
    justify-content: center;
}

.wp-block-button__link.wp-element-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px !important;
    border-radius: var(--bold-radius-pill) !important;
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: var(--bold-green-dark) !important;
    color: var(--bold-white) !important;
    border: 2px solid transparent;
    transition: transform var(--bold-transition), background var(--bold-transition), color var(--bold-transition);
}

.wp-block-button__link.wp-element-button:hover {
    transform: translateY(-1px);
    background: var(--bold-green-deep) !important;
}

/* Hellgrüne Buttons (Mach-mit „Jetzt mitmachen" + Buttons in Tanne-/Klee-
   Sektionen) haben dunkelgrünen Text. Der generelle Hover färbt den Grund
   dunkelgrün → dunkel-auf-dunkel = unlesbar. Beim Hover daher Text auf Weiß. */
.ck-bold-cta-banner .wp-block-button:not(.ck-btn-pink) .wp-block-button__link:hover,
.ck-section--alt .wp-block-button__link.wp-element-button:hover,
.ck-section--alt .wp-block-button.is-style-outline .wp-block-button__link:hover,
.ck-section--klee .wp-block-button__link.wp-element-button:hover,
.ck-section--klee .wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--bold-green-deep) !important;
    color: var(--bold-white) !important;
}

/* Outline-Buttons aus dem DB-Content werden im Bold-Theme als GEFÜLLTE
   Pills gerendert — Krause kennt keine Ghost-Buttons. */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--bold-green-dark) !important;
    color: var(--bold-white) !important;
    border-color: transparent !important;
}

.ck-section--alt .wp-block-button__link.wp-element-button,
.ck-section--alt .wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--bold-green-bright) !important;
    color: var(--bold-green-deep) !important;
    border-color: transparent !important;
}

/* Hervorhebungen aus Word-Dokument (rot in Original, hier akzentfarben) */
.ck-doc-red {
    color: var(--bold-green-bright);
    font-style: italic;
    font-weight: 700;
}

.ck-section--alt .ck-doc-red {
    color: var(--bold-yellow);
}

/* ── PLAN-LISTE (policy-grid → Bold-Pfeil-Liste) ─────────────── */
.ck-bold-plan {
    max-width: 760px;
    margin: 0 auto;
}

/* Mehr Abstand zwischen dem „zu meinen Themen"-Button und der Themen-Liste. */
#themen .wp-block-buttons {
    margin-bottom: clamp(40px, 6vw, 72px);
}

.ck-bold-plan__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.ck-bold-plan__item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    background: transparent;
    color: inherit;
    text-decoration: none;
    transition: transform var(--bold-transition);
}

.ck-bold-plan__item:hover {
    transform: translateX(6px);
}

.ck-bold-plan__item:hover .ck-bold-plan__arrow {
    background: var(--bold-pink);
    color: var(--bold-white);
}

.ck-bold-plan__arrow {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--bold-transition), color var(--bold-transition);
}

.ck-bold-plan__arrow svg {
    width: 28px;
    height: 28px;
}

.ck-section--alt .ck-bold-plan__arrow {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
}

/* ── Klee: hellgrüne Sektionen (Gegenstück zu --alt/Tanne) ─────────── */
.ck-section--klee {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
}

.ck-section--klee h1,
.ck-section--klee h2,
.ck-section--klee h3,
.ck-section--klee h4,
.ck-section--klee p,
.ck-section--klee li,
.ck-section--klee .ck-bold-plan__title,
.ck-section--klee .ck-bold-plan__subtitle {
    color: var(--bold-green-deep);
}

.ck-section--klee a {
    color: var(--bold-green-deep);
}

.ck-section--klee .wp-block-button__link.wp-element-button,
.ck-section--klee .wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--bold-green-deep) !important;
    color: var(--bold-white) !important;
    border-color: transparent !important;
}

.ck-section--klee .ck-bold-plan__arrow {
    background: var(--bold-green-deep);
    color: var(--bold-white);
}

.ck-section--klee .ck-doc-red {
    color: var(--bold-green-deep);
}

.ck-bold-plan__text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
}

.ck-bold-plan__title {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.1;
    color: inherit;
}

.ck-bold-plan__subtitle {
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.45;
    color: inherit;
    opacity: 0.85;
}

/* Section-Subtitle Anpassung — nach Headline zentriert */
.ck-section > .ck-section__subtitle {
    margin-top: -16px;
    margin-bottom: 48px;
}

/* ── Social-Feed im Bold-Style ────────────────
   Liegt INNERHALB der dunkelgrünen #social-Sektion (.ck-section--alt) —
   daher transparent, Padding kommt von der äußeren Sektion. */
.ck-bold-social {
    background: transparent;
    padding: 0;
}

.ck-bold-social__inner {
    max-width: var(--bold-container);
    margin: 0 auto;
}


/* Social-Links (Customizer) als runde Icons, Krause-Footer-Stil */
.ck-bold-social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 0;
}

.ck-bold-social-links a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bold-white);
    color: var(--bold-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background var(--bold-transition), color var(--bold-transition), transform var(--bold-transition);
}

.ck-bold-social-links a:hover {
    background: var(--bold-green-bright);
    color: var(--bold-green-deep);
    transform: translateY(-2px);
}

/* Lüneburg-Skyline-Silhouette (Übergang Social → Mach-mit):
   Hintergrund = Farbe der Sektion darüber (dunkelgrün), Füllung = Farbe der
   Sektion darunter (hellgrün) — die Silhouette „wächst" aus dem Mach-mit-Block. */
.ck-bold-skyline {
    background: var(--bold-green-dark);
    color: var(--bold-green-bright);
    line-height: 0;
    margin-bottom: -1px;
    overflow: hidden;
}

.ck-bold-skyline svg {
    display: block;
    width: 100%;
    height: clamp(160px, 22vw, 280px);
}

/* CTA-Banner („Mach mit!") */
.ck-bold-cta-banner {
    background: var(--bold-green-dark);
    color: var(--bold-white);
    padding: clamp(60px, 8vw, 120px) var(--bold-section-pad-x) clamp(80px, 10vw, 140px);
}

.ck-bold-cta-banner__inner {
    max-width: var(--bold-container-narrow);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

.ck-bold-cta-banner__text {
    text-align: left;
}

.ck-bold-cta-banner h2 {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5rem); /* einheitliche H2-Display-Größe */
    line-height: 0.9;
    color: var(--bold-white);
    margin: 0 0 20px;
    text-align: left;
}

.ck-bold-cta-banner p {
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0 0 32px;
    color: var(--bold-white);
}

.ck-bold-cta-banner .wp-block-button__link {
    background: var(--bold-green-bright) !important;
    color: var(--bold-green-deep) !important;
}

/* Pinker Spenden-Button im Mach-mit-Block */
.ck-bold-cta-banner .ck-btn-pink .wp-block-button__link,
.ck-bold-cta-banner .wp-block-button.ck-btn-pink .wp-block-button__link {
    background: var(--bold-pink) !important;
    color: var(--bold-white) !important;
}

.ck-bold-cta-banner__image {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    /* Gleiche Größe wie das runde Foto im Themen-Hero (.ck-topic-intro__photo). */
    max-width: clamp(200px, 27vw, 320px);
    margin: 0 auto;
    box-shadow: 0 24px 60px rgba(0, 61, 40, 0.25);
}

.ck-bold-cta-banner__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 760px) {
    .ck-bold-cta-banner__inner {
        grid-template-columns: 1fr;
    }
    .ck-bold-cta-banner__text {
        text-align: center;
    }
    .ck-bold-cta-banner h2 {
        text-align: center;
    }
    .ck-bold-cta-banner__image {
        /* max-width kommt aus der Basisregel (= Hero-Foto); mobil nur oben stapeln */
        order: -1;
    }
}

/* ── Topic-Pages (Bold) ─────────────────────── */
.ck-topic-intro {
    padding: clamp(120px, 18vh, 220px) clamp(20px, 4vw, 60px) clamp(60px, 8vw, 100px) !important;
    text-align: center;
    position: relative;
}

/* Optionales rundes Hero-Foto: zentriert auf der Unterkante, ragt zur Hälfte
   heraus (Krause-Stil). Der Content darunter bekommt per Body-Klasse Platz. */
.ck-topic-intro__photo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: clamp(200px, 27vw, 320px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 6px solid var(--bold-white);
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.30);
    z-index: 4;
}

/* Hero MIT Foto: Titel + Zurück-Link rücken nach oben, damit das größere Foto
   unten mehr Raum bekommt. Erkennung per :has (Foto ist jetzt Block-Attribut). */
.ck-topic-intro:has(.ck-topic-intro__photo) {
    padding-top: clamp(88px, 11vh, 132px) !important;
    padding-bottom: clamp(120px, 15vw, 190px) !important;
}

/* Fehlt der Zurück-Link (z. B. frei angelegte Seiten mit dem Hero-Block), sitzt
   der große Titel sonst direkt am Menü. Dann bekommt das erste Element etwas
   mehr Luft nach oben. Seiten MIT Zurück-Link (.ck-section__subtitle zuerst)
   bleiben unverändert. */
.ck-topic-intro .ck-bold-container > :first-child:not(.ck-section__subtitle) {
    margin-top: clamp(20px, 2.5vw, 34px);
}

.ck-topic-intro__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── ck/topic-hero als Block ────────────────────────────────────────────
   Der Hero ist das erste Element in .ck-topic-page__main und bricht full-bleed
   aus der Lesespalte aus; er sitzt oben unter dem Header (Creme-Top-Padding der
   Sektion entfällt). Der Text darunter bekommt Abstand – mit überhängendem Foto
   deutlich mehr, damit das Foto ihn nicht überdeckt. */
.ck-has-intro-hero .ck-topic-page {
    padding-top: 0 !important;
}
.ck-topic-page__main > .ck-topic-intro:first-child {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.ck-topic-page__main > .ck-topic-intro:first-child + * {
    margin-top: clamp(40px, 6vw, 72px);
}
.ck-topic-page__main > .ck-topic-intro:first-child:has(.ck-topic-intro__photo) + * {
    margin-top: clamp(140px, 19vw, 200px);
}

.ck-topic-intro__heading {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    color: var(--bold-white);
    margin: 0 auto 24px;
    text-align: center;
    letter-spacing: -0.015em;
    max-width: 1080px;
}

.ck-topic-intro__icon {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1;
    margin: 0 0 20px;
}

.ck-topic-intro .ck-hero__claim {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--bold-white);
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ck-topic-intro .ck-section__subtitle a {
    color: var(--bold-green-bright);
    text-decoration: none;
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ck-topic-page {
    padding: clamp(40px, 6vw, 80px) clamp(20px, 4vw, 60px) clamp(60px, 8vw, 120px) !important;
    background: var(--bold-cream);
}

.ck-topic-page__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(40px, 5vw, 80px);
    max-width: var(--bold-container);
    margin: 0 auto;
    align-items: start;
}

/* Fallback: kein Sidebar-Element vorhanden → Content nutzt volle Breite */
.ck-topic-page__layout:not(:has(> .ck-bold-topic-sidebar)) {
    grid-template-columns: 1fr;
    max-width: 880px;
}

.ck-topic-page__main {
    min-width: 0;
}

.ck-topic-page__main h2.wp-block-heading {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    color: var(--bold-green-dark);
    margin: clamp(40px, 5vw, 60px) 0 24px;
    text-align: left;
    max-width: none;
}

.ck-topic-page__main h2.wp-block-heading:first-child {
    margin-top: 0;
}

.ck-topic-page__main > p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    font-size: 1.05rem;
    line-height: 1.7;
}

.ck-topic-page__main ul,
.ck-topic-page__main ol {
    font-size: 1.0625rem;
    line-height: 1.65;
    padding-left: 1.4em;
}

.ck-topic-page__main li {
    margin-bottom: 8px;
}

/* „Erfolge"-Liste (bereits Geschafftes): grünes Häkchen statt Aufzählungspunkt */
.ck-topic-page__main ul {
    list-style: none;
    padding-left: 0;
}

.ck-topic-page__main ul > li {
    position: relative;
    padding-left: 1.9em;
}

.ck-topic-page__main ul > li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bold-green-bright);
    font-weight: 700;
    font-size: 1.15em;
    line-height: 1.5;
}

/* Blätter-Navigation am Fuß der Themenseiten: vorheriges (links) / nächstes (rechts) Thema */
.ck-topic-pager {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    margin-top: clamp(48px, 6vw, 72px);
    padding-top: 32px;
    border-top: 2px solid var(--bold-green-pale);
}

.ck-topic-pager__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    max-width: 46%;
    transition: transform var(--bold-transition);
}

.ck-topic-pager__prev {
    align-items: flex-start;
    text-align: left;
}

.ck-topic-pager__next {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
}

.ck-topic-pager__dir {
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--bold-green-bright);
}

.ck-topic-pager__title {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    line-height: 1.1;
    color: var(--bold-green-dark);
}

.ck-topic-pager__prev:hover {
    transform: translateX(-4px);
}

.ck-topic-pager__next:hover {
    transform: translateX(4px);
}

/* Themen-Übersicht (/themen/): Abstand der Themen-Liste zum Einleitungstext */
.ck-topic-overview {
    margin-top: clamp(40px, 5vw, 64px);
}

@media (max-width: 560px) {
    .ck-topic-pager {
        gap: 18px;
    }
    .ck-topic-pager__link {
        max-width: 48%;
    }
    .ck-topic-pager__title {
        font-size: 1rem;
    }
}

/* Topic-Sidebar im Bold-Stil */
.ck-bold-topic-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
}

.ck-bold-topic-sidebar__title {
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bold-green-dark);
    margin: 0 0 12px;
    padding-left: 12px;
}

.ck-bold-topic-sidebar__title--secondary {
    margin-top: 28px;
}

.ck-bold-topic-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid var(--bold-green-pale);
}

.ck-bold-topic-sidebar__list li {
    margin: 0;
    list-style: none;
}

.ck-bold-topic-sidebar__list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-left: -2px;
    border-left: 2px solid transparent;
    color: var(--bold-green-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.35;
    transition: color var(--bold-transition), border-color var(--bold-transition), background var(--bold-transition);
}

.ck-bold-topic-sidebar__list a:hover {
    color: var(--bold-green-dark);
    background: var(--bold-green-pale);
    border-left-color: var(--bold-green-bright);
}

.ck-bold-topic-sidebar__list .is-current a {
    color: var(--bold-green-deep);
    background: var(--bold-green-pale);
    border-left-color: var(--bold-green-dark);
    font-weight: 700;
}

.ck-bold-topic-sidebar__list .ck-topic-sidebar__icon,
.ck-bold-topic-sidebar__list .ck-bold-topic-sidebar__icon {
    flex-shrink: 0;
    width: 1.4em;
    text-align: center;
}

/* Topic-Sidebar Mobile-Accordion (übernommen aus altem Theme) */
@media (max-width: 900px) {
    .ck-topic-page__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .ck-bold-topic-sidebar {
        position: static;
    }
    .ck-bold-topic-sidebar__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        border-left: none;
    }
    .ck-bold-topic-sidebar__list a {
        border-left: 2px solid var(--bold-green-pale);
        font-size: 0.85rem;
        padding: 6px 10px;
        margin-left: 0;
    }
}

/* H1 auf Topic-Detailseiten oben (page.php) */
.ck-bold-page__header {
    background: var(--bold-cream);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px) clamp(20px, 3vw, 40px);
    margin: 0;
}

.ck-bold-page__title {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    color: var(--bold-green-dark);
    margin: 0;
    text-align: center;
    max-width: var(--bold-container);
    margin: 0 auto;
}

/* Einfache Seiten (Spenden, Impressum, Datenschutz, Mediathek …): auf die
   Standard-Container-Breite des Themes begrenzt (wie Titel/Sektionen/andere
   Seiten) statt voller Fensterbreite. Seiten mit eigener Hero-/Section-Struktur
   (full-bleed) bekommen die Klasse NICHT (siehe page.php). */
.ck-bold-page__content--constrained {
    max-width: var(--bold-container);
    margin: 0 auto;
    padding: clamp(40px, 5vw, 72px) var(--bold-section-pad-x);
}
.ck-bold-page__content--constrained > * {
    max-width: 100%;
}

/* Tablet/schmaler Desktop: Fokus etwas nach rechts, damit Claudia im Bild bleibt */
@media (max-width: 1000px) {
    .ck-bold-hero__photo {
        object-position: 58% 26%;
    }
}

/* Mobile-Hero */
@media (max-width: 760px) {
    .ck-bold-hero {
        min-height: 90vh;
    }
    .ck-bold-hero__photo {
        object-position: 68% 22%;
    }
    /* Diagonaler dunkler Verlauf oben-links: der Name bleibt auf jedem Motiv
       (auch über Claudias hellem Haar) klar lesbar und wirkt als bewusstes
       Overlay; Claudias Gesicht rechts/unten bleibt unberührt. */
    .ck-bold-hero__tint {
        background:
            linear-gradient(146deg, rgba(0, 61, 40, 0.82) 0%, rgba(0, 61, 40, 0.46) 28%, rgba(0, 61, 40, 0) 54%),
            linear-gradient(180deg, rgba(0, 61, 40, 0) 60%, rgba(0, 61, 40, 0.30) 100%);
    }
    .ck-bold-hero__name {
        font-size: clamp(3.25rem, 13vw, 5rem);
        /* Das Menü (Burger-Header) ist ~80px hoch; auf flachen Fenstern klemmte
           der alte Min-Wert (64px) den Namen dahinter (verstärkt durch die
           WP-Admin-Bar). Min ≥ Menühöhe + Puffer, damit der Titel immer frei bleibt. */
        top: clamp(100px, 13vh, 124px);
        transform: none;
        left: clamp(20px, 6vw, 40px);
        max-width: 88%;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55), 0 6px 50px rgba(0, 0, 0, 0.4);
    }
    .ck-bold-hero__portrait {
        width: min(clamp(200px, 56vw, 280px), 40vh);
        border-width: 6px;
        border-bottom: 0;
    }
    .ck-bold-hero__sticker {
        bottom: clamp(60px, 10vh, 100px);
        width: clamp(126px, 36vw, 156px);
        height: clamp(126px, 36vw, 156px);
        padding: 12px;
    }
    .ck-bold-hero__sticker-text {
        font-size: clamp(1.12rem, 5vw, 1.5rem);
    }
}

/* ── Consent-/Click-to-Load-Platzhalter (externe iframes, DSGVO) ─────────
   Wird per assets/js/consent-embed.js gegen das echte iframe getauscht.
   Bold-Karte: Creme-Fläche, grüner Rahmen, Pill-Button. */
.ck-embed-consent {
    border: 2px dashed var(--bold-green-pale);
    border-radius: var(--bold-radius-soft);
    background: var(--bold-cream);
    padding: clamp(28px, 5vw, 48px) clamp(20px, 4vw, 40px);
    text-align: center;
}

.ck-embed-consent__inner {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.ck-embed-consent__title {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.1;
    color: var(--bold-green-dark);
    margin: 0;
}

.ck-embed-consent__text {
    font-family: var(--bold-font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bold-ink);
    margin: 0;
}

.ck-embed-consent__text a {
    color: var(--bold-green-dark);
    text-decoration: underline;
}

.ck-embed-consent__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--bold-radius-pill);
    border: 2px solid transparent;
    background: var(--bold-green-dark);
    color: var(--bold-white);
    font-family: var(--bold-font-body);
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform var(--bold-transition), background var(--bold-transition);
}

.ck-embed-consent__btn:hover {
    background: var(--bold-green-deep);
    transform: translateY(-1px);
}

.ck-embed-consent__note {
    font-size: 0.85rem;
    color: var(--bold-muted);
    margin: 0;
}

/* ── Dezenter „Ältere Termine"-Link (Startseite, statt Pill-Button) ──── */
.ck-termine-archiv-link {
    text-align: center;
    margin-top: clamp(24px, 4vw, 40px);
    /* Erscheint erst, wenn „Weitere Termine anzeigen" aufgeklappt ist
       (assets/js/termine-archiv-link.js setzt .is-visible). */
    display: none;
}

.ck-termine-archiv-link.is-visible {
    display: block;
}

.ck-termine-archiv-link a {
    color: var(--bold-green-dark);
    font-family: var(--bold-font-body);
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ck-termine-archiv-link a:hover {
    color: var(--bold-green-deep);
    text-decoration: underline;
}

/* ── Einzel-Termin-Seite (single-gt_termin.php) ─────────────────────── */
.ck-termin-single__meta {
    font-family: var(--bold-font-body);
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--bold-green-dark);
    margin: 0 0 clamp(14px, 2vw, 22px);
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    justify-content: center;
}

.ck-termin-single__back {
    margin: clamp(28px, 4vw, 44px) 0 0;
    font-family: var(--bold-font-body);
    font-size: 0.95rem;
}

.ck-termin-single__back a {
    color: var(--bold-green-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ck-termin-single__back a:hover {
    color: var(--bold-green-deep);
}

/* Datum unter dem Titel im Termin-Pager */
.ck-topic-pager__date {
    font-family: var(--bold-font-body);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--bold-muted);
    margin-top: 2px;
}

/* ── Presse-/Medien-Liste (kuratierte Links, /presse/) ─────────────────── */
.ck-presse-list {
    list-style: none;
    margin: clamp(24px, 4vw, 40px) 0 0;
    padding: 0;
}

.ck-presse-list > li {
    margin: 0;
    padding: clamp(16px, 2.5vw, 24px) 0;
    border-top: 2px solid var(--bold-green-pale);
}

.ck-presse-list > li:last-child {
    border-bottom: 2px solid var(--bold-green-pale);
}

.ck-presse-list a {
    font-family: var(--bold-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    line-height: 1.15;
    color: var(--bold-green-dark);
    text-decoration: none;
}

.ck-presse-list a::after {
    content: " →";
    font-style: normal;
    font-family: var(--bold-font-body);
}

.ck-presse-list a:hover {
    color: var(--bold-green-bright);
    text-decoration: underline;
}

.ck-presse-meta {
    display: block;
    margin-top: 5px;
    font-family: var(--bold-font-body);
    font-size: 0.9rem;
    color: var(--bold-muted);
}

/* ── Instagram-Galerie („Folge mir"): Ladezustand + Luft ─────────────────
   Solange ein Bild noch lädt, zeigt die Kachel eine dezente grüne Fläche
   statt „Loch" (die Plugin-Kacheln haben aspect-ratio, aber transparenten
   Grund). Etwas mehr Gap als die Plugin-Default-4px. */
#social .wp-block-instagram-block-gallery__grid,
.ck-bold-social .wp-block-instagram-block-gallery__grid {
    gap: 10px;
}

#social .wp-block-instagram-block-gallery__item img,
.ck-bold-social .wp-block-instagram-block-gallery__item img {
    background: rgba(0, 61, 40, 0.10);
    border-radius: 6px;
}

.ck-presse-excerpt {
    margin: 8px 0 0;
    font-family: var(--bold-font-body);
    font-size: 1rem;
    line-height: 1.55;
    color: var(--bold-ink);
}

/* Beitragsbild auf der Einzelbeitrag-Seite (single.php) */
.ck-beitrag-thumb {
    margin: 0 0 clamp(20px, 3vw, 36px);
}

.ck-beitrag-thumb img {
    width: 100%;
    height: auto;
    border-radius: var(--bold-radius-soft);
    display: block;
}
