/*
Theme Name: FFW Lastrup
Theme URI: https://www.ffw-lastrup.de
Author: FFW Lastrup
Description: Modernes WordPress-Theme fuer die Freiwillige Feuerwehr Lastrup
Version: 4.0
License: GNU General Public License v2 or later
Text Domain: ffw-lastrup
*/

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

:root {
  --red:      #CC1010;
  --red-light:#e82020;
  --charcoal: #1a1a1a;
  --mid:      #2e2e2e;
  --mid2:     #383838;
  --white:    #ffffff;
  --border:   rgba(255,255,255,0.08);
  --text-muted: rgba(255,255,255,0.55);
  --text-faint: rgba(255,255,255,0.4);
  --header-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 300;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* Prevent scroll when menu is open */
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

/* ─── SKIP LINK (A11y) ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100000;
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ─── NAV ─── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: var(--header-height);
  background: var(--red);
  border-bottom: none;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

/* Scroll-Zustand per JS-Klasse statt inline-style */
#site-header.header-scrolled {
  background: rgba(12,12,12,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.site-branding { display: flex; align-items: center; gap: 12px; }

.site-branding .dot {
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s;
}

/* Dot wird rot wenn Header dunkel wird */
#site-header.header-scrolled .dot { background: var(--red); }

.site-title a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

#site-navigation { display: flex; align-items: center; }
#site-navigation ul { display: flex; gap: 36px; align-items: center; }
#site-navigation ul li { position: relative; }

#site-navigation ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  padding: 8px 0;
  display: block;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a { color: var(--white); }

/* Dropdown Level 2 */
#site-navigation ul ul {
  position: absolute;
  top: 100%; left: 0;
  min-width: 220px;
  background: #111111;
  border-top: 3px solid rgba(255,255,255,0.4);
  padding: 4px 0;
  flex-direction: column; gap: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
  z-index: 99999;
}

/* Dropdown Level 3 — rechts aufgehen */
#site-navigation ul ul ul {
  top: -7px;
  left: 100%;
  border-top: none;
  border-left: 3px solid var(--red);
  transform: translateX(-4px);
}

#site-navigation ul li:hover > ul {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

#site-navigation ul ul li:hover > ul {
  opacity: 1; visibility: visible;
  transform: translateX(0);
  pointer-events: all;
}

#site-navigation ul ul li a {
  padding: 13px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.1em;
  display: block;
}
#site-navigation ul ul li:last-child a { border-bottom: none; }
#site-navigation ul ul li a:hover {
  background: var(--red);
  color: #ffffff;
}

/* Pfeil-Indikator bei Elementen mit Untermenü */
#site-navigation ul ul li.menu-item-has-children > a::after {
  content: ' ›';
  float: right;
  opacity: 0.5;
}

/* ─── HAMBURGER BUTTON ─── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 20px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* Hamburger → X Animation */
.menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE OVERLAY ─── */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.menu-overlay.visible {
  opacity: 1;
}

/* ─── SUBMENU TOGGLE BUTTON (Accordion, mobil) ─── */
.submenu-toggle {
  display: none; /* nur auf Mobil sichtbar */
  background: none;
  border: none;
  color: var(--text-faint);
  cursor: pointer;
  padding: 12px 16px;
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.3s;
  -webkit-tap-highlight-color: transparent;
}

.submenu-toggle svg {
  transition: transform 0.3s ease;
}

.submenu-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.submenu-toggle[aria-expanded="true"] {
  color: var(--red);
}

/* ─── HERO ─── */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 80px 80px;
  animation: fadeUp 0.8s ease both;
}

.hero-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 800px;
  color: var(--white);
}

.hero-title em { font-style: normal; color: var(--red); }

.hero-sub {
  margin-top: 28px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-sub span { color: rgba(255,255,255,0.25); margin: 0 10px; }

.hero-cta { margin-top: 44px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── STATS ─── */
.stats-bar {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  background: rgba(10,10,10,0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.stat { padding: 28px 36px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-white {
  display: inline-flex;
  align-items: center; gap: 12px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--red);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.15s;
}
.btn-white:hover { transform: translateY(-2px); }

/* ─── SECTIONS ─── */
.section-wrap { padding: 100px 80px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  color: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 20px;
}
.section-header .section-title { margin-bottom: 0; }

/* ─── AKTUELLES GRID ─── */
.aktuelles-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2px;
}

.post-card {
  background: var(--mid);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  color: inherit;
}
.post-card:hover { background: var(--mid2); }

/* ── Featured Card (erste Karte, Desktop) ── */
.aktuelles-grid .post-card:first-child { grid-row: span 2; }

.aktuelles-grid .post-card:first-child .post-card-thumb {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
}

.aktuelles-grid .post-card:first-child .post-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 25%, rgba(10,10,10,0.1) 100%);
  z-index: 1;
}

.aktuelles-grid .post-card:first-child .post-card-inner--auto {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.aktuelles-grid .post-card:first-child .post-title { font-size: 2rem; }

/* ── Kleine Karten ── */
.post-card--small { display: flex; flex-direction: column; }

.post-card-thumb {
  height: 160px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.3s;
  filter: grayscale(15%);
  flex-shrink: 0;
}

.post-card--small:hover .post-card-thumb {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.post-card-inner {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.post-card-inner--auto {
  min-height: unset;
  height: auto;
  padding: 20px 24px 24px;
  flex: 1;
}

.post-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 10px;
  color: var(--white);
}

.post-meta {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.post-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.3);
  transition: all 0.2s;
}

.post-card:hover .post-arrow {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,16,16,0.08);
}

/* ─── EINSAETZE ─── */
.einsaetze-section { background: var(--mid); }

.einsatz-list { display: flex; flex-direction: column; gap: 2px; }

.einsatz-row {
  display: grid;
  grid-template-columns: 120px 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.einsatz-row:hover {
  background: rgba(255,255,255,0.07);
  border-left-color: var(--red);
}

.einsatz-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  text-transform: uppercase;
}

.einsatz-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  color: var(--red); letter-spacing: 0.1em;
}

.einsatz-title { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.85); }

.einsatz-fahrzeug {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: right; white-space: nowrap;
}

/* ─── INSTAGRAM ─── */
.insta-section { background: var(--charcoal); padding: 100px 80px; }

.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap; gap: 20px;
}
.insta-header .section-title { margin-bottom: 0; }

.insta-section #sbi,
.insta-section .sbi_feed_cont { background: transparent !important; padding: 0 !important; margin: 0 !important; }
.insta-section .sbi_item { transition: transform 0.4s, filter 0.3s !important; filter: grayscale(15%) !important; }
.insta-section .sbi_item:hover { transform: scale(1.03) !important; filter: grayscale(0%) !important; }
.insta-section .sbi_photo_wrap,
.insta-section .sbi_photo { border-radius: 0 !important; }

/* ─── MITMACHEN ─── */
.join-section {
  background: var(--red);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.join-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
}

.join-sub {
  margin-top: 16px;
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 420px; line-height: 1.6;
}

/* ─── SINGLE POST ─── */
.single-post-wrap { max-width: 860px; margin: 0 auto; padding: 100px 40px 80px; }
.single-post-header { margin-bottom: 48px; }
.single-post-header .post-tag { margin-bottom: 16px; }

.single-post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}

.single-post-meta {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.single-post-thumbnail { width: 100%; max-height: 500px; object-fit: cover; margin-bottom: 52px; }

.single-post-content { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.8); }
.single-post-content p { margin-bottom: 1.5em; }
.single-post-content h2, .single-post-content h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; color: var(--white); margin: 2em 0 0.8em; }
.single-post-content h2 { font-size: 1.6rem; }
.single-post-content h3 { font-size: 1.2rem; }
.single-post-content ul { margin: 1em 0 1em 1.5em; list-style: disc; }
.single-post-content ol { margin: 1em 0 1em 1.5em; list-style: decimal; }
.single-post-content li { margin-bottom: 0.4em; color: rgba(255,255,255,0.75); }
.single-post-content strong { color: var(--white); font-weight: 600; }
.single-post-content a { color: var(--red); }
.single-post-content img { max-width: 100%; margin: 2em 0; border: 1px solid var(--border); }

/* ─── BACK LINK ─── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
  transition: color 0.2s;
  cursor: pointer;
}
.back-link:hover { color: var(--white); }

/* ─── SEITEN ─── */
.page-wrap { max-width: 960px; margin: 0 auto; padding: 100px 40px 80px; }

.page-header-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.page-content { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.78); }
.page-content p { margin-bottom: 1.5em; }
.page-content h2, .page-content h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; color: var(--white); margin: 2em 0 0.8em; }
.page-content h2 { font-size: 1.6rem; }
.page-content h3 { font-size: 1.2rem; }
.page-content ul { margin: 1em 0 1em 1.5em; list-style: disc; }
.page-content ol { margin: 1em 0 1em 1.5em; list-style: decimal; }
.page-content li { margin-bottom: 0.5em; color: rgba(255,255,255,0.72); }
.page-content strong { color: var(--white); font-weight: 600; }
.page-content a { color: var(--red); }
.page-content img { margin: 2em 0; border: 1px solid var(--border); }

/* ─── NINA WARNMELDUNGEN ─── */
/* Warnungen aktiv */
.nina-has-warnings {
  background: #1c1200;
  border-bottom: 1px solid rgba(255,180,0,0.15);
}

/* Keine Warnungen — dezenter grüner Zustand */
.nina-no-warnings {
  background: var(--mid);
  border-bottom: 1px solid var(--border);
}

.nina-header-ok {
  color: #4caf50;
}

.nina-ok-text {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
}

.nina-inner.nina-ok {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nina-inner {
  padding: 20px 80px;
}

.nina-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb400;
  margin-bottom: 14px;
}

.nina-warn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin-bottom: 4px;
  border-left: 3px solid;
  background: rgba(255,255,255,0.03);
}

.nina-warn-minor {
  border-left-color: #f0c040;
  background: rgba(240,192,64,0.06);
}

.nina-warn-moderate {
  border-left-color: #f08c00;
  background: rgba(240,140,0,0.08);
}

.nina-warn-severe {
  border-left-color: #cc1010;
  background: rgba(204,16,16,0.1);
}

.nina-warn-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nina-warn-text {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

/* ─── WETTER-BAR ─── */
.wetter-bar {
  background: var(--mid);
  border-bottom: 1px solid var(--border);
}

.wetter-bar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 80px;
  flex-wrap: wrap;
}

.wetter-loading {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}

.wetter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wetter-main {
  gap: 12px;
}

.wetter-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.wetter-temp {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.wetter-desc {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.wetter-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.wetter-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.wetter-value small {
  font-weight: 400;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

.wetter-alert {
  color: var(--red);
}
.wetter-alert .wetter-label {
  color: var(--red);
}
.wetter-alert .wetter-value {
  color: var(--red);
  font-weight: 900;
}

.wetter-location .wetter-label {
  color: rgba(255,255,255,0.2);
  font-size: 0.6rem;
}

/* Divider zwischen Wetter-Items */
.wetter-item + .wetter-item::before {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  margin-right: 0;
  flex-shrink: 0;
}

.wetter-main::before { display: none !important; }

/* ─── FÖRDERVEREIN ─── */
.foerder-section {
  background: var(--charcoal);
  padding: 80px;
  border-top: 1px solid var(--border);
}

.foerder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.foerder-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.foerder-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 20px;
}

.foerder-desc {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.foerder-bank {
  background: var(--mid);
  padding: 32px;
  border-left: 4px solid var(--red);
}

.foerder-bank-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.foerder-bank-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.foerder-bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.foerder-bank-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.foerder-bank-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}

.foerder-bank-hint {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-style: italic;
}

.foerder-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
  transition: color 0.2s;
}
.foerder-link:hover { color: var(--red-light); }

/* ─── COOKIE CONSENT BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
  min-width: 280px;
}

.cookie-banner-text strong {
  color: var(--white);
  font-weight: 600;
}

.cookie-banner-text a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cookie-btn-accept {
  background: var(--red);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* ─── NOTRUF-BANNER ─── */
.notruf-banner {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 80px;
}

.notruf-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.notruf-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.notruf-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  transition: color 0.2s;
}

.notruf-number:hover {
  color: var(--red-light);
}

.notruf-text {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* ─── FOOTER ─── */
#site-footer {
  background: #111111;
  padding: 60px 80px 40px;
  border-top: 1px solid var(--border);
}

.footer-grid-4 { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 1.3rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px; line-height: 1.2;
  color: var(--white);
}

.footer-desc { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.7; }

.footer-motto {
  display: inline-block; margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-social-link:hover {
  color: var(--white);
}

.footer-social-link svg {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-social-link:hover svg {
  opacity: 1;
}

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* Adresse & Kontakt */
.footer-address {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  margin-bottom: 14px;
}

.footer-contact {
  margin-bottom: 18px;
}

.footer-contact a {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--white); }

.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}

.footer-map-link:hover { color: var(--red-light); }

.footer-map-icon {
  display: flex;
  align-items: center;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em; flex-wrap: wrap; gap: 10px;
}

.red-dot {
  display: inline-block; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  margin: 0 8px; vertical-align: middle;
}

/* ─── FUHRPARK ─── */
.fuhrpark-section { background: var(--charcoal); }

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

.fahrzeug-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--mid);
  transition: background 0.2s;
  overflow: hidden;
}

.fahrzeug-card:hover { background: var(--mid2); }

.fahrzeug-img {
  height: 210px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(20%);
  transition: filter 0.3s, transform 0.4s;
}

.fahrzeug-card:hover .fahrzeug-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.fahrzeug-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

.fahrzeug-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: 12px;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
}

.fahrzeug-card:hover .fahrzeug-overlay { background: rgba(204,16,16,0.15); }

.fahrzeug-link-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.fahrzeug-card:hover .fahrzeug-link-label {
  opacity: 1; transform: translateY(0);
}

.fahrzeug-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--white);
  padding: 14px 18px 16px;
  border-top: 2px solid transparent;
  transition: border-color 0.2s;
  line-height: 1.2;
}

.fahrzeug-card:hover .fahrzeug-name { border-top-color: var(--red); }

/* ─── ARCHIVE CARDS ─── */
.archive-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.archive-card {
  background: var(--mid);
  overflow: hidden;
  position: relative;
  display: block;
  color: inherit;
  transition: background 0.2s;
}

.archive-card:hover { background: var(--mid2); }

.archive-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.3s;
  filter: grayscale(15%);
}

.archive-card:hover .archive-card-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.archive-card-img--empty {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive-card-img--empty span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.1em;
}

.archive-card-body {
  padding: 24px 28px 28px;
}

.archive-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.archive-card-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ─── ÜBERSICHTSSEITE (Unterseiten-Karten) ─── */
.uebersicht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.uebersicht-card {
  background: var(--mid);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  transition: background 0.2s;
  position: relative;
}
.uebersicht-card:hover { background: var(--mid2); }

/* Karte MIT Bild */
.uebersicht-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(15%);
  transition: filter 0.3s, transform 0.4s;
}

.uebersicht-card:hover .uebersicht-card-img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.uebersicht-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 12px;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
}

.uebersicht-card:hover .uebersicht-card-overlay {
  background: rgba(204,16,16,0.12);
}

.uebersicht-card-arrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.uebersicht-card:hover .uebersicht-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Karte OHNE Bild */
.uebersicht-card-noimg {
  height: 140px;
  background: linear-gradient(135deg, var(--mid2) 0%, #1e1e1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 2px solid var(--red);
}

.uebersicht-card-initials {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: 0.1em;
  user-select: none;
}

/* Karten-Inhalt */
.uebersicht-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.uebersicht-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}

.uebersicht-card-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 12px;
  margin-bottom: 16px;
  flex: 1;
}

.uebersicht-card-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: color 0.2s;
}

.uebersicht-card:hover .uebersicht-card-more {
  color: var(--red-light);
}

/* ─── JUGENDFEUERWEHR BEITRÄGE ─── */
.jf-posts-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.jf-post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--mid);
  overflow: hidden;
  color: inherit;
  transition: background 0.2s;
  border-left: 3px solid transparent;
}
.jf-post-card:hover {
  background: var(--mid2);
  border-left-color: var(--red);
}

.jf-post-img {
  height: 100%;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%);
  transition: filter 0.3s;
}
.jf-post-card:hover .jf-post-img {
  filter: grayscale(0%);
}

.jf-post-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jf-post-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.jf-post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}

.jf-post-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 14px;
}

.jf-post-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}
.jf-post-card:hover .jf-post-more { color: var(--red-light); }

/* ─── PRESSE / MEDIENBERICHTE ─── */
.presse-archive-wrap { max-width: 1400px; margin: 0 auto; }

.presse-intro {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.presse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.presse-card {
  background: var(--mid);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  transition: background 0.2s;
  position: relative;
}
.presse-card:hover { background: var(--mid2); }

.presse-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(10%);
  transition: filter 0.3s, transform 0.4s;
}

.presse-card:hover .presse-card-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.presse-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presse-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.presse-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.presse-card-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.presse-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}

.presse-card-excerpt {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.presse-card-link {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
  margin-top: auto;
}

.presse-card:hover .presse-card-link { color: var(--red-light); }

/* Pressekontakt-Box */
.presse-kontakt {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.presse-kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.presse-kontakt-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.presse-kontakt-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}

.presse-kontakt-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.presse-kontakt-card {
  background: var(--mid);
  padding: 32px;
  border-left: 4px solid var(--red);
}

.presse-kontakt-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.presse-kontakt-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.presse-kontakt-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.presse-kontakt-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.presse-kontakt-link:hover { color: var(--white); }

.presse-kontakt-link svg { flex-shrink: 0; opacity: 0.6; transition: opacity 0.2s; }
.presse-kontakt-link:hover svg { opacity: 1; }

/* ─── SEITEN-SPEZIFISCHE STYLES ─── */
/* (Kommando, ABC-Dienst, Fernmelder, Wir suchen Dich, JF-Beiträge) */

/* ── Gemeinsame Elemente ── */
.fw-highlight, .abc-highlight, .fm-highlight, .wsd-highlight, .jf-highlight {
  background: linear-gradient(135deg, #CC1010 0%, #a00d0d 100%);
  padding: 32px 36px;
  margin-bottom: 40px;
}
.fw-highlight p, .abc-highlight p, .fm-highlight p, .jf-highlight p {
  font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,0.9) !important; line-height: 1.8; margin: 0;
}
.fw-highlight strong, .abc-highlight strong, .fm-highlight strong, .jf-highlight strong { color: #fff !important; font-weight: 700; }

.fw-body p, .abc-body p, .fm-body p, .jf-body p {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.75) !important; line-height: 1.85; margin-bottom: 1.5em;
}

.abc-label, .fm-label {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #CC1010; margin-bottom: 12px;
}
.abc h2, .fm h2 {
  font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.6rem !important; font-weight: 900 !important;
  text-transform: uppercase; color: #fff; margin: 0 0 24px 0 !important; padding-bottom: 16px; border-bottom: 2px solid #CC1010;
}

/* Text + Bild nebeneinander */
.abc-section-img, .fm-section-img {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin: 48px 0;
}
.abc-section-img.reverse, .fm-section-img.reverse { direction: rtl; }
.abc-section-img.reverse > *, .fm-section-img.reverse > * { direction: ltr; }
.abc-section-img img, .fm-section-img img {
  width: 100%; height: 280px; object-fit: cover; display: block; filter: grayscale(10%);
  transition: filter 0.3s; margin: 0 !important; border: none !important;
}
.abc-section-img img:hover, .fm-section-img img:hover { filter: grayscale(0%); }

/* Führungs-Karten (gemeinsam) */
.abc-lead, .fm-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 24px 0; }
.abc-lead-card, .fm-lead-card { background: #2e2e2e; padding: 22px 28px; border-left: 3px solid #CC1010; }
.abc-lead-role, .fm-lead-role {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.abc-lead-name, .fm-lead-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; }

/* Lastrup-Box (gemeinsam) */
.abc-lastrup, .fm-lastrup {
  background: #2e2e2e; border-left: 4px solid #CC1010; padding: 32px 36px; margin: 40px 0;
}
.abc-lastrup h3, .fm-lastrup h3 {
  font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.1rem !important; font-weight: 700 !important;
  text-transform: uppercase; letter-spacing: 0.08em; color: #CC1010; margin: 0 0 16px 0 !important;
}
.abc-lastrup p, .fm-lastrup p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.65) !important; line-height: 1.8; margin-bottom: 1em; }

/* ── KOMMANDO ── */
.fw-kommando { max-width: 1200px; margin: 0 auto; }
.fw-kommando__header { margin-bottom: 52px; }
.fw-kommando__header h1 { display: none; }
.fw-subtitle { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.8; max-width: 700px; }

.fw-info-card { background: #2e2e2e; padding: 40px 44px; margin-bottom: 60px; border-left: 4px solid #CC1010; position: relative; }
.fw-info-card h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #CC1010; margin-bottom: 16px; }
.fw-info-card p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 20px; }
.fw-checklist { list-style: none !important; margin: 20px 0 0 0 !important; padding: 0 !important; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.fw-checklist li { position: relative; padding-left: 24px; font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.75) !important; line-height: 1.6; }
.fw-checklist li::before { content: '✓'; position: absolute; left: 0; color: #CC1010; font-weight: 700; font-size: 0.85rem; }

.fw-team-section { margin-top: 16px; }
.fw-team-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #CC1010; margin-bottom: 24px; }
.fw-team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 8px; }
.fw-member { background: #2e2e2e; padding: 22px 28px; display: flex; flex-direction: column; gap: 4px; border-left: 3px solid transparent; transition: background 0.2s, border-color 0.2s; }
.fw-member:hover { background: #383838; border-left-color: #CC1010; }
.fw-member-role { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fw-member-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: #fff; letter-spacing: 0.03em; }
.fw-member.featured { background: linear-gradient(135deg, #CC1010 0%, #a00d0d 100%); padding: 28px 32px; border-left: none; }
.fw-member.featured:hover { background: linear-gradient(135deg, #e82020 0%, #CC1010 100%); }
.fw-member.featured .fw-member-role { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.fw-member.featured .fw-member-name { font-size: 1.5rem; font-weight: 900; }

/* ── ABC-DIENST ── */
.abc { max-width: 1000px; margin: 0 auto; }
.abc-units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin: 32px 0; }
.abc-unit { background: #2e2e2e; padding: 24px 20px; text-align: center; border-top: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.abc-unit:hover { background: #383838; border-top-color: #CC1010; }
.abc-unit-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.abc-unit-loc { font-size: 0.78rem; font-weight: 300; color: rgba(255,255,255,0.4); }
.abc-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 32px 0; }
.abc-group { background: #2e2e2e; padding: 24px; border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.abc-group:hover { border-left-color: #CC1010; background: #383838; }
.abc-group-name { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.abc-group-members { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); }
.abc-members-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; margin-top: 20px; }
.abc-member { background: rgba(255,255,255,0.04); padding: 14px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.03em; transition: background 0.2s; }
.abc-member:hover { background: rgba(255,255,255,0.08); }

/* ── FERNMELDER ── */
.fm { max-width: 1000px; margin: 0 auto; }
.fm-tasks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 32px 0; }
.fm-task { background: #2e2e2e; padding: 22px 24px; border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; display: flex; align-items: flex-start; gap: 14px; }
.fm-task:hover { border-left-color: #CC1010; background: #383838; }
.fm-task-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.fm-task-text { font-size: 0.9rem; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.5; }
.fm-member-highlight { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); padding: 14px 24px; margin-top: 8px; }
.fm-member-highlight-role { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 2px; }
.fm-member-highlight-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: #fff; }
.fuehrung-kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 2px; }
.fm-img-full { margin: 40px 0; }
.fm-img-full img { width: 100%; max-height: 400px; object-fit: cover; display: block; margin: 0 !important; border: none !important; filter: grayscale(5%); transition: filter 0.3s; }
.fm-img-full img:hover { filter: grayscale(0%); }
.fm-img-caption { font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; text-align: right; margin-top: 8px; }

/* ── WIR SUCHEN DICH ── */
.wsd { max-width: 1200px; margin: 0 auto; }
.wsd-video { position: relative; margin-bottom: 64px; }
.wsd-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #111; }
.wsd-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.wsd-video-caption { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-top: 12px; text-align: right; }
.wsd-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 64px; }
.wsd-pillar { background: #2e2e2e; padding: 36px 32px; border-top: 3px solid #CC1010; transition: background 0.2s; }
.wsd-pillar:hover { background: #383838; }
.wsd-pillar-icon { font-size: 2rem; margin-bottom: 16px; line-height: 1; }
.wsd-pillar h3 { font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.2rem !important; font-weight: 900 !important; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; margin-bottom: 12px !important; margin-top: 0 !important; }
.wsd-pillar p { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }
.wsd-info { margin-bottom: 64px; }
.wsd-info-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: #CC1010; margin-bottom: 16px; }
.wsd-info h2 { font-family: 'Barlow Condensed', sans-serif !important; font-size: 2rem !important; font-weight: 900 !important; text-transform: uppercase; color: #fff; margin-bottom: 32px !important; margin-top: 0 !important; }
.wsd-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.wsd-faq { background: #2e2e2e; padding: 28px 32px; border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.wsd-faq:hover { border-left-color: #CC1010; background: #383838; }
.wsd-faq-q { font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 8px; }
.wsd-faq-a { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.7; }
.wsd-jf { background: linear-gradient(135deg, #CC1010 0%, #a00d0d 100%); padding: 48px; margin-bottom: 64px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.wsd-jf h3 { font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.8rem !important; font-weight: 900 !important; text-transform: uppercase; color: #fff; margin: 0 0 12px 0 !important; }
.wsd-jf p { font-size: 0.92rem; font-weight: 300; color: rgba(255,255,255,0.75); line-height: 1.7; margin: 0; max-width: 550px; }
.wsd-jf-btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: #fff; color: #CC1010 !important; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none !important; white-space: nowrap; transition: transform 0.15s; }
.wsd-jf-btn:hover { transform: translateY(-2px); }
.wsd-cta { text-align: center; padding: 48px 32px; margin-bottom: 64px; }
.wsd-cta h2 { font-family: 'Barlow Condensed', sans-serif !important; font-size: 2.4rem !important; font-weight: 900 !important; text-transform: uppercase; color: #fff; margin-bottom: 16px !important; margin-top: 0 !important; }
.wsd-cta p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.wsd-contact-grid { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.wsd-contact-item { text-align: center; }
.wsd-contact-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.wsd-contact-value { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.wsd-contact-value a { color: #CC1010 !important; text-decoration: none; }
.wsd-cta-hint { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.3); font-style: italic; }
.wsd-insta { margin-bottom: 32px; }
.wsd-insta-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: #CC1010; margin-bottom: 20px; }
.wsd-insta-wrap { display: flex; justify-content: center; }
.wsd-insta-wrap blockquote { margin: 0 !important; }

/* ── JF-BEITRÄGE ── */
.jf-article { max-width: 900px; margin: 0 auto; }
.jf-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 40px 0; }
.jf-stat { background: #2e2e2e; padding: 24px 20px; text-align: center; }
.jf-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.2rem; font-weight: 900; color: #CC1010; line-height: 1; }
.jf-stat-label { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 6px; }
.jf-quote { border-left: 4px solid #CC1010; padding: 20px 28px; background: #2e2e2e; margin: 32px 0; }
.jf-quote p { font-size: 1rem; font-style: italic; color: rgba(255,255,255,0.7) !important; line-height: 1.7; margin: 0 0 8px 0; }
.jf-quote cite { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; font-style: normal; letter-spacing: 0.12em; text-transform: uppercase; color: #CC1010; }
.jf-thanks { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.jf-thanks-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.jf-thanks-tag { background: #2e2e2e; padding: 6px 14px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; }
.jf-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin: 40px 0 16px; }
.jf-gallery.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.jf-gallery img { width: 100%; height: 300px; object-fit: cover; display: block; filter: grayscale(5%); transition: filter 0.3s; margin: 0 !important; border: none !important; }
.jf-gallery img:hover { filter: grayscale(0%); }
.jf-gallery-caption { font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; text-align: right; margin-top: 8px; }
.jf-badge { display: inline-block; background: #2e2e2e; border-left: 3px solid #CC1010; padding: 14px 20px; margin-bottom: 32px; }
.jf-badge-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: #CC1010; margin-bottom: 2px; }
.jf-badge-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.04em; }
.jf-info-box { background: #2e2e2e; padding: 28px 32px; border-left: 4px solid #CC1010; margin: 32px 0; }
.jf-info-box-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; margin-bottom: 8px; }
.jf-info-box p { font-size: 0.88rem; font-weight: 300; color: rgba(255,255,255,0.55) !important; line-height: 1.7; margin: 0; }
.jf-sponsor { background: #2e2e2e; padding: 32px 36px; margin: 36px 0; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; border-left: 4px solid #CC1010; }
.jf-sponsor-icon { font-size: 2.4rem; line-height: 1; }
.jf-sponsor-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #CC1010; margin-bottom: 4px; }
.jf-sponsor-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2; }
.jf-sponsor-sub { font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45); margin-top: 4px; }
.jf-img-full { margin: 40px 0 16px; }
.jf-img-full img { width: 100%; max-height: 500px; object-fit: cover; display: block; margin: 0 !important; border: none !important; filter: grayscale(5%); transition: filter 0.3s; }
.jf-img-full img:hover { filter: grayscale(0%); }
.jf-img-caption { font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; text-align: right; margin-top: 8px; }

/* ── HISTORIE TIMELINE ── */
.historie-timeline { position: relative; padding-left: 80px; margin-bottom: 48px; }
.historie-timeline::before { content: ''; position: absolute; left: 34px; top: 0; bottom: 0; width: 2px; background: var(--red); }
.historie-item { position: relative; margin-bottom: 2px; display: flex; gap: 0; }
.historie-year { position: absolute; left: -80px; width: 64px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 900; color: var(--red); text-align: right; padding-top: 20px; }
.historie-item::before { content: ''; position: absolute; left: -52px; top: 24px; width: 10px; height: 10px; background: var(--red); border-radius: 50%; z-index: 1; }
.historie-content { background: #2e2e2e; padding: 20px 24px; flex: 1; border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.historie-content:hover { background: #383838; border-left-color: var(--red); }
.historie-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; margin-bottom: 6px; }
.historie-text { font-size: 0.85rem; font-weight: 300; color: rgba(255,255,255,0.5); line-height: 1.6; }

@media (max-width: 768px) {
  .historie-timeline { padding-left: 60px; }
  .historie-timeline::before { left: 24px; }
  .historie-year { left: -60px; width: 44px; font-size: 0.72rem; }
  .historie-item::before { left: -42px; }
}

/* ── FAHRZEUG-SEITEN ── */
.fzg { max-width: 1000px; margin: 0 auto; }
.fzg-hero { margin-bottom: 40px; }
.fzg-hero img { width: 100%; max-height: 500px; object-fit: cover; display: block; margin: 0 !important; border: none !important; }
.fzg-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 48px; }
.fzg-gallery img { width: 100%; height: 300px; object-fit: cover; display: block; filter: grayscale(5%); transition: filter 0.3s; margin: 0 !important; border: none !important; }
.fzg-gallery img:hover { filter: grayscale(0%); }
.fzg-gallery-caption { font-size: 0.68rem; color: rgba(255,255,255,0.2); text-align: right; margin-top: 8px; letter-spacing: 0.06em; }
.fzg-rufname { display: inline-block; background: var(--red); padding: 10px 20px; margin-bottom: 32px; }
.fzg-rufname-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.fzg-rufname-value { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 900; color: #fff; letter-spacing: 0.04em; }
.fzg-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 48px; }
.fzg-spec { background: #2e2e2e; padding: 20px; text-align: center; border-top: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.fzg-spec:hover { background: #383838; border-top-color: var(--red); }
.fzg-spec-value { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.fzg-spec-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.fzg-beladung-title { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.fzg-beladung { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 48px; }
.fzg-beladung-item { background: #2e2e2e; padding: 14px 20px; font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.7); border-left: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.fzg-beladung-item:hover { border-left-color: var(--red); background: #383838; }
.fzg-ad-hinweis { background: rgba(255,255,255,0.04); border-left: 4px solid rgba(255,255,255,0.15); padding: 16px 24px; font-size: 0.88rem; font-weight: 400; color: rgba(255,255,255,0.4); font-style: italic; margin-top: 8px; }

@media (max-width: 768px) {
  .fzg-gallery { grid-template-columns: 1fr; }
  .fzg-gallery img { height: 240px; }
  .fzg-specs { grid-template-columns: 1fr 1fr; }
  .fzg-beladung { grid-template-columns: 1fr; }
  .fzg-hero img { max-height: 300px; }
}

/* ── WETTKAMPFGRUPPE ── */
.wk { max-width: 1000px; margin: 0 auto; }
.wk-highlight { background: linear-gradient(135deg, #CC1010 0%, #a00d0d 100%); padding: 32px 36px; margin-bottom: 48px; }
.wk-highlight p { font-size: 1.05rem; font-weight: 400; color: rgba(255,255,255,0.9) !important; line-height: 1.8; margin: 0; }
.wk-highlight strong { color: #fff !important; font-weight: 700; }
.wk-body p { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.75) !important; line-height: 1.85; margin-bottom: 1.5em; }
.wk-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #CC1010; margin-bottom: 12px; }
.wk-title { font-family: 'Barlow Condensed', sans-serif !important; font-size: 1.6rem !important; font-weight: 900 !important; text-transform: uppercase; color: #fff; margin: 0 0 24px 0 !important; padding-bottom: 16px; border-bottom: 2px solid #CC1010; }
.wk-section-img { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin: 48px 0; }
.wk-section-img.reverse { direction: rtl; }
.wk-section-img.reverse > * { direction: ltr; }
.wk-section-img img { width: 100%; height: 340px; object-fit: cover; display: block; filter: grayscale(10%); transition: filter 0.3s; margin: 0 !important; border: none !important; }
.wk-section-img img:hover { filter: grayscale(0%); }
.wk-info-card { background: #2e2e2e; padding: 28px 32px; border-left: 4px solid #CC1010; margin-bottom: 32px; }
.wk-info-card p { font-size: 0.95rem; font-weight: 300; color: rgba(255,255,255,0.65) !important; line-height: 1.8; margin: 0; }
.wk-skills { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-bottom: 48px; }
.wk-skill { background: #2e2e2e; padding: 24px 16px; text-align: center; border-top: 3px solid transparent; transition: border-color 0.2s, background 0.2s; }
.wk-skill:hover { background: #383838; border-top-color: #CC1010; }
.wk-skill-icon { display: block; font-size: 1.6rem; margin-bottom: 10px; }
.wk-skill-text { font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); }
.wk-cta { background: #2e2e2e; padding: 24px 28px; border-left: 4px solid #CC1010; margin-top: 8px; }
.wk-cta-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 900; text-transform: uppercase; color: #CC1010; margin-bottom: 6px; }
.wk-cta-text { font-size: 0.9rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Seiten-spezifisch Responsive */
@media (max-width: 768px) {
  .fw-info-card { padding: 28px 24px; }
  .fw-checklist { grid-template-columns: 1fr; }
  .fw-team-grid { grid-template-columns: 1fr; }
  .fw-member.featured .fw-member-name { font-size: 1.3rem; }
  .abc-section-img, .fm-section-img { grid-template-columns: 1fr; gap: 20px; }
  .abc-section-img.reverse, .fm-section-img.reverse { direction: ltr; }
  .abc-section-img img, .fm-section-img img { height: 220px; }
  .abc-units { grid-template-columns: 1fr 1fr; }
  .abc-groups { grid-template-columns: 1fr; }
  .abc-lead, .fm-lead { grid-template-columns: 1fr; }
  .abc-members-grid { grid-template-columns: 1fr; }
  .abc-lastrup, .fm-lastrup { padding: 24px 20px; }
  .fm-tasks { grid-template-columns: 1fr; }
  .fuehrung-kontakt { grid-template-columns: 1fr; }
  .wsd-pillars { grid-template-columns: 1fr; }
  .wsd-faq-grid { grid-template-columns: 1fr; }
  .wsd-jf { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .wsd-jf-btn { margin: 16px auto 0; }
  .wsd-cta h2 { font-size: 1.8rem !important; }
  .jf-gallery { grid-template-columns: 1fr; }
  .jf-gallery.cols-3 { grid-template-columns: 1fr; }
  .jf-gallery img { height: 250px; }
  .jf-stats { grid-template-columns: repeat(3, 1fr); }
  .jf-stat-num { font-size: 1.6rem; }
  .jf-stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }
  .jf-sponsor { grid-template-columns: 1fr; padding: 24px 20px; }
  .jf-quote { padding: 16px 20px; }
  .jf-info-box { padding: 20px 20px; }
  .wk-section-img { grid-template-columns: 1fr; gap: 20px; }
  .wk-section-img.reverse { direction: ltr; }
  .wk-section-img img { height: 250px; }
  .wk-skills { grid-template-columns: repeat(3, 1fr); }
  .wk-highlight { padding: 24px 20px; }
  .wk-info-card { padding: 20px 20px; }
  .wk-cta { padding: 20px 20px; }
}

/* ─── JUGENDFEUERWEHR STARTSEITE ─── */
.jf-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.jf-home-card {
  background: var(--mid);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  transition: background 0.2s;
}
.jf-home-card:hover { background: var(--mid2); }

.jf-home-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%);
  transition: filter 0.3s, transform 0.4s;
}
.jf-home-card:hover .jf-home-card-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.jf-home-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jf-home-card-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.jf-home-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  flex: 1;
}

.jf-home-card-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: auto;
  transition: color 0.2s;
}
.jf-home-card:hover .jf-home-card-more { color: var(--red-light); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── FOCUS STYLES (A11y) ─── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

/* ─── Tablet Landscape (< 1100px) ─── */
@media (max-width: 1100px) {
  .archive-cards { grid-template-columns: 1fr 1fr; }
  .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
  .aktuelles-grid { grid-template-columns: 1fr 1fr; }
  .aktuelles-grid .post-card:first-child { grid-column: span 2; grid-row: span 1; }
  .aktuelles-grid .post-card:first-child .post-card-inner--auto { min-height: 200px; }
  .presse-grid { grid-template-columns: 1fr 1fr; }
  .uebersicht-grid { grid-template-columns: 1fr 1fr; }
  .jf-home-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Tablet Portrait (< 900px) ─── */
@media (max-width: 900px) {
  #site-header { padding: 0 24px; }
  .section-wrap, .insta-section { padding: 70px 32px; }
  .hero-content { padding: 0 32px 60px; }
  .join-section { padding: 60px 32px; }
  #site-footer { padding: 52px 32px 32px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-4 { grid-template-columns: 1fr 1fr; gap: 40px; }
  .notruf-banner { padding: 20px 32px; }
  .wetter-bar-inner { padding: 16px 32px; gap: 24px; }
  .nina-inner { padding: 20px 32px; }
  .foerder-section { padding: 60px 32px; }
  .foerder-inner { gap: 40px; }
}

/* ─── Mobile (< 768px) ─── */
@media (max-width: 768px) {

  /* Hamburger sichtbar */
  .menu-toggle { display: flex; }

  /* Mobile Menu Overlay */
  .menu-overlay { display: block; pointer-events: none; }
  .menu-overlay.visible { pointer-events: all; }

  /* Mobile Navigation — Slide-in von rechts */
  #site-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 72vw;
    max-width: 320px;
    background: #111111;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9998;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    visibility: hidden;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
    border-left: 1px solid rgba(255,255,255,0.06);
  }
  #site-navigation.toggled {
    transform: translateX(0);
    visibility: visible;
  }

  /* Abstand oben für Menü-Inhalt (unter Header) */
  #site-navigation > ul:first-child {
    padding-top: 80px;
  }

  /* Mobile Menu Items */
  #site-navigation ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px 0;
  }

  #site-navigation ul li {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  #site-navigation ul li a {
    padding: 14px 24px;
    font-size: 0.9rem;
    display: block;
    text-align: left;
  }

  /* Parent items: Platz rechts für Toggle */
  #site-navigation li.menu-item-has-children > a {
    padding-right: 56px;
    padding-left: 24px;
  }

  /* Accordion Toggle: rechts */
  .submenu-toggle {
    display: flex;
    left: auto;
    right: 0;
  }

  /* Untermenüs: standardmäßig versteckt */
  #site-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: all;
    background: rgba(255,255,255,0.03);
    border-top: none;
    box-shadow: none;
    min-width: unset;
    padding: 0;
    border-right: none;
    border-left: 3px solid var(--red);
    margin-right: 0;
    margin-left: 16px;
  }

  /* Accordion-Klassen */
  #site-navigation ul ul.submenu-collapsed {
    display: none;
  }
  #site-navigation ul ul.submenu-expanded {
    display: block;
  }

  /* Dritte Ebene auf Mobil */
  #site-navigation ul ul ul {
    border-left: 2px solid rgba(255,255,255,0.1);
    border-right: none;
    margin-left: 12px;
    margin-right: 0;
  }

  #site-navigation ul ul li a {
    padding: 12px 20px;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: left;
  }

  #site-navigation ul ul li a:hover {
    background: rgba(204,16,16,0.15);
  }

  /* Desktop-Hover auf Mobil deaktivieren */
  #site-navigation ul li:hover > ul,
  #site-navigation ul ul li:hover > ul {
    /* Wird vom Accordion gesteuert */
  }

  /* Pfeil-Indikator auf Mobil ausblenden (Toggle ersetzt ihn) */
  #site-navigation ul ul li.menu-item-has-children > a::after {
    display: none;
  }

  /* Restliche Mobile-Anpassungen */
  .hero-content { padding: 0 20px 48px; }
  .section-wrap, .insta-section { padding: 60px 20px; }
  .fuhrpark-grid { grid-template-columns: repeat(2, 1fr); }
  .einsatz-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .einsatz-fahrzeug { text-align: left; }
  .join-section { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }
  .footer-grid-4 { grid-template-columns: 1fr; gap: 36px; }
  #site-footer { padding: 48px 20px 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .notruf-banner { padding: 16px 20px; }
  .notruf-inner { gap: 12px; }
  .notruf-number { font-size: 1.6rem; }
  .notruf-text { font-size: 0.72rem; }

  /* Förderverein */
  .foerder-section { padding: 48px 20px; }
  .foerder-inner { grid-template-columns: 1fr; gap: 32px; }
  .foerder-bank { padding: 24px 20px; }
  .foerder-bank-value { font-size: 0.88rem; }

  /* Cookie Banner */
  .cookie-banner-inner { padding: 16px 20px; }
  .cookie-banner-text { font-size: 0.78rem; }

  /* Wetter: scrollbar horizontal */
  .wetter-bar-inner {
    padding: 14px 20px;
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }
  .wetter-item { white-space: nowrap; flex-shrink: 0; }
  .wetter-temp { font-size: 1.3rem; }
  .wetter-icon { font-size: 1.3rem; }

  /* NINA Mobil */
  .nina-inner { padding: 16px 20px; }
  .nina-header { font-size: 0.65rem; }
  .nina-warn { padding: 10px 14px; gap: 10px; }
  .nina-warn-text { font-size: 0.8rem; }
  .single-post-wrap, .page-wrap { padding: 90px 20px 60px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px; }

  /* ── Aktuelles: Horizontales Karussell ── */
  .aktuelles-grid {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 16px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    /* Scrollbar dezent */
    scrollbar-width: thin;
    scrollbar-color: var(--red) transparent;
  }
  .aktuelles-grid::-webkit-scrollbar { height: 3px; }
  .aktuelles-grid::-webkit-scrollbar-track { background: transparent; }
  .aktuelles-grid::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

  .aktuelles-grid .post-card {
    flex: 0 0 78vw;
    max-width: 340px;
    scroll-snap-align: start;
    border-radius: 4px;
  }

  /* Erste Karte auf Mobil: ganz normal wie die anderen */
  .aktuelles-grid .post-card:first-child {
    grid-row: unset;
  }
  .aktuelles-grid .post-card:first-child .post-card-thumb {
    position: relative;
    inset: unset;
    height: 180px;
  }
  .aktuelles-grid .post-card:first-child .post-card-thumb::after {
    display: none;
  }
  .aktuelles-grid .post-card:first-child .post-card-inner--auto {
    min-height: unset;
    padding: 20px 24px 24px;
  }
  .aktuelles-grid .post-card:first-child .post-title {
    font-size: 1.2rem;
  }

  /* Alle Karten-Thumbs gleich hoch im Karussell */
  .aktuelles-grid .post-card-thumb {
    height: 180px;
  }

  /* ── Archive/Kategorie: 1 Spalte, vertikale Karten ── */
  .archive-cards { grid-template-columns: 1fr; gap: 2px; }
  .presse-grid { grid-template-columns: 1fr; gap: 2px; }
  .presse-archive-wrap { padding: 100px 20px 60px !important; }
  .presse-card-img { height: 200px; }
  .presse-kontakt-inner { grid-template-columns: 1fr; gap: 28px; }
  .presse-kontakt-card { padding: 24px 20px; }
  .uebersicht-grid { grid-template-columns: 1fr; gap: 2px; }
  .uebersicht-card-img { height: 180px; }
  .uebersicht-card-noimg { height: 100px; }
  .jf-post-card { grid-template-columns: 1fr; }
  .jf-post-img { min-height: 200px; }
  .jf-home-grid { grid-template-columns: 1fr; gap: 2px; }
  .jf-home-card-img { height: 180px; }

  .archive-card {
    display: block;
  }

  .archive-card-img {
    height: 200px;
  }

  .archive-card-body { padding: 20px; }
  .archive-card-title { font-size: 1.15rem; }

  .archive-card .post-arrow {
    top: 16px; right: 16px;
  }

  /* ── Overflow verhindern (kein seitliches Scrollen) ── */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  #main-content,
  .single-post-wrap,
  .page-wrap {
    overflow-x: hidden;
  }
  /* Aktuelles-Karussell darf horizontal scrollen */
  .section-wrap {
    overflow-x: visible;
  }

  /* ── Bilder in Beiträgen korrekt skalieren ── */
  .single-post-content img,
  .page-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
  }
  .single-post-content iframe,
  .single-post-content video,
  .single-post-content embed,
  .single-post-content object,
  .page-content iframe,
  .page-content video {
    max-width: 100%;
    height: auto;
  }
  .single-post-content figure,
  .page-content figure {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .single-post-content .wp-block-image img,
  .page-content .wp-block-image img,
  .single-post-content .wp-block-image,
  .page-content .wp-block-image {
    max-width: 100%;
    height: auto;
  }
  .single-post-content table,
  .page-content table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
  }
  .single-post-content img[width],
  .page-content img[width] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ─── Kleine Handys (< 480px) ─── */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }
  .hero-label {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .hero-sub {
    font-size: 0.8rem;
  }
  .hero-cta {
    flex-direction: column;
    margin-top: 32px;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Fuhrpark: 1 Spalte auf kleinen Screens */
  .fuhrpark-grid { grid-template-columns: 1fr; }
  .fahrzeug-img { height: 200px; }

  /* Stats: 2 Spalten beibehalten, aber kompakter */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 14px; }
  .stat-num { font-size: 1.8rem; }
  .stat-label { font-size: 0.62rem; }

  /* Section-Padding */
  .section-wrap, .insta-section { padding: 48px 16px; }
  #site-footer { padding: 40px 16px 24px; }
  .join-section { padding: 40px 16px; gap: 24px; }
  .notruf-banner { padding: 14px 16px; }
  .notruf-inner { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .notruf-text { width: 100%; }
  .single-post-wrap, .page-wrap { padding: 80px 16px 48px; }

  /* Buttons volle Breite */
  .btn-primary, .btn-secondary, .btn-white {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Section Header stacken */
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .section-header .btn-secondary {
    width: auto;
  }

  /* Post-Karten */
  .post-card-inner { padding: 20px; min-height: 180px; }

  /* Seiten-Stats auf kleinen Screens */
  .jf-stats { grid-template-columns: 1fr; gap: 2px; }
  .jf-stat { padding: 16px 20px; display: flex; align-items: center; gap: 16px; text-align: left; }
  .jf-stat-num { font-size: 1.4rem; min-width: 60px; }
  .jf-stat-label { font-size: 0.65rem; margin-top: 0; }

  /* Seiten-Highlight kompakter */
  .fm-highlight, .abc-highlight, .fm-highlight, .jf-highlight, .wk-highlight { padding: 20px 16px; }
  .fm-highlight p, .abc-highlight p, .jf-highlight p, .wk-highlight p { font-size: 0.95rem; }
  .fm-section-img img, .abc-section-img img, .wk-section-img img { height: 200px; }

  /* Karussell-Karten etwas schmaler */
  .aktuelles-grid .post-card {
    flex: 0 0 75vw;
  }
  .aktuelles-grid {
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Footer */
  .footer-bottom { font-size: 0.65rem; }
  .red-dot { margin: 0 5px; }
}

/* ─── Sehr kleine Screens (< 360px) ─── */
@media (max-width: 360px) {
  #site-header { padding: 0 16px; height: 56px; }
  :root { --header-height: 56px; }

  .site-title a { font-size: 0.95rem; }
  .hero-content { padding: 0 14px 36px; }

  .stat-num { font-size: 1.5rem; }
  .stat { padding: 12px; }
}
