/*!
Theme Name: FFW Gossersweiler-Stein
Theme URI: https://ffw-gost.de/
Author: Consileon / Simon Wind
Author URI: https://ffw-gost.de/
Description: Eigenstaendiges, barrierearmes Classic-Theme fuer die Freiwillige Feuerwehr Gossersweiler-Stein. Mobile-first, DSGVO-konform (lokal gehostete Schriften, keine externen CDNs) und kompatibel mit dem Plugin "Einsatzverwaltung" (Beitragsart "einsatz") sowie Contact Form 7, Yoast SEO, Real Cookie Banner und WP Lightbox 2.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ffw-gost
Tags: classic-theme, feuerwehr, two-columns, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready
*/

/* ==========================================================================
   INHALT
   1.  Lokale Schriften (@font-face)  -- DSGVO-konform, kein Google-CDN
   2.  Design-Tokens (CSS Custom Properties)
   3.  Reset & Basis
   4.  Barrierefreiheit (Skip-Link, Fokus, Screenreader)
   5.  Layout-Container & Utilities
   6.  Buttons
   7.  Header / Notruf-Leiste / Navigation / Mobiles Menue
   8.  Hero
   9.  Sektions-Header (Eyebrow)
   10. Einsatz-Karten (Ticker) & Listenelemente
   11. Kennzahlen (Stats)
   12. Fahrzeug-Karten
   13. Recruitment-Band (Mitglied werden)
   14. Jugendfeuerwehr & Termine/News
   15. Innenseiten-Header (dunkel)
   16. Inhalt: Beitraege, Seiten, Galerie, WP-Core-Klassen
   17. Einsatzverwaltung-Plugin (Einsatzdetails, Einsatzliste, Widget)
   18. Sidebar / Widgets / Suche
   19. Kommentare
   20. Contact Form 7
   21. Paginierung
   22. Footer
   23. Responsive (Media Queries)
   ========================================================================== */

/* 1. ---------- LOKALE SCHRIFTEN ---------- */
@font-face {
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: url('assets/fonts/barlow-condensed-latin-500-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('assets/fonts/barlow-condensed-latin-600-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Barlow Condensed';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('assets/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('assets/fonts/source-sans-3-latin-400-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('assets/fonts/source-sans-3-latin-600-normal.woff2') format('woff2');
}
@font-face {
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('assets/fonts/source-sans-3-latin-700-normal.woff2') format('woff2');
}

/* 2. ---------- DESIGN-TOKENS ---------- */
:root {
	/* Farben */
	--ffw-red: #C8102E;
	--ffw-red-dk: #9e0c24;
	--ffw-ink: #161616;
	--ffw-grey: #2B2B2B;
	--ffw-bg: #F5F5F4;
	--ffw-card: #FFFFFF;
	--ffw-yellow: #FFD400;
	--ffw-muted: #6f6f6c;
	--ffw-text-soft: #3a3a38;
	--ffw-text-strong: #2f2f2d;
	--ffw-line: #e4e4e1;

	/* Typografie */
	--ffw-head: 'Barlow Condensed', 'Arial Narrow', system-ui, sans-serif;
	--ffw-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;

	/* Layout */
	--ffw-maxw: 1180px;
	--ffw-maxw-narrow: 860px;
	--ffw-gutter: 20px;

	/* Abstaende */
	--ffw-space-1: 8px;
	--ffw-space-2: 16px;
	--ffw-space-3: 24px;
	--ffw-space-4: 40px;
	--ffw-space-5: 64px;
	--ffw-section: clamp(56px, 8vw, 90px);

	/* Radien & Schatten */
	--ffw-radius-sm: 4px;
	--ffw-radius: 8px;
	--ffw-radius-lg: 12px;
	--ffw-shadow-card: 0 18px 40px rgba(0, 0, 0, .10);
	--ffw-shadow-btn: 0 6px 16px rgba(200, 16, 46, .28);
}

/* 3. ---------- RESET & BASIS ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--ffw-body);
	background: var(--ffw-bg);
	color: var(--ffw-ink);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}

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

a {
	color: var(--ffw-red);
	text-decoration: none;
}
a:hover,
a:focus { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ffw-head);
	font-weight: 700;
	line-height: 1.05;
	margin: 0;
	color: var(--ffw-ink);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.4em; }

button {
	font-family: inherit;
	font-size: inherit;
	cursor: pointer;
}

::selection {
	background: var(--ffw-red);
	color: #fff;
}

/* 4. ---------- BARRIEREFREIHEIT ---------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 200;
	background: var(--ffw-ink);
	color: #fff;
	padding: 12px 20px;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 700;
	border-radius: 0 0 var(--ffw-radius-sm) 0;
}
.skip-link:focus {
	left: 0;
	text-decoration: none;
	outline: 3px solid var(--ffw-yellow);
	outline-offset: 0;
}

/* Sichtbare Fokus-Zustaende fuer Tastaturnutzung */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--ffw-red);
	outline-offset: 3px;
	border-radius: 2px;
}
/* Auf dunklen Flaechen gelber Fokusring fuer Kontrast */
.ffw-dark a:focus-visible,
.ffw-dark button:focus-visible {
	outline-color: var(--ffw-yellow);
}

/* 5. ---------- LAYOUT-CONTAINER & UTILITIES ---------- */
.ffw-container {
	max-width: var(--ffw-maxw);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--ffw-gutter);
	padding-right: var(--ffw-gutter);
	width: 100%;
}
.ffw-container--narrow { max-width: var(--ffw-maxw-narrow); }

.ffw-section { padding-top: var(--ffw-section); padding-bottom: var(--ffw-section); }
.ffw-site { display: flex; flex-direction: column; min-height: 100vh; }
.ffw-main { flex: 1 0 auto; }

.ffw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--ffw-red);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 13.5px;
	margin: 0;
}
.ffw-eyebrow::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--ffw-red);
	display: inline-block;
}

.ffw-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 26px;
}
.ffw-section-head h2 {
	text-transform: uppercase;
	font-size: clamp(30px, 5vw, 46px);
	line-height: 1.02;
	margin-top: 8px;
	letter-spacing: .01em;
}
.ffw-section-head__intro {
	max-width: 390px;
	color: var(--ffw-muted);
	font-size: 16.5px;
}

.ffw-textlink {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: 17px;
	color: var(--ffw-red);
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--ffw-red);
}
.ffw-textlink:hover,
.ffw-textlink:focus { text-decoration: none; color: var(--ffw-red-dk); }

/* 6. ---------- BUTTONS ---------- */
.ffw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.1;
	padding: 14px 26px;
	border-radius: 6px;
	border: 1.5px solid transparent;
	transition: background .15s ease, transform .15s ease, color .15s ease, border-color .15s ease;
	text-align: center;
}
.ffw-btn:hover,
.ffw-btn:focus { text-decoration: none; }

.ffw-btn--primary {
	background: var(--ffw-red);
	color: #fff;
	box-shadow: var(--ffw-shadow-btn);
}
.ffw-btn--primary:hover,
.ffw-btn--primary:focus {
	background: var(--ffw-red-dk);
	color: #fff;
	transform: translateY(-2px);
}
.ffw-btn--ghost {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .5);
	color: #fff;
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.ffw-btn--ghost:hover,
.ffw-btn--ghost:focus {
	background: rgba(255, 255, 255, .2);
	color: #fff;
}
.ffw-btn--light {
	background: #fff;
	color: var(--ffw-red);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .2);
}
.ffw-btn--light:hover,
.ffw-btn--light:focus { color: var(--ffw-red-dk); transform: translateY(-2px); }
.ffw-btn--outline-light {
	border-color: rgba(255, 255, 255, .7);
	color: #fff;
}
.ffw-btn--outline-light:hover,
.ffw-btn--outline-light:focus { background: rgba(255, 255, 255, .15); color: #fff; }

/* 7. ---------- HEADER ---------- */
.ffw-header {
	position: sticky;
	top: 0;
	z-index: 60;
	box-shadow: 0 1px 0 var(--ffw-line), 0 8px 24px rgba(0, 0, 0, .05);
}

/* Notruf-Leiste */
.ffw-notruf-bar { background: var(--ffw-ink); color: #fff; }
.ffw-notruf-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 7px;
	padding-bottom: 7px;
	font-size: 13.5px;
}
.ffw-notruf-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--ffw-red);
	color: #fff;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 3px;
	font-size: 13px;
	letter-spacing: .04em;
	white-space: nowrap;
}
.ffw-notruf-badge:hover,
.ffw-notruf-badge:focus { color: #fff; text-decoration: none; }
.ffw-notruf-badge .ffw-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ffw-yellow);
	box-shadow: 0 0 0 3px rgba(255, 212, 0, .28);
	flex: none;
}
.ffw-notruf-bar__hint { color: #c9c9c7; font-weight: 500; }
.ffw-notruf-bar__links { display: flex; align-items: center; gap: 18px; }
.ffw-notruf-bar__links a { color: #cfcfcc; font-weight: 500; }
.ffw-notruf-bar__links a:hover,
.ffw-notruf-bar__links a:focus { color: #fff; }

/* Hauptleiste */
.ffw-header-main { background: var(--ffw-card); }
.ffw-header-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 14px;
	padding-bottom: 14px;
}
.ffw-brand { display: inline-flex; align-items: center; gap: 13px; }
.ffw-brand:hover,
.ffw-brand:focus { text-decoration: none; }
.ffw-brand img { width: auto; max-height: 52px; }
.ffw-brand__mark { display: inline-flex; flex: none; }
.ffw-brand__text { display: flex; flex-direction: column; line-height: 1; }
.ffw-brand__name {
	font-family: var(--ffw-head);
	font-weight: 700;
	font-size: 22px;
	letter-spacing: .01em;
	text-transform: uppercase;
	color: var(--ffw-ink);
}
.ffw-brand__sub {
	font-family: var(--ffw-head);
	font-weight: 500;
	font-size: 14.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--ffw-red);
}

/* Desktop-Navigation */
.ffw-nav-desktop { display: none; align-items: center; gap: 4px; }
.ffw-nav-desktop ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ffw-nav-desktop a {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: 16.5px;
	padding: 9px 13px;
	border-radius: 4px;
	color: var(--ffw-ink);
	transition: background .15s, color .15s;
	display: block;
}
.ffw-nav-desktop a:hover,
.ffw-nav-desktop a:focus { background: var(--ffw-bg); color: var(--ffw-red); text-decoration: none; }
.ffw-nav-desktop .current-menu-item > a,
.ffw-nav-desktop .current_page_item > a,
.ffw-nav-desktop .current-menu-ancestor > a { color: var(--ffw-red); }
.ffw-header-cta { margin-left: 8px; padding: 11px 20px; font-size: 16.5px; }

/* Desktop-Untermenues (Dropdown) */
.ffw-nav-desktop li { position: relative; }
.ffw-nav-desktop .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	display: none;
	flex-direction: column;
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius);
	box-shadow: var(--ffw-shadow-card);
	padding: 6px;
	z-index: 70;
}
.ffw-nav-desktop li:hover > .sub-menu,
.ffw-nav-desktop li:focus-within > .sub-menu { display: flex; }
.ffw-nav-desktop .sub-menu a { font-size: 15px; padding: 8px 12px; white-space: nowrap; }
.ffw-nav-desktop .menu-item-has-children > a::after { content: " ▾"; font-size: .8em; }

/* Mobile-Untermenues (Akkordeon) */
.ffw-mobile-menu__nav .sub-menu { list-style: none; margin: 0; padding: 0; }
.ffw-mobile-menu__nav .sub-menu a { padding-left: 40px; font-size: 18px; }
.ffw-mobile-menu__nav > ul > .menu-item-has-children { position: relative; }

/* Toggle-Button nur bei aktivem JS sichtbar (ohne JS bleiben Untermenüs offen) */
.ffw-submenu-toggle { display: none; }
.ffw-mobile-menu__nav.ffw-accordion-ready .ffw-submenu-toggle {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	min-height: 56px;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--ffw-line);
	color: var(--ffw-ink);
	cursor: pointer;
}
.ffw-submenu-toggle svg { transition: transform .25s ease; }
.ffw-submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.ffw-mobile-menu__nav.ffw-accordion-ready > ul > .menu-item-has-children > a { padding-right: 72px; }

/* Eingeklappter Zustand: aus Sicht-, Tab- und Screenreader-Fluss entfernt */
.ffw-mobile-menu__nav.ffw-accordion-ready > ul > .menu-item-has-children > .sub-menu {
	overflow: hidden;
	max-height: 0;
	visibility: hidden;
	transition: max-height .28s ease, visibility 0s linear .28s;
}
.ffw-mobile-menu__nav.ffw-accordion-ready > ul > .menu-item-has-children.is-open > .sub-menu {
	visibility: visible;
	transition: max-height .28s ease, visibility 0s linear 0s;
}

/* Burger */
.ffw-burger {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	border-radius: 6px;
	background: var(--ffw-bg);
	border: none;
	flex: none;
}
.ffw-burger span {
	width: 22px;
	height: 2.5px;
	background: var(--ffw-ink);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.ffw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.ffw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.ffw-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobiles Menue */
.ffw-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: none;
}
.ffw-mobile-menu.is-open { display: block; animation: ffwIn .2s both; }
.ffw-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 10, 10, .55);
	border: 0;
	width: 100%;
	cursor: pointer;
}
.ffw-mobile-menu__panel {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(86vw, 360px);
	background: var(--ffw-card);
	box-shadow: -12px 0 40px rgba(0, 0, 0, .3);
	display: flex;
	flex-direction: column;
	overflow-y: auto;
}
.ffw-mobile-menu.is-open .ffw-mobile-menu__panel { animation: ffwSlide .28s cubic-bezier(.2, .7, .2, 1) both; }
.ffw-mobile-menu__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px;
	border-bottom: 1px solid var(--ffw-line);
}
.ffw-mobile-menu__title {
	font-family: var(--ffw-head);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 19px;
}
.ffw-mobile-menu__close {
	width: 44px;
	height: 44px;
	border-radius: 6px;
	background: var(--ffw-bg);
	border: none;
	font-size: 22px;
	line-height: 1;
}
.ffw-mobile-menu__nav { display: flex; flex-direction: column; padding: 8px 0; }
.ffw-mobile-menu__nav ul { list-style: none; margin: 0; padding: 0; }
.ffw-mobile-menu__nav a {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: 21px;
	padding: 14px 24px;
	border-bottom: 1px solid var(--ffw-line);
	color: var(--ffw-ink);
	display: block;
}
.ffw-mobile-menu__nav a:hover,
.ffw-mobile-menu__nav a:focus { color: var(--ffw-red); text-decoration: none; }
.ffw-mobile-menu__nav .current-menu-item > a,
.ffw-mobile-menu__nav .current_page_item > a { color: var(--ffw-red); }
.ffw-mobile-menu__foot { padding: 20px; margin-top: auto; }
.ffw-mobile-menu__foot .ffw-btn { display: flex; width: 100%; font-size: 19px; }
.ffw-mobile-menu__notruf {
	margin-top: 14px;
	text-align: center;
	font-weight: 700;
	color: var(--ffw-red);
}
.ffw-mobile-menu__notruf span { font-size: 20px; }

/* 8. ---------- HERO ---------- */
.ffw-hero { position: relative; overflow: hidden; background: #0a0a0a; }
.ffw-hero__media,
.ffw-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.ffw-hero__media img { animation: ffwScale 1.4s ease both; }
.ffw-hero::before,
.ffw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.ffw-hero::before { background: linear-gradient(90deg, rgba(10, 10, 10, .86) 0%, rgba(10, 10, 10, .6) 45%, rgba(10, 10, 10, .2) 100%); }
.ffw-hero::after { background: linear-gradient(0deg, rgba(10, 10, 10, .55), rgba(10, 10, 10, 0) 40%); }
.ffw-hero__inner {
	position: relative;
	z-index: 2;
	padding-top: clamp(70px, 13vw, 150px);
	padding-bottom: clamp(64px, 12vw, 140px);
}
.ffw-hero__content { max-width: 680px; }
.ffw-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	background: rgba(200, 16, 46, .92);
	color: #fff;
	font-weight: 700;
	font-size: 13.5px;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 4px;
}
.ffw-hero__badge span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ffw-yellow);
	flex: none;
}
.ffw-hero__title {
	color: #fff;
	text-transform: uppercase;
	font-size: clamp(40px, 8vw, 82px);
	line-height: .96;
	letter-spacing: .005em;
	margin: 20px 0 0;
	text-wrap: balance;
}
.ffw-hero__text {
	color: #e7e7e5;
	font-size: clamp(17px, 2.3vw, 21px);
	max-width: 560px;
	margin: 22px 0 0;
	line-height: 1.55;
}
.ffw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}
.ffw-hero__actions .ffw-btn { font-size: 19px; padding: 15px 28px; }
.ffw-hero__actions .ffw-btn--primary { box-shadow: 0 10px 28px rgba(200, 16, 46, .4); }

/* Eintritts-Animation (nur ohne reduced-motion) */
.ffw-anim { animation: ffwUp .7s cubic-bezier(.2, .7, .2, 1) both; }
@keyframes ffwUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes ffwIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ffwScale { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes ffwSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* Stretched-Link: ganze Karte klickbar, aber nur EIN echter Link (a11y-freundlich) */
.ffw-stretched-link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* 10. ---------- EINSATZ-KARTEN (TICKER) ---------- */
.ffw-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
	gap: 18px;
}
.ffw-einsatz-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: 10px;
	overflow: hidden;
	transition: transform .18s, box-shadow .18s, border-color .18s;
	color: inherit;
}
.ffw-einsatz-card:hover,
.ffw-einsatz-card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--ffw-shadow-card);
	border-color: #d6d6d3;
	text-decoration: none;
}
.ffw-einsatz-card__bar { height: 5px; background: var(--ffw-grey); }
.ffw-einsatz-card__body {
	padding: 20px 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex: 1;
}
.ffw-einsatz-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.ffw-einsatz-card__date { font-size: 13.5px; font-weight: 600; color: var(--ffw-muted); }
.ffw-tag {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
	background: var(--ffw-grey);
	padding: 4px 9px;
	border-radius: 4px;
}
.ffw-einsatz-card__title {
	font-family: var(--ffw-body);
	font-size: 19px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--ffw-ink);
}
.ffw-einsatz-card__title a { color: inherit; }
.ffw-einsatz-card__title a:hover,
.ffw-einsatz-card__title a:focus { color: var(--ffw-red); text-decoration: none; }
.ffw-einsatz-card__more { margin-top: auto; font-weight: 600; color: var(--ffw-red); font-size: 15px; }

/* Einsatz-Liste (Zeilen) */
.ffw-einsatz-list { display: flex; flex-direction: column; gap: 14px; }
.ffw-einsatz-row {
	position: relative;
	display: flex;
	align-items: stretch;
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: 10px;
	overflow: hidden;
	transition: transform .15s, box-shadow .15s, border-color .15s;
	color: inherit;
}
.ffw-einsatz-row:hover,
.ffw-einsatz-row:focus-within {
	transform: translateX(4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
	border-color: #d6d6d3;
	text-decoration: none;
}
.ffw-einsatz-row__bar { flex: none; width: 6px; background: var(--ffw-grey); }
.ffw-einsatz-row__body {
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	flex: 1;
}
.ffw-einsatz-row__date { flex: none; min-width: 96px; }
.ffw-einsatz-row__day { font-family: var(--ffw-head); font-weight: 700; font-size: 22px; line-height: 1; color: var(--ffw-ink); }
.ffw-einsatz-row__year { font-size: 14px; color: var(--ffw-muted); font-weight: 600; }
.ffw-einsatz-row__main { flex: 1; min-width: 200px; }
.ffw-einsatz-row__title { font-weight: 600; font-size: 18px; color: var(--ffw-ink); line-height: 1.3; }
.ffw-einsatz-row__title a { color: inherit; }
.ffw-einsatz-row__title a:hover,
.ffw-einsatz-row__title a:focus { color: var(--ffw-red); text-decoration: none; }
.ffw-einsatz-row__sub { font-size: 14.5px; color: var(--ffw-muted); margin-top: 2px; }
.ffw-einsatz-row__arrow { flex: none; color: var(--ffw-red); font-weight: 700; font-size: 20px; }

/* Filter-Buttons */
.ffw-filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 26px; }
.ffw-filter {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: 15.5px;
	padding: 9px 17px;
	border-radius: 6px;
	border: 1.5px solid var(--ffw-line);
	background: var(--ffw-card);
	color: var(--ffw-ink);
	transition: all .15s;
}
.ffw-filter:hover,
.ffw-filter:focus { border-color: var(--ffw-red); color: var(--ffw-red); text-decoration: none; }
.ffw-filter.is-active { background: var(--ffw-red); border-color: var(--ffw-red); color: #fff; }

/* 11. ---------- KENNZAHLEN ---------- */
.ffw-wir {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(32px, 5vw, 64px);
	align-items: center;
}
.ffw-wir__text h2 {
	text-transform: uppercase;
	font-size: clamp(30px, 5vw, 48px);
	line-height: 1.02;
	margin: 10px 0 18px;
	letter-spacing: .01em;
}
.ffw-wir__text p { font-size: 18px; color: var(--ffw-text-soft); max-width: 540px; }
.ffw-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.ffw-stat {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: 12px;
	padding: 26px 22px;
	position: relative;
	overflow: hidden;
}
.ffw-stat::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--ffw-red);
}
.ffw-stat__value {
	font-family: var(--ffw-head);
	font-weight: 700;
	font-size: clamp(40px, 6vw, 56px);
	line-height: 1;
	color: var(--ffw-ink);
}
.ffw-stat__label {
	font-weight: 600;
	color: var(--ffw-muted);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-size: 13.5px;
	margin-top: 8px;
}

/* 12. ---------- FAHRZEUG-KARTEN ---------- */
.ffw-section--card-bg {
	background: var(--ffw-card);
	border-top: 1px solid var(--ffw-line);
	border-bottom: 1px solid var(--ffw-line);
}
.ffw-fahrzeug-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 22px;
}
.ffw-fahrzeug-card {
	display: flex;
	flex-direction: column;
	background: var(--ffw-bg);
	border: 1px solid var(--ffw-line);
	border-radius: 12px;
	overflow: hidden;
	transition: transform .18s, box-shadow .18s;
	color: inherit;
}
.ffw-fahrzeug-card:hover,
.ffw-fahrzeug-card:focus-within {
	transform: translateY(-5px);
	box-shadow: 0 22px 48px rgba(0, 0, 0, .13);
	text-decoration: none;
}
.ffw-fahrzeug-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: #dcdcd9; }
.ffw-fahrzeug-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.ffw-fahrzeug-card:hover .ffw-fahrzeug-card__media img,
.ffw-fahrzeug-card:focus-within .ffw-fahrzeug-card__media img { transform: scale(1.05); }
.ffw-fahrzeug-card__body { padding: 22px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.ffw-fahrzeug-card__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ffw-fahrzeug-card__code {
	font-family: var(--ffw-head);
	font-weight: 700;
	font-size: 25px;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: var(--ffw-ink);
}
.ffw-chip {
	font-size: 13px;
	font-weight: 600;
	color: var(--ffw-red);
	background: rgba(200, 16, 46, .1);
	padding: 3px 9px;
	border-radius: 4px;
}
.ffw-fahrzeug-card__name { font-weight: 600; color: var(--ffw-ink); font-size: 16px; }
.ffw-fahrzeug-card__desc { color: var(--ffw-muted); font-size: 15.5px; line-height: 1.5; margin: 0; }
.ffw-fahrzeug-card__more { margin-top: auto; padding-top: 10px; font-weight: 600; color: var(--ffw-red); font-size: 15px; }

/* 13. ---------- RECRUITMENT-BAND ---------- */
.ffw-recruit { position: relative; overflow: hidden; background: var(--ffw-red); }
.ffw-recruit__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .22;
	mix-blend-mode: luminosity;
}
.ffw-recruit::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(158, 12, 36, .95), rgba(158, 12, 36, .55));
}
.ffw-recruit__inner {
	position: relative;
	z-index: 2;
	padding-top: clamp(56px, 9vw, 100px);
	padding-bottom: clamp(56px, 9vw, 100px);
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}
.ffw-recruit__eyebrow {
	color: rgba(255, 255, 255, .85);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 14px;
}
.ffw-recruit__title {
	color: #fff;
	text-transform: uppercase;
	font-size: clamp(38px, 7vw, 72px);
	line-height: .98;
	letter-spacing: .01em;
	max-width: 780px;
	text-wrap: balance;
}
.ffw-recruit__text {
	color: #ffe9ec;
	font-size: clamp(17px, 2.4vw, 21px);
	max-width: 620px;
	margin-top: 8px;
}
.ffw-recruit__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.ffw-recruit__actions .ffw-btn { font-size: 19px; padding: 15px 30px; }

/* 14. ---------- JUGEND & NEWS ---------- */
.ffw-twocol {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: clamp(28px, 4vw, 48px);
}
.ffw-col { display: flex; flex-direction: column; }
.ffw-col h2 {
	text-transform: uppercase;
	font-size: clamp(28px, 4.5vw, 42px);
	line-height: 1.02;
	margin: 8px 0 16px;
	letter-spacing: .01em;
}
.ffw-jugend__media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #dcdcd9;
	margin-bottom: 18px;
}
.ffw-jugend__media img { width: 100%; height: 100%; object-fit: cover; }
.ffw-jugend__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, .35), transparent 55%);
}
.ffw-col p { font-size: 17px; color: var(--ffw-text-soft); max-width: 480px; }

.ffw-news-list { display: flex; flex-direction: column; gap: 14px; }
.ffw-news-item {
	position: relative;
	display: flex;
	gap: 16px;
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: 10px;
	padding: 18px 18px 18px 16px;
	transition: border-color .15s;
	color: inherit;
}
.ffw-news-item:hover,
.ffw-news-item:focus-within { border-color: #d6d6d3; text-decoration: none; }
.ffw-news-item__date {
	flex: none;
	width: 58px;
	text-align: center;
	border-right: 1px solid var(--ffw-line);
	padding-right: 14px;
}
.ffw-news-item__day { font-family: var(--ffw-head); font-weight: 700; font-size: 28px; line-height: 1; color: var(--ffw-red); }
.ffw-news-item__mon { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--ffw-muted); margin-top: 3px; }
.ffw-news-item__body { display: flex; flex-direction: column; gap: 3px; }
.ffw-news-item__kind { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ffw-muted); }
.ffw-news-item__title { font-weight: 600; font-size: 17px; line-height: 1.3; color: var(--ffw-ink); }
.ffw-news-item__title a { color: inherit; }
.ffw-news-item__title a:hover,
.ffw-news-item__title a:focus { color: var(--ffw-red); }
.ffw-news-item__meta { font-size: 14.5px; color: var(--ffw-muted); }

/* 15. ---------- INNENSEITEN-HEADER (DUNKEL) ---------- */
.ffw-page-hero { background: var(--ffw-ink); color: #fff; }
.ffw-page-hero__inner {
	padding-top: clamp(40px, 6vw, 72px);
	padding-bottom: clamp(34px, 5vw, 56px);
}
.ffw-page-hero__crumb { color: rgba(255, 255, 255, .6); font-size: 14px; font-weight: 600; }
.ffw-page-hero__crumb a { color: rgba(255, 255, 255, .6); }
.ffw-page-hero__crumb a:hover,
.ffw-page-hero__crumb a:focus { color: #fff; }
.ffw-page-hero h1 {
	color: #fff;
	text-transform: uppercase;
	font-size: clamp(34px, 6vw, 60px);
	line-height: 1;
	margin-top: 10px;
	letter-spacing: .01em;
}
.ffw-page-hero__lead { color: #c9c9c7; max-width: 600px; margin-top: 12px; font-size: 17px; }
.ffw-page-hero__back {
	color: rgba(255, 255, 255, .6);
	font-size: 14px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.ffw-page-hero__back:hover,
.ffw-page-hero__back:focus { color: #fff; }
.ffw-page-hero__tagrow { display: flex; align-items: center; gap: 12px; margin: 18px 0 12px; flex-wrap: wrap; }
.ffw-page-hero__tagrow .ffw-tag { font-size: 12.5px; padding: 5px 11px; }
.ffw-page-hero__tagrow time { color: #c9c9c7; font-weight: 600; }

/* 16. ---------- INHALT: BEITRAEGE / SEITEN ---------- */
.ffw-content {
	font-size: 18px;
	color: var(--ffw-text-strong);
	line-height: 1.7;
}
.ffw-content > * + * { margin-top: 1.1em; }
.ffw-content h2 { font-size: clamp(26px, 4vw, 36px); margin: 1.4em 0 .5em; text-transform: uppercase; letter-spacing: .01em; }
.ffw-content h3 { font-size: 24px; margin: 1.3em 0 .4em; text-transform: uppercase; letter-spacing: .01em; }
.ffw-content h4 { font-size: 20px; margin: 1.2em 0 .4em; }
.ffw-content a { color: var(--ffw-red); text-decoration: underline; }
.ffw-content img { border-radius: var(--ffw-radius); }
.ffw-content ul, .ffw-content ol { padding-left: 1.5em; }
.ffw-content li { margin-bottom: .4em; }
.ffw-content blockquote {
	border-left: 4px solid var(--ffw-red);
	margin: 1.4em 0;
	padding: 4px 0 4px 22px;
	color: var(--ffw-text-soft);
	font-style: italic;
}
.ffw-content table { border-collapse: collapse; width: 100%; }
.ffw-content th,
.ffw-content td { border: 1px solid var(--ffw-line); padding: 10px 14px; text-align: left; }
.ffw-content code {
	background: var(--ffw-bg);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: .92em;
}

.ffw-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	align-items: center;
	color: var(--ffw-muted);
	font-size: 14.5px;
	font-weight: 600;
	margin-bottom: 22px;
}
.ffw-article-title { text-transform: uppercase; font-size: clamp(30px, 5vw, 48px); line-height: 1.02; margin-bottom: 14px; letter-spacing: .01em; }
.ffw-article-thumb { border-radius: var(--ffw-radius-lg); overflow: hidden; margin-bottom: 28px; }

/* WordPress-Core-Ausrichtungsklassen */
.alignleft { float: left; margin: .3em 1.5em 1em 0; max-width: 50%; }
.alignright { float: right; margin: .3em 0 1em 1.5em; max-width: 50%; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { width: min(100%, calc(var(--ffw-maxw-narrow) + 180px)); margin-left: 50%; transform: translateX(-50%); max-width: 92vw; }
.alignfull { width: 100vw; margin-left: 50%; transform: translateX(-50%); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text,
.wp-element-caption { font-size: 14px; color: var(--ffw-muted); text-align: center; margin-top: 8px; }
.sticky .ffw-card-post::before { content: "\2605"; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.gallery-item img { border-radius: var(--ffw-radius); width: 100%; }

/* Inhalts-Galerie (Einsatz-Detail) */
.ffw-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
	margin: 18px 0;
	list-style: none;
	padding: 0;
}
.ffw-gallery a,
.ffw-gallery img { border-radius: var(--ffw-radius); overflow: hidden; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

/* Fakten-Raster (Einsatz-Detail) */
.ffw-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1px;
	background: var(--ffw-line);
	border: 1px solid var(--ffw-line);
	border-radius: 10px;
	overflow: hidden;
	margin: 0 0 34px;
	list-style: none;
	padding: 0;
}
.ffw-facts li { background: var(--ffw-card); padding: 18px 20px; margin: 0; }
.ffw-facts__k { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ffw-muted); }
.ffw-facts__v { font-weight: 600; font-size: 17px; margin-top: 4px; color: var(--ffw-ink); }

/* Beitrags-Karten (Archive, Blog, Suche) */
.ffw-post-list { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 620px) {
	.ffw-post-list { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
	.ffw-layout.has-sidebar .ffw-post-list { grid-template-columns: 1fr; }
}
.ffw-post-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius-lg);
	overflow: hidden;
	transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ffw-post-card:hover,
.ffw-post-card:focus-within { transform: translateY(-4px); box-shadow: var(--ffw-shadow-card); border-color: #d6d6d3; }
.ffw-post-card__media { display: block; aspect-ratio: 3 / 2; overflow: hidden; background: #dcdcd9; }
.ffw-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.ffw-post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ffw-post-card__title { font-size: 22px; text-transform: none; line-height: 1.2; }
.ffw-post-card__title a { color: var(--ffw-ink); }
.ffw-post-card__title a:hover,
.ffw-post-card__title a:focus { color: var(--ffw-red); text-decoration: none; }
.ffw-post-card__excerpt { color: var(--ffw-text-soft); font-size: 16px; }
.ffw-post-card__excerpt p { margin: 0; }
.ffw-search-result {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius-lg);
	padding: 22px;
	margin-bottom: 16px;
}

.ffw-no-results {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius-lg);
	padding: 32px;
}
.ffw-no-results h2 { text-transform: uppercase; font-size: 26px; margin-bottom: 12px; }
.ffw-no-results .search-form { margin-top: 18px; max-width: 440px; }

.ffw-comments__title { text-transform: uppercase; font-size: 26px; margin-bottom: 20px; }
.ffw-page-links { margin-top: 20px; font-weight: 600; }
.ffw-page-links a { padding: 2px 8px; border: 1px solid var(--ffw-line); border-radius: 4px; margin: 0 2px; }

/* 17. ---------- EINSATZVERWALTUNG-PLUGIN ---------- */
/* Vom Plugin in the_content() eingefuegte Einsatzdetails sowie Einsatzliste/-Widget.
   Klassen stammen aus dem Plugin (style-frontend.css): nicht umbenennen, nur stylen. */

/* Einsatzdetails-Block im Inhalt */
.einsatzdetails,
.einsatz-meldung,
.vehicles,
.entry-content > p:first-child:has(b) {
	/* gestaltet als Infokasten passend zu .ffw-facts */
}
.ffw-content .einsatzverwaltung-reportlist,
.einsatzverwaltung-reportlist {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid var(--ffw-line);
	border-radius: 10px;
	overflow: hidden;
	font-size: 16px;
	margin: 18px 0;
}
.einsatzverwaltung-reportlist th,
.einsatzverwaltung-reportlist td {
	padding: 11px 14px;
	border-bottom: 1px solid var(--ffw-line);
	text-align: left;
	vertical-align: top;
}
.einsatzverwaltung-reportlist thead th,
.einsatzverwaltung-reportlist .einsatz-header {
	background: var(--ffw-ink);
	color: #fff;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	border-bottom: none;
}
.einsatzverwaltung-reportlist tbody tr:hover,
.einsatzverwaltung-reportlist tr.report:hover { background: var(--ffw-bg); }
.einsatzverwaltung-reportlist a { color: var(--ffw-ink); font-weight: 600; }
.einsatzverwaltung-reportlist a:hover,
.einsatzverwaltung-reportlist a:focus { color: var(--ffw-red); }
.einsatzverwaltung-reportlist .einsatz-column-number,
.einsatzverwaltung-reportlist .einsatz-column-date,
.einsatzverwaltung-reportlist .einsatz-column-time { white-space: nowrap; color: var(--ffw-muted); }
.einsatzverwaltung-reportlist .einsatz-title-year,
.einsatzverwaltung-reportlist .einsatz-title-month,
.einsatzverwaltung-reportlist .einsatz-title-quarter {
	background: var(--ffw-bg);
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 700;
	color: var(--ffw-ink);
}
.annotation-icon-bar { float: right; margin-left: 10px; color: var(--ffw-red); }
.annotation-icon-bar .fa,
.annotation-icon-bar i { color: var(--ffw-red); }

/* "Letzte Einsaetze"-Widget der Einsatzverwaltung */
.einsatzverwaltung-widget { list-style: none; margin: 0; padding: 0; }
.einsatzverwaltung-widget li { padding: 10px 0; border-bottom: 1px solid var(--ffw-line); }
.einsatzverwaltung-widget li:last-child { border-bottom: none; }
.einsatzverwaltung-widget a { color: var(--ffw-ink); font-weight: 600; }
.einsatzverwaltung-widget a:hover,
.einsatzverwaltung-widget a:focus { color: var(--ffw-red); }

/* Vom Plugin gerenderte Einsatzdetails (Standard: <p> mit <b>Label:</b>) */
.entry-content .einsatzverwaltung-einsatzdetails,
.ffw-content .einsatzverwaltung-einsatzdetails {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-left: 4px solid var(--ffw-red);
	border-radius: var(--ffw-radius);
	padding: 18px 22px;
	margin: 0 0 28px;
	line-height: 1.9;
}

/* 18. ---------- SIDEBAR / WIDGETS / SUCHE ---------- */
.ffw-layout { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 4vw, 48px); }
.ffw-sidebar .widget {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius-lg);
	padding: 22px;
	margin-bottom: 22px;
}
.ffw-sidebar .widget:last-child { margin-bottom: 0; }
.widget-title,
.ffw-sidebar .widget-title {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .03em;
	font-size: 20px;
	margin-bottom: 14px;
	color: var(--ffw-ink);
}
.ffw-sidebar .widget ul { list-style: none; margin: 0; padding: 0; }
.ffw-sidebar .widget li { padding: 7px 0; border-bottom: 1px solid var(--ffw-line); }
.ffw-sidebar .widget li:last-child { border-bottom: none; }
.ffw-sidebar .widget a { color: var(--ffw-text-soft); }
.ffw-sidebar .widget a:hover,
.ffw-sidebar .widget a:focus { color: var(--ffw-red); }

.search-form { display: flex; gap: 8px; }
.search-form .search-field {
	flex: 1;
	padding: 11px 14px;
	border: 1.5px solid var(--ffw-line);
	border-radius: 6px;
	font-size: 16px;
	background: #fff;
	color: var(--ffw-ink);
	min-width: 0;
}
.search-form .search-submit {
	background: var(--ffw-red);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 0 18px;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 700;
}
.search-form .search-submit:hover,
.search-form .search-submit:focus { background: var(--ffw-red-dk); }

/* 19. ---------- KOMMENTARE ---------- */
.ffw-comments { margin-top: 48px; }
.ffw-comments .comment-list { list-style: none; margin: 0; padding: 0; }
.ffw-comments .comment-list ol { list-style: none; }
.ffw-comments .comment-body {
	background: var(--ffw-card);
	border: 1px solid var(--ffw-line);
	border-radius: var(--ffw-radius);
	padding: 18px 20px;
	margin-bottom: 16px;
}
.ffw-comments .comment-author { font-weight: 700; }
.ffw-comments .comment-meta { font-size: 13.5px; color: var(--ffw-muted); margin-bottom: 8px; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--ffw-line);
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
	margin-top: 4px;
}

/* 20. ---------- CONTACT FORM 7 ---------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--ffw-line);
	border-radius: 6px;
	font-size: 16px;
	font-family: inherit;
	background: #fff;
	color: var(--ffw-ink);
	margin-top: 4px;
}
.wpcf7 label { display: block; font-weight: 600; margin-bottom: 14px; }
.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
	background: var(--ffw-red);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 13px 28px;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-weight: 700;
	font-size: 17px;
	cursor: pointer;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 button[type="submit"]:hover { background: var(--ffw-red-dk); }
.wpcf7-not-valid-tip { color: var(--ffw-red); font-size: 14px; }

/* 21. ---------- PAGINIERUNG ---------- */
.ffw-pagination { margin-top: 40px; }
.ffw-pagination .nav-links,
.ffw-pagination .page-numbers { display: inline-flex; }
.ffw-pagination .page-numbers {
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.ffw-pagination a.page-numbers,
.ffw-pagination span.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 12px;
	border: 1.5px solid var(--ffw-line);
	border-radius: 6px;
	font-family: var(--ffw-head);
	font-weight: 600;
	color: var(--ffw-ink);
	background: var(--ffw-card);
}
.ffw-pagination a.page-numbers:hover,
.ffw-pagination a.page-numbers:focus { border-color: var(--ffw-red); color: var(--ffw-red); text-decoration: none; }
.ffw-pagination .page-numbers.current { background: var(--ffw-red); border-color: var(--ffw-red); color: #fff; }

.ffw-post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.ffw-post-nav a { font-weight: 600; }

/* 22. ---------- FOOTER ---------- */
.ffw-footer { background: var(--ffw-ink); color: #cfcfcc; margin-top: auto; }
.ffw-footer-notruf { background: var(--ffw-red); }
.ffw-footer-notruf__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 18px;
	padding-bottom: 18px;
}
.ffw-footer-notruf__claim {
	color: #fff;
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 600;
	font-size: 20px;
}
.ffw-footer-notruf__number {
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
}
.ffw-footer-notruf__number .ffw-pulse { box-shadow: none; }
.ffw-footer-notruf__number .ffw-num { font-family: var(--ffw-head); font-size: 28px; line-height: 1; }
.ffw-footer-notruf__number a { color: #fff; }

.ffw-footer-cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 36px;
	padding-top: clamp(40px, 6vw, 64px);
}
.ffw-footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.ffw-footer-brand__text { font-family: var(--ffw-head); font-weight: 700; text-transform: uppercase; font-size: 18px; color: #fff; line-height: 1.05; }
.ffw-footer-brand__text span { font-size: 12px; letter-spacing: .14em; color: #9b9b98; }
.ffw-footer p { font-size: 15px; color: #9b9b98; max-width: 280px; line-height: 1.6; }
.ffw-footer__heading {
	font-family: var(--ffw-head);
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 12px;
}
.ffw-footer__contact { font-size: 15px; line-height: 1.9; color: #bdbdba; }
.ffw-footer__contact a { color: #bdbdba; }
.ffw-footer__contact a:hover,
.ffw-footer__contact a:focus { color: #fff; }
.ffw-footer__links { display: flex; flex-direction: column; gap: 8px; font-size: 15px; list-style: none; margin: 0; padding: 0; }
.ffw-footer__links a { color: #bdbdba; }
.ffw-footer__links a:hover,
.ffw-footer__links a:focus { color: #fff; }
.ffw-footer__links .current-menu-item > a { color: #fff; }

.ffw-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.ffw-social {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: var(--ffw-grey);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-family: var(--ffw-head);
	font-size: 16px;
	color: #fff;
	transition: background .15s;
	text-transform: uppercase;
}
.ffw-social:hover,
.ffw-social:focus { background: var(--ffw-red); color: #fff; }
/* Easy Social Icons Kompatibilitaet */
.ffw-footer .esi-icons-container,
.ffw-footer .easy-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.ffw-footer-bottom {
	padding-top: 28px;
	padding-bottom: 28px;
	margin-top: clamp(36px, 5vw, 56px);
	border-top: 1px solid #2b2b2b;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	align-items: center;
	justify-content: space-between;
	font-size: 14px;
	color: #8a8a87;
}
.ffw-footer-bottom__legal { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.ffw-footer-bottom a { color: #8a8a87; }
.ffw-footer-bottom a:hover,
.ffw-footer-bottom a:focus { color: #fff; }

/* 23. ---------- RESPONSIVE ---------- */
@media (min-width: 940px) {
	.ffw-burger { display: none; }
	.ffw-nav-desktop { display: flex; }
	.ffw-notruf-bar__hint { display: inline; }
}
@media (max-width: 939px) {
	.ffw-notruf-bar__hint,
	.ffw-notruf-bar__links { display: none; }
}
@media (min-width: 860px) {
	.ffw-layout.has-sidebar { grid-template-columns: minmax(0, 1fr) 320px; }
}
@media (max-width: 600px) {
	body { font-size: 16px; }
	.ffw-stats { grid-template-columns: 1fr 1fr; }
	.ffw-einsatz-row__body { gap: 12px; }
	.ffw-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
	.ffw-brand__name { font-size: 19px; }
	.ffw-brand__sub { font-size: 12.5px; letter-spacing: .12em; }
}
