/* ============================================================
   Feuerwehr Asperg – main.css
   ============================================================ */

/* ── SELF-HOSTED FONTS (kein Google-Server-Kontakt) ──────────────────────── */

/* Bebas Neue – latin-ext */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-400-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Bebas Neue – latin */
@font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/bebas-neue-400-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* DM Sans (variable, 300–700) – latin-ext */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Sans (variable, 300–700) – latin */
@font-face {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('../fonts/dm-sans-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
    --red:        #C41230;
    --red-light:  #E8142A;
    --red-dark:   #8B0D22;
    --red-tint:   #FDF2F4;
    --red-tint2:  #FAE4E8;

    --bg:         #F3F4F6;
    --bg-white:   #FFFFFF;

    --text:       #111827;
    --text-mid:   #374151;
    --text-muted: #6B7280;

    --border:     rgba(0,0,0,0.08);
    --border-red: rgba(196,18,48,0.15);

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
    --shadow-lg:  0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-brand img,
.custom-logo { height: 52px; width: auto; display: block; }

/* WordPress generated menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.45rem 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.855rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0.9rem; right: 0.9rem;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.2s;
    border-radius: 2px;
}

.nav-menu li a:hover { color: var(--text); }
.nav-menu li a:hover::after { transform: scaleX(1); }

.nav-menu li.menu-item-cta > a {
    background: var(--red);
    color: white;
    border-radius: 6px;
    padding: 0.55rem 1.2rem;
    margin-left: 0.5rem;
    transition: background 0.2s, box-shadow 0.2s;
}
.nav-menu li.menu-item-cta > a::after { display: none; }
.nav-menu li.menu-item-cta > a:hover {
    background: var(--red-light);
    color: white;
    box-shadow: 0 4px 16px rgba(196,18,48,0.3);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── DROPDOWN SUBMENUS ───────────────────────────────────────────────────── */

/* li als Flex-Container: Link + Button nebeneinander */
.nav-menu li.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.nav-menu li.menu-item-has-children > a {
    flex: 1;
}

/* Pfeil-Button (Geschwisterelement des Links, NICHT darin) */
.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 0.4rem;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.dropdown-toggle svg {
    display: block;
    transition: transform 0.2s;
}
/* Pfeil dreht sich beim Öffnen */
.menu-item-has-children.submenu-open > .dropdown-toggle svg,
.menu-item-has-children:hover > .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Untermenü */
.sub-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.4rem 0;
    list-style: none;
    z-index: 999;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

/* Unsichtbare Brücke schliesst die Luecke zwischen Link und Dropdown */
.nav-menu .menu-item-has-children > .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 0;
    right: 0;
    height: 6px;
}

/* Öffnen per Hover (Desktop) */
.nav-menu li.menu-item-has-children:hover > .sub-menu,
.nav-menu li.menu-item-has-children.submenu-open > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.sub-menu li a {
    display: block;
    padding: 0.55rem 1.1rem;
    font-size: 0.845rem;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
    border-radius: 4px;
    margin: 0 0.3rem;
}
.sub-menu li a::after { display: none; }
.sub-menu li a:hover {
    background: var(--red-tint);
    color: var(--red);
}

/* Trennlinie zwischen Untermenüpunkten */
.sub-menu li + li {
    border-top: 1px solid var(--border);
}

@media (max-width: 960px) {
    .nav-menu { display: none; }
    .nav-hamburger { display: flex; }
    .nav-menu.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(255,255,255,0.98);
        padding: 1rem 2rem 1.5rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 0;
        z-index: 998;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    /* Jedes li bekommt eine Trennlinie; der Link füllt die Zeile */
    .nav-menu.is-open > li {
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.is-open li a {
        padding: 0.7rem 0;
        border-bottom: none;   /* Border liegt jetzt auf dem li */
    }
    .nav-menu.is-open li a::after { display: none; }
    .nav-menu.is-open li.menu-item-cta > a {
        margin: 1rem 0 0; border-radius: 6px; padding: 0.8rem 1.5rem;
        text-align: center;
    }

    /* Pfeil-Button: größerer Tipp-Bereich */
    .dropdown-toggle {
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        padding: 0;
    }

    /* Untermenü mobil: kein Dropdown, sondern ausklappbar */
    /* flex-basis:100% sorgt dafür, dass sub-menu in der li-Flexbox in die nächste Zeile bricht */
    .nav-menu.is-open .sub-menu {
        flex-basis: 100%;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        transform: none;
        background: transparent;
        display: none;
    }
    .nav-menu.is-open .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }
    /* Hover öffnet kein sub-menu auf Mobil */
    .nav-menu.is-open .menu-item-has-children:hover > .sub-menu {
        display: none;
    }
    .nav-menu.is-open .menu-item-has-children.submenu-open > .sub-menu {
        display: block;
    }
    .nav-menu.is-open .sub-menu li a {
        padding: 0.6rem 0 0.6rem 1rem;
        margin: 0;
        border-radius: 0;
        color: var(--text-muted);
        font-size: 0.83rem;
    }
    .nav-menu.is-open .sub-menu > li {
        border-bottom: 1px solid var(--border);
    }
    .nav-menu.is-open .sub-menu li + li { border-top: none; }

    /* Hover-Pfeilrotation deaktivieren (nur Klick zählt) */
    .nav-menu.is-open .menu-item-has-children:hover > .dropdown-toggle svg {
        transform: none;
    }
    .nav-menu.is-open .menu-item-has-children.submenu-open > .dropdown-toggle svg {
        transform: rotate(180deg);
    }
}


/* ── HERO ────────────────────────────────────────────────────────────────── */

.fwa-hero {
    min-height: 100vh;
    padding-top: 102px;
    background: var(--bg-white);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.fwa-hero__stripe {
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--red);
    z-index: 2;
}

.fwa-hero__photo {
    position: absolute;
    top: 0; right: 0;
    width: 48%; height: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 0;
    overflow: hidden;
}

.fwa-hero__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.fwa-hero__photo-fade {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(to right, var(--bg-white) 0%, transparent 100%);
    z-index: 1;
}

.fwa-hero__content {
    position: relative;
    z-index: 3;
    padding: 5rem 2rem 5rem 5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.fwa-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-tint);
    border: 1px solid var(--border-red);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.5s ease both;
}

.fwa-hero__eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

.fwa-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    line-height: 0.92;
    color: var(--text);
    letter-spacing: 0.025em;
    animation: fadeInUp 0.5s 0.08s ease both;
}

.fwa-hero__title-accent { color: var(--red); display: block; }

.fwa-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.45rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.5s 0.16s ease both;
}

.fwa-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.5s 0.24s ease both;
}

.fwa-hero__trust-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
}

.fwa-hero__trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.5s 0.32s ease both;
    flex-wrap: wrap;
}

.trust-item { display: flex; flex-direction: column; }

.trust-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    line-height: 1;
}

.trust-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.trust-divider {
    width: 1px; height: 36px;
    background: var(--border);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
    .fwa-hero__content { padding: 3rem 1.5rem; }
    .fwa-hero__photo { display: none; }
    .fwa-hero__trust { gap: 1.2rem; }
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 0.9rem 1.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
    background: var(--red-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,18,48,0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 0.9rem 1.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--red);
    padding: 0.95rem 2rem;
    border-radius: 7px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 0.95rem 1.8rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.2s;
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* ── SECTION COMMONS ─────────────────────────────────────────────────────── */

.fwa-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 2.8rem;
}

/* ── EINSAETZE ───────────────────────────────────────────────────────────── */

.fwa-einsaetze-wrap { background: var(--bg); }

.fwa-einsaetze-grid {
    display: grid;
    grid-template-columns: 1fr 24px 1fr 24px 1fr;
    column-gap: 0;
    row-gap: 1.25rem;
    align-items: stretch;
}

.einsatz-sep {
    display: flex;
    justify-content: center;
    align-self: stretch;
}

.einsatz-sep::before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.12) 20%,
        rgba(0,0,0,0.18) 50%,
        rgba(0,0,0,0.12) 80%,
        transparent 100%
    );
}

@media (max-width: 800px) {
    .fwa-einsaetze-grid {
        grid-template-columns: 1fr;
    }
    .einsatz-sep {
        width: 80%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.10) 25%,
            rgba(0,0,0,0.13) 50%,
            rgba(0,0,0,0.10) 75%,
            transparent 100%
        );
    }
}

.einsatz-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
}

.einsatz-card__image {
    margin: -1.5rem -1.5rem 1.2rem;
    height: 180px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}
.einsatz-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.einsatz-card:hover .einsatz-card__image img {
    transform: scale(1.04);
}

.einsatz-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
}

.einsatz-card.brand::before      { background: var(--red); }
.einsatz-card.unfall::before     { background: #D97706; }
.einsatz-card.hilfe::before      { background: #2563EB; }
.einsatz-card.gefahr::before     { background: #059669; }
.einsatz-card.th::before         { background: #059669; }
.einsatz-card.sonstiges::before  { background: #EAB308; }

.einsatz-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: rgba(196,18,48,0.2);
}

.einsatz-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
}

.einsatz-card__date {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.einsatz-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 4px;
}

.badge-brand     { background: var(--red-tint2); color: var(--red); }
.badge-unfall    { background: #FEF3C7; color: #B45309; }
.badge-hilfe     { background: #DBEAFE; color: #1D4ED8; }
.badge-gefahr    { background: #D1FAE5; color: #065F46; }
.badge-th        { background: #D1FAE5; color: #065F46; }
.badge-sonstiges { background: #FEF9C3; color: #854D0E; }

.einsatz-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    color: var(--text);
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.einsatz-card__location {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 0.7rem;
}

.einsatz-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.einsatz-card__footer {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
}

.einsatz-card__units { color: var(--text-muted); }

.einsatz-card__link {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: letter-spacing 0.2s;
}
.einsatz-card__link:hover { letter-spacing: 0.03em; }

/* ── GEFAHRSTOFFZUG ──────────────────────────────────────────────────────── */

.fwa-gsz-wrap {
    background: var(--text);
    position: relative;
    overflow: hidden;
}

.fwa-gsz-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
}

.fwa-gsz-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 800px) {
    .fwa-gsz-inner { grid-template-columns: 1fr; }
    .fwa-gsz-visual { display: none; }
}

.fwa-gsz-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
}

.fwa-gsz-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    color: white;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

.fwa-gsz-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 2rem;
}

.fwa-gsz-stats {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.fwa-gsz-stat { display: flex; flex-direction: column; }

.fwa-gsz-stat__value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: white;
    line-height: 1;
}

.fwa-gsz-stat__label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

.fwa-gsz-stat__divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}

.fwa-gsz-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.fwa-gsz-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.fwa-gsz-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: white;
    padding: 0.9rem 1.9rem;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.fwa-gsz-btn:hover {
    background: var(--red-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,18,48,0.4);
    color: white;
}

.fwa-gsz-visual {
    flex-shrink: 0;
    width: 460px;
    position: relative;
}

.fwa-gsz-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0,0,0,0.45) 100%
    );
    pointer-events: none;
}

.fwa-gsz-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
    display: block;
    opacity: 1;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
}

/* ── INSTAGRAM HERO BADGE ────────────────────────────────────────────────── */

.fwa-hero__insta {
    display: block;
    margin-top: 2.5rem;
    width: fit-content;
    transition: transform 0.25s, opacity 0.25s;
    animation: fadeInUp 0.5s 0.4s ease both;
}

.fwa-hero__insta:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

.fwa-hero__insta img {
    width: 180px;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ── FUHRPARK ────────────────────────────────────────────────────────────── */

.fuhrpark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 700px) {
    .fuhrpark-grid { grid-template-columns: 1fr; }
}

.fuhrpark-gruppe {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.fuhrpark-gruppe__title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

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

.fuhrpark-liste li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.75rem;
    align-items: baseline;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    transition: background 0.15s;
}

.fuhrpark-liste li:hover { background: var(--bg); }

.fuhrpark-kfz {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.fuhrpark-rufname {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
}

.fuhrpark-typ {
    font-size: 0.75rem;
    color: var(--text-muted);
    grid-column: 2;
    margin-top: -2px;
}

.fuhrpark-liste li {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
}

.fuhrpark-rufname { grid-column: 2; grid-row: 1; }
.fuhrpark-typ     { grid-column: 2; grid-row: 2; }
.fuhrpark-kfz     { grid-column: 1; grid-row: 1 / 3; align-self: center; }

/* ── JUGENDFEUERWEHR PAGE ────────────────────────────────────────────────── */

.jf-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    margin-top: 72px; /* nav height */
}

.jf-hero__inner {
    background: var(--text);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.jf-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: white;
    line-height: 0.95;
    margin: 0.5rem 0 1rem;
}

.jf-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 420px;
}

.jf-hero__img-wrap {
    overflow: hidden;
    position: relative;
}

.jf-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 700px) {
    .jf-hero { grid-template-columns: 1fr; }
    .jf-hero__img-wrap { height: 240px; }
}

/* Intro */
.jf-intro {
    font-size: 1.08rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

/* Fakten */
.jf-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

@media (max-width: 700px) {
    .jf-facts { grid-template-columns: repeat(2, 1fr); }
}

.jf-fact {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.jf-fact__icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

.jf-fact__value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.9rem;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.jf-fact__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Angebote */
.jf-angebote-wrap { margin-bottom: 4rem; }

.jf-angebote {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .jf-angebote { grid-template-columns: 1fr; }
}

.jf-angebot {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--red);
}

.jf-angebot__icon { font-size: 1.6rem; margin-bottom: 0.75rem; }

.jf-angebot__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.jf-angebot p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA */
.jf-cta {
    background: var(--text);
    border-radius: 14px;
    padding: 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.jf-cta__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.jf-cta__text p {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── ELTERN-INFO ─────────────────────────────────────────────────────────── */

.eltern-intro {
    font-size: 1.08rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 780px;
    margin-bottom: 3rem;
}

.eltern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1rem;
}

@media (max-width: 900px) { .eltern-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .eltern-grid { grid-template-columns: 1fr; } }

.eltern-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.eltern-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.eltern-card__icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.eltern-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.eltern-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.eltern-card a {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
}

/* ── JF TERMINE ──────────────────────────────────────────────────────────── */

.jf-termine-wrap {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.jf-termine-liste {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 860px;
}

.jf-termin {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.jf-termin:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.jf-termin__date {
    background: var(--red);
    color: white;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    flex-shrink: 0;
    text-align: center;
}

.jf-termin__day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.jf-termin__month {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.jf-termin__year {
    font-size: 0.68rem;
    opacity: 0.65;
    margin-top: 2px;
}

.jf-termin__body {
    padding: 1rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.jf-termin__top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.jf-termin__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    color: var(--text);
}

.jf-termin__meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* Badges */
.jf-badge {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    white-space: nowrap;
}

.jf-badge--uebung    { background: #DBEAFE; color: #1D4ED8; }
.jf-badge--ausflug   { background: #D1FAE5; color: #065F46; }
.jf-badge--wettkampf { background: #FEF3C7; color: #B45309; }
.jf-badge--zeltlager { background: #EDE9FE; color: #6D28D9; }
.jf-badge--sonstiges { background: var(--bg); color: var(--text-muted); border: 1px solid var(--border); }

/* ── JF KONTAKTFORMULAR ──────────────────────────────────────────────────── */

.jf-kontakt-wrap {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    max-width: 720px;
}

.jf-form { display: flex; flex-direction: column; gap: 1.25rem; }

.jf-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 600px) {
    .jf-form__row { grid-template-columns: 1fr; }
}

.jf-form__field { display: flex; flex-direction: column; gap: 0.4rem; }

.jf-form__field label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.jf-required { color: var(--red); }

.jf-form__field input,
.jf-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.jf-form__field input:focus,
.jf-form__field textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196,18,48,0.1);
}

.jf-form__field textarea { resize: vertical; min-height: 130px; }

.jf-form-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.jf-form-error {
    background: var(--red-tint2);
    color: var(--red-dark);
    border: 1px solid var(--border-red);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* ── ÜBER UNS ────────────────────────────────────────────────────────────── */

.ueber-uns-intro {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 720px;
    margin-bottom: 3rem;
}

.ueber-uns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .ueber-uns-grid { grid-template-columns: 1fr; }
}

.ueber-uns-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    position: relative;
    overflow: hidden;
}

.ueber-uns-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.ueber-uns-card:hover::after { transform: scaleX(1); }

.ueber-uns-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(196,18,48,0.18);
}

.ueber-uns-card__icon {
    font-size: 2.4rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--red-tint);
    border: 1px solid var(--border-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ueber-uns-card__body { flex: 1; }

.ueber-uns-card__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
}

.ueber-uns-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.ueber-uns-card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ueber-uns-card__link {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--red);
}

/* ── EHEMALIGE FAHRZEUGE ─────────────────────────────────────────────────── */

.fahrzeug-card--ehemalig { opacity: 0.82; }
.fahrzeug-card--ehemalig .fahrzeug-card__visual::after { background: var(--text-muted); }

.fahrzeug-card__ehemalig-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: rgba(0,0,0,0.55);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

/* ── SINGLE FAHRZEUG ─────────────────────────────────────────────────────── */

.fahrzeug-single__specs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    flex-wrap: wrap;
}

/* ── SINGLE POST ─────────────────────────────────────────────────────────── */

.bericht-single__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.fwa-post-content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.fwa-post-content p  { margin-bottom: 1.25rem; }
.fwa-post-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--text); margin: 2rem 0 0.75rem; letter-spacing: 0.03em; }
.fwa-post-content h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; color: var(--text); margin: 1.5rem 0 0.6rem; }
.fwa-post-content ul, .fwa-post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.fwa-post-content li { margin-bottom: 0.4rem; }
.fwa-post-content a  { color: var(--red); text-decoration: underline; }
.fwa-post-content img { border-radius: 8px; margin: 1rem 0; }
.fwa-post-content blockquote {
    border-left: 3px solid var(--red);
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background: var(--red-tint);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-mid);
}

/* ── BERICHTE ────────────────────────────────────────────────────────────── */

.fwa-berichte-wrap { background: var(--bg); }

.fwa-berichte-wrap .section-desc { max-width: 100%; }

/* Haupt-Layout: Featured groß links, zwei kleine rechts */
.fwa-berichte-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
}

/* Erstes Kind: Featured – nimmt beide Zeilen links ein */
.bericht-card:first-child {
    grid-row: 1 / 3;
}

/* featured image natural height */

.bericht-card:first-child .bericht-card__title { font-size: 1.85rem; }

@media (max-width: 700px) {
    .fwa-berichte-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bericht-card:first-child { grid-row: auto; }
    .bericht-card:first-child .bericht-card__image { height: 220px; }
}

.bericht-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Roter Akzent oben */
.bericht-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0;
    transition: opacity 0.25s;
}

.bericht-card:hover::before { opacity: 1; }

.bericht-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(196,18,48,0.18);
}

.bericht-card__image {
    overflow: hidden;
    flex-shrink: 0;
}

.bericht-card__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.45s ease;
}

.bericht-card:hover .bericht-card__image img { transform: scale(1.03); }

.bericht-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bericht-card__meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.bericht-card__date {
    font-size: 0.76rem;
    color: var(--text-muted);
    font-weight: 500;
}

.bericht-card__cat {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    background: var(--red-tint2);
    color: var(--red);
    padding: 0.2rem 0.65rem;
    border-radius: 100px;
    border: 1px solid var(--border-red);
}

.bericht-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    color: var(--text);
    letter-spacing: 0.03em;
    margin-bottom: 0.6rem;
    line-height: 1.08;
}

.bericht-card__excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
}

.bericht-card__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    color: var(--red);
    font-weight: 600;
    font-size: 0.84rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: gap 0.2s;
}

.bericht-card__link:hover { gap: 8px; }

/* ── STATS ───────────────────────────────────────────────────────────────── */

.fwa-stats-bar {
    background: var(--red);
    padding: 3.5rem 2rem;
}

.fwa-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

@media (min-width: 720px) { .fwa-stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: white;
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* ── FAHRZEUGE ───────────────────────────────────────────────────────────── */

.fwa-fahrzeuge-wrap { background: var(--bg-white); }

.fwa-fahrzeuge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.25rem;
}

.fahrzeug-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    display: block;
}

.fahrzeug-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(196,18,48,0.2);
}

.fahrzeug-card__visual {
    height: 200px;
    background: linear-gradient(145deg, #F0F1F3 0%, #E8E9EC 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.fahrzeug-card__visual::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
}

.fahrzeug-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fahrzeug-card__no-img {
    font-size: 4rem;
    opacity: 0.3;
}

.fahrzeug-card__info { padding: 1.4rem; }

.fahrzeug-card__type {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.2rem;
}

.fahrzeug-card__name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--text);
    letter-spacing: 0.04em;
    margin-bottom: 0.45rem;
}

.fahrzeug-card__desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.fahrzeug-card__specs {
    display: flex;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.spec-item {
    text-align: center;
    flex: 1;
    padding: 0 0.5rem;
    border-right: 1px solid var(--border);
}
.spec-item:last-child { border-right: none; }

.spec-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
}

.spec-label {
    font-size: 0.62rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ── JUGENDFEUERWEHR ─────────────────────────────────────────────────────── */

.fwa-jugend-wrap { background: var(--bg); }

.jugend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) { .jugend-grid { grid-template-columns: 1fr 1fr; } }

.jugend-visual { order: -1; }
@media (min-width: 900px) { .jugend-visual { order: 1; } }

.jugend-visual-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.jugend-visual-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
}

.jugend-icon { font-size: 5rem; line-height: 1; }

.jugend-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.jugend-pill {
    background: var(--red-tint);
    border: 1px solid var(--border-red);
    border-radius: 100px;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.jugend-pill::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.jugend-big-stat {
    text-align: center;
    padding: 1.25rem;
    background: var(--bg);
    border-radius: 12px;
    width: 100%;
}

.jugend-big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--red);
    line-height: 1;
}

.jugend-big-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.2rem;
}

.jugend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.fwa-cta-section {
    background: var(--red);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fwa-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}

.fwa-cta-logo-watermark {
    position: absolute;
    right: 5%; top: 50%;
    transform: translateY(-50%);
    width: 280px;
    opacity: 0.08;
    pointer-events: none;
}

.fwa-cta-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.fwa-cta-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.fwa-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    color: white;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.fwa-cta-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.fwa-cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

.site-footer {
    background: #1A1C1E;
    border-top: 3px solid var(--red);
    padding: 2rem 2rem 0;
    color: #D1D5DB;
}

.footer-compact {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding-bottom: 1.75rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 1rem;
}

.footer-logo { height: 52px; width: auto; }

.footer-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.footer-brand-sub {
    font-size: 0.62rem;
    color: var(--red);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-desc {
    font-size: 0.875rem;
    color: #9CA3AF;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.65rem; }

.social-btn {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: #2A2D31;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 0.7rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }

.footer-heading {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.2rem;
}

/* WordPress nav menu in footer */
.footer-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav-menu a {
    font-size: 0.875rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-nav-menu a:hover { color: white; }

.footer-contact-item {
    font-size: 0.85rem;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.4;
    white-space: nowrap;
}
.footer-contact-item a { color: #9CA3AF; text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: white; }
.footer-contact-item strong { color: #D1D5DB; font-weight: 500; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy { font-size: 0.78rem; color: #6B7280; }

.footer-impressum {
    font-size: 0.78rem;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-impressum:hover { color: white; }
.footer-legal-menu a:hover { color: white; }

/* ── PAGE CONTENT ─────────────────────────────────────────────────────────── */

.fwa-page-wrap {
    padding-top: 102px;
    min-height: 60vh;
}

.fwa-page-hero {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem 2rem;
    position: relative;
}

.fwa-page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: var(--red);
}

.fwa-page-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
}

.fwa-page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    line-height: 1;
}

.fwa-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.fwa-page-content a {
    color: var(--red);
    text-decoration: none;
}

.fwa-page-content a:hover {
    text-decoration: underline;
}

/* ── SINGLE EINSATZ ──────────────────────────────────────────────────────── */

.einsatz-single__header {
    max-width: 860px;
    margin: 0 auto 3rem;
}

.einsatz-single__meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.einsatz-single__date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.einsatz-single__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.einsatz-single__location {
    font-size: 0.9rem;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.einsatz-single__stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.2rem 1.5rem;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.einsatz-single__stat { display: flex; flex-direction: column; }

.einsatz-single__stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
}

.einsatz-single__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Fahrzeugbilder-Leiste auf Einsatz-Detailseite */
.einsatz-fz-bilder {
    margin: 1rem 0 1.25rem;
}

.einsatz-fz-bilder__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.einsatz-fz-bild {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    width: 110px;
    flex-shrink: 0;
}

.einsatz-fz-bild img {
    width: 110px;
    height: 62px;
    object-fit: cover;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s;
}

.einsatz-fz-bild:hover img {
    border-color: var(--red);
}

.einsatz-fz-bild__name {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.3;
}

.einsatz-fahrzeuge-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0.2rem 0 0.8rem;
}

.einsatz-fahrzeuge-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
}

.einsatz-fahrzeuge-list li::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.einsatz-fahrzeuge-list li a {
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.15s;
}
.einsatz-fahrzeuge-list li a:hover {
    color: var(--red);
    text-decoration: underline;
}

.einsatz-single__body {
    max-width: 860px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-mid);
}

.einsatz-single__body p { margin-bottom: 1.25rem; }
.einsatz-single__body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
    margin: 2rem 0 0.75rem;
}

/* ── ARCHIVE EINSAETZE ───────────────────────────────────────────────────── */

.einsatz-year-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.einsatz-year-btn {
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text-mid);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.einsatz-year-btn:hover {
    border-color: var(--red);
    color: var(--red);
}
.einsatz-year-btn.is-active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.einsatz-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
    font-size: 0.875rem;
}

.einsatz-table thead tr {
    background: var(--text);
    color: #fff;
}

.einsatz-table th {
    padding: 0.85rem 1rem;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

.einsatz-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.einsatz-table__row:last-child td {
    border-bottom: none;
}

.einsatz-table__row:hover {
    background: var(--red-tint);
}

.einsatz-table__month-row td {
    background: var(--bg);
    color: var(--red);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.6rem 1rem;
    border-bottom: 2px solid var(--border-red);
}

.einsatz-table__date {
    white-space: nowrap;
    color: var(--text-muted);
    font-weight: 500;
}

.einsatz-table__nr {
    white-space: nowrap;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    font-size: 0.85rem;
}

.einsatz-table__title a {
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
}
.einsatz-table__title a:hover {
    color: var(--red);
}

.einsatz-table__ort {
    color: var(--text-mid);
}

.einsatz-table__link a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}
.einsatz-table__link a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .einsatz-table thead { display: none; }
    .einsatz-table, .einsatz-table tbody, .einsatz-table tr, .einsatz-table td {
        display: block;
        width: 100%;
    }
    .einsatz-table__row { border-bottom: 2px solid var(--border); padding: 0.75rem 0; }
    .einsatz-table__row td { border: none; padding: 0.2rem 1rem; }
    .einsatz-table__date { font-size: 0.78rem; }
    .einsatz-table__link { text-align: right; padding-top: 0.5rem !important; }
}

.fwa-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.fwa-pagination a,
.fwa-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    transition: all 0.2s;
}
.fwa-pagination a:hover { border-color: var(--red); color: var(--red); }
.fwa-pagination .current { background: var(--red); color: white; border-color: var(--red); }

/* ── SCROLL REVEAL ───────────────────────────────────────────────────────── */

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITY ─────────────────────────────────────────────────────────────── */

.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── GEFAHRSTOFFZUG PAGE ──────────────────────────────────────────────────── */

.gsz-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    margin-top: -1px;
}

.gsz-hero__img-wrap {
    position: absolute;
    inset: 0;
}

.gsz-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: brightness(0.6);
}

.gsz-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.1) 100%
    );
}

.gsz-hero__content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gsz-hero__badge {
    display: inline-block;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    width: fit-content;
}

.gsz-hero__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
}

.gsz-hero__sub {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gsz-hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gsz-hero__stat {
    display: flex;
    flex-direction: column;
}

.gsz-hero__stat-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: white;
    line-height: 1;
}

.gsz-hero__stat-lbl {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.gsz-hero__stat-div {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.2);
}

/* Auftrag */

.gsz-auftrag {
    max-width: 780px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.gsz-auftrag__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.gsz-auftrag__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gsz-auftrag__text {
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 1rem;
}

/* Cards */

.gsz-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.gsz-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.gsz-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gsz-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.gsz-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.gsz-card__text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* Fahrzeuge */

.gsz-fahrzeuge {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.gsz-fahrzeuge__header {
    margin-bottom: 1.75rem;
}

.gsz-fz-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gsz-fz-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.gsz-fz-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.gsz-fz-item__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.gsz-fz-item__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.gsz-fz-item__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

@media (max-width: 768px) {
    .gsz-hero { height: 480px; }
    .gsz-cards { grid-template-columns: 1fr; }
    .gsz-hero__stats { gap: 1rem; }
    .gsz-hero__stat-div { display: none; }
}

/* ── VORBEUGENDER BRANDSCHUTZ ────────────────────────────────────────────── */

.vbs-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.4rem;
}

.vbs-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.vbs-intro {
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 1.75rem;
}

.vbs-download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
}

.vbs-download-card__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--red-tint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.vbs-download-card__body { flex: 1; }

.vbs-download-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.vbs-download-card__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.vbs-download-card__meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vbs-download-card__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.vbs-download-card__btn:hover { background: var(--red-dark); }

.vbs-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.vbs-category {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.vbs-category__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.vbs-category__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vbs-category__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.vbs-category__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vbs-category__list li {
    font-size: 0.875rem;
    color: var(--text-mid);
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.vbs-category__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border);
}

.vbs-ext-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid var(--border-red);
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    transition: background 0.2s;
}
.vbs-ext-link:hover { background: var(--red-tint); }

@media (max-width: 640px) {
    .vbs-categories { grid-template-columns: 1fr; }
    .vbs-download-card { flex-direction: column; align-items: flex-start; }
}

/* ── EINSATZ STATISTIK ───────────────────────────────────────────────────── */

.estat-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (max-width: 800px) { .estat-wrap { grid-template-columns: 1fr; } }

.estat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.estat-card__head { margin-bottom: 0.85rem; }

.estat-card__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}

.estat-card__sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Jahres-Balken */
.estat-years {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.estat-year-row {
    display: grid;
    grid-template-columns: 44px 1fr 40px;
    align-items: center;
    gap: 0.5rem;
    padding: 0.18rem 0.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.15s;
}
.estat-year-row:hover { background: var(--bg); }
.estat-year-row.is-active { background: var(--red-tint); }

.estat-year-lbl {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
}
.estat-year-row.is-active .estat-year-lbl { color: var(--red); }

.estat-year-bar-wrap {
    height: 8px;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
}

.estat-year-bar {
    display: block;
    height: 100%;
    background: var(--border);
    border-radius: 4px;
    transition: width 0.6s ease;
}
.estat-year-row.is-active .estat-year-bar { background: var(--red); }
.estat-year-row:hover .estat-year-bar { background: var(--text-muted); }
.estat-year-row.is-active:hover .estat-year-bar { background: var(--red); }

.estat-year-val {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.estat-year-row.is-active .estat-year-val { color: var(--red); font-weight: 700; }

/* Kategorie-Balken */
.estat-cats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.estat-cat-row {}

.estat-cat-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.estat-cat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.estat-cat-name {
    font-size: 0.82rem;
    color: var(--text-mid);
    flex: 1;
}

.estat-cat-pct {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

.estat-cat-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text);
    min-width: 24px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.estat-cat-bar-wrap {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
}

.estat-cat-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.6s ease;
}

/* ── EINSATZVERWALTUNG PLUGIN TABLE ──────────────────────────────────────── */

/* Foto-Spalte ausblenden */
.einsatz-column-annotationImages,
.annotation-icon-bar { display: none !important; }

/* Plugin-Zebra-Streifen überschreiben */
.einsatzverwaltung-reportlist tr.report:nth-child(even) {
    background-color: transparent !important;
}

.einsatzverwaltung-reportlist {
    width: 100%;
    border-collapse: collapse;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
}

/* Monatszeile */
.einsatzverwaltung-reportlist tr.einsatz-title-month td {
    background: var(--red) !important;
    color: white !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 0.5rem 1rem !important;
    border: none !important;
}

/* Header-Zeile */
.einsatzverwaltung-reportlist tr.einsatz-header th {
    background: var(--bg) !important;
    color: var(--text-muted) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    padding: 0.6rem 1rem !important;
    border-bottom: 2px solid var(--border) !important;
    white-space: nowrap !important;
}

/* Daten-Zeilen */
.einsatzverwaltung-reportlist tr.report td {
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text-mid) !important;
    vertical-align: middle !important;
}

.einsatzverwaltung-reportlist tr.report:hover td {
    background: var(--red-tint) !important;
}

/* Datum nie umbrechen */
.einsatz-column-datetime {
    white-space: nowrap !important;
    color: var(--text-muted) !important;
    font-size: 0.85rem !important;
    min-width: 140px !important;
}

/* Nummer */
.einsatz-column-number {
    color: var(--text-muted) !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
    min-width: 90px !important;
}

/* Titel / Link */
.einsatz-column-title a {
    color: var(--text) !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}
.einsatz-column-title a:hover {
    color: var(--red) !important;
}

/* Ort */
.einsatz-column-location {
    color: var(--text-muted) !important;
    font-size: 0.875rem !important;
}

/* Mobile: smallscreen-Block zeigen, Tabelle ausblenden */
@media (max-width: 640px) {
    .einsatzverwaltung-reportlist tr.einsatz-header { display: none !important; }
    .einsatzverwaltung-reportlist td.smallscreen { display: block !important; }
    .einsatz-column-number,
    .einsatz-column-datetime,
    .einsatz-column-title,
    .einsatz-column-location { display: none !important; }
    .einsatzverwaltung-reportlist tr.report td.smallscreen {
        padding: 0.75rem 1rem !important;
    }
}
