﻿html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    background: var(--lsfd-bg, #0a0a0f);
    font-family: "Montserrat", "Arial", sans-serif;
}
.lsfdwebsite {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}
/* --- LSFD HEADER MODERNISIERUNG --- */
.lsfd-header-outer {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}
.lsfd-logo-slot {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    left: 1.2rem;
    top: -34px;
    height: 80px;
    z-index: 20;
}
.lsfd-logo-img {
    height: calc(100% - 12px);
    margin: 6px 0;
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.95;
}
.lsfd-header-topbar {
    width: 100%;
    background: #660606;
    color: #fff;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.92rem;
    padding: 0.12rem 2.2rem 0.12rem 1.2rem;
    min-height: 32px;
    box-sizing: border-box;
    letter-spacing: 0.01em;
}
.lsfd-header-topbar-left {
    display: none;
}
.lsfd-header-topbar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.lsfd-header-topbar-right .lsfd-emergency-badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.lsfd-header-topbar-right .lsfd-social-icons {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.2rem;
}
.lsfd-header-main {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #660606;
    padding: 0 2rem;
    box-sizing: border-box;
    width: 100%;
    flex-shrink: 0;
    height: 44px;
    border-bottom: 1px solid rgba(241, 194, 78, 0.15);
}
.lsfd-logo-section {
    display: none;
}
.lsfd-nav-bar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.lsfd-nav-tab {
    color: rgba(255,255,255,0.82);
    padding: 0 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    height: 100%;
    font-family: "Montserrat", "Arial", sans-serif;
    transition: color 0.15s, border-color 0.15s;
    line-height: 1;
    box-sizing: border-box;
}
.lsfd-nav-tab:hover {
    color: #ffffff;
    border-bottom-color: rgba(241, 194, 78, 0.5);
    background: none;
}
.lsfd-nav-tab.is-active {
    color: #f1c24e;
    border-bottom-color: #f1c24e;
    background: none;
}
.lsfd-scroll-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
/* Burger immer ausblenden auf Desktop */
.lsfd-burger {
    display: none;
}
.lsfd-mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    /* Obere Leiste: Social + Notfall zentriert, Logo-Slot verstecken */
    .lsfd-header-topbar {
        padding: 0 0.8rem;
        justify-content: center;
        min-height: 36px;
        gap: 1rem;
    }
    .lsfd-logo-slot {
        display: none;
    }
    .lsfd-header-topbar-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin: 0;
    }
    .lsfd-header-topbar-right .lsfd-social-icons {
        margin-left: 0;
        gap: 0.4rem;
    }
    .lsfd-header-topbar-right .lsfd-emergency-badge {
        font-size: 0.78rem;
        gap: 0.3rem;
    }
    /* Untere Leiste: Logo zentriert, Burger rechts */
    .lsfd-header-main {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 0.8rem;
        height: 44px;
        position: relative;
    }
    .lsfd-logo-slot {
        display: flex;
        align-items: center;
        position: static;
        top: auto;
        height: auto;
    }
    .lsfd-logo-img {
        height: 32px;
        width: auto;
    }
    .lsfd-burger {
        position: absolute;
        left: 0.8rem;
    }
    .lsfd-nav-bar {
        display: none;
    }
    .lsfd-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        flex-shrink: 0;
        z-index: 20;
    }
    .lsfd-burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: transform 0.2s, opacity 0.2s;
    }
    .lsfd-burger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .lsfd-burger.open span:nth-child(2) {
        opacity: 0;
    }
    .lsfd-burger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .lsfd-mobile-nav {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #660606;
        z-index: 100;
        border-top: 1px solid rgba(241,194,78,0.15);
        box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    }
    .lsfd-mobile-nav.open {
        display: flex;
    }
    .lsfd-mobile-nav .lsfd-nav-tab {
        height: auto;
        padding: 0.85rem 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }
    .lsfd-mobile-nav .lsfd-nav-tab:last-child {
        border-bottom: none;
    }
}
/* Backend Footer Styles */
.backend-footer {
  text-align: center;
  width: 100vw;
  min-width: 100vw;
  clear: both;
  margin-top: 32px;
  left: 0;
  right: 0;
  position: relative;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0 0 18px 0;
}
.backend-footer .footer-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.18s;
}
.backend-footer .footer-link:hover {
  color: #c85c5c;
}
.backend-footer .footer-disclaimer {
  opacity: 0.7;
  margin-top: 5px;
  display: block;
  font-size: 0.98em;
  line-height: 1.5;
}
/* Icon-Label für Header-Icons (Tooltip bei Hover) */
.icon-label {
    display: none;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: #222;
    color: #fff;
    font-size: 0.72em;
    padding: 2px 7px;
    border-radius: 4px;
    margin-left: 8px;
    white-space: nowrap;
    z-index: 100;
    pointer-events: none;
}
.notification-btn:hover .icon-label,
.frontend-dropdown-toggle:hover .icon-label,
.user-avatar:hover .icon-label {
    display: inline-block;
}
.notification-btn, .frontend-dropdown-toggle, .user-avatar {
    position: relative;
}

/* ════════════════════════════════════════════════════
   LSFD DARK THEME – Startseite (index.php)
   Einheitliches Design passend zur Vue-App
════════════════════════════════════════════════════ */

:root {
    --lsfd-bg: #0a0a0f;
    --lsfd-panel: rgba(16, 9, 10, 0.75);
    --lsfd-panel-strong: rgba(22, 10, 12, 0.92);
    --lsfd-edge: rgba(255, 255, 255, 0.08);
    --lsfd-accent: #8c1118;
    --lsfd-accent-strong: #c21d2a;
    --lsfd-gold: #f1c24e;
    --lsfd-text: #f5efe7;
    --lsfd-muted: #c4b7ac;
    --lsfd-glow: rgba(194, 29, 42, 0.35);
}

body.lsfd-start {
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(140, 17, 24, 0.22), transparent 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(64, 8, 12, 0.28), transparent 55%),
        linear-gradient(165deg, #0b0b10 0%, #12090a 45%, #0c0b10 100%);
    min-height: 100vh;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: var(--lsfd-text);
    margin: 0;
    padding: 0;
}

body.lsfd-start .lsfdwebsite {
    background: transparent;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    overflow-x: hidden;
}

/* ── HEADER TOP ── */
.lsfd-header-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem 0 1rem;
    background: #660606;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.lsfd-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lsfd-header-right {
    position: absolute;
    right: 1.6rem;
    top: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-social-icons {
    display: flex;
    gap: 0.5rem;
}

.lsfd-social-icon {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #ffffff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s;
}

.lsfd-social-icon:hover {
    color: var(--lsfd-gold);
}

.lsfd-emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ── PAGE ── */
.lsfd-page {
    flex: 1;
    padding: 1.2rem 1.1rem 1.1rem;
}

/* ── MARQUEE ── */
.lsfd-marquee {
    margin: 0 0 1.4rem 0;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.92rem;
    background: rgba(116, 12, 18, 0.95);
    border: 1px solid rgba(241, 194, 78, 0.18);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.35), inset 0 0 18px rgba(194, 29, 42, 0.25);
    overflow: hidden;
    white-space: nowrap;
    font-family: "Montserrat", "Arial", sans-serif;
    color: #ffffff;
}

.lsfd-marquee-text {
    display: inline-block;
    animation: lsfd-marquee 18s linear infinite;
    will-change: transform;
}

@keyframes lsfd-marquee {
    0%   { transform: translate3d(100vw, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ── ABOUT ── */
.lsfd-about {
    padding: 1.6rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(18, 10, 12, 0.95), rgba(8, 6, 10, 0.9));
    border-left: 4px solid var(--lsfd-accent);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
    animation: lsfd-reveal 0.6s ease-out both;
}

.lsfd-about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.lsfd-about-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(140, 17, 24, 0.9);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
    font-size: 1.6rem;
    flex-shrink: 0;
}

.lsfd-about-title {
    color: var(--lsfd-gold);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
    font-family: "Copperplate Gothic Light", "Palatino Linotype", serif;
}

.lsfd-about-subtitle {
    color: var(--lsfd-muted);
    margin: 0.1rem 0 0;
    font-size: 0.88rem;
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem 1.4rem;
    margin-bottom: 1.2rem;
}

.lsfd-about-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lsfd-about-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(140, 17, 24, 0.9);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}

.lsfd-about-item h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--lsfd-text);
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-about-item p {
    margin: 0.1rem 0 0;
    font-size: 0.72rem;
    color: var(--lsfd-muted);
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-about-text {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--lsfd-muted);
    text-align: center;
    font-style: italic;
    font-family: "Montserrat", "Arial", sans-serif;
}

/* ── NEWS ── */
.lsfd-section {
    margin-top: 1.6rem;
}

.lsfd-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--lsfd-gold);
    text-align: center;
    font-family: "Copperplate Gothic Light", "Palatino Linotype", serif;
    margin-bottom: 0.3rem;
}

.lsfd-section-sub {
    text-align: center;
    font-size: 0.85rem;
    color: var(--lsfd-muted);
    margin-bottom: 1rem;
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.9rem;
}

.lsfd-news-item {
    border: 1px solid rgba(194, 29, 42, 0.45);
    background: rgba(8, 4, 5, 0.7);
    border-radius: 10px;
    padding: 0.9rem;
    display: grid;
    gap: 0.45rem;
    color: rgba(245, 239, 231, 0.75);
    font-size: 0.75rem;
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-news-item h3 {
    color: #f5efe7;
    font-size: 0.88rem;
    font-weight: 700;
    margin: 0;
}

.lsfd-news-meta {
    color: rgba(245, 239, 231, 0.6);
    font-size: 0.7rem;
}

.lsfd-news-excerpt {
    color: rgba(245, 239, 231, 0.75);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

.lsfd-news-link {
    justify-self: start;
    background: rgba(140, 17, 24, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    font-weight: 600;
    font-size: 0.72rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: "Montserrat", "Arial", sans-serif;
    transition: background 0.15s;
}

.lsfd-news-link:hover {
    background: rgba(194, 29, 42, 0.95);
    color: #ffffff;
}

.lsfd-no-data {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--lsfd-muted);
    font-size: 0.8rem;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(8, 4, 5, 0.5);
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-error {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    background: rgba(112, 12, 18, 0.25);
    border: 1px solid rgba(194, 29, 42, 0.6);
    color: #f7c9c9;
    font-size: 0.75rem;
    font-family: "Montserrat", "Arial", sans-serif;
}

/* ── FOOTER ── */
.lsfd-footer {
    margin-top: auto;
    padding: 1rem 0 1.2rem;
    background: #660606;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(245, 239, 231, 0.55);
    display: grid;
    gap: 0.25rem;
    box-sizing: border-box;
    font-family: "Montserrat", "Arial", sans-serif;
}

.lsfd-footer a {
    color: #ffffff;
    text-decoration: underline;
}

.lsfd-footer a:hover {
    color: var(--lsfd-gold);
}

.lsfd-footer-note {
    opacity: 0.8;
    font-size: 0.68rem;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
}

/* ── ANIMATIONS ── */
@keyframes lsfd-reveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── DARK THEME RESPONSIVE ── */
@media (max-width: 900px) {
    .lsfd-header-top {
        flex-direction: column;
        gap: 0.8rem;
        padding: 1rem;
    }
    .lsfd-header-right {
        position: static;
        flex-direction: column;
        gap: 0.6rem;
    }
    .lsfd-nav-bar {
        flex-wrap: wrap;
        justify-content: center;
    }
    .lsfd-about-header {
        flex-direction: column;
        text-align: center;
    }
    .lsfd-about-grid {
        grid-template-columns: 1fr;
    }
    .lsfd-news-grid {
        grid-template-columns: 1fr;
    }
}


/* ════════════════════════════════════════════════════
   LSFD DARK THEME – Alle Unterseiten (body.lsfd-dark)
════════════════════════════════════════════════════ */

body.lsfd-dark {
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(140, 17, 24, 0.22), transparent 55%),
        radial-gradient(120% 120% at 100% 0%, rgba(64, 8, 12, 0.28), transparent 55%),
        linear-gradient(165deg, #0b0b10 0%, #12090a 45%, #0c0b10 100%);
    height: 100vh;
    overflow: hidden;
    font-family: "Montserrat", "Arial", sans-serif;
    color: var(--lsfd-text);
    margin: 0;
    padding: 0;
}

body.lsfd-dark .lsfdwebsite {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

body.lsfd-dark .lsfd-scroll-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #660606 #1a0a0b;
}
body.lsfd-dark .lsfd-scroll-content::-webkit-scrollbar {
    width: 8px;
}
body.lsfd-dark .lsfd-scroll-content::-webkit-scrollbar-track {
    background: #1a0a0b;
}
body.lsfd-dark .lsfd-scroll-content::-webkit-scrollbar-thumb {
    background: #660606;
    border-radius: 4px;
}
body.lsfd-dark .lsfd-scroll-content::-webkit-scrollbar-thumb:hover {
    background: #8c1118;
}

/* ── Content-Wrapper ── */
body.lsfd-dark .content {
    flex: 1;
    padding: 1.6rem 2rem;
    color: var(--lsfd-text);
}

/* ── Breadcrumb ── */
body.lsfd-dark .breadcrumb a {
    color: var(--lsfd-gold) !important;
}
body.lsfd-dark .breadcrumb span {
    color: var(--lsfd-muted) !important;
}

/* ── Section-Header / Überschriften ── */
body.lsfd-dark .about-header,
body.lsfd-dark .section-header,
body.lsfd-dark .news-header,
body.lsfd-dark .team-header,
body.lsfd-dark .career-header,
body.lsfd-dark .location-header,
body.lsfd-dark .contact-header,
body.lsfd-dark .legal-header {
    color: var(--lsfd-gold);
    font-family: "Copperplate Gothic Light", "Palatino Linotype", serif;
}

body.lsfd-dark h2,
body.lsfd-dark h3,
body.lsfd-dark h4 {
    color: var(--lsfd-text);
}

body.lsfd-dark p {
    color: var(--lsfd-muted);
}

/* --- ABOUT-ITEMS KORREKTUR --- */
.lsfd-about-grid {
    align-items: stretch;
}
.lsfd-about-item {
    min-height: 72px;
    padding: 0.5rem 0.3rem;
    box-sizing: border-box;
    align-items: center;
}
.lsfd-about-item-icon {
    margin-right: 0.7rem;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lsfd-about-item > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.lsfd-about-item h4 {
    margin-bottom: 0.18rem;
}
.lsfd-about-item p {
    margin-top: 0;
}

/* --- FOOTER KORREKTUR --- */
.lsfd-footer {
    gap: 0.5rem;
}
.lsfd-footer-note {
    margin-top: 0.3rem;
    display: block;
    padding-top: 0.2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- NEWS/NO-DATA KORREKTUR --- */
.lsfd-news-grid {
    margin-bottom: 1.2rem;
}
.lsfd-no-data {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* ── Karten (Person, Stelle, Location, Info) ── */
body.lsfd-dark .person-card,
body.lsfd-dark .stellen-card,
body.lsfd-dark .location-card,
body.lsfd-dark .info-card,
body.lsfd-dark .station-details,
body.lsfd-dark .station-column,
body.lsfd-dark .tip-block,
body.lsfd-dark .form-section,
body.lsfd-dark .contact-box,
body.lsfd-dark .apply-box,
body.lsfd-dark .job-info-box,
body.lsfd-dark .job-section {
    background: rgba(18, 10, 12, 0.85);
    border-color: rgba(194, 29, 42, 0.4);
    color: var(--lsfd-text);
}

body.lsfd-dark .person-card h3,
body.lsfd-dark .stellen-card h3,
body.lsfd-dark .location-card h4,
body.lsfd-dark .info-card h4,
body.lsfd-dark .station-header h3,
body.lsfd-dark .station-column h4,
body.lsfd-dark .contact-box h3,
body.lsfd-dark .apply-box h3,
body.lsfd-dark .job-info-box h3,
body.lsfd-dark .job-section h2,
body.lsfd-dark .tip-block h4 {
    color: var(--lsfd-gold);
}

body.lsfd-dark .person-card p,
body.lsfd-dark .person-rank,
body.lsfd-dark .person-details,
body.lsfd-dark .person-details p,
body.lsfd-dark .stellen-card p,
body.lsfd-dark .location-details p,
body.lsfd-dark .station-column p,
body.lsfd-dark .info-card p,
body.lsfd-dark .tip-block p,
body.lsfd-dark .tip-block ul li,
body.lsfd-dark .contact-person {
    color: var(--lsfd-muted);
}

/* ── Location-Card hover/active ── */
body.lsfd-dark .location-card {
    background: rgba(18, 10, 12, 0.85);
    border: 1px solid rgba(194, 29, 42, 0.4);
    cursor: pointer;
    transition: all 0.2s;
}
body.lsfd-dark .location-card:hover,
body.lsfd-dark .location-card.active {
    background: rgba(140, 17, 24, 0.75);
    border-color: var(--lsfd-accent-strong);
}
body.lsfd-dark .location-icon i {
    color: var(--lsfd-gold);
}
body.lsfd-dark .location-card.active .location-icon i,
body.lsfd-dark .location-card:hover .location-icon i {
    color: #ffffff;
}

/* ── Specialty-Badges ── */
body.lsfd-dark .specialty-badge {
    background: rgba(140, 17, 24, 0.8);
    color: #fff;
    border: 1px solid rgba(194, 29, 42, 0.5);
}

/* ── Station-Details ── */
body.lsfd-dark .station-details {
    border: 1px solid rgba(194, 29, 42, 0.4);
    border-radius: 10px;
}
body.lsfd-dark .station-column {
    border-left-color: var(--lsfd-accent);
    border-radius: 8px;
}
body.lsfd-dark .station-column ul li {
    color: var(--lsfd-muted);
}
body.lsfd-dark .station-column ul li::before {
    color: var(--lsfd-gold);
}

/* ── Emergency Box ── */
body.lsfd-dark .emergency-box {
    background: rgba(140, 17, 24, 0.85);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(194, 29, 42, 0.5);
}

/* ── Formulare ── */
body.lsfd-dark .form-group label {
    color: var(--lsfd-text);
}
body.lsfd-dark .form-group input,
body.lsfd-dark .form-group select,
body.lsfd-dark .form-group textarea {
    background: rgba(10, 6, 8, 0.9);
    border-color: rgba(194, 29, 42, 0.4);
    color: var(--lsfd-text);
    font-family: "Montserrat", sans-serif;
}
body.lsfd-dark .form-group input:focus,
body.lsfd-dark .form-group select:focus,
body.lsfd-dark .form-group textarea:focus {
    border-color: var(--lsfd-gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(241, 194, 78, 0.15);
}
body.lsfd-dark .form-group input::placeholder,
body.lsfd-dark .form-group textarea::placeholder {
    color: rgba(196, 183, 172, 0.5);
}
body.lsfd-dark .form-group select option {
    background: #12090a;
    color: var(--lsfd-text);
}
body.lsfd-dark .form-group input[type="file"] {
    border: 1px dashed rgba(194, 29, 42, 0.5);
    background: rgba(10, 6, 8, 0.7);
    color: var(--lsfd-muted);
}

/* ── Application / Contact Seitenleiste ── */
body.lsfd-dark .application-form,
body.lsfd-dark .application-info-section,
body.lsfd-dark .application-section {
    background: rgba(18, 10, 12, 0.85);
    border-color: rgba(194, 29, 42, 0.4);
    color: var(--lsfd-text);
}
body.lsfd-dark .application-header {
    color: var(--lsfd-gold);
    border-bottom-color: rgba(241, 194, 78, 0.3);
}
body.lsfd-dark .application-info-section h3 {
    color: var(--lsfd-gold);
}

/* ── Job-Seiten ── */
body.lsfd-dark .job-title {
    color: var(--lsfd-gold);
}
body.lsfd-dark .job-meta span {
    background: rgba(18, 10, 12, 0.9);
    border-color: rgba(194, 29, 42, 0.4);
    color: var(--lsfd-muted);
}
body.lsfd-dark .job-section ul li {
    color: var(--lsfd-muted);
}
body.lsfd-dark .job-section ul li::before {
    color: var(--lsfd-gold);
}
body.lsfd-dark .step-content h4 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .step-content p {
    color: var(--lsfd-muted);
}
body.lsfd-dark .info-item {
    border-bottom-color: rgba(255, 255, 255, 0.08);
    color: var(--lsfd-muted);
}
body.lsfd-dark .info-item strong {
    color: var(--lsfd-text);
}

/* ── Buttons ── */
body.lsfd-dark .submit-btn,
body.lsfd-dark .stellen-link,
body.lsfd-dark .apply-btn,
body.lsfd-dark .cta-button {
    background: rgba(140, 17, 24, 0.9);
    border: 1px solid rgba(194, 29, 42, 0.6);
    color: #fff;
    transition: background 0.15s;
}
body.lsfd-dark .submit-btn:hover,
body.lsfd-dark .stellen-link:hover,
body.lsfd-dark .apply-btn:hover,
body.lsfd-dark .cta-button:hover {
    background: rgba(194, 29, 42, 0.95);
    color: #fff;
}
body.lsfd-dark .reset-btn {
    background: rgba(60, 60, 70, 0.8);
    color: var(--lsfd-muted);
    border: 1px solid rgba(255,255,255,0.1);
}
body.lsfd-dark .reset-btn:hover {
    background: rgba(80, 80, 90, 0.9);
}

/* ── Suche (Karriere) ── */
body.lsfd-dark .job-search {
    background: rgba(10, 6, 8, 0.9) !important;
    color: var(--lsfd-text) !important;
    border-color: rgba(194, 29, 42, 0.5) !important;
}
body.lsfd-dark .job-search::placeholder {
    color: rgba(196, 183, 172, 0.5) !important;
}

/* ── Benefits-Box ── */
body.lsfd-dark .benefits-box,
body.lsfd-dark .initiative-application-section {
    background: rgba(18, 10, 12, 0.85) !important;
    border-color: rgba(194, 29, 42, 0.4) !important;
}
body.lsfd-dark .benefits-box h3 {
    color: var(--lsfd-gold) !important;
    border-bottom-color: rgba(241, 194, 78, 0.3) !important;
}
body.lsfd-dark .benefits-box div[style*="background-color: #ffffff"],
body.lsfd-dark .benefits-box div[style*="background-color:#ffffff"] {
    background-color: rgba(10, 6, 8, 0.8) !important;
    border-left-color: rgba(194, 29, 42, 0.6) !important;
}
body.lsfd-dark .benefits-box span {
    color: var(--lsfd-muted) !important;
}

/* ── CTA-Section ── */
body.lsfd-dark .application-cta-section {
    background: rgba(18, 10, 12, 0.7);
    border-color: rgba(194, 29, 42, 0.4);
}
body.lsfd-dark .application-cta {
    background: rgba(10, 6, 8, 0.85);
    border-color: rgba(255, 255, 255, 0.06);
}
body.lsfd-dark .application-cta h3 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .application-cta p {
    color: var(--lsfd-muted);
}

/* ── Legal-Seiten ── */
body.lsfd-dark .legal-section p,
body.lsfd-dark .legal-content p,
body.lsfd-dark .contact-details p,
body.lsfd-dark .privacy-section p,
body.lsfd-dark .data-list li,
body.lsfd-dark .rights-list li {
    color: var(--lsfd-muted);
}
body.lsfd-dark .impressum-section h3,
body.lsfd-dark .privacy-section h3,
body.lsfd-dark .disclaimer-section h3 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .authority-contact,
body.lsfd-dark .privacy-officer {
    background: rgba(18, 10, 12, 0.85);
    border-left-color: var(--lsfd-accent);
}

/* ── News-Detail ── */
body.lsfd-dark .news-section {
    background: rgba(18, 10, 12, 0.85);
    border-left-color: var(--lsfd-accent);
    color: var(--lsfd-muted);
}
body.lsfd-dark .news-title {
    color: var(--lsfd-gold);
}
body.lsfd-dark .news-date {
    color: rgba(196, 183, 172, 0.6);
}

/* ── Team-Subheader ── */
body.lsfd-dark .team-subheader {
    color: var(--lsfd-gold);
}
body.lsfd-dark .responsibilities h4 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .responsibilities ul li {
    color: var(--lsfd-muted);
}
body.lsfd-dark .responsibilities ul li::before {
    color: var(--lsfd-gold);
}

/* ── Person-Card Details ── */
body.lsfd-dark .person-details a {
    color: var(--lsfd-gold);
}

/* ── Maintenance-Notice ── */
body.lsfd-dark .maintenance-notice {
    background: rgba(60, 45, 0, 0.5);
    border-color: rgba(241, 194, 78, 0.4);
    color: var(--lsfd-gold);
}

/* ── Notice-Box (Impressum, Datenschutz) ── */
body.lsfd-dark .notice-box {
    background: rgba(18, 10, 12, 0.85);
    border: 1px solid rgba(194, 29, 42, 0.4);
    color: var(--lsfd-muted);
}
body.lsfd-dark .notice-box.emergency {
    background: rgba(80, 10, 14, 0.5) !important;
    background-color: rgba(80, 10, 14, 0.5) !important;
    border: 1px solid rgba(194, 29, 42, 0.5) !important;
    color: var(--lsfd-muted) !important;
}
body.lsfd-dark .notice-content h4 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .notice-content p {
    color: var(--lsfd-muted);
}

/* ── Emergency-Reminder (Kontakt, Bewerbung) ── */
body.lsfd-dark .emergency-reminder {
    background: rgba(80, 10, 14, 0.5);
    border: 1px solid rgba(194, 29, 42, 0.4);
    color: var(--lsfd-muted);
}
body.lsfd-dark .emergency-reminder strong {
    color: var(--lsfd-text);
}

/* ── Version-Info ── */
body.lsfd-dark .version-info {
    border-top-color: rgba(255, 255, 255, 0.08);
}
body.lsfd-dark .version-info p {
    color: var(--lsfd-muted);
}

/* ── No-Data / Error ── */
body.lsfd-dark .no-data,
body.lsfd-dark .error-message {
    color: var(--lsfd-muted);
    background: rgba(18, 10, 12, 0.7);
    border: 1px solid rgba(194, 29, 42, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

/* ── Checkbox ── */
body.lsfd-dark .checkmark {
    border-color: rgba(194, 29, 42, 0.6);
    background: rgba(10, 6, 8, 0.9);
}
body.lsfd-dark .checkbox-label,
body.lsfd-dark .checkbox-label-simple {
    color: var(--lsfd-muted);
}
body.lsfd-dark input[type="checkbox"]:checked + .checkmark {
    background: rgba(140, 17, 24, 0.5);
}

/* ── Kontakt-Infos ── */
body.lsfd-dark .contact-info-section h3,
body.lsfd-dark .info-block h4 {
    color: var(--lsfd-gold);
}
body.lsfd-dark .info-block p {
    color: var(--lsfd-muted);
}
body.lsfd-dark .social-link {
    color: var(--lsfd-gold);
}
body.lsfd-dark .emergency-contact {
    background: rgba(140, 17, 24, 0.8);
    border: 1px solid rgba(194, 29, 42, 0.5);
}

/* ── Responsive Dark ── */
@media (max-width: 900px) {
    body.lsfd-dark .content {
        padding: 1rem;
    }
}

/* ════════════════════════════════════════════════════
   LAYOUT STYLES (Grid, Flex, Karten, Formulare)
════════════════════════════════════════════════════ */

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

html { overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.team-section { margin-bottom: 40px; }
.team-subheader {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}
.person-card {
    border: 2px solid rgba(194, 29, 42, 0.4);
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-radius: 8px;
}
.person-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid rgba(194, 29, 42, 0.5);
    border-radius: 4px;
    flex-shrink: 0;
}
.person-info { flex: 1; }
.person-rank { font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.person-details { font-size: 0.9rem; margin-bottom: 15px; }
.person-details p { margin-bottom: 5px; }
.responsibilities h4 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }
.responsibilities ul { list-style: none; padding-left: 0; }
.responsibilities ul li { margin-bottom: 5px; padding-left: 15px; position: relative; }
.responsibilities ul li::before { content: "•"; position: absolute; left: 0; font-weight: bold; }

/* ── Karriere ── */
.career-section { padding: 40px; text-align: center; }
.career-header { font-size: 2rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.job-search {
    padding: 12px 15px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    width: 300px;
    margin: 0 auto 30px auto;
    display: block;
}
.stellen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stellen-card { border: 2px solid rgba(194,29,42,0.4); padding: 20px; border-radius: 8px; text-align: left; }
.stellen-card h3 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }
.stellen-card p { margin-bottom: 15px; line-height: 1.6; }
.stellen-link {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
}
.application-cta-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    padding: 40px;
    border: 2px solid rgba(194,29,42,0.4);
    border-radius: 10px;
}
.application-cta { padding: 30px; border-radius: 8px; text-align: center; }
.application-cta h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 15px; }
.application-cta p { margin-bottom: 25px; line-height: 1.6; }
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* ── Standorte ── */
.location-section { padding: 40px; }
.location-header { font-size: 2rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.location-card {
    border: 2px solid rgba(194,29,42,0.4);
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 8px;
}
.location-icon { margin-bottom: 15px; }
.location-icon i { font-size: 2rem; transition: color 0.3s ease; }
.location-details h4 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.location-details p { font-size: 0.9rem; margin-bottom: 10px; opacity: 0.8; }
.location-status {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 3px;
}
.location-status.online { background-color: #28a745; color: white; }
.location-status.maintenance { background-color: #ffc107; color: #333; }
.station-details { display: none; margin-top: 30px; padding: 30px; border-radius: 8px; }
.station-details.active { display: block; }
.station-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 10px; }
.station-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 25px; }
.station-column { padding: 20px; border-radius: 5px; border-left: 4px solid; }
.station-column h4 { font-size: 1.1rem; margin-bottom: 15px; font-weight: 600; }
.station-column p { margin-bottom: 8px; line-height: 1.5; }
.station-column ul { list-style: none; padding: 0; }
.station-column ul li { padding: 5px 0; padding-left: 20px; position: relative; }
.station-column ul li::before { content: "•"; position: absolute; left: 0; font-weight: bold; }
.station-badge { padding: 5px 12px; color: white; font-size: 0.9rem; font-weight: 600; border-radius: 3px; }
.station-badge.main { background-color: #660606; }
.station-badge.rescue { background-color: #28a745; }
.station-badge.air { background-color: #007bff; }
.station-badge.marine { background-color: #17a2b8; }
.specialty-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.specialty-badge { padding: 6px 12px; font-size: 0.85rem; font-weight: 600; border-radius: 3px; }
.maintenance-notice {
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 5px;
}
.emergency-info { text-align: center; margin-top: 50px; }
.emergency-box {
    display: inline-block;
    padding: 25px 35px;
    text-align: center;
    border-radius: 5px;
}
.emergency-box i { font-size: 2rem; margin-bottom: 15px; display: block; }
.emergency-box h4 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
.emergency-box p { margin-bottom: 5px; }

/* ── Kontakt ── */
.contact-section { padding: 40px; }
.contact-header { font-size: 2rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.contact-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-info-section h3 { font-size: 1.3rem; margin-bottom: 20px; font-weight: 600; }
.info-block { margin-bottom: 25px; }
.info-block h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.info-block p { line-height: 1.6; margin-bottom: 5px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-link { text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color 0.3s ease; }
.emergency-contact { padding: 15px; text-align: center; margin-top: 20px; }
.emergency-reminder {
    padding: 15px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid;
}
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.info-card { border: 2px solid rgba(194,29,42,0.4); padding: 20px; text-align: center; border-radius: 8px; }
.info-card i { font-size: 2rem; margin-bottom: 15px; display: block; }
.info-card h4 { font-size: 1.2rem; margin-bottom: 10px; font-weight: 600; }

/* ── Formulare ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; font-size: 14px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(194,29,42,0.4);
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.form-actions { display: flex; gap: 15px; }
.submit-btn, .reset-btn {
    padding: 12px 24px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
}
.checkbox-label, .checkbox-label-simple {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 5px;
}
.checkbox-label-simple input[type="checkbox"] {
    display: block;
    width: 18px;
    height: 18px;
    margin: 2px 0 0 0;
    cursor: pointer;
    flex-shrink: 0;
}
.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 3px;
}

/* ── Bewerbung ── */
.application-section { padding: 40px; border-radius: 15px; margin: 20px auto; }
.application-header { font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 3px solid; }
.application-intro { text-align: center; margin-bottom: 40px; }
.application-container { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 30px; }
.application-form { padding: 30px; border: 2px solid; border-radius: 10px; }
.application-info-section { padding: 30px; border: 2px solid; border-radius: 10px; height: fit-content; position: sticky; top: 20px; }
.application-info-section h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 25px; text-align: center; }
.form-section { margin-bottom: 40px; padding: 25px; border: 1px solid; border-radius: 8px; }
.form-section h4 { font-size: 1.3rem; font-weight: 600; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid; display: flex; align-items: center; gap: 10px; }
.tip-block { margin-bottom: 25px; padding: 20px; border: 1px solid; border-radius: 8px; }
.tip-block h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.tip-block ul { list-style: none; padding: 0; margin: 10px 0; }
.tip-block ul li { padding: 4px 0 4px 20px; position: relative; }
.tip-block ul li::before { content: "•"; position: absolute; left: 0; font-weight: bold; }

/* ── Job-Detail ── */
.job-detail-section { padding: 40px; max-width: 1000px; margin: 0 auto; }
.job-title { font-size: 2.5rem; font-weight: 700; margin: 20px 0; font-family: 'Montserrat', sans-serif; }
.job-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.job-meta span { padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; border: 1px solid; }
.job-content { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-top: 30px; }
.job-sidebar { display: flex; flex-direction: column; gap: 30px; }
.contact-box, .apply-box, .job-info-box { padding: 25px; border: 2px solid; border-radius: 5px; }
.contact-box h3, .apply-box h3, .job-info-box h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 15px; }
.job-section { margin-bottom: 40px; padding: 30px; border: 2px solid; border-radius: 5px; }
.job-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid; }
.job-section ul { list-style: none; padding: 0; }
.job-section ul li { padding: 8px 0 8px 25px; position: relative; line-height: 1.6; }
.job-section ul li::before { content: "✓"; position: absolute; left: 0; font-weight: bold; font-size: 14px; }
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; align-items: flex-start; gap: 15px; }
.step-number { width: 40px; height: 40px; background-color: #660606; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.step-content h4 { font-weight: 600; margin-bottom: 5px; }
.apply-btn { display: inline-block; padding: 12px 24px; text-decoration: none; font-weight: 600; border-radius: 5px; margin: 15px 0; transition: all 0.3s ease; }
.info-item { padding: 8px 0; border-bottom: 1px solid; }
.info-item:last-child { border-bottom: none; }

/* ── Legal ── */
.legal-section { padding: 40px; }
.legal-header { font-size: 2rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.legal-content { max-width: 800px; margin: 0 auto; }
.impressum-section, .privacy-section, .disclaimer-section { margin-bottom: 30px; }
.impressum-section h3, .privacy-section h3, .disclaimer-section h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 600; }
.legal-content p, .contact-details p { line-height: 1.8; margin-bottom: 10px; }
.data-list, .rights-list { padding-left: 20px; margin-bottom: 15px; }
.data-list li, .rights-list li { margin-bottom: 8px; line-height: 1.6; }
.authority-contact, .privacy-officer { padding: 20px; margin: 20px 0; border-left: 4px solid; }
.notice-box { padding: 20px; margin: 20px 0; display: flex; align-items: center; gap: 15px; border-radius: 5px; border: 1px solid; }
.notice-box i { font-size: 1.5rem; flex-shrink: 0; }
.notice-content h4 { margin-bottom: 8px; font-weight: 600; }
.version-info { margin-top: 40px; padding-top: 20px; border-top: 1px solid; text-align: center; }

/* ── News-Detail ── */
.news-section { padding: 25px; border-left: 5px solid; font-size: 16px; line-height: 1.8; margin-top: 20px; border-radius: 5px; }
.news-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 10px; }
.news-date { font-size: 0.9rem; margin-bottom: 10px; }

/* ── Breadcrumb ── */
.breadcrumb-container { max-width: 100%; padding: 20px 20px 0 20px; }
.breadcrumb { margin-bottom: 30px; font-size: 14px; }

/* ── Benefits-Box ── */
.benefits-box { margin-top: 40px; padding: 35px; border: 3px solid; font-family: 'Montserrat', sans-serif; border-radius: 8px; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .team-grid, .stellen-grid, .location-grid, .station-grid, .info-cards { grid-template-columns: 1fr; }
    .contact-container, .application-container, .job-content { grid-template-columns: 1fr; }
    .application-cta-section { grid-template-columns: 1fr; padding: 20px; }
    .person-card { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
    .form-actions { flex-direction: column; }
    .job-search { width: 100%; }
    .header-top { flex-direction: column; padding: 15px; }
    .lsfd-header-right { position: static; flex-direction: column; gap: 0.6rem; }
    .lsfd-nav-bar { flex-wrap: wrap; }

    /* Content Mobile-Fix */
    .content { padding: 1rem !important; }
    .career-section, .legal-section, .team-section,
    .location-section, .contact-section, .news-section-wrapper { padding: 1rem !important; }
    .benefits-box { padding: 20px !important; }
    .benefits-box > div { grid-template-columns: 1fr !important; }
    .benefits-box > div > div { min-width: 0 !important; width: 100% !important; box-sizing: border-box !important; }
    .benefits-box span { word-break: break-word !important; overflow-wrap: break-word !important; white-space: normal !important; }
    .stellen-card, .person-card, .location-card { min-width: 0; width: 100%; box-sizing: border-box; }
    * { max-width: 100%; box-sizing: border-box; word-break: break-word; overflow-wrap: break-word; }
}

/* ── Globale weiße Hintergründe überschreiben ── */
body.lsfd-dark .news-item,
body.lsfd-dark .person-card,
body.lsfd-dark .stellen-card,
body.lsfd-dark .location-card,
body.lsfd-dark .info-card,
body.lsfd-dark .station-details,
body.lsfd-dark .station-column,
body.lsfd-dark .tip-block,
body.lsfd-dark .form-section,
body.lsfd-dark .contact-box,
body.lsfd-dark .apply-box,
body.lsfd-dark .job-info-box,
body.lsfd-dark .job-section,
body.lsfd-dark .job-main,
body.lsfd-dark .application-form,
body.lsfd-dark .application-form-section,
body.lsfd-dark .application-section,
body.lsfd-dark .application-cta,
body.lsfd-dark .application-cta-section,
body.lsfd-dark .contact-container,
body.lsfd-dark .contact-info-section,
body.lsfd-dark .legal-section,
body.lsfd-dark .legal-content,
body.lsfd-dark .checkmark {
    background-color: transparent !important;
    background: rgba(18, 10, 12, 0.85) !important;
}
