/* edulin.de — Design auf Basis des Stakeholder-Briefings 2026.
   Monochrom (Schwarz/Weiß) mit warmem Beige als einzigem Akzent.
   Quelle: docs/BRIEFING.md (Stakeholder-Konsolidat, 100 Perspektiven) */

/* --- Design-Tokens (Briefing E.1) --- */
:root {
    --black:        #000000;
    --white:        #ffffff;
    --beige:        #d4b5a0;   /* warm-beige, CTAs/Hover/Akzente */
    --beige-dark:   #b89478;
    --beige-light:  #e8d5c4;
    --dark:         #1a1a1a;
    --grey-1:       #333333;
    --grey-2:       #666666;
    --grey-3:       #999999;
    --grey-4:       #cccccc;
    --grey-soft:    #f5f5f5;

    --font-display: 'Lora', Georgia, 'Times New Roman', serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --max-w:        720px;
    --max-w-wide:   1100px;
    --max-w-full:   1320px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }

html {
    font-size: 18px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) { html { font-size: 17px; } }
@media (max-width: 480px) { html { font-size: 16px; } }

body {
    font-family: var(--font-body);
    color: var(--grey-1);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Reduced Motion (Briefing E.3) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* --- Typografie (Briefing E.2) --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--black);
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.015em;
}
h1 { font-weight: 700; font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-weight: 600; font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-family: var(--font-body); font-weight: 500; font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.3; letter-spacing: 0; }
h4 { font-family: var(--font-body); font-weight: 500; font-size: 1.05rem; }

p { margin: 0; }

a {
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--grey-4);
    transition: color 0.2s ease, border-color 0.2s ease;
}
a:hover, a:focus {
    color: var(--beige-dark);
    border-bottom-color: var(--beige);
}

/* Skip-Link (BFSG, Briefing F.6) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--black);
    color: var(--white);
    padding: 0.75rem 1.25rem;
    z-index: 100;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    color: var(--white);
    border-bottom: none;
}

/* --- Container --- */
.wrap        { max-width: var(--max-w);      margin: 0 auto; padding: 0 1.5rem; }
.wrap-wide   { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 1.5rem; }
.wrap-full   { max-width: var(--max-w-full); margin: 0 auto; padding: 0 1.5rem; }

/* --- Buttons / CTAs (Beige-Akzent, Briefing E.5) --- */
.btn {
    display: inline-block;
    padding: 0.85em 1.75em;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    min-height: 44px; /* Touch-Target BFSG */
}
.btn:hover, .btn:focus {
    background: var(--white);
    color: var(--black);
    border-color: var(--black);
}
.btn-beige {
    background: var(--beige);
    color: var(--black);
    border-color: var(--beige);
}
.btn-beige:hover, .btn-beige:focus {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-ghost {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn-ghost:hover, .btn-ghost:focus {
    background: var(--black);
    color: var(--white);
}

/* --- Header --- */
.site-header {
    border-bottom: 1px solid var(--grey-4);
    padding: 1.25rem 0;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header .wrap-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Mobile-Hamburger (CSS-only via Checkbox-Hack).
   Checkbox bleibt fokussierbar (Tastatur-Bedienung), aber visuell
   versteckt; das sichtbare Label dient als Klick-Target und übernimmt
   den Fokus-Ring der Checkbox via :focus-visible + .nav-toggle-label */
.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.nav-toggle:focus-visible + .nav-toggle-label {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}
.nav-toggle-label span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--black);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
/* X-Animation wenn geöffnet */
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
}
.nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--black);
    letter-spacing: -0.02em;
    border-bottom: none;
}
.brand:hover { color: var(--beige-dark); border-bottom: none; }
.site-nav {
    display: flex;
    gap: 1.75rem;
    font-size: 0.85rem;
}
.site-nav a {
    color: var(--black);
    text-decoration: none;
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.25rem 0;
    position: relative;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--beige-dark);
    transition: width 0.3s ease;
}
.site-nav a:hover::after, .site-nav a:focus::after { width: 100%; }
.site-nav a:hover, .site-nav a:focus { color: var(--beige-dark); border-bottom: none; }

/* Mobile-Layout: Hamburger sichtbar, Nav als Drawer unter Brand */
@media (max-width: 768px) {
    .site-header .wrap-full {
        flex-wrap: wrap;
        gap: 0;
    }
    .brand { flex: 1; }
    .nav-toggle-label {
        display: flex;
        order: 2;
    }
    .site-nav {
        order: 3;
        display: none;
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1.25rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--grey-4);
    }
    .nav-toggle:checked ~ .site-nav { display: flex; }
    .site-nav a {
        padding: 1rem 0;
        font-size: 1rem;
        letter-spacing: 0.04em;
        border-bottom: 1px solid var(--grey-soft);
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .site-nav a:last-child { border-bottom: none; }
    .site-nav a::after { display: none; }
}

/* --- Main --- */
.site-main { }

/* --- HERO (Briefing D.2 Modul 1) --- */
.hero {
    padding: 6rem 1.5rem 5rem;
    border-bottom: 1px solid var(--grey-4);
    text-align: center;
    background: var(--white);
}
.hero .inner {
    max-width: var(--max-w-wide);
    margin: 0 auto;
}
.hero h1 {
    font-size: clamp(2.25rem, 7vw, 6rem);
    line-height: 1.02;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}
@media (max-width: 600px) {
    .hero { padding: 4rem 1.5rem 3rem; }
    .hero .subline { font-size: 1rem; }
    .hero .cta-row { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .hero .cta-row .btn { width: 100%; }
}
.hero .subline {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--grey-2);
    line-height: 1.5;
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}
.hero .cta-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* --- Rollenklarheit (Briefing D.2 Modul 2) --- */
.role-clarity {
    padding: 5rem 1.5rem;
    background: var(--grey-soft);
    text-align: center;
    border-bottom: 1px solid var(--grey-4);
}
.role-clarity .inner { max-width: var(--max-w); margin: 0 auto; }
.role-clarity p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--grey-1);
    margin-bottom: 2rem;
}
.role-clarity strong { color: var(--black); font-weight: 600; }
.audience-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.audience-nav a {
    padding: 0.85em 1.5em;
    border: 1px solid var(--black);
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s ease, color 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.audience-nav a:hover, .audience-nav a:focus {
    background: var(--beige);
    color: var(--black);
    border-color: var(--beige);
}

/* --- Drei Säulen (Briefing D.2 Modul 3) --- */
.three-pillars {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--grey-4);
}
.three-pillars .inner {
    max-width: var(--max-w-full);
    margin: 0 auto;
}
.three-pillars .head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 4rem;
}
.three-pillars .head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}
.three-pillars .head p {
    color: var(--grey-2);
    font-size: 1.05rem;
    line-height: 1.6;
}
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) {
    .pillars { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.pillar {
    text-align: left;
    padding: 0;
}
.pillar .num {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--beige-dark);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}
.pillar h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.pillar p {
    color: var(--grey-1);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.pillar blockquote {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--beige);
    font-style: italic;
    color: var(--grey-2);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- Angebote (Briefing D.2 Modul 4) --- */
.offers {
    padding: 6rem 1.5rem;
    background: var(--grey-soft);
    border-bottom: 1px solid var(--grey-4);
}
.offers .inner { max-width: var(--max-w-full); margin: 0 auto; }
.offers .head { text-align: center; margin-bottom: 4rem; }
.offers .head h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}
.offers .head p { color: var(--grey-2); max-width: 36rem; margin: 0 auto; }
.offer-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 700px) {
    .offer-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .offer-cards { grid-template-columns: repeat(4, 1fr); }
}
.offer {
    background: var(--white);
    padding: 2rem 1.75rem;
    border: 1px solid var(--grey-4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.15);
}
.offer .meta {
    font-size: 0.78rem;
    color: var(--beige-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.offer h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}
.offer p {
    color: var(--grey-2);
    font-size: 0.92rem;
    line-height: 1.5;
}
.offer .duration {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-4);
    font-size: 0.85rem;
    color: var(--grey-3);
    font-family: var(--font-body);
}

/* --- Blog-Teaser (Briefing D.2 Modul 6) --- */
.blog-teaser {
    padding: 6rem 1.5rem;
    border-bottom: 1px solid var(--grey-4);
}
.blog-teaser .inner { max-width: var(--max-w-full); margin: 0 auto; }
.blog-teaser .head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 2px solid var(--black);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}
.blog-teaser .head h2 { font-size: 1.5rem; }
.blog-teaser .head .all {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-2);
}
.teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .teaser-grid { grid-template-columns: repeat(3, 1fr); }
}
.teaser {
    display: flex;
    flex-direction: column;
}
.teaser .meta {
    font-size: 0.78rem;
    color: var(--beige-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.teaser time {
    font-size: 0.85rem;
    color: var(--grey-3);
    margin-bottom: 0.75rem;
    font-variant-numeric: tabular-nums;
}
.teaser h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.teaser h3 a {
    color: var(--black);
    border-bottom: none;
}
.teaser h3 a:hover { color: var(--beige-dark); }
.teaser .excerpt {
    color: var(--grey-2);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}
.teaser .read-more {
    align-self: flex-start;
    font-size: 0.88rem;
    color: var(--black);
    border-bottom: 1px solid var(--beige);
    font-weight: 500;
}
.teaser .read-more:hover { color: var(--beige-dark); border-bottom-color: var(--beige-dark); }

/* --- CTA-Mega-Banner (Briefing D.2 Modul 7) --- */
.cta-banner {
    padding: 6rem 1.5rem;
    background: var(--beige);
    text-align: center;
}
.cta-banner h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--black);
    margin-bottom: 1rem;
}
.cta-banner p {
    color: var(--grey-1);
    font-size: 1.1rem;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    line-height: 1.5;
}
.cta-banner .btn-row {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

/* --- Einzelpost --- */
.post {
    padding: 5rem 1.5rem 3rem;
}
.post-header { margin-bottom: 2.5rem; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.post-header h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.05; }
.post-header .meta { margin-top: 1rem; color: var(--grey-2); font-size: 0.9rem; }

/* Post-Hero (Reportage / Case Study) */
.post-hero {
    background: var(--black);
    color: var(--white);
    padding: 7rem 1.5rem 5rem;
    margin: 0 0 4rem;
}
.post-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.post-hero-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--beige);
    margin-bottom: 2rem;
}
.post-hero h1 {
    color: var(--white);
    margin: 0 0 1.5rem;
    font-size: clamp(2.25rem, 6vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 18ch;
}
.post-hero p.lead {
    color: var(--grey-4);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.5;
    max-width: 36rem;
}
.post-byline {
    max-width: var(--max-w);
    margin: 0 auto 3rem;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    color: var(--grey-2);
    font-size: 0.85rem;
    border-bottom: 1px solid var(--grey-4);
}
.post-byline span + span::before {
    content: "·";
    margin-right: 1.5rem;
    color: var(--grey-4);
}
@media (min-width: 600px) {
    .post-byline span + span::before { margin-left: -1rem; }
}

/* Post-Body */
.post-body {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--grey-1);
}
.post-body h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.15;
}
.post-body h3 { margin-top: 2.25rem; margin-bottom: 0.5rem; }
.post-body p { margin: 1.5em 0; }
.post-body ul, .post-body ol { padding-left: 1.5em; margin: 1.5em 0; }
.post-body li { margin: 0.4em 0; }
.post-body code {
    background: var(--grey-soft);
    padding: 0.1em 0.4em;
    border-radius: 2px;
    font-size: 0.92em;
    color: var(--beige-dark);
}
.post-body pre {
    background: var(--black);
    color: var(--white);
    padding: 1.5em;
    overflow-x: auto;
    border-radius: 0;
    font-size: 0.9em;
    line-height: 1.55;
    margin: 2em 0;
}
.post-body pre code { background: transparent; padding: 0; color: inherit; }
.post-body img { max-width: 100%; height: auto; }

.post-body .pullquote {
    margin: 3em -1rem;
    padding: 1.5em 1rem;
    border-top: 2px solid var(--beige);
    border-bottom: 1px solid var(--grey-4);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    line-height: 1.3;
    font-style: italic;
    color: var(--black);
    text-align: center;
}
.post-body .pullquote small {
    display: block;
    margin-top: 1em;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.78rem;
    color: var(--grey-3);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.post-body .callout {
    background: var(--grey-soft);
    border-left: 3px solid var(--beige);
    padding: 1.5em 1.75em;
    margin: 2em 0;
}
.post-body .callout > :first-child { margin-top: 0; }
.post-body .callout > :last-child  { margin-bottom: 0; }
.post-body .callout h3 {
    font-size: 1.05rem;
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.post-body .results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 2rem;
    margin: 3em 0;
    padding: 3em 0;
    border-top: 1px solid var(--grey-4);
    border-bottom: 1px solid var(--grey-4);
}
.post-body .results .item { text-align: center; }
.post-body .results .num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--beige-dark);
    margin-bottom: 0.5em;
    letter-spacing: -0.02em;
}
.post-body .results .label {
    display: block;
    font-size: 0.78rem;
    color: var(--grey-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.post-footer {
    max-width: var(--max-w);
    margin: 4rem auto 0;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--grey-4);
    color: var(--grey-2);
    font-size: 0.9rem;
}

/* --- Statische Seiten --- */
.page {
    padding: 5rem 1.5rem 3rem;
}
.page-header { max-width: var(--max-w); margin: 0 auto 3rem; }
.page-header h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
.page-body { max-width: var(--max-w); margin: 0 auto; }

/* --- Archive / Tag-Listen / Blog-Übersicht --- */
.archive, .tag-list, .blog-index {
    max-width: var(--max-w-full);
    margin: 0 auto;
    padding: 5rem 1.5rem;
}
.archive h1, .tag-list h1, .blog-index h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}
.archive .head-lead, .tag-list .head-lead, .blog-index .head-lead {
    color: var(--grey-2);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    max-width: 36rem;
}

/* Story-Liste (für /blog und Tag-Filter) */
.story-list { display: grid; gap: 0; }
.story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--grey-4);
    transition: background 0.15s ease;
}
@media (min-width: 768px) {
    .story { grid-template-columns: 220px 1fr; gap: 3rem; align-items: baseline; }
}
.story:hover { background: var(--grey-soft); }
.story-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
}
.story-meta .label {
    color: var(--beige-dark);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.72rem;
}
.story-meta time { color: var(--grey-2); font-variant-numeric: tabular-nums; }
.story-meta .tags { color: var(--grey-3); font-size: 0.78rem; margin-top: 0.25rem; }
.story-meta .tags a { color: var(--grey-2); border-bottom: none; margin-right: 0.5em; }
.story-meta .tags a:hover { color: var(--beige-dark); }
.story-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.story-body h3 a { color: var(--black); border-bottom: none; }
.story-body h3 a:hover { color: var(--beige-dark); border-bottom: none; }
.story-body .excerpt { color: var(--grey-2); line-height: 1.55; max-width: 42rem; }

/* --- Footer --- */
.site-footer {
    background: var(--dark);
    color: var(--grey-4);
    padding: 4rem 1.5rem 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}
.site-footer .wrap-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 700px) {
    .site-footer .wrap-full { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
}
.site-footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}
.site-footer .bio { color: var(--white); max-width: 36rem; }
.site-footer .bio strong { font-weight: 600; }
.site-footer .transparency {
    font-size: 0.85rem;
    color: var(--grey-3);
    margin-top: 1rem;
    font-style: italic;
}
.site-footer .institution {
    color: var(--grey-3);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a2a;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a {
    color: var(--grey-4);
    border-bottom: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
}
.site-footer a:hover { color: var(--beige); }
.site-footer .copyright {
    grid-column: 1 / -1;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2a2a;
    color: var(--grey-3);
    font-size: 0.8rem;
}

/* --- 404 --- */
.error {
    text-align: center;
    padding: 6rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
}
.error h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }
.error code { background: var(--grey-soft); padding: 0.1em 0.4em; font-size: 0.95em; }

/* --- Selection --- */
::selection { background: var(--beige); color: var(--black); }

/* --- Druck-Optimierung --- */
@media print {
    .site-header, .site-footer, .cta-banner, .audience-nav { display: none; }
    body { font-size: 11pt; }
    a { color: var(--black); border-bottom: none; }
    .post-body, .page-body { max-width: none; }
}

/* === Bard Custom Blocks (Statamic) === */

/* Timeline */
.post-body-timeline {
    list-style: none;
    padding: 0;
    margin: 2.5em 0;
    border-left: 2px solid var(--beige);
    padding-left: 0;
}
.post-body-timeline-event {
    position: relative;
    padding: 1em 0 1.5em 2rem;
    margin: 0;
}
.post-body-timeline-event::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 1.5em;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--beige);
    border: 2px solid var(--white);
}
.post-body-timeline-event .date {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--beige-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.post-body-timeline-event h4 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--black);
}
.post-body-timeline-event p {
    margin: 0;
    color: var(--grey-2);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Toggle (FAQ-Akkordeon) */
.post-body-toggle {
    margin: 1.5em 0;
    border: 1px solid var(--grey-4);
    border-radius: 4px;
    padding: 0;
    background: var(--white);
}
.post-body-toggle summary {
    padding: 1.25em 1.5em;
    cursor: pointer;
    font-weight: 600;
    color: var(--black);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s ease;
    min-height: 44px;
}
.post-body-toggle summary::-webkit-details-marker { display: none; }
.post-body-toggle summary::after {
    content: "+";
    font-size: 1.4em;
    color: var(--beige-dark);
    transition: transform 0.2s ease;
    line-height: 1;
    margin-left: 1em;
}
.post-body-toggle[open] summary::after {
    content: "−";
}
.post-body-toggle summary:hover {
    background: var(--grey-soft);
}
.post-body-toggle .toggle-body {
    padding: 0 1.5em 1.5em;
    color: var(--grey-1);
    line-height: 1.65;
}
.post-body-toggle .toggle-body > :first-child { margin-top: 0; }
.post-body-toggle .toggle-body > :last-child { margin-bottom: 0; }

/* Slider (CSS Scroll-Snap) */
.post-body-slider {
    margin: 2.5em -1rem;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--beige) var(--grey-soft);
}
.post-body-slider .slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin: 0;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .post-body-slider .slide { flex-basis: 60%; }
}
.post-body-slider .slide img {
    width: 100%;
    height: auto;
    display: block;
}
.post-body-slider .slide figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--grey-2);
    font-style: italic;
}

/* Image-Block (mit Layout-Varianten) */
.post-body-image {
    margin: 2em 0;
}
.post-body-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}
.post-body-image figcaption {
    margin-top: 0.5em;
    font-size: 0.85rem;
    color: var(--grey-3);
    font-style: italic;
    text-align: center;
}
.post-body-image-wide {
    margin-left: -2rem;
    margin-right: -2rem;
}
@media (max-width: 768px) {
    .post-body-image-wide { margin-left: 0; margin-right: 0; }
}
.post-body-image-full {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
}
.post-body-image-full img {
    border-radius: 0;
}

/* Zwei-Spalten-Block */
.post-body-two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2em 0;
}
@media (min-width: 700px) {
    .post-body-two-column { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.post-body-two-column .col > :first-child { margin-top: 0; }
.post-body-two-column .col > :last-child { margin-bottom: 0; }
