/* ============================================================
   FF Stadtmitte – Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Quicksand:wght@400;500;700&display=swap');

/* ---- Variables ------------------------------------------- */
:root {
    --fw-red:        #c90101;
    --fw-red-dark:   #a30101;
    --fw-dark:       #171717;
    --fw-gray:       #f3f4f6;
    --fw-text:       #2d2d2d;
    --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
    --shadow-md:  0 6px 20px rgba(0,0,0,.11);
    --shadow-lg:  0 12px 36px rgba(0,0,0,.16);
    --radius:        9px;
    --transition:    all .24s ease;
}

/* ---- Base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'PT Sans', sans-serif;
    background: var(--fw-gray);
    color: var(--fw-text);
    margin: 0;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

a { color: var(--fw-red); }

/* ---- Topbar ---------------------------------------------- */
.fw-topbar {
    background: #111;
    font-size: .78rem;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}
.fw-topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.fw-topbar a          { color: #888; text-decoration: none; transition: color .2s; }
.fw-topbar a:hover    { color: #fff; }
.fw-topbar .fw-info   { color: #666; display: flex; align-items: center; gap: 20px; }
.fw-topbar .fw-info i { color: var(--fw-red); }
.fw-topbar .fw-right  { display: flex; align-items: center; gap: 10px; }

/* Search in topbar */
.fw-topbar .fw-search-wrap { display: flex; align-items: center; gap: 4px; }
.fw-topbar .fw-search-wrap input {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    color: #ccc;
    font-size: .78rem;
    padding: 4px 10px;
    width: 148px;
    outline: none;
    transition: border-color .2s;
}
.fw-topbar .fw-search-wrap input::placeholder { color: #555; }
.fw-topbar .fw-search-wrap input:focus { border-color: var(--fw-red); }
.fw-topbar .fw-search-wrap button {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    padding: 4px 6px;
    transition: color .2s;
}
.fw-topbar .fw-search-wrap button:hover { color: #fff; }

/* Social icons (topbar + footer) */
.fw-social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    color: #888 !important;
    font-size: .8rem;
    text-decoration: none;
    transition: var(--transition);
}
.fw-social:hover { background: var(--fw-red); color: #fff !important; }

/* ---- Hero Banner ----------------------------------------- */
.hero-banner-bg {
    background: var(--fw-red);
    line-height: 0;
    overflow: hidden;
}
.hero-banner-bg img {
    max-width: 1220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---- Navbar ---------------------------------------------- */
.navbar {
    background: #fff !important;
    border-bottom: 3px solid var(--fw-red);
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.navbar-toggler {
    border: none;
    padding: 8px;
    margin: 8px;
}
.navbar-toggler:focus { box-shadow: none; }

.nav-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #2a2a2a !important;
    padding: 18px 14px !important;
    position: relative;
    white-space: nowrap;
    transition: color .2s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0; right: 0;
    height: 3px;
    background: var(--fw-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.nav-link:hover,
.nav-link.active { color: var(--fw-red) !important; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link.intern-link {
    color: var(--fw-red) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: 3px solid var(--fw-red);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    padding: 6px 0;
    animation: dropFade .18s ease;
}
@keyframes dropFade { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }
.dropdown-item {
    font-size: .88rem;
    padding: 9px 18px;
    transition: background .15s, color .15s;
}
.dropdown-item:hover { background: var(--fw-red); color: #fff; }
.dropdown-divider { border-color: #f0f0f0; margin: 4px 0; }

/* ---- Page Header ----------------------------------------- */
.fw-page-header {
    background:
        linear-gradient(135deg, rgba(10,10,10,.72) 0%, rgba(140,0,0,.52) 100%),
        url('/images/neueslogo2025/banner-neu-gro1220neu.png') center top / cover no-repeat;
    color: #fff;
    padding: 78px 0 64px;
    text-align: center;
    position: relative;
}
.fw-page-header h1 {
    text-shadow: 0 2px 14px rgba(0,0,0,.45);
    letter-spacing: 1px;
}
.fw-page-header .lead { opacity: .88; }

/* ---- Section Title --------------------------------------- */
.fw-section-title {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    color: var(--fw-dark);
}
.fw-section-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 1.3em;
    background: var(--fw-red);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ---- Cards ----------------------------------------------- */
.fw-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.fw-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.fw-card-img {
    overflow: hidden;
    background: #1a1a1a;
    flex-shrink: 0;
}
.fw-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.fw-card:hover .fw-card-img img { transform: scale(1.06); }
.fw-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* ---- Incident cards (left-border style) ------------------ */
.fw-incident {
    background: #fff;
    border-radius: var(--radius);
    border-left: 4px solid var(--fw-red);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
    transition: var(--transition);
}
.fw-incident:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

/* ---- Date chip ------------------------------------------- */
.fw-date-chip {
    display: inline-block;
    background: var(--fw-red);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 6px;
}

/* ---- Vehicle / generic badge ----------------------------- */
.fw-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f1f3f5;
    border: 1px solid #dee2e6;
    color: #555;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .73rem;
    font-weight: 700;
}

/* ---- Buttons --------------------------------------------- */
.btn-fw,
a.btn-fw {
    display: inline-block;
    background: var(--fw-red);
    color: #fff !important;
    border: 2px solid var(--fw-red);
    border-radius: 5px;
    padding: 8px 22px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-fw:hover,
a.btn-fw:hover {
    background: var(--fw-red-dark);
    border-color: var(--fw-red-dark);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(201,1,1,.3);
}

.btn-fw-outline,
a.btn-fw-outline {
    display: inline-block;
    background: transparent;
    color: var(--fw-red) !important;
    border: 2px solid var(--fw-red);
    border-radius: 5px;
    padding: 7px 21px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-decoration: none !important;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}
.btn-fw-outline:hover,
a.btn-fw-outline:hover {
    background: var(--fw-red);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ---- Counter box ----------------------------------------- */
.fw-counter {
    background: var(--fw-dark);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border-top: 4px solid var(--fw-red);
}
.fw-counter-num {
    display: block;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: var(--fw-red);
    line-height: 1;
}
.fw-counter-label {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-top: 8px;
}

/* ---- Stats ribbon ---------------------------------------- */
.fw-stats {
    background: var(--fw-red);
    padding: 24px 0;
}
.fw-stats-item { text-align: center; color: #fff; padding: 4px 24px; }
.fw-stats-num {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
    display: block;
}
.fw-stats-lbl {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: .82;
    margin-top: 4px;
    display: block;
}
.fw-stats-divider {
    width: 1px;
    background: rgba(255,255,255,.25);
    height: 50px;
    align-self: center;
}

/* ---- Article / info layout ------------------------------- */
.fw-article-header {
    background: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 34px 0 22px;
}
.fw-article-title {
    border-left: 5px solid var(--fw-red);
    padding-left: 18px;
    color: var(--fw-dark);
}

.fw-info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.fw-info-row {
    display: flex;
    border-bottom: 1px solid #f4f4f4;
}
.fw-info-row:last-child { border-bottom: none; }
.fw-info-label {
    flex-shrink: 0;
    width: 38%;
    padding: 11px 14px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #aaa;
    background: #fafafa;
}
.fw-info-value {
    padding: 11px 14px;
    font-weight: 600;
    color: #222;
    flex-grow: 1;
}

.fw-report-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px 36px;
}
.fw-report-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}
.fw-report-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 16px 0; }
.fw-report-body h2,
.fw-report-body h3 { color: #222; margin-top: 1.8rem; }

.fw-press-box {
    background: #f8f9fa;
    border-left: 4px solid var(--fw-red);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 18px;
    margin-top: 24px;
}

/* ---- Year filter ----------------------------------------- */
.fw-year-filter { display: flex; flex-wrap: wrap; gap: 5px; justify-content: center; }
.fw-year-btn {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .8rem;
    padding: 5px 14px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    background: #fff;
    color: #666;
    text-decoration: none;
    transition: var(--transition);
    min-width: 56px;
    text-align: center;
}
.fw-year-btn:hover,
.fw-year-btn.active { background: var(--fw-red); color: #fff; border-color: var(--fw-red); }

/* ---- Breadcrumb ------------------------------------------ */
.fw-breadcrumb {
    background: #fff;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    flex-wrap: wrap;
}
.fw-breadcrumb a { color: var(--fw-red); text-decoration: none; }
.fw-breadcrumb a:hover { text-decoration: underline; }
.fw-breadcrumb .sep { color: #ccc; }

/* ---- Album / gallery cards ------------------------------- */
.fw-album {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    box-shadow: var(--shadow-sm);
}
.fw-album:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-bottom-color: var(--fw-red); }
.fw-album-thumb { height: 160px; width: 100%; object-fit: cover; display: block; transition: transform .4s; }
.fw-album:hover .fw-album-thumb { transform: scale(1.05); }
.fw-album-no-img { height: 160px; background: #e9ecef; display: flex; align-items: center; justify-content: center; }

.fw-img-tile {
    display: block;
    overflow: hidden;
    border-radius: 7px;
    aspect-ratio: 1;
    background: #ddd;
    box-shadow: var(--shadow-sm);
}
.fw-img-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; display: block; }
.fw-img-tile:hover img { transform: scale(1.07); }

/* ---- Search result --------------------------------------- */
.fw-result-item {
    background: #fff;
    border-radius: var(--radius);
    border-left: 4px solid var(--fw-red);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    text-decoration: none !important;
    color: var(--fw-text) !important;
    margin-bottom: 10px;
}
.fw-result-item:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.fw-result-item.news-result { border-left-color: #0d6efd; }

mark { background: rgba(201,1,1,.12); color: inherit; padding: 0 2px; border-radius: 2px; }

/* ---- Footer ---------------------------------------------- */
.fw-footer { background: var(--fw-dark); }
.fw-footer-main { padding: 52px 0 40px; }
.fw-footer h5 {
    color: #fff;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 11px;
    border-left: 3px solid var(--fw-red);
    margin-bottom: 18px;
}
.fw-footer p  { color: #888; font-size: .88rem; line-height: 1.7; }
.fw-footer ul { list-style: none; padding: 0; margin: 0; }
.fw-footer ul li { padding: 4px 0; }
.fw-footer a  { color: #888; text-decoration: none; font-size: .88rem; transition: color .2s; }
.fw-footer a:hover { color: #fff; }
.fw-footer small { color: #555; }
.fw-footer-bottom { background: #0e0e0e; padding: 14px 0; border-top: 1px solid #222; }

/* ---- Utility --------------------------------------------- */
.text-fw   { color: var(--fw-red) !important; }
.bg-fw     { background: var(--fw-red) !important; }
.border-fw { border-color: var(--fw-red) !important; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 767px) {
    .fw-topbar { display: none !important; }
    .fw-page-header { padding: 52px 0 44px; }
    .fw-report-box { padding: 20px; }
    .fw-stats-divider { display: none; }
    .fw-stats-item { padding: 6px 14px; }
}

/* ---- Galerie: Album-Kacheln (Cover-Overlay-Design) ------- */
.fw-album-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/3;
    display: block;
    text-decoration: none;
}
.fw-album-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fw-album-card > img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .72;
    transition: opacity .3s, transform .4s;
    display: block;
}
.fw-album-card:hover > img { opacity: .52; transform: scale(1.05); }
.fw-album-overlay {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
}
.fw-album-name {
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
    line-height: 1.25;
}
.fw-album-count {
    color: rgba(255,255,255,.72);
    font-size: .7rem;
    margin-top: 2px;
}
.fw-album-badge {
    position: absolute; top: 8px; right: 8px;
    background: var(--fw-red);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    line-height: 1.4;
}
.fw-album-no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #2a2a2a;
}

/* ---- Tabs (Shortcode) ------------------------------------- */
.fw-tabs-wrapper {
    margin: 28px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.fw-tab-nav {
    background: #fff;
    border-bottom: 3px solid var(--fw-red);
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0;
}
.fw-tab-nav::-webkit-scrollbar { display: none; }
.fw-tab-nav .nav-link {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #555 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 14px 20px !important;
    white-space: nowrap;
    position: relative;
    transition: color .2s, background .2s;
}
.fw-tab-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 3px;
    background: var(--fw-red);
    transform: scaleX(0);
    transition: transform .2s;
}
.fw-tab-nav .nav-link:hover   { color: var(--fw-red) !important; background: #fafafa; }
.fw-tab-nav .nav-link.active  { color: var(--fw-red) !important; background: #fff; }
.fw-tab-nav .nav-link.active::after,
.fw-tab-nav .nav-link:hover::after { transform: scaleX(1); }

.fw-tab-body { background: #fff; }
.fw-tab-content {
    padding: 24px 28px;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* ---- Akkordeon (Shortcode) -------------------------------- */
.fw-accordion {
    margin: 28px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.fw-accordion-item {
    border: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.fw-accordion-item:last-child { border-bottom: none !important; }
.fw-accordion-btn {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700 !important;
    font-size: .95rem !important;
    color: var(--fw-dark) !important;
    background: #fff !important;
    padding: 16px 22px !important;
    box-shadow: none !important;
    border-left: 4px solid transparent;
    transition: background .2s, border-color .2s, color .2s !important;
}
.fw-accordion-btn:not(.collapsed) {
    color: var(--fw-red) !important;
    background: #fff9f9 !important;
    border-left-color: var(--fw-red);
}
.fw-accordion-btn::after {
    filter: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c90101'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.fw-accordion-btn.collapsed::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23555'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.fw-accordion-body {
    padding: 20px 26px !important;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    background: #fff;
}

/* Mobile */
@media (max-width: 575px) {
    .fw-tab-content  { padding: 16px; }
    .fw-accordion-body { padding: 14px 16px !important; }
    .fw-tab-nav .nav-link { padding: 10px 14px !important; font-size: .76rem !important; }
}

/* ---- Galerie-Shortcode ------------------------------------ */
.fw-sc-gallery { margin: 20px 0; }

.fw-sc-img-tile {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: #e0e0e0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.fw-sc-img-tile:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}
.fw-sc-img-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   HERO – Startseite (Option 2: Roter Hintergrund + Banner)
   ============================================================ */
.fw-hero {
    background: var(--fw-red);
    position: relative;
    overflow: hidden;
    padding: 0;
}
/* Silhouetten-Banner: rechts platziert, halbtransparent */
.fw-hero-banner {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 60%;
    pointer-events: none;
    overflow: hidden;
}
.fw-hero-banner-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: .18;
    mix-blend-mode: multiply;
    filter: brightness(0) invert(1);
}
.fw-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 52px;
    padding-bottom: 52px;
}
.fw-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.fw-hero-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}
.fw-hero-accent {
    display: inline-block;
    background: rgba(0,0,0,.2);
    border-radius: 4px;
    padding: 2px 10px;
    margin-top: 4px;
}
.fw-hero-sub {
    color: rgba(255,255,255,.82);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 28px;
}
.fw-hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fw-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--fw-red) !important;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 11px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.fw-hero-btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.fw-hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid rgba(255,255,255,.5);
    color: #fff !important;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    padding: 9px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.fw-hero-btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.1);
    transform: translateY(-2px);
}
/* Fakten-Kacheln rechts */
.fw-hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.fw-hero-stat-card {
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}
.fw-hero-stat-card:hover {
    background: rgba(0,0,0,.3);
    transform: translateY(-2px);
}
.fw-hero-stat-notruf {
    background: rgba(0,0,0,.35);
    border-color: rgba(255,255,255,.3);
}
.fw-hero-stat-icon {
    color: rgba(255,255,255,.6);
    font-size: .9rem;
    margin-bottom: 8px;
}
.fw-hero-stat-num {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: #fff;
    line-height: 1;
}
.fw-hero-stat-lbl {
    font-size: .68rem;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .fw-hero-banner { width: 100%; opacity: .08; }
    .fw-hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575px) {
    .fw-hero-stats-grid { grid-template-columns: 1fr 1fr; }
    .fw-hero-content { padding-top: 32px; padding-bottom: 32px; }
}

/* ---- Einheitsführung ---------------------------------------- */
.fw-fuehrung-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 32px 24px 24px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--fw-red);
    position: relative;
    overflow: hidden;
}
.fw-fuehrung-card::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    background: var(--fw-red);
    opacity: .04;
    border-radius: 50%;
}
.fw-fuehrung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.fw-fuehrung-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--fw-red);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(201,1,1,.3);
    letter-spacing: 1px;
}
.fw-fuehrung-badge-rank {
    display: inline-flex;
    align-items: center;
    background: #fff3f3;
    color: var(--fw-red);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(201,1,1,.15);
}
.fw-fuehrung-name {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--fw-dark);
    margin: 0 0 8px;
}
.fw-fuehrung-role {
    font-size: .85rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 0;
}
.fw-fuehrung-role i { color: var(--fw-red); }
.fw-fuehrung-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 16px 0;
}
.fw-fuehrung-meta {
    font-size: .75rem;
    color: #aaa;
    display: flex;
    justify-content: center;
    gap: 16px;
}
.fw-fuehrung-meta i { color: var(--fw-red); font-size: .7rem; }

/* ---- Timeline-Shortcode ------------------------------------ */
.fw-timeline {
    position: relative;
    padding: 20px 0 10px;
    margin: 28px 0;
}
/* Mittellinie */
.fw-tl-line {
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--fw-red) 0%, #e0e0e0 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}
.fw-tl-item {
    position: relative;
    width: 46%;
    margin-bottom: 36px;
}
.fw-tl-left  { margin-left: 0;    margin-right: auto; padding-right: 36px; }
.fw-tl-right { margin-left: auto; margin-right: 0;    padding-left:  36px; }

/* Punkt auf der Linie */
.fw-tl-dot {
    position: absolute;
    top: 16px;
    width: 40px; height: 40px;
    background: var(--fw-red);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .85rem;
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(201,1,1,.2);
    z-index: 2;
}
.fw-tl-left  .fw-tl-dot { right: -20px; }
.fw-tl-right .fw-tl-dot { left:  -20px; }

/* Karte */
.fw-tl-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 18px 20px;
    border-top: 3px solid var(--fw-red);
    transition: var(--transition);
}
.fw-tl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Pfeil zur Mitte */
.fw-tl-left .fw-tl-card::after {
    content: '';
    position: absolute;
    top: 22px; right: -8px;
    border: 8px solid transparent;
    border-left-color: #fff;
    border-right: none;
    filter: drop-shadow(2px 0 2px rgba(0,0,0,.06));
}
.fw-tl-right .fw-tl-card::after {
    content: '';
    position: absolute;
    top: 22px; left: -8px;
    border: 8px solid transparent;
    border-right-color: #fff;
    border-left: none;
    filter: drop-shadow(-2px 0 2px rgba(0,0,0,.06));
}

.fw-tl-year {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--fw-red);
    margin-bottom: 4px;
}
.fw-tl-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    color: var(--fw-dark);
    margin: 0 0 8px;
}
.fw-tl-body {
    font-size: .88rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* Mobil: einspaltig */
@media (max-width: 767px) {
    .fw-tl-line { left: 20px; }
    .fw-tl-item { width: 100%; padding-left: 54px; padding-right: 0; margin-left: 0 !important; }
    .fw-tl-left  .fw-tl-dot,
    .fw-tl-right .fw-tl-dot { left: 0; right: auto; }
    .fw-tl-left  .fw-tl-card::after { display: none; }
    .fw-tl-right .fw-tl-card::after {
        left: -8px; top: 22px;
        border-right-color: #fff;
        border-left: none;
    }
}

/* ---- Einsatz-Ticker (Startseite) -------------------------- */
.fw-ticker {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #fff;
}
.fw-ticker-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: var(--fw-text);
    transition: background .15s;
}
.fw-ticker-row:last-child { border-bottom: none; }
.fw-ticker-row:hover { background: #fff9f9; }
.fw-ticker-row:hover .fw-ticker-arrow { color: var(--fw-red); transform: translateX(3px); }

.fw-ticker-dot {
    width: 9px; height: 9px;
    background: var(--fw-red);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(201,1,1,.15);
}
.fw-ticker-date {
    font-size: .75rem;
    font-weight: 700;
    color: #999;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 110px;
}
.fw-ticker-title {
    font-weight: 700;
    font-size: .9rem;
    color: var(--fw-dark);
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.fw-ticker-addr {
    font-size: .72rem;
    color: #bbb;
    white-space: nowrap;
    flex-shrink: 0;
}
.fw-ticker-addr i { color: var(--fw-red); font-size: .65rem; margin-right: 3px; }
.fw-ticker-arrow {
    color: #ddd;
    font-size: .7rem;
    flex-shrink: 0;
    transition: color .15s, transform .2s;
}
@media (max-width: 575px) {
    .fw-ticker-addr { display: none; }
    .fw-ticker-date { min-width: 80px; font-size: .7rem; }
}

/* ---- Unwetterwarnung-Box (Startseite) -------------------- */
.fw-warnbox-wrap {
    margin: -20px 0 28px;
    position: relative;
    z-index: 20;
}
.fw-warnbox {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(120deg, #b91010 0%, #e23a1e 55%, #ff7a18 100%);
    background-size: 200% 100%;
    border-radius: 16px;
    padding: 18px 26px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 32px rgba(201,1,1,.35);
    position: relative;
    overflow: hidden;
    animation: warnGradient 6s ease infinite;
    transition: transform .2s, box-shadow .2s;
}
.fw-warnbox::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0,0,0,.06) 0 18px,
        transparent 18px 36px
    );
    pointer-events: none;
}
.fw-warnbox:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(201,1,1,.45);
    color: #fff;
}
@keyframes warnGradient {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Pulsierendes Icon */
.fw-warnbox-pulse {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.fw-warnbox-pulse::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    animation: warnPulse 1.8s ease-out infinite;
}
@keyframes warnPulse {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.6); opacity: 0;  }
}

.fw-warnbox-text { flex: 1; position: relative; z-index: 1; min-width: 0; }
.fw-warnbox-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.2;
    margin-bottom: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.fw-warnbox-sub {
    font-size: .82rem;
    opacity: .92;
}
.fw-warnbox-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .85rem;
    background: rgba(255,255,255,.2);
    padding: 9px 18px;
    border-radius: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: gap .2s, background .2s;
}
.fw-warnbox:hover .fw-warnbox-arrow { gap: 12px; background: rgba(255,255,255,.3); }

/* Schweregrad-Varianten */
.fw-warnbox.sev-extreme { background: linear-gradient(120deg, #7b00c8, #b91010, #e23a1e); }
.fw-warnbox.sev-minor   { background: linear-gradient(120deg, #d68800, #e0a800, #f1c40f); box-shadow:0 10px 32px rgba(224,168,0,.3); }
.fw-warnbox.sev-minor .fw-warnbox-title { color:#3a2800; text-shadow:none; }
.fw-warnbox.sev-minor .fw-warnbox-sub,
.fw-warnbox.sev-minor .fw-warnbox-arrow { color:#3a2800; }

@media (max-width: 575px) {
    .fw-warnbox { flex-direction: column; text-align: center; gap: 12px; padding: 18px; }
    .fw-warnbox-arrow { width: 100%; justify-content: center; }
}
