/* kostbar-tf.de — statische, barrierefreie Seite
   Farbe: warmes Gold/Grün, viel Weißraum, modern/frisch.
   WCAG AA: hohe Kontraste, klare Fokus-Indikatoren, prefers-reduced-motion.
*/
:root {
    --primary: #2e6b4f;          /* sattes Grün */
    --primary-dark: #235a40;
    --accent: #c9a227;           /* warmes Gold */
    --accent-dark: #a8841f;
    --bg: #fdfcfa;               /* off-white */
    --text: #232323;             /* Anthrazit */
    --text-secondary: #4a4a4a;
    --white: #ffffff;
    --line: #e4e0d8;
    --focus: #a8841f;
    --radius: 10px;
    --shadow: 0 2px 12px rgba(35, 35, 35, .07);
    --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: var(--font);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
    border-radius: 3px;
}

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .9rem; }
h3 { font-size: 1.3rem; margin-bottom: .6rem; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.25rem; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* Skip link */
.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--primary); color: var(--white);
    padding: .75rem 1.5rem; z-index: 2000; border-radius: 0 0 6px 0;
    font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}
.header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1.5rem; min-height: 72px;
}
.brand { font-size: 1.25rem; font-weight: 700; color: var(--primary); text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; }
.brand__mark { color: var(--accent-dark); font-size: 1.4rem; }

.site-nav { display: flex; align-items: center; }
.site-nav__list { display: flex; gap: .25rem; list-style: none; flex-wrap: wrap; }
.site-nav__link { display: inline-block; padding: .5rem 1rem; border-radius: 999px; color: var(--text); text-decoration: none; font-weight: 500; }
.nav-toggle {
    display: none; background: none; border: 1px solid var(--line);
    border-radius: 6px; padding: .5rem .75rem; cursor: pointer; font-size: 1.2rem;
}

/* Hero */
.hero {
    position: relative; min-height: min(72vh, 640px);
    display: flex; align-items: center;
    background: url('../images/hero-sunset.jpg') center / cover no-repeat var(--primary-dark);
}
.hero__overlay {
    position: absolute; inset: 0; background: #231a12; opacity: .35; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; padding: 4rem 1.5rem; }
.hero__content { max-width: 46rem; }
@media (max-width: 900px) { .hero__inner { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .hero__funding { width: 100%; max-width: 320px; margin: 1.5rem auto 0; } }
@media (min-width: 768px) {
    
}
.hero__headline { color: var(--white); text-shadow: 0 2px 8px rgba(0,0,0,.4); }
.hero__subline { color: #f3ece0; font-size: 1.25rem; max-width: 42ch; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.hero__cta { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block; padding: .85rem 1.6rem; border-radius: var(--radius);
    font-weight: 600; text-decoration: none; font-size: 1rem;
    border: 2px solid transparent; line-height: 1.2; cursor: pointer;
    transition: background-color .2s, transform .15s;
}
.btn--accent { background: var(--accent); color: #241a01; }
.btn--accent:hover { background: var(--accent-dark); color: #241a01; transform: translateY(-1px); }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); color: var(--white); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* Sections */
.section { padding: 3.5rem 0; }
.section--muted { background: #f2efe9; }
.section--green { background: var(--primary); color: var(--white); }
.section--green h2, .section--green h3 { color: var(--white); }
.section__header { max-width: 740px; margin-bottom: 2rem; }
.section__kicker { display: inline-block; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 700; color: var(--accent-dark); margin-bottom: .5rem; }
.section--green .section__kicker { color: #f0d68a; }

.lead { font-size: 1.12rem; color: var(--text-secondary); max-width: 46em; }

/* Two-column grid */
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* Cards */
.card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow);
}
.card--green { background: var(--white); }
.card__title { margin-bottom: .75rem; }
.card__list { list-style: none; margin: 0; padding: 0; }
.card__list li { position: relative; padding-left: 1.4rem; margin-bottom: .6rem; }
.card__list li::before {
    content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700;
}
.card__list--alt li::before { content: "↗"; color: var(--accent-dark); }

/* Check 2-col card list fix */
.checklist { list-style: none; margin: 0; padding: 0; columns: 1; column-gap: 2.5rem; }
@media (min-width: 768px) { .checklist { columns: 2; } }
.checklist li { position: relative; padding-left: 1.5rem; margin-bottom: .7rem; break-inside: avoid; }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* Network partners (by city) */
.partners { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .partners { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .partners { grid-template-columns: repeat(3, 1fr); } }
.partner-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow); }
.partner-card__city { font-weight: 700; color: var(--primary); margin-bottom: .5rem; }
.partner-card__list { list-style: none; margin: 0; padding: 0; font-size: .98rem; }
.partner-card__list li { margin-bottom: .4rem; }
.partner-card__list a { text-decoration: none; }
.partner-card__list a:hover { border-bottom-color: var(--primary); }

/* Flyer / download cards */
.flyer-card { display: flex; flex-direction: column; gap: .5rem; }
.flyer-card .btn { align-self: flex-start; }

/* Contact */
.contact-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.contact-block__row { display: flex; gap: .75rem; align-items: baseline; margin-bottom: .5rem; }
.contact-block__label { font-weight: 600; min-width: 6.5rem; color: var(--text-secondary); }
.contact-block__value a { text-decoration: none; font-weight: 500; }

/* Footer */
.site-footer { background: var(--primary); color: var(--white); padding: 3rem 0 2rem; }
.site-footer a { color: #e8f0ea; }
.footer__inner { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr; align-items: start; } }
.footer__heading { color: var(--white); font-size: 1.1rem; margin-bottom: .75rem; }
.footer__nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.footer__legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); font-size: .9rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { color: #dceadf; text-decoration: underline; }

/* Funding hint */

/* Active reveal (JS) */
.section { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.section.is-visible { opacity: 1; transform: none; }

/* Back to top */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem; width: 3.25rem; height: 3.25rem;
    border-radius: 50%; border: none; background: var(--accent); color: #241a01;
    font-size: 1.5rem; cursor: pointer; opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: opacity .25s, transform .25s, visibility .25s;
    box-shadow: 0 4px 12px rgba(0,0,0,.2); z-index: 900;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .section { opacity: 1; transform: none; }
}

/* Responsive nav */
@media (max-width: 820px) {
    .nav-toggle { display: block; }
    .site-nav {
        position: absolute; top: 72px; left: 0; right: 0;
        background: var(--white); border-bottom: 1px solid var(--line);
        display: none; padding: .75rem 1.5rem 1.25rem;
    }
    .site-nav.is-open { display: block; }
    .site-nav__list { flex-direction: column; gap: .25rem; }
    .header__inner { flex-wrap: wrap; }
}

/* ===== v1.0.1: Ziele untereinander + Linklisten (Netzwerkpartner/Flyer) ===== */
.grid-1 { display: grid; gap: 2rem; grid-template-columns: 1fr; }

.linklist-section { display: grid; gap: 1.75rem; margin-top: 1.5rem; }
.linklist { background: var(--bg, #fff); border: 1px solid rgba(0,0,0,.06); border-radius: 12px; padding: 1.25rem 1.5rem; }
.linklist__title { font-size: 1.05rem; margin: 0 0 .75rem; color: var(--primary); }
.linklist__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }

.link-icon { display: inline-flex; align-items: flex-start; gap: .5rem; color: var(--primary); text-decoration: none; border-radius: 4px; }
.link-icon:hover span, .partner-card__list .link-icon:hover span, .linklist__list .link-icon:hover span { text-decoration: underline; }
.link-icon:hover { outline: none; }
.link-icon:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.link-icon::before { content: ""; flex: 0 0 auto; width: 1.05em; height: 1.05em; margin-top: .18em; background-color: var(--accent); -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 3l5 5-5 5' stroke='currentColor' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 8h11M9 3l5 5-5 5' stroke='currentColor' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-position: center; mask-position: center; }


/* ===== v1.0.2: Mehrseiten + Kontakt-Grid ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: stretch; }
.contact-grid .card { margin: 0; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== v1.0.3: Kontakt-Karten-Lesbarkeit, aktives Menü, Netzwerk-Links ===== */
.section--green .card { color: var(--text, #1f2d24); }
.section--green .card .card__title { color: var(--primary); }
.section--green .card a { color: var(--primary-dark, #0e4f5c); }

.site-nav__link:hover { background: rgba(46,107,79,.35); }
.site-nav__link[aria-current="page"] { background: #2e6b4f; color: #fff; border-bottom: none; }
.site-nav__link[aria-current="page"]:hover { background: #2e6b4f; }

/* Netzwerk/Flyer Listen: Icon + dezente Links */
.partner-card__list .link-icon, .linklist__list .link-icon { color: var(--text, #1f2d24); text-decoration: none; }
.partner-card__list .link-icon:hover span, .linklist__list .link-icon:hover span { text-decoration: underline; }

/* v1.0.8: Unterstrich-Sicherheit */
a.link-icon, .partner-card__list a, .linklist__list a { text-decoration: none !important; }
a.link-icon:hover span, .partner-card__list a:hover span, .linklist__list a:hover span { text-decoration: underline; }


/* ===== v1.1.1: Netzwerkpartner-Karte (2/3-1/3) ===== */
@media (max-width: 860px) { }

/* --- Netzwerk-Karte: 2/3-1/3 (v1.1.1) --- */
.network-map-row {
    display: grid; gap: 2rem; grid-template-columns: 2fr 1fr; align-items: start;
    margin-top: 2rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius);
    background: var(--white); box-shadow: var(--shadow);
}
@media (max-width: 820px) { .network-map-row { grid-template-columns: 1fr; } }
.map-thumb {
    display: block; width: 100%; padding: 0; border: none; background: none; cursor: zoom-in;
    border-radius: 8px; overflow: hidden; text-align: left;
}
.map-thumb img { width: 100%; height: auto; }
.map-thumb__hint { font-size: .85rem; color: var(--text-secondary); margin-top: .5rem; }
.network-map-row__downloads { display: flex; flex-direction: column; gap: 1rem; }

/* Lightbox (<dialog>) */
dialog#map-lightbox {
    position: fixed; inset: 0; margin: auto;
    border: none; padding: 0; background: rgba(14, 23, 18, .92); color: var(--white);
    width: min(94vw, 1280px); height: fit-content; max-height: 92vh; border-radius: 12px;
}
dialog#map-lightbox::backdrop { background: rgba(14, 23, 18, .85); }
dialog#map-lightbox[open] { display: grid; place-items: center; }
.lightbox__inner { position: relative; padding: 1rem; }
.lightbox__inner img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; background: var(--white); border-radius: 8px; }
.lightbox__close {
    position: absolute; top: .5rem; right: .75rem; z-index: 2;
    background: rgba(255,255,255,.9); color: #111; border: none; border-radius: 50%;
    width: 2rem; height: 2rem; font-size: 1rem; cursor: pointer; line-height: 1;
}


/* ===== v1.1.3: Lightbox zentriert + viewport-adaptiv ===== */
dialog#map-lightbox { position: fixed; inset: 0; margin: auto; width: min(94vw, 1280px); height: fit-content; max-height: 92vh; }
dialog#map-lightbox[open] { display: grid; place-items: center; }
dialog#map-lightbox .lightbox__inner img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; }


/* ===== v1.1.4: Hover-Effekt auf Karten-Vorschaubild ===== */
.map-thumb { cursor: zoom-in; border-radius: 8px; overflow: hidden; }
.map-thumb img { cursor: zoom-in; }
.map-thumb img { cursor: zoom-in; transition: box-shadow .25s ease, transform .25s ease; }
.map-thumb:hover img {
  box-shadow: 0 6px 24px rgba(14, 79, 92, .18), 0 2px 8px rgba(0,0,0,.10);
  transform: scale(1.01);
}


/* ===== v1.1.6: Flyer-Seite 3-Spalten-Grid ===== */
.flyer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.flyer-grid .card { display: flex; flex-direction: column; }
@media (max-width: 1024px) { .flyer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .flyer-grid { grid-template-columns: 1fr; } }


/* ===== v1.1.8: Foerderer-Karte im Hero ===== */
.hero { position: relative; }

.hero__funding img { width: 100%; height: auto; }
@media (max-width: 900px) {
  }


/* ===== v1.2.4: Funding-Karte rechts in der Intro-Sektion ===== */
.intro__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.funding-card { background: rgba(255,255,255,.96); padding: 1rem 1.25rem; border-radius: 12px; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 2px 10px rgba(0,0,0,.06); max-width: 360px; justify-self: end; }
.funding-card p { font-size: .8rem; color: var(--text, #1f2d24); margin: 0 0 .5rem; }
.funding-card img { width: 100%; height: auto; }
@media (max-width: 820px) { .intro__grid { grid-template-columns: 1fr; } .funding-card { justify-self: start; } }


/* ===== v1.3.0: Netzwerktreffen-Rueckblick (Jahres-Tabs CSS-only + Accordion) ===== */
.network-history h2 { margin-bottom: 1.25rem; }
.history { max-width: none; }
.history__radio { position: absolute; opacity: 0; pointer-events: none; }
.history__tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.history__tabs label { display: inline-block; padding: .5rem 1.25rem; border-radius: 999px; background: var(--white, #fff); color: var(--primary); font-weight: 700; cursor: pointer; border: 1px solid var(--line, rgba(0,0,0,.12)); }
.history__tabs label:hover { background: rgba(46,107,79,.3); }
#h-2022:checked ~ .history__tabs label[for="h-2022"],
#h-2023:checked ~ .history__tabs label[for="h-2023"],
#h-2024:checked ~ .history__tabs label[for="h-2024"],
#h-2025:checked ~ .history__tabs label[for="h-2025"] { background: #2e6b4f; color: #fff; }
.history__group { display: none; }
#h-2022:checked ~ .y2022, #h-2023:checked ~ .y2023, #h-2024:checked ~ .y2024, #h-2025:checked ~ .y2025 { display: block; }
.history-item { border: 1px solid rgba(0,0,0,.08); border-radius: 10px; margin-bottom: .75rem; background: var(--white, #fff); overflow: hidden; }
.history-item summary { cursor: pointer; padding: .9rem 1.25rem; font-weight: 700; color: var(--primary); list-style: none; display: flex; align-items: center; justify-content: space-between; }
.history-item summary::-webkit-details-marker { display: none; }
.history-item summary::after { content: "+"; font-size: 1.3rem; line-height: 1; color: var(--accent); transition: transform .2s; }
.history-item[open] summary::after { transform: rotate(45deg); }
.history-item__body { padding: 0 1.25rem 1rem; }
.history-item__body p { margin: 0 0 .75rem; }


/* ===== v1.3.3: Bericht-Ueberschrift + Bildzeile im Accordion ===== */
.history-item__lead { font-size: 1.1rem; color: var(--primary); margin: 0 0 .5rem; }
.history-media { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; margin-top: 1.25rem; }
.history-media__placeholder { display: none; }
.history-media > * { min-width: 0; margin: 0; }
.history-media .map-thumb { width: 100%; }
.history-media .map-thumb img { width: 100%; height: 200px; object-fit: cover; }
.history-media__logo .map-thumb img, .history-media__item:first-child .map-thumb img { object-fit: contain; background: var(--white, #fff); }
.history-media__placeholder { display: grid; place-items: center; min-height: 200px; border: 2px dashed var(--line, rgba(0,0,0,.12)); border-radius: 8px; color: var(--text-soft, #5a6b60); font-size: .9rem; }
.history-media__item { flex: 0 1 auto; }
.history-media__caption { font-size: .8rem; color: var(--text, #1f2d24); margin: 0 0 .5rem; }



/* ===== v1.3.5: Alle Lightbox-Dialoge zentriert + einheitlich ===== */
dialog[aria-label*="vergrößert"],
dialog#map-lightbox {
  position: fixed; inset: 0; margin: auto;
  border: none; padding: 0;
  background: rgba(14, 23, 18, .92); color: var(--white);
  width: min(94vw, 1280px); height: fit-content; max-height: 92vh;
  border-radius: 12px;
}
dialog[aria-label*="vergrößert"][open],
dialog#map-lightbox[open] { display: grid; place-items: center; }
dialog[aria-label*="vergrößert"]::backdrop,
dialog#map-lightbox::backdrop { background: rgba(14,23,18,.85); }
dialog[aria-label*="vergrößert"] .lightbox__inner img,
dialog#map-lightbox .lightbox__inner img { max-width: 92vw; max-height: 82vh; width: auto; height: auto; object-fit: contain; }


/* ===== v1.4.0: Fullscreen-Galerie-Lightbox ===== */
dialog.lightbox {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  max-width: none; max-height: none;
  background: rgba(10, 15, 12, .94);
  backdrop-filter: blur(4px);
  border: none; padding: 0; border-radius: 0;
}
dialog.lightbox::backdrop { background: transparent; }
dialog.lightbox[open] { display: flex; align-items: center; justify-content: center; }
dialog.lightbox .lb__img { max-width: 90vw; max-height: 86vh; width: auto; height: auto; object-fit: contain; }
.lb__close { position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.1); color: #fff; border: none; font-size: 2rem; padding: .4rem .9rem; border-radius: 50%; cursor: pointer; backdrop-filter: blur(8px); }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); color: #fff; border: none; font-size: 2.5rem; padding: .5rem 1.1rem; border-radius: 50%; cursor: pointer; backdrop-filter: blur(8px); line-height: 1; }
.lb__nav:hover, .lb__close:hover { background: rgba(255,255,255,.25); }
.lb__prev { left: 2rem; } .lb__next { right: 2rem; }
.lb__counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; }


/* ===== v1.4.8: Kontakt-Sektion warmes Off-White (abheben vom Footer) ===== */
.section--contact { background: #3d7a5c; color: #e8f0ea; }
.section--contact .section__kicker { color: #f0d68a; }
.section--contact h2 { color: #fff; }
.section--contact .lead { color: #e8f0ea; }
.section--contact .card { background: var(--white, #fff); color: var(--text, #1f2d24); }
.section--contact .card .card__title { color: var(--primary); }

.footer-credit { color: var(--text-soft, #9fb8ac); font-size: .85rem; text-decoration: none; }
.footer-credit:hover { color: var(--white, #fff); text-decoration: underline; }
.footer-credit-sep { color: var(--text-soft, #9fb8ac); margin: 0 .5rem; }

/* Koordinierungsstellen-Logo + Angebote: 2fr/1fr */
.offer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; margin-top: 1.5rem;  margin-bottom: 2.5rem; }
.offer-text { min-width: 0; }
.offer-logo {
  background: rgba(255,255,255,.96);
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
  max-width: 360px;
  justify-self: end;
}
.offer-logo img { width: 100%; height: auto; object-fit: contain; }
@media (max-width: 820px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-logo { justify-self: center; max-width: 200px; margin-top: 1rem; }
}
