/* ═══════════════════════════════════════════════════════════
   eineurohilft e.V. – Haupt-CSS
   Version: 1.0.0
   Design System: Wartungsmodus v9.0 (genehmigt)
═══════════════════════════════════════════════════════════ */

/* ── FONTS ──────────────────────────────────────────────── */
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

/* ── RESET & ROOT ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --red:    #e21627;
    --red2:   #c41020;
    --blue:   #2075bd;
    --blue2:  #1860a0;
    --white:  #ffffff;
    --bg:     #f4f5f8;
    --panel:  #ffffff;
    --text:   #1a1a1a;
    --muted:  #666666;
    --border: #e0e2ea;
    --font:   'Nunito', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font);
    background-color: #d8dae8;
    background-image: url('https://eineurohilft.com/wp-content/uploads/2023/02/eineurohilft_verlauf_neu.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── HELPERS ────────────────────────────────────────────── */
.euro { color: var(--red) !important; font-weight: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── HEADER / NAV ───────────────────────────────────────── */
.site-header {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0 2px 16px rgba(0,0,0,.10);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 86px;
}
.header-logo-link {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    height: 100%;
    padding: 10px 0;
    flex-shrink: 0;
}
.header-logo-link img { height: 60px; width: auto; display: block; }

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}
.nav-link {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 12px;
    border-radius: 8px;
    transition: color .18s, background .18s;
    white-space: nowrap;
}
.nav-link:hover,
.nav-link.current-menu-item { color: var(--red); background: #fef2f2; }

/* Spenden-Button */
.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .2px;
    white-space: nowrap;
    transition: all .18s;
    cursor: pointer;
    text-decoration: none;
}
.nav-btn-spenden {
    background: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
    box-shadow: 0 4px 14px rgba(226,22,39,.3);
}
.nav-btn-spenden:hover { background: var(--red2); border-color: var(--red2); transform: translateY(-1px); }
.nav-btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.nav-btn-outline:hover { border-color: var(--red); color: var(--red); background: #fef2f2; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--red);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(226,22,39,.35);
    transition: background .18s;
}
.hamburger:hover { background: var(--red2); }
.hamburger span {
    display: block;
    width: 22px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid #f0f1f7;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    z-index: 299;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-radius: 10px;
    transition: background .15s, color .15s;
}
.mobile-link:hover { background: #fef2f2; color: var(--red); }
.mobile-menu .nav-btn { width: 100%; justify-content: center; height: 46px; font-size: 14px; margin-top: 4px; }

/* ── BLOCKS ─────────────────────────────────────────────── */
.white-block { background: var(--white); }
.off-block   { background: var(--bg); }
.red-block   { background: var(--red); background-image: linear-gradient(135deg, var(--red) 0%, #b80e1a 100%); color: var(--white); }

.shadow-wrap { box-shadow: 0 4px 40px rgba(0,0,0,.13), 0 -4px 40px rgba(0,0,0,.07); }

.block-inner { max-width: 1200px; margin: 0 auto; padding: 64px 32px; }
.block-inner.narrow  { max-width: 900px; }
.block-inner.wide    { max-width: 1300px; }

/* ── SECTION TYPOGRAPHY ─────────────────────────────────── */
.sec-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.on-white .sec-eyebrow { background: #fef2f2; color: var(--red); border: 1.5px solid #fecaca; }
.on-red   .sec-eyebrow { background: rgba(255,255,255,.22); color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }

.sec-rule { width: 56px; height: 4px; border-radius: 4px; margin: 0 0 24px; }
.on-white .sec-rule { background: var(--red); }
.on-red   .sec-rule { background: rgba(255,255,255,.55); }

.sec-h2 {
    font-size: clamp(26px, 4.5vw, 44px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -.3px;
}
.on-white .sec-h2 { color: var(--text); }
.on-red   .sec-h2 { color: var(--white); }
.sec-h2 .euro { color: var(--red); }
.on-red .sec-h2 .euro { color: var(--white); text-decoration: underline; text-underline-offset: 5px; }

.sec-lead {
    font-size: clamp(15px, 2.2vw, 18px);
    line-height: 1.75;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 740px;
}
.on-white .sec-lead { color: var(--muted); }
.on-red   .sec-lead { color: rgba(255,255,255,.82); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all .2s;
    border: none;
    cursor: pointer;
    letter-spacing: .2px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-red          { background: var(--red);   color: var(--white); box-shadow: 0 4px 18px rgba(226,22,39,.35); }
.btn-red:hover    { background: var(--red2);  box-shadow: 0 7px 26px rgba(226,22,39,.5); }
.btn-white        { background: var(--white); color: var(--red);   box-shadow: 0 4px 18px rgba(0,0,0,.12); }
.btn-white:hover  { background: #f8f8f8;      box-shadow: 0 7px 26px rgba(0,0,0,.2); }
.btn-blue         { background: var(--blue);  color: var(--white); box-shadow: 0 4px 18px rgba(32,117,189,.32); }
.btn-blue:hover   { background: var(--blue2); box-shadow: 0 7px 26px rgba(32,117,189,.48); }
.btn-paypal       { background: #003087;      color: var(--white); box-shadow: 0 4px 18px rgba(0,48,135,.35); }
.btn-paypal:hover { background: #001e5a; }
.btn-outline-red  { background: transparent; border: 2.5px solid var(--red); color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-outline-white{ background: transparent; border: 2px solid rgba(255,255,255,.6); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-sm   { font-size: 13px; padding: 11px 22px; }
.btn-lg   { font-size: 17px; padding: 17px 38px; }
.btn-full { width: 100%; justify-content: center; }

/* ── PAGE BANNER ────────────────────────────────────────── */
.page-banner { position: relative; width: 100%; height: 420px; overflow: hidden; }
.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    top: -100px;
    height: calc(100% + 100px);
}
.page-banner-overlay { position: absolute; inset: 0; }

/* ── HERO (Startseite) ──────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    top: -100px;
    height: calc(100% + 100px);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(14,16,32,.5); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 32px; }
.hero-content h1 {
    font-size: clamp(30px, 6vw, 58px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.5px;
}
.hero-content p {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,.8);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 500;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CATEGORY CARDS ─────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.category-card {
    border-radius: 16px;
    overflow: visible;  /* kein clip → Bild-Ecken sichtbar */
    background: var(--white);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    transition: transform .22s, box-shadow .22s;
    display: flex;
    flex-direction: column;
}
.category-card:hover { transform: translateY(-6px); box-shadow: 0 14px 44px rgba(0,0,0,.14); }

.category-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.category-card-title { font-size: 18px; font-weight: 900; color: var(--text); }
.category-card-text  { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }
.category-card-link  {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px; font-weight: 800;
    color: var(--red);
    text-decoration: none;
    margin-top: auto;
    transition: gap .18s;
}
.category-card-link:hover { gap: 10px; }
.category-card-link::after { content: "→"; }

/* ── SPENDEN-KARTEN ─────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
    margin-top: 8px;
}
.scard {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(0,0,0,.09);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s;
    border: 2px solid transparent;
}
.scard:hover { transform: translateY(-6px); box-shadow: 0 14px 50px rgba(0,0,0,.15); border-color: var(--red); }

.scard-top   { padding: 22px 22px 16px; flex: 1; }
.scard-icon  { font-size: 36px; margin-bottom: 12px; line-height: 1; }
.scard-price { font-size: 38px; font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 6px; letter-spacing: -1.5px; }
.scard-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 9px; }
.scard-text  { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 500; }
.scard-bot   { padding: 0 22px 22px; display: flex; flex-direction: column; gap: 10px; }
.scard-qr    { display: flex; align-items: center; gap: 14px; margin-top: 6px; padding-top: 14px; border-top: 1.5px solid #f0f1f7; }
.scard-qr img { width: 110px; height: 110px; border-radius: 10px; border: 2px solid var(--border); flex-shrink: 0; }
.scard-qr-lbl { font-size: 12px; color: var(--muted); font-weight: 700; line-height: 1.5; }

/* ── BANKVERBINDUNG ─────────────────────────────────────── */
.bank-box {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border-left: 5px solid var(--red);
}
.bank-box h4 {
    font-size: 11px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 18px; padding-bottom: 14px;
    border-bottom: 1.5px solid #f0f1f7;
    display: flex; align-items: center; gap: 8px;
}
.bank-layout { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; min-width: 0; }
.bank-rows { display: flex; flex-direction: column; gap: 0; }
.bank-row { display: flex; align-items: center; gap: 0; padding: 9px 0; border-bottom: 1px solid #f5f6fa; min-width: 0; }
.bank-row:last-child { border-bottom: none; }
.bank-lbl  { font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #bbb; width: 90px; flex-shrink: 0; }
.bank-val  { font-size: 15px; font-weight: 800; color: var(--text); letter-spacing: .3px; word-break: break-all; }
.bank-val.mono { font-variant-numeric: tabular-nums; font-size: 14px; letter-spacing: .3px; }
.bank-qr-col  { display: flex; flex-direction: column; align-items: center; gap: 7px; flex-shrink: 0; }
.bank-qr-col img { width: 120px; height: 120px; border-radius: 10px; border: 2px solid var(--border); box-shadow: 0 3px 12px rgba(0,0,0,.08); }
.bank-qr-badge { display: inline-flex; align-items: center; gap: 4px; background: #f4f5f8; border: 1.5px solid var(--border); border-radius: 50px; padding: 4px 10px; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.bank-qr-apps  { font-size: 10px; color: #bbb; text-align: center; line-height: 1.4; max-width: 130px; }
.bank-note { font-size: 12px; color: var(--muted); margin-top: 16px; padding-top: 14px; border-top: 1.5px solid #f0f1f7; line-height: 1.65; }
.btn-giro { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--blue); color: var(--white); font-family: var(--font); font-size: 15px; font-weight: 800; padding: 14px 24px; border-radius: 50px; text-decoration: none; border: none; cursor: pointer; box-shadow: 0 4px 16px rgba(32,117,189,.35); transition: all .2s; width: 100%; }
.btn-giro:hover { background: var(--blue2); transform: translateY(-2px); }
.bank-mobile-hint { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 500; margin-bottom: 8px; }

/* Spendenkonto auf rotem Hintergrund */
.red-block .bank-box, .section-red .bank-box { background: rgba(255,255,255,.10); border-left-color: rgba(255,255,255,.45); box-shadow: 0 4px 24px rgba(0,0,0,.15); }
.red-block .bank-box h4, .section-red .bank-box h4 { color: rgba(255,255,255,.7); border-bottom-color: rgba(255,255,255,.15); }
.red-block .bank-lbl, .section-red .bank-lbl { color: rgba(255,255,255,.55); }
.red-block .bank-val, .section-red .bank-val { color: var(--white); }
.red-block .bank-row, .section-red .bank-row { border-bottom-color: rgba(255,255,255,.12); }
.red-block .bank-note, .section-red .bank-note { color: rgba(255,255,255,.65); border-top-color: rgba(255,255,255,.15); }
.red-block .bank-qr-badge, .section-red .bank-qr-badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: rgba(255,255,255,.8); }
.red-block .bank-qr-apps, .section-red .bank-qr-apps { color: rgba(255,255,255,.5); }
.red-block .btn-giro, .section-red .btn-giro { background: var(--white); color: var(--red); box-shadow: 0 4px 16px rgba(0,0,0,.2); }
.red-block .bank-mobile-hint, .section-red .bank-mobile-hint { color: rgba(255,255,255,.75); }

/* Mobile Bank */
/* ── HERO: Global (Desktop + Mobil) ─────────────────── */
.hero-img-wrap {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    display: block !important;
}
.hero-overlay-inner {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
}
.hero-text-bottom {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    padding: 0 32px 44px !important;
}

@media(min-width: 701px) { .bank-mobile-only { display: none !important; } }
@media(max-width: 700px) { .bank-desktop-only { display: none !important; } .bank-layout { grid-template-columns: 1fr; } }

/* ── ZWEI-SPALTEN STICKY LAYOUT ─────────────────────────── */
.two-col-sticky { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.img-sticky { position: sticky; top: 102px; align-self: start; }
.img-wrap { border-radius: 18px; overflow: hidden; box-shadow: 0 12px 48px rgba(0,0,0,.15); }
.img-wrap img { width: 100%; height: auto; display: block; }

/* ── KONTAKT SPLIT ──────────────────────────────────────── */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 86px); }
.contact-img-col { position: relative; overflow: hidden; min-height: 400px; }
.contact-img-col img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-form-col { background: var(--white); display: flex; align-items: flex-start; justify-content: center; padding: 64px 48px; overflow-y: auto; }
.contact-form-inner { max-width: 520px; width: 100%; }
.contact-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; padding: 18px 20px; background: #f4f5f8; border-radius: 12px; border-left: 4px solid var(--red); }
.contact-info-row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--text); }
.contact-info-icon { font-size: 16px; flex-shrink: 0; }
.contact-info-row a { color: var(--blue); font-weight: 700; }
.contact-info-row a:hover { text-decoration: underline; }

/* ── MAP ────────────────────────────────────────────────── */
.map-switcher { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.map-switch-btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 24px; border-radius: 50px; font-family: var(--font); font-size: 14px; font-weight: 800; text-decoration: none; border: 2px solid var(--border); color: var(--muted); background: var(--white); transition: all .18s; }
.map-switch-btn:hover { border-color: var(--red); color: var(--red); background: #fef2f2; }
.map-switch-btn.active { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: 0 4px 14px rgba(226,22,39,.30); }
.map-wrap { background: var(--white); border-radius: 16px; box-shadow: 0 4px 28px rgba(0,0,0,.08); overflow: hidden; padding: 8px; }
.map-wrap > * { max-width: 100% !important; }
.map-wrap svg, .map-wrap canvas, .map-wrap img { max-width: 100% !important; display: block !important; }
.map-cta { text-align: center; padding: 40px 20px; background: var(--bg); border-radius: 12px; margin-top: 32px; }
.map-cta p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.faq-question { width: 100%; background: none; border: none; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); font-size: 16px; font-weight: 800; color: var(--text); cursor: pointer; text-align: left; transition: color .18s; }
.faq-question:hover, .faq-question.active { color: var(--red); }
.faq-icon { width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: var(--muted); transition: all .25s; }
.faq-question.active .faq-icon { background: var(--red); border-color: var(--red); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer-inner { padding: 0 22px 20px; font-size: 15px; color: var(--muted); line-height: 1.75; font-weight: 500; }
.faq-answer-inner a { color: var(--blue); font-weight: 700; }

/* ── MEMBER TABS ────────────────────────────────────────── */
.member-tabs { display: flex; gap: 0; border-bottom: 2px solid #f0f1f7; margin-bottom: 28px; flex-wrap: wrap; }
.member-tab-btn { padding: 12px 24px; font-family: var(--font); font-size: 14px; font-weight: 800; color: var(--muted); background: transparent; border: none; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; transition: all .18s; }
.member-tab-btn:hover  { color: var(--red); }
.member-tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.member-tab-panel      { display: none; }
.member-tab-panel.active { display: block; }

/* Member Cards */
.member-card-features { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.member-card-features li { font-size: 14px; font-weight: 600; color: #374151; line-height: 1.4; display: flex; gap: 8px; align-items: flex-start; }

/* Dokument-Buttons */
.doc-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }

/* ── BLOG HERO ───────────────────────────────────────────── */
.blog-hero { width: 100%; overflow: hidden; }
.blog-hero-img { width: 100%; height: auto; display: block; }

/* ── BLOG GRID ───────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); transition: transform .22s, box-shadow .22s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 12px; color: var(--muted); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.blog-card-title { font-size: 17px; font-weight: 900; color: var(--text); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.blog-card-link { font-size: 14px; font-weight: 800; color: var(--red); text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap .18s; }
.blog-card-link:hover { gap: 9px; }
.blog-card-link::after { content: "→"; }

/* ── NEWSLETTER ─────────────────────────────────────────── */
.newsletter-block { background: var(--white); border-radius: 16px; padding: 40px 36px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.07); max-width: 640px; margin: 0 auto; }
.newsletter-icon  { font-size: 44px; margin-bottom: 14px; line-height: 1; }
.newsletter-title { font-size: clamp(20px, 3.5vw, 28px); font-weight: 900; color: var(--text); margin-bottom: 12px; line-height: 1.2; }
.newsletter-text  { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 24px; font-weight: 500; }
.newsletter-input-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 12px; }
.newsletter-input { flex: 1; min-width: 220px; font-family: var(--font); font-size: 15px; font-weight: 600; padding: 13px 18px; border: 2px solid var(--border); border-radius: 50px; color: var(--text); background: #f4f5f8; transition: border-color .18s, box-shadow .18s; outline: none; }
.newsletter-input:focus { border-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(226,22,39,.10); }
.newsletter-btn { flex-shrink: 0; }
.newsletter-msg { font-size: 14px; font-weight: 700; min-height: 20px; margin-bottom: 8px; }
.newsletter-msg.success { color: #16a34a; }
.newsletter-msg.error   { color: var(--red); }
.newsletter-legal { font-size: 12px; color: #bbb; line-height: 1.6; margin: 0; }
.newsletter-legal a { color: var(--blue); }

/* ── TEAM ───────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: 16px; padding: 28px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.07); }
.team-card-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--border); }
.team-card-name { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 4px; }
.team-card-role { font-size: 13px; font-weight: 700; color: var(--red); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.team-card-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Sponsor Logos */
.sponsor-grid { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 40px; padding-top: 40px; border-top: 1.5px solid var(--border); }
.sponsor-logo { height: 44px; width: auto; opacity: .6; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.sponsor-logo:hover { opacity: 1; filter: none; }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--white); border-top: 3px solid var(--red); padding: 52px 32px 32px; text-align: center; }
.footer-inner { max-width: 960px; margin: 0 auto; }
.footer-logo-wrap { background: var(--white); display: inline-flex; align-items: center; justify-content: center; padding: 10px 0; margin-bottom: 16px; }
.footer-logo-wrap img { height: 52px; width: auto; }
.footer-tagline { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 28px; font-style: italic; }
.footer-tagline strong { color: var(--red); }

/* Footer Nav Circles */
.footer-nav { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.footer-pill { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: #f4f5f8; border: 2px solid var(--border); font-size: 11px; font-weight: 800; color: var(--text); text-align: center; line-height: 1.25; padding: 6px; transition: all .18s; cursor: pointer; word-break: break-word; hyphens: auto; text-decoration: none; }
.footer-pill:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: scale(1.07); }
.footer-pill-spenden { background: var(--red); color: var(--white); border-color: var(--red); width: 84px; height: 84px; font-size: 12px; box-shadow: 0 4px 16px rgba(226,22,39,.3); }
.footer-pill-spenden:hover { background: var(--red2); transform: scale(1.09); }

/* Social Icons */
.social-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 24px 0 20px; }
.social-pill { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #fef2f2; border: 2px solid #fecaca; color: var(--red); transition: all .2s; text-decoration: none; }
.social-pill svg { width: 20px; height: 20px; display: block; flex-shrink: 0; }
.social-pill:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); box-shadow: 0 6px 16px rgba(226,22,39,.35); }
.social-pill:not(:hover) svg polygon { fill: var(--red); }
.social-pill:hover svg polygon { fill: var(--white); }

/* Partner */
.partner-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 20px 0 24px; padding: 20px 0; border-top: 1.5px solid #f0f1f7; border-bottom: 1.5px solid #f0f1f7; }
.partner-chip { display: inline-flex; align-items: center; gap: 7px; background: #f4f5f8; border: 1.5px solid var(--border); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 800; color: var(--text); transition: all .18s; text-decoration: none; }
.partner-chip:hover { background: var(--red); color: var(--white); border-color: var(--red); }

.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--muted); font-weight: 700; transition: color .18s; }
.footer-links a:hover { color: var(--red); }
.footer-copy { font-size: 12px; color: #aaa; line-height: 1.8; }
.footer-copy a { color: #bbb; font-weight: 600; }
.footer-copy a:hover { color: var(--red); }

/* Callout Boxes */
.wm-callout { background: #fef2f2; border: 1.5px solid #fecaca; border-left: 5px solid var(--red); border-radius: 12px; padding: 16px 18px; margin: 18px 0; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.5; }
.wm-challenge { background: #eff6ff; border: 1.5px solid #bfdbfe; border-left: 5px solid var(--blue); border-radius: 12px; padding: 16px 18px; margin: 18px 0; font-size: 15px; color: #1e40af; line-height: 1.6; font-weight: 600; }

/* Über uns Kernwerte */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.value-card { background: var(--white); border-radius: 16px; padding: 28px; text-align: center; box-shadow: 0 4px 24px rgba(0,0,0,.07); border-top: 4px solid var(--red); }
.value-icon { font-size: 40px; margin-bottom: 14px; }
.value-title { font-size: 18px; font-weight: 900; color: var(--text); margin-bottom: 10px; }
.value-text  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* Impressum / Datenschutz */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; font-weight: 900; color: var(--text); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.legal-content h3 { font-size: 16px; font-weight: 800; color: var(--red); margin: 22px 0 8px; }
.legal-content p  { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { margin: 8px 0 12px 20px; }
.legal-content li { font-size: 15px; color: #374151; line-height: 1.65; list-style: disc; margin-bottom: 6px; }
.legal-content a  { color: var(--blue); font-weight: 600; }

/* PayPal Box */
.pp-box { display: flex; gap: 24px; align-items: center; background: #f8f9ff; border: 2px solid var(--border); border-radius: 18px; padding: 28px; flex-wrap: wrap; }
.pp-qr { text-align: center; flex-shrink: 0; }
.pp-qr img { width: 180px; height: 180px; border-radius: 12px; border: 2px solid var(--border); display: block; margin: 0 auto 8px; }
.pp-qr-label { font-size: 11px; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.pp-right { flex: 1; min-width: 160px; }
.pp-right p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; font-weight: 500; }

/* Mitglied werden Hinweis-Box */
.member-hint-box { background: #fef2f2; border: 1.5px solid #fecaca; border-left: 5px solid var(--red); border-radius: 12px; padding: 18px 20px; margin: 20px 0; font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.6; }

/* Pagination */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; font-size: 14px; font-weight: 700; border: 2px solid var(--border); color: var(--muted); text-decoration: none; transition: all .18s; }
.pagination a:hover, .pagination .current { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media(max-width: 900px) {
    .team-grid     { grid-template-columns: repeat(2, 1fr); }
    .values-grid   { grid-template-columns: repeat(2, 1fr); }
    .blog-grid     { grid-template-columns: repeat(2, 1fr); }
    .two-col-sticky { grid-template-columns: 1fr; gap: 32px; }
    .img-sticky    { position: static; top: auto; }
    .contact-split { grid-template-columns: 1fr; }
    .contact-img-col { min-height: 300px; }
    .contact-form-col { padding: 40px 24px; }
}
@media(max-width: 700px) {
    .bank-layout   { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE CSS – Sauber und ohne Konflikte
   Basis-Theme v4.5.2 + Mobile Fixes
═══════════════════════════════════════════════════════ */

/* ── ≥701px: Desktop – Hamburger aus ───────────────── */
@media(min-width: 701px) {
    .hamburger            { display: none !important; }
    .mobile-menu          { display: none !important; }
    .header-nav           { display: flex !important; }
    .header-trn-desktop   { display: flex !important; }
}

/* ── ≤700px: Bank-Layout einspaltig ─────────────────── */
@media(max-width: 700px) {
    .bank-layout          { grid-template-columns: 1fr; gap: 20px; }
    .bank-desktop-only    { display: none !important; }
    .bank-mobile-only     { display: block !important; }
}

/* ── ≤900px: Tablet ─────────────────────────────────── */
@media(max-width: 900px) {
    .block-inner          { padding: 48px 24px; }
    .block-inner.narrow   { padding: 40px 20px; }
    .category-grid        { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .cards-grid           { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
    .blog-grid            { grid-template-columns: repeat(2, 1fr) !important; }
    .team-grid            { grid-template-columns: repeat(2, 1fr) !important; }
    .values-grid          { grid-template-columns: repeat(2, 1fr) !important; }
    .two-col-sticky       { grid-template-columns: 1fr !important; gap: 28px !important; }
    .img-sticky           { position: static !important; }
    .kontakt-layout       { grid-template-columns: 1fr !important; gap: 24px !important; }
    .kontakt-bild         { position: static !important; width: 100% !important; height: 320px !important; }
    .contact-split        { grid-template-columns: 1fr !important; }
    .contact-img-col      { min-height: 280px !important; max-height: 320px !important; }
    .contact-form-col     { padding: 40px 24px !important; }
}

/* ── ≤680px: Mobil ──────────────────────────────────── */
@media(max-width: 680px) {

    /* Header */
    .header-inner         { padding: 0 12px !important; height: 60px !important; gap: 8px !important; }
    .header-logo-link img { height: 40px !important; }
    .header-nav           { display: none !important; }
    .header-trn-desktop   { display: none !important; }
    .hamburger            { display: flex !important; }

    /* Body */
    body                  { background-attachment: scroll !important; }

    /* Abstände */
    .block-inner          { padding: 32px 16px !important; }
    .block-inner.narrow   { padding: 28px 14px !important; }

    /* Typografie */
    .sec-h2               { font-size: clamp(20px, 5.5vw, 30px) !important; }
    .sec-lead             { font-size: 14px !important; margin-bottom: 20px !important; }

    /* ── Hero Startseite ────────────────────────────── */
    .hero-img-wrap        { position: relative !important; overflow: hidden !important; }
    .hero-crop            { margin-top: -60px !important; }
    .hero-overlay-inner   { position: absolute !important; inset: 0 !important; z-index: 1 !important; }
    .hero-text-bottom {
        position:    absolute !important;
        bottom:      0 !important;
        left:        0 !important;
        right:       0 !important;
        z-index:     10 !important;
        padding:     0 16px 24px !important;
        text-align:  center !important;
    }
    .hero-text-bottom h1  { font-size: clamp(18px, 5.5vw, 28px) !important; margin-bottom: 8px !important; }
    .hero-text-bottom p   { font-size: 12px !important; margin-bottom: 14px !important; display: none; }
    .hero-actions         { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; }
    .hero-actions .btn    { width: 100% !important; justify-content: center !important; font-size: 14px !important; padding: 12px 16px !important; }

    /* ── Kategorie-Kacheln: 1 Spalte ───────────────── */
    .category-grid        { grid-template-columns: 1fr !important; gap: 12px !important; }
    .category-card-img    { height: 200px !important; }

    /* ── Spenden-Kacheln: 1 Spalte ─────────────────── */
    .cards-grid           { grid-template-columns: 1fr !important; gap: 12px !important; }
    .scard-banner         { height: 180px !important; }
    .scard-placeholder    { height: 180px !important; }

    /* ── PayPal Box ─────────────────────────────────── */
    .pp-box               { flex-direction: column !important; align-items: center !important; padding: 16px !important; }
    .pp-qr img            { width: 130px !important; height: 130px !important; }

    /* ── Spendenkonto ───────────────────────────────── */
    .bank-box-card        { padding: 16px !important; }
    .bank-lbl-item        { width: 72px !important; font-size: 9px !important; }
    .bank-val-item        { font-size: 13px !important; }

    /* ── Footer ─────────────────────────────────────── */
    .site-footer          { padding: 28px 14px 16px !important; }
    .footer-nav           { gap: 6px !important; flex-wrap: wrap !important; }
    .footer-pill          { width: 58px !important; height: 58px !important; font-size: 9px !important; }
    .footer-pill-spenden  { width: 68px !important; height: 68px !important; font-size: 10px !important; }
    .social-row           { gap: 7px !important; }
    .partner-row          { gap: 7px !important; flex-wrap: wrap !important; }
    .footer-links         { gap: 10px !important; flex-wrap: wrap !important; justify-content: center !important; }
    .footer-copy          { font-size: 11px !important; }

    /* ── Newsletter ─────────────────────────────────── */
    .newsletter-block     { padding: 22px 14px !important; }
    .newsletter-input-row { flex-direction: column !important; gap: 8px !important; }
    .newsletter-input, .newsletter-btn { width: 100% !important; }

    /* ── Grid-Layouts ───────────────────────────────── */
    .team-grid            { grid-template-columns: 1fr !important; }
    .values-grid          { grid-template-columns: 1fr !important; }
    .blog-grid            { grid-template-columns: 1fr !important; }

    /* ── Two-Column ─────────────────────────────────── */
    .two-col-sticky       { grid-template-columns: 1fr !important; gap: 18px !important; }
    .img-sticky           { position: static !important; }

    /* ── Kontakt ────────────────────────────────────── */
    .kontakt-layout       { grid-template-columns: 1fr !important; }
    .kontakt-bild         { height: 220px !important; border-radius: 14px !important; }
    .kontakt-form         { min-width: 0 !important; }

    /* ── Karten-Seite ───────────────────────────────── */
    .map-switcher         { gap: 6px !important; flex-wrap: wrap !important; }
    .map-switch-btn       { font-size: 13px !important; padding: 8px 12px !important; }

    /* ── Buttons ────────────────────────────────────── */
    .btn-lg               { font-size: 14px !important; padding: 13px 20px !important; }

    /* ── FAQ ────────────────────────────────────────── */
    .faq-question         { font-size: 14px !important; padding: 14px 16px !important; }

    /* ── Mitglied-Tabs ──────────────────────────────── */
    .member-tabs          { flex-wrap: wrap !important; }
    .member-tab-btn       { padding: 9px 12px !important; font-size: 12px !important; }

    /* ── Scard QR ───────────────────────────────────── */
    .scard-qr img         { width: 80px !important; height: 80px !important; }
    .scard-qr-lbl         { font-size: 10px !important; }
}

/* ── ≤400px: Sehr kleine Geräte ─────────────────────── */
@media(max-width: 400px) {
    .block-inner          { padding: 24px 12px !important; }
    .category-card-img    { height: 170px !important; }
    .scard-banner         { height: 150px !important; }
    .sec-h2               { font-size: 18px !important; }
    .footer-pill          { width: 50px !important; height: 50px !important; font-size: 8px !important; }
    .footer-pill-spenden  { width: 60px !important; height: 60px !important; }
}

/* ── fp-eyebrow global (auch auf Unterseiten) ──────── */
.fp-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #fef2f2 !important;
    color: #e21627 !important;
    border: 1.5px solid #fecaca !important;
    border-radius: 50px !important;
    padding: 5px 16px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 0 !important;
    font-family: 'Nunito', system-ui, sans-serif !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
}
.fp-eyebrow-red {
    background: rgba(255,255,255,.15) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,.4) !important;
}
.fp-rule {
    display: block !important;
    width: 48px !important;
    height: 3px !important;
    background: #e21627 !important;
    border: none !important;
    border-radius: 2px !important;
    margin: 12px auto 20px !important;
}
.fp-rule-red {
    background: rgba(255,255,255,.5) !important;
}

/* ── MOBILE: Banner crop_top reduzieren ─────────────────────── */
@media(max-width: 680px) {
    .page-banner-crop-wrap img {
        margin-top: -20px !important;
    }
}
