/* ============================================================
   ki-fuer-ngos.de — style.css  v2.1  (2026-06-01)
   Basis: v2 + Zugaenglichkeits-/Lesbarkeits-Pass
   (Umbruch lange Komposita, WCAG-AA-Kontrast, Fokus,
    reduced-motion, Mobile-Lesbarkeit). Siehe Block am Ende.
============================================================ */

/* ====== Selbst gehostete Schriften (DSGVO: kein Google-Request) ====== */
@font-face{font-family:'Syne';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/syne-v24-latin-regular.woff2') format('woff2');}
@font-face{font-family:'Syne';font-style:normal;font-weight:700;font-display:swap;src:url('/fonts/syne-v24-latin-700.woff2') format('woff2');}
@font-face{font-family:'Syne';font-style:normal;font-weight:800;font-display:swap;src:url('/fonts/syne-v24-latin-800.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:300;font-display:swap;src:url('/fonts/dm-sans-v17-latin-300.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:normal;font-weight:400;font-display:swap;src:url('/fonts/dm-sans-v17-latin-regular.woff2') format('woff2');}
@font-face{font-family:'DM Sans';font-style:italic;font-weight:300;font-display:swap;src:url('/fonts/dm-sans-v17-latin-300italic.woff2') format('woff2');}

  :root {
    --black: #0f0f0f;
    --white: #f4f0e8;
    --red: #c8392b;
    --red-dark: #a02e22;
    --grey: #2a2a2a;
    --grey-light: #3d3d3d;
    --muted: #888;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #222;
  }

  .nav-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-links a.nav-cta { color: var(--white); }

  .nav-logo span { color: var(--red); }

  .nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1.4rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--red-dark); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(200,57,43,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 4rem;
  }

  .hero-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 2rem;
    height: 1px;
    background: var(--red);
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
  }

  h1 em {
    font-style: normal;
    color: var(--red);
  }

  .hero-sub {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 38ch;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

  .btn-secondary {
    border: 1px solid #444;
    color: var(--white);
    padding: 0.9rem 2rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem 4rem 2rem;
    position: relative;
  }

  .hero-card {
    background: var(--grey);
    border: 1px solid #333;
    padding: 2.5rem;
    max-width: 380px;
    width: 100%;
    position: relative;
  }

  .hero-card::before {
    content: '';
    position: absolute;
    top: -1px; left: 2rem;
    width: 3rem;
    height: 3px;
    background: var(--red);
  }

  .hero-card-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 1.2rem;
  }

  .hero-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .hero-card p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .hero-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-card-list li {
    font-size: 0.85rem;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .hero-card-list li::before {
    content: '→';
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.05em;
  }

  /* SECTION BASE */
  section {
    padding: 6rem 4rem;
  }

  .section-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1px;
    background: var(--red);
  }

  h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }

  .section-label:has(#style~section-label) { justify-content: center; }
  #style~.section-label { justify-content: center; }

  /* WARUM ICH */
  .about {
    background: var(--grey);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }

  .about-text p {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
  }

  .about-text p strong {
    color: var(--white);
    font-weight: 400;
  }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stat {
    border-top: 1px solid #444;
    padding-top: 1rem;
  }

  .stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.4;
  }

  /* LEISTUNGEN */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: #222;
    margin-top: 3rem;
  }

  .service-item {
    background: var(--black);
    padding: 2.5rem;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .service-item:hover { background: #161616; }
  .service-item:hover::after { width: 100%; }

  .service-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    font-weight: 700;
  }

  .service-item h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .service-item p {
    font-size: 0.88rem;
    color: #999;
    line-height: 1.7;
  }

  /* FÜR WEN */
  .forwho {
    background: var(--grey);
  }

  .forwho-intro {
    max-width: 60ch;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
  }

  .tag {
    border: 1px solid #444;
    padding: 0.5rem 1.1rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ccc;
    transition: border-color 0.2s, color 0.2s;
    cursor: default;
  }

  .tag:hover { border-color: var(--red); color: var(--white); }

  .forwho-quote {
    border-left: 3px solid var(--red);
    padding-left: 1.5rem;
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
    max-width: 55ch;
    line-height: 1.7;
  }

  /* WIE ES LÄUFT */
  .process {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: start;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .process-step {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid #222;
    align-items: start;
  }

  .process-step:first-child { padding-top: 0; }

  .step-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #333;
    line-height: 1;
    padding-top: 0.1rem;
  }

  .step-content h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .step-content p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.6;
  }

  /* HÄPPCHEN */
  .happs {
    background: var(--grey);
    text-align: center;
  }

  .happs h2 { margin-bottom: 1rem; }

  .happs-sub {
    color: #aaa;
    font-size: 1rem;
    max-width: 50ch;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  .happs-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #333;
    margin-bottom: 3rem;
    text-align: left;
  }

  .happs-item {
    background: var(--grey);
    padding: 2rem;
  }

  .happs-item-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .happs-item h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }

  .happs-item p {
    font-size: 0.82rem;
    color: #888;
    line-height: 1.6;
  }

  /* KONTAKT / CALENDLY */
  .contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }

  .contact-left h2 { margin-bottom: 1rem; }

  .contact-left p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 45ch;
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #bbb;
  }

  .contact-detail span:first-child {
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width: 4rem;
    flex-shrink: 0;
  }

  .contact-right {
    background: var(--grey);
    border: 1px solid #333;
    padding: 2.5rem;
  }

  .calendly-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border: 1px dashed #444;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
  }

  .calendly-placeholder p {
    color: var(--muted);
    font-size: 0.85rem;
    max-width: 28ch;
    line-height: 1.6;
  }

  .calendly-placeholder .cal-icon {
    font-size: 2.5rem;
    opacity: 0.4;
  }

  .calendly-placeholder code {
    font-size: 0.75rem;
    background: #1a1a1a;
    padding: 0.3rem 0.6rem;
    color: var(--red);
    border-radius: 2px;
  }

  /* FOOTER */
  footer {
    border-top: 1px solid #222;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #555;
  }

  footer a { color: #555; text-decoration: none; transition: color 0.2s; }
  footer a:hover { color: #aaa; }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-left > * {
    animation: fadeUp 0.6s ease both;
  }

  .hero-tag { animation-delay: 0.1s; }
  h1 { animation-delay: 0.2s; }
  .hero-sub { animation-delay: 0.3s; }
  .hero-actions { animation-delay: 0.4s; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-cta { font-size: 0.7rem; padding: 0.45rem 0.9rem; white-space: nowrap; }
    section { padding: 4rem 1.5rem; }
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 6rem; }
    .hero-left { padding: 2rem 1.5rem; }
    .hero-left h1 { font-size: clamp(2rem, 10vw, 3rem); word-break: break-word; }
    .hero-right { display: none; }
    .about { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process { grid-template-columns: 1fr; gap: 2rem; }
    .contact { grid-template-columns: 1fr; gap: 3rem; }
    .happs-items { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
  }

  /* NAV RESPONSIVE */
  .nav-links-desktop { display: flex; }
  .nav-links-mobile { display: none; }

  @media (max-width: 900px) {
    .nav-links-desktop { display: none; }
    .nav-links-mobile { display: flex; flex-direction: column; gap: 0.5rem; }
  }

  /* BREADCRUMB */
  .breadcrumb {
    padding: 1.5rem 4rem 0;
    font-size: 0.78rem;
    color: #555;
  }
  .breadcrumb a { color: #666; text-decoration: none; }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb span { color: #444; margin: 0 0.5rem; }

  /* SUBPAGE HERO (kleiner als Homepage) */
  .hero-subpage {
    min-height: 60vh;
    padding-top: 7rem;
  }
  .hero-subpage .hero-left {
    padding: 3rem 4rem;
  }
  .hero-subpage h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }

  /* ACCORDION */
  .accordion-item {
    border-bottom: 1px solid #222;
    padding: 1.5rem 0;
  }
  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
  }
  .accordion-header:hover { color: var(--red); }
  .accordion-toggle {
    color: var(--red);
    font-size: 1.5rem;
    transition: transform 0.2s;
  }
  .accordion-item.active .accordion-toggle { transform: rotate(45deg); }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .accordion-item.active .accordion-content {
    max-height: 500px;
    padding-top: 1rem;
  }

  /* DECISION TABLE */
  .decision-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  .decision-table th {
    text-align: left;
    padding: 1rem;
    border-bottom: 2px solid #333;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--white);
  }
  .decision-table td {
    padding: 1rem;
    border-bottom: 1px solid #222;
    color: #aaa;
  }
  .decision-table tr:hover td { background: #151515; }

  /* ===========================
     BLOG – TEASER (Startseite)
  =========================== */
  .blog-teaser { background: var(--black); }

  .blog-teaser-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .blog-teaser-header h2 { margin-bottom: 0; }

  .blog-all-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: gap 0.2s;
    white-space: nowrap;
  }

  .blog-all-link:hover { gap: 0.7rem; }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: #222;
  }

  .blog-card {
    background: var(--black);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .blog-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .blog-card:hover { background: #161616; }
  .blog-card:hover::after { width: 100%; }

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .blog-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    border: 1px solid rgba(200,57,43,0.4);
    padding: 0.2rem 0.6rem;
  }

  .blog-date {
    font-size: 0.75rem;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
  }

  .blog-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: var(--white);
  }

  .blog-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    flex: 1;
  }

  .blog-card-arrow {
    margin-top: 1.5rem;
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  /* ===========================
     BLOG ÜBERSICHT (/blog/)
  =========================== */
  .blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: #222;
    margin-bottom: 1.5px;
  }

  .blog-featured-main {
    background: var(--grey);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
  }

  .blog-featured-main::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--red);
    transition: width 0.4s ease;
  }

  .blog-featured-main:hover { background: #333; }
  .blog-featured-main:hover::after { width: 100%; }

  .blog-featured-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 1.5rem;
  }

  .blog-featured-main h2 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .blog-featured-main p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    max-width: 50ch;
  }

  .blog-featured-arrow {
    margin-top: 2rem;
    color: var(--red);
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .blog-featured-side {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    background: #222;
  }

  .blog-index-list {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
    background: #222;
  }

  .blog-index-card {
    background: var(--black);
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .blog-index-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .blog-index-card:hover { background: #161616; }
  .blog-index-card:hover::after { width: 100%; }

  .blog-index-card h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: var(--white);
  }

  .blog-index-card p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    max-width: 60ch;
  }

  .blog-index-arrow {
    color: var(--red);
    font-size: 1.2rem;
    transition: transform 0.2s;
    flex-shrink: 0;
  }

  .blog-index-card:hover .blog-index-arrow { transform: translateX(4px); }

  /* ===========================
     BLOG POST – HEADER (2-col)
  =========================== */
  .post-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 56vh;
    padding-top: 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #1a1a1a;
  }

  .post-header::before {
    content: '';
    position: absolute;
    top: -20%; right: -10%;
    width: 60%; height: 120%;
    background: radial-gradient(ellipse at center, rgba(200,57,43,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .post-header-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 4rem 3.5rem;
  }

  .post-header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 4rem 3.5rem 2rem;
    background: var(--grey);
    border-left: 1px solid #222;
  }

  .post-header-breadcrumb {
    font-size: 0.75rem;
    color: #444;
    margin-bottom: 2rem;
  }

  .post-header-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
  }

  .post-header-breadcrumb a:hover { color: #aaa; }
  .post-header-breadcrumb span { margin: 0 0.5rem; color: #333; }

  .post-header-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
  }

  .post-readtime {
    font-family: 'Syne', sans-serif;
    font-size: 0.7rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .post-header-left h1 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 1.2rem;
    animation: none;
  }

  .post-header-intro {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.8;
    max-width: 42ch;
  }

  /* ===========================
     BLOG POST – KÖRPER
  =========================== */
  .post-article {
    display: grid;
    grid-template-columns: 1fr;
  }

  .post-content {
    max-width: 720px;
    padding: 4rem 4rem 6rem;
  }

  .post-content p {
    color: #c0bcb4;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.4rem;
    font-weight: 300;
  }

  .post-content h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    margin-top: 3.5rem;
    margin-bottom: 1.2rem;
    padding-top: 2.5rem;
    border-top: 1px solid #222;
    line-height: 1.2;
  }

  .post-content h2::before {
    content: '';
    display: block;
    width: 2rem;
    height: 2px;
    background: var(--red);
    margin-bottom: 1.2rem;
  }

  .post-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--white);
    border-left: 2px solid var(--red);
    padding-left: 0.9rem;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .post-content a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-color: rgba(200,57,43,0.45);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s;
  }

  .post-content a:hover { text-decoration-color: var(--red); }

  .post-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .post-content ul li {
    display: flex;
    gap: 0.9rem;
    color: #b0aca4;
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .post-content ul li::before {
    content: '→';
    color: var(--red);
    flex-shrink: 0;
    margin-top: 0.1em;
    font-size: 0.85em;
  }

  .post-content hr {
    border: none;
    border-top: 1px solid #1e1e1e;
    margin: 3rem 0;
  }

  .post-callout {
    border-left: 3px solid var(--red);
    background: #1a1a1a;
    padding: 1.6rem 2rem;
    margin: 2.5rem 0;
    position: relative;
  }

  .post-callout::before {
    content: '"';
    position: absolute;
    top: -0.6rem; left: 1.5rem;
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
    opacity: 0.4;
  }

  .post-callout p {
    color: #ddd;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 !important;
  }

  .post-cta-box {
    background: var(--grey);
    border: 1px solid #333;
    border-left: 3px solid var(--red);
    padding: 2rem 2.5rem;
    margin-top: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .post-cta-box p {
    color: #bbb;
    font-size: 0.95rem;
    margin: 0 !important;
    max-width: 42ch;
  }

  /* SOURCES */
  .post-sources {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #1e1e1e;
  }

  .post-sources-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .post-sources-label::before {
    content: '';
    display: inline-block;
    width: 1.5rem; height: 1px;
    background: var(--red);
  }

  .sources-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .sources-list li {
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 1.5rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #1a1a1a;
    align-items: baseline;
  }

  .sources-list li:last-child { border-bottom: none; }

  .source-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    padding-top: 0.1em;
  }

  .sources-list a {
    font-size: 0.82rem;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
    line-height: 1.5;
  }

  .sources-list a:hover { color: #bbb; border-color: #555; }

  /* POST BACK / FOOTER NAV */
  .post-back {
    padding: 2rem 4rem;
    border-top: 1px solid #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .post-back a {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
  }

  .post-back a:hover { color: var(--white); }

  /* RESPONSIVE BLOG */
  @media (max-width: 900px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-side { display: none; }
    .blog-index-card { grid-template-columns: 1fr; gap: 0.5rem; }
    .blog-index-arrow { display: none; }
    .blog-teaser-header { flex-direction: column; align-items: flex-start; }
    .post-header { grid-template-columns: 1fr; min-height: auto; }
    .post-header-left { padding: 2rem 1.5rem 2rem; padding-top: 1.5rem; }
    .post-header-right { display: none; }
    .post-content { padding: 2.5rem 1.5rem 4rem; }
    .post-back { padding: 1.5rem; }
    .post-cta-box { flex-direction: column; }
    .sources-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  }

  /* =================================================================
     ZUGÄNGLICHKEIT & LESBARKEIT — Optimierungs-Pass 2026-06-01
     Rein additiv. Überschreibt gezielt, lässt das Grunddesign intakt.
     Bei Bedarf einfach diesen Block entfernen -> Ausgangszustand.
  ================================================================== */

  /* 1) ABGESCHNITTENER TEXT: lange dt. Komposita & URLs umbrechen.
        Ursache war: kein Umbruch + body{overflow-x:hidden} kappt Ueberstand.
        lang="de" ist gesetzt -> hyphens:auto trennt sinnvoll. */
  .post-content p,
  .post-content li,
  .post-content h2,
  .post-content h3,
  .post-header-left h1,
  .post-header-intro,
  .post-callout p,
  .post-cta-box p,
  .blog-card h3,
  .blog-card p,
  .blog-index-card h3,
  .breadcrumb,
  .post-header-breadcrumb {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Linktexte/URLs und Inline-Code duerfen notfalls hart umbrechen */
  .post-content a { overflow-wrap: anywhere; }
  .post-content code {
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 0.92em;
  }

  /* Globaler Sicherheitsgurt gegen horizontalen Ueberlauf */
  html, body { max-width: 100%; }
  img, video, table, pre { max-width: 100%; }

  /* 2) KONTRAST (WCAG AA): zu schwache Grautoene im LESETEXT anheben.
        Reine Deko (Linien, ::before, Rahmen) bleibt unangetastet. */
  .post-readtime { color: #8a8a8a; }            /* war #555 */
  .post-header-breadcrumb { color: #8a8a8a; }   /* war #444 */
  .post-header-breadcrumb a { color: #9a948a; } /* war #555 */
  .breadcrumb { color: #8a8a8a; }               /* war #555 */
  .breadcrumb a { color: #9a948a; }             /* war #666 */
  .sources-list a { color: #9a948a; }           /* war #666, jetzt lesbar */
  .post-back a { color: #8f8f8f; }              /* war #555 */
  .post-cta-box p { color: #c7c3bb; }           /* war #bbb */
  .accordion-content { color: #b6b2aa; }        /* war #aaa */

  /* 3) SICHTBARER TASTATUR-FOKUS (vorher gar keiner) */
  a:focus-visible,
  button:focus-visible,
  summary:focus-visible,
  .nav-cta:focus-visible,
  .accordion-header:focus-visible,
  [tabindex]:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 3px;
    border-radius: 2px;
  }

  /* 4) BEWEGUNG REDUZIEREN (vestibulaere Beschwerden, Fokus) */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* 5) ACCORDION: max-height 500px kappte laengere Antworten.
        Grosszuegiger Wert -> kein abgeschnittener Text mehr. */
  .accordion-item.active .accordion-content { max-height: 2000px; }

  /* 6) MOBILE LESBARKEIT: kraeftigeres Gewicht fuer den duennen
        300er-Fliesstext, ruhigere Zeile, Intro nicht beschneiden. */
  @media (max-width: 900px) {
    .post-content p { font-size: 1.02rem; font-weight: 400; line-height: 1.85; }
    .post-content li { font-size: 1rem; }
    .post-header-intro { font-size: 1.02rem; line-height: 1.7; max-width: 100%; }
    .post-header-left h1 { overflow-wrap: break-word; hyphens: auto; }
    .post-content { overflow-wrap: break-word; }
  }
