/* ---------------------------------------------------------------
   Design-Tokens
   Palette "Redaktion" (Entscheidung vom 13.08.2026).
   ACHTUNG: Beim Umbau ist NUR uebernommen, was heute schon live ist -
   Cream im Filderguide, Theme-Weiss im Rest. Die uebrigen Tokens sind
   dokumentiert, aber noch nicht flaechig angewendet.
   --------------------------------------------------------------- */
:root {
	--fa-papier:       #F7F5F1; /* Filderguide-Hintergrund, live */
	--fa-karte:        #FFFFFF;
	--fa-tinte:        #161514;
	--fa-text-sekund:  #57534C;
	--fa-linie:        #E4E0D8;
	--fa-gelb:         #FFC42E; /* nur Flaeche/Marker/aktiver Zustand, nie Fliesstext */
	--fa-rot:          #F5442E; /* ausschliesslich Eilmeldung */

	/* Der seitliche Abstand zum Bildschirmrand. GeneratePress haengt ihn an
	   .inside-article - eine eigene Vorlage, die diesen Container nicht baut,
	   hat ihn deshalb nicht und klebt am Rand. Als Variable ist er auch dort
	   greifbar. */
	--fa-rand: 30px;
}

/* Eine Seite, die nicht aus Artikeln besteht - Kampagnen, Uebersichten. Sie
   bringt den Abstand mit, den .inside-article sonst liefert. */
.fa-seite {
	padding: 22px var(--fa-rand) 0;
}

/* Filderguide-Bereich behaelt seinen Newsprint-Ton */
body.post-type-archive-firma,
body.single-firma,
body.tax-branche,
body.page-template-filderguide {
	background-color: var(--fa-papier);
}

/* ---------------------------------------------------------------
   Kopfleiste

   Drei Stufen:
     ab 1024px  alles nebeneinander, mit Datum
     768-1023   Datum entfaellt, Orte ruecken zusammen
     unter 768  Orte und Rubriken werden zu Wechslern, Suche zur Lupe

   Gelb markiert ausschliesslich den aktiven Zustand, nie Fliesstext -
   dafuer ist der Kontrast zu schwach.
   --------------------------------------------------------------- */
/* --- Servicezeile ganz oben ---
   Dunkel abgesetzt, damit sie sich von den beiden Menuezeilen darunter
   unterscheidet: Dort steht der Inhalt der Seite, hier stehen Wege nach
   draussen. Bewusst niedrig - sie soll da sein, nicht auffallen. */
.fa-service {
	background: var(--fa-tinte);
	color: #E8E4DA;
}

.fa-service-innen {
	max-width: var(--fa-breite, 1200px);
	margin: 0 auto;
	padding: 0 var(--fa-rand);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 40px;
}

.fa-service-links {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}
.fa-service-links a {
	font-size: 14.5px;
	font-weight: 500;
	color: #E8E4DA;
	text-decoration: none;
	padding: 9px 0;
	white-space: nowrap;
}

.fa-service-punkt {
	color: #6C7169;
	font-size: 14.5px;
	line-height: 1;
}
.fa-service-links a:hover,
.fa-service-links a:focus-visible {
	color: var(--fa-gelb);
}

.fa-service-sozial {
	display: flex;
	align-items: center;
	gap: 4px;
}
.fa-service-sozial a {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #C6C2B8;
	border-radius: 4px;
}
.fa-service-sozial a:hover,
.fa-service-sozial a:focus-visible {
	color: var(--fa-tinte);
	background: var(--fa-gelb);
}
.fa-service-sozial svg { width: 17px; height: 17px; display: block; }

@media (max-width: 600px) {
	/* Der ganze Satz passt auf dem Telefon nicht neben den Kalender. Er
	   wird deshalb gekuerzt statt ausgeblendet: WhatsApp steht seit dem
	   Aufraeumen der Rubrikenzeile nur noch hier und im Fuss. */
	.fa-service-links a { font-size: 13.5px; }
	.fa-service-links { gap: 8px; }
	.fa-service-innen { min-height: 36px; gap: 10px; }
	.fa-service-lang { display: none; }
}

.fa-kopf {
	background: var(--fa-karte);
	/* Dieselbe duenne Linie wie zwischen den Zeilen darin - die Kopfleiste
	   bleibt ein zusammenhaengender Block. Die kraeftige Linie gehoert dem
	   Inhalt und markiert, wo er beginnt. */
	border-bottom: 1px solid var(--fa-linie);
}

.fa-kopf-zeile {
	max-width: var(--fa-breite, 1200px);
	margin: 0 auto;
	padding-inline: 24px;
	display: flex;
	align-items: center;
	gap: 24px;
}

/* --- Zeile 1: Wortmarke, Datum, Suche --- */
.fa-kopf-marke { padding-block: 15px; }

.fa-marke {
	/* Archivo liegt lokal im Theme, siehe assets/css/schrift.css.
	   Der Fallback ist bewusst eine Grotesk aehnlicher Breite, damit beim
	   Nachladen nichts springt. */
	font-family: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -.028em;
	color: var(--fa-tinte);
	text-decoration: none;
	white-space: nowrap;
}
.fa-marke-tld { color: var(--fa-gelb); }

.fa-kopf-rechts {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.fa-datum {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 12px;
	color: var(--fa-text-sekund);
	white-space: nowrap;
}

.fa-kopf .search-form,
.fa-kopf .wp-block-search__inside-wrapper {
	display: flex;
	border: 1px solid var(--fa-linie);
	border-radius: 999px;
	overflow: hidden;
	background: var(--fa-karte);
}
.fa-kopf .search-field {
	border: 0;
	background: transparent;
	padding: 7px 14px;
	font-size: 13.5px;
	color: var(--fa-tinte);
	min-width: 9rem;
}
.fa-kopf .search-field:focus { outline: 2px solid var(--fa-gelb); outline-offset: -2px; }
.fa-kopf .search-submit { border: 0; background: transparent; padding: 7px 12px; cursor: pointer; }

/* Lupe - nur auf dem Telefon sichtbar */
.fa-lupe {
	display: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--fa-linie);
	background: var(--fa-karte);
	color: var(--fa-text-sekund);
	place-items: center;
	cursor: pointer;
	padding: 0;
}
.fa-lupe svg { width: 16px; height: 16px; }
.fa-lupe:hover { color: var(--fa-tinte); border-color: var(--fa-tinte); }

/* --- Zeile 2 und 3: Wechsler --- */
.fa-kopf-orte,
.fa-kopf-rubriken { border-top: 1px solid var(--fa-linie); }

.fa-wechsler { width: 100%; }
.fa-wechsler-knopf { display: none; }          /* auf dem Desktop unnoetig */
.fa-wechsler::-webkit-details-marker { display: none; }
.fa-wechsler summary::-webkit-details-marker { display: none; }
.fa-wechsler summary { list-style: none; }

.fa-menue {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Orte */
.fa-kopf-orte .fa-menue { gap: 26px; }
.fa-kopf-orte .fa-menue a {
	display: inline-block;
	color: var(--fa-tinte);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	white-space: nowrap;
	padding-block: 12px;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.fa-kopf-orte .fa-menue a:hover,
.fa-kopf-orte .fa-menue a:focus-visible { border-bottom-color: var(--fa-gelb); }
.fa-kopf-orte .current-menu-item > a,
.fa-kopf-orte .current-menu-parent > a,
.fa-kopf-orte .current-menu-ancestor > a {
	border-bottom-color: var(--fa-gelb);
	font-weight: 600;
}

/* Filderguide und Kampagnen */
.fa-kopf-rubriken .fa-menue { gap: 18px; }
.fa-kopf-rubriken .fa-menue a {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 12.5px;
	color: var(--fa-text-sekund);
	text-decoration: none;
	white-space: nowrap;
	padding-block: 9px;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	display: inline-block;
}
.fa-kopf-rubriken .fa-menue a:hover,
.fa-kopf-rubriken .fa-menue a:focus-visible { color: var(--fa-tinte); }
.fa-kopf-rubriken .current-menu-item > a {
	color: var(--fa-tinte);
	border-bottom-color: var(--fa-gelb);
}

/* --- Stufe 2: Tablet hoch --- */
@media (max-width: 1023px) {
	.fa-datum { display: none; }
	.fa-kopf-orte .fa-menue { gap: 20px; }
	.fa-kopf-rubriken .fa-menue { gap: 15px; }
}

/* --- Stufe 3: Telefon --- */
@media (max-width: 767px) {
	.fa-kopf-zeile { padding-inline: 16px; gap: 14px; }
	.fa-kopf-marke { padding-block: 12px; }
	.fa-marke { font-size: 21px; }
	.fa-marke img { max-height: 34px; }

	.fa-lupe { display: grid; }
	.fa-kopf .search-form.fa-suche-versteckt,
	.fa-kopf .wp-block-search.fa-suche-versteckt { display: none; }
	.fa-kopf .search-field { min-width: 0; width: 100%; }

	/* Der Wechslerknopf ersetzt die Zeile */
	.fa-wechsler-knopf {
		display: flex;
		align-items: center;
		gap: 10px;
		padding-block: 11px;
		cursor: pointer;
		color: var(--fa-tinte);
	}
	.fa-wechsler-knopf:focus-visible { outline: 2px solid var(--fa-gelb); outline-offset: 2px; }

	.fa-wechsler-balken {
		width: 22px;
		height: 3px;
		border-radius: 2px;
		background: var(--fa-gelb);
		flex: none;
	}
	.fa-wechsler-titel {
		font-size: 16px;
		font-weight: 700;
		letter-spacing: -.015em;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.fa-wechsler-pfeil {
		margin-left: auto;
		width: 14px;
		height: 14px;
		flex: none;
		color: var(--fa-text-sekund);
		transition: transform .18s ease;
	}
	.fa-wechsler[open] .fa-wechsler-pfeil { transform: rotate(180deg); }

	/* Die Rubrikenzeile ist die zweitrangige - kleiner gesetzt */
	.fa-kopf-rubriken .fa-wechsler-titel {
		font-size: 14px;
		font-weight: 600;
		color: var(--fa-text-sekund);
	}
	.fa-kopf-rubriken .fa-wechsler-balken { background: var(--fa-linie); }

	/* Aufgeklappte Liste */
	.fa-kopf .fa-menue {
		display: block;
		padding-bottom: 10px;
	}
	.fa-kopf .fa-menue li { border-top: 1px solid var(--fa-linie); }
	.fa-kopf .fa-menue li:first-child { border-top: 0; }
	.fa-kopf-orte .fa-menue a,
	.fa-kopf-rubriken .fa-menue a {
		display: block;
		padding: 11px 0;
		border-bottom: 0;
		margin-bottom: 0;
		font-size: 15px;
	}
	.fa-kopf-orte .current-menu-item > a,
	.fa-kopf-orte .current-menu-parent > a,
	.fa-kopf-rubriken .current-menu-item > a {
		font-weight: 700;
		border-bottom: 0;
	}
	.fa-kopf-orte .current-menu-item > a::after,
	.fa-kopf-orte .current-menu-parent > a::after,
	.fa-kopf-rubriken .current-menu-item > a::after {
		content: "";
		display: inline-block;
		vertical-align: middle;
		width: 18px;
		height: 3px;
		border-radius: 2px;
		background: var(--fa-gelb);
		margin-left: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fa-wechsler-pfeil { transition: none; }
}

/* ---------------------------------------------------------------
   Einzelbeitrag

   Aufbau: Kategorie, Untertitel, Titel, Bild, Text, Autor.
   Danach Veranstaltungen und Artikelvorschlaege.

   Desktop: 70 zu 30 mit Seitenspalte rechts (GeneratePress-Voreinstellung).
   Telefon: Seitenspalte rutscht unter den Autor.
   --------------------------------------------------------------- */
.fa-artikel { max-width: 46rem; }

/* --- Kopf --- */
.fa-artikel-kopf { margin-bottom: 22px; }

.fa-artikel-kicker {
	display: inline-block;
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 11.5px;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--fa-text-sekund);
	text-decoration: none;
	margin-bottom: 12px;
	padding-bottom: 2px;
	border-bottom: 2px solid var(--fa-gelb);
}
.fa-artikel-kicker:hover { color: var(--fa-tinte); }

.fa-artikel-untertitel {
	font-size: 17px;
	font-weight: 500;
	color: var(--fa-text-sekund);
	margin: 0 0 6px;
	line-height: 1.35;
}

.fa-artikel-titel {
	font-family: 'Archivo', 'Segoe UI', system-ui, sans-serif;
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 800;
	letter-spacing: -.022em;
	line-height: 1.12;
	color: var(--fa-tinte);
	text-wrap: balance;
	margin: 0 0 14px;
}

.fa-artikel-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 13.5px;
	color: var(--fa-text-sekund);
	padding-bottom: 16px;
	border-bottom: 1px solid var(--fa-linie);
}
.fa-artikel-sportart::before { content: "· "; }

/* --- Beitragsbild --- */
.fa-artikel-bild { margin: 0 0 26px; }
.fa-artikel-bild img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}
.fa-artikel-bild figcaption {
	font-size: 13px;
	color: var(--fa-text-sekund);
	padding-top: 8px;
	line-height: 1.45;
}

/* --- Text --- */
.fa-artikel-text {
	font-size: 17.5px;
	line-height: 1.7;
	color: var(--fa-tinte);
	margin-top: 26px;
}
/* Steht ein Vorspann davor, bringt der den Abstand schon mit. */
.fa-artikel-vorspann + .fa-artikel-text { margin-top: 0; }
.fa-artikel-text > p { margin: 0 0 1.15em; }
.fa-artikel-text h2 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -.015em;
	margin: 1.7em 0 .5em;
	text-wrap: balance;
}
.fa-artikel-text h3 { font-size: 20px; font-weight: 700; margin: 1.5em 0 .4em; }
.fa-artikel-text a { color: var(--fa-tinte); text-decoration-color: var(--fa-gelb); text-decoration-thickness: 2px; }
.fa-artikel-text a:hover { background: var(--fa-gelb); }
.fa-artikel-text img { max-width: 100%; height: auto; border-radius: 3px; }
.fa-artikel-text blockquote {
	margin: 1.5em 0;
	padding-left: 20px;
	border-left: 3px solid var(--fa-gelb);
	color: var(--fa-text-sekund);
}

/* Anzeigen, die Advanced Ads zwischen die Absaetze schiebt */
.fa-artikel-text .fa-anzeige,
.fa-artikel-text .advads-content-injection {
	margin: 2em 0;
	padding-top: 14px;
	border-top: 1px solid var(--fa-linie);
}

.fa-artikel-quelle {
	font-size: 13.5px;
	color: var(--fa-text-sekund);
	margin: 26px 0 0;
}

/* --- Autor --- */
.fa-artikel-fuss {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid var(--fa-linie);
}

.fa-autor { display: flex; align-items: center; gap: 14px; }
.fa-autor-bild { border-radius: 50%; width: 48px; height: 48px; }
.fa-autor-text { display: flex; flex-direction: column; gap: 1px; }
.fa-autor-name { font-weight: 600; color: var(--fa-tinte); }
.fa-autor-zusatz { font-size: 13.5px; color: var(--fa-text-sekund); }

/* --- Bloecke darunter --- */
/* Die Bloecke stehen ausserhalb von .inside-article und muessen dessen
   Innenabstand selbst mitbringen - sonst kleben sie am Bildschirmrand. */
.fa-block {
	max-width: 46rem;
	margin-top: 44px;
	padding: 22px 30px 0;   /* wie .inside-article */
	border-top: 2px solid var(--fa-tinte);
}

.fa-block-titel {
	font-family: 'Archivo', 'Segoe UI', system-ui, sans-serif;
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -.015em;
	margin: 0 0 16px;
	color: var(--fa-tinte);
}

.fa-block-mehr {
	display: inline-block;
	margin-top: 14px;
	font-size: 14px;
	color: var(--fa-tinte);
	text-decoration-color: var(--fa-gelb);
	text-decoration-thickness: 2px;
}

/* Veranstaltungen */
.fa-termine { list-style: none; margin: 0; padding: 0; }
.fa-termin { border-top: 1px solid var(--fa-linie); }
.fa-termin:first-child { border-top: 0; }
.fa-termin a {
	display: grid;
	grid-template-columns: 4.5rem 1fr;
	gap: 4px 16px;
	padding: 11px 0;
	text-decoration: none;
	color: var(--fa-tinte);
}
.fa-termin a:hover .fa-termin-titel { text-decoration: underline; text-decoration-color: var(--fa-gelb); }
.fa-termin-datum {
	grid-row: span 2;
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 500;
	color: var(--fa-text-sekund);
	padding-top: 2px;
}
.fa-termin-titel { font-weight: 600; line-height: 1.35; }
.fa-termin-ort { font-size: 13px; color: var(--fa-text-sekund); }

/* Artikelvorschlaege */
.fa-weitere-liste {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.fa-vorschlag {
	text-decoration: none;
	color: var(--fa-tinte);
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.fa-vorschlag-bild { display: block; }
.fa-vorschlag-bild img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	object-position: center center;
	border-radius: 3px;
	background: var(--fa-linie);
}
.fa-vorschlag-bild.fa-bild--quadratisch img { aspect-ratio: 1 / 1; }
/* Fehlt einem Vorschlag das Bild, rueckt sein Text an dieselbe Stelle wie
   bei den anderen, statt nach oben zu rutschen. */
.fa-weitere-liste .fa-vorschlag:not(.fa-vorschlag-mit-bild) .fa-vorschlag-text {
	padding-top: calc(66.667% + 9px);
}
.fa-vorschlag-text { display: flex; flex-direction: column; gap: 3px; }
.fa-vorschlag-datum {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 11.5px;
	color: var(--fa-text-sekund);
}
.fa-vorschlag-titel { font-weight: 600; line-height: 1.3; font-size: 15.5px; }
/* Nur dort, wo es echtes Hover gibt - auf dem Telefon bleibt der Zustand
   sonst nach dem Antippen kleben. */
@media (hover: hover) {
	.fa-vorschlag:hover .fa-vorschlag-titel {
		text-decoration: underline;
		text-decoration-color: var(--fa-gelb);
		text-decoration-thickness: 2px;
	}
}
.fa-vorschlag:focus-visible .fa-vorschlag-titel {
	text-decoration: underline;
	text-decoration-color: var(--fa-gelb);
	text-decoration-thickness: 2px;
}

/* Anzeigen unter dem Artikel - nur auf dem Telefon, dort steht keine Spalte */
.fa-anzeigen-mobil { display: none; }

@media (max-width: 767px) {
	:root { --fa-rand: 20px; }
	.fa-artikel-text { font-size: 17px; }
	/* GeneratePress setzt hier 30px - auf schmalen Schirmen geht davon zu
	   viel Textbreite verloren. Der Selektor muss so spezifisch sein wie
	   der des Themes, sonst gewinnt dessen Regel. */
	.separate-containers .inside-article,
	.separate-containers .comments-area,
	.separate-containers .page-header {
		padding-inline: 20px;
	}
	.fa-block { padding-inline: 20px; }
	.fa-artikel-titel { font-size: clamp(25px, 7vw, 31px); }
	.fa-weitere-liste { grid-template-columns: 1fr; gap: 18px; }
	/* Nebeneinander nur, wenn links auch wirklich ein Bild steht */
	.fa-vorschlag-mit-bild {
		display: grid;
		grid-template-columns: 7.5rem 1fr;
		gap: 12px;
		align-items: start;
	}
	.fa-vorschlag-mit-bild .fa-vorschlag-bild { margin-bottom: 0; }
	.fa-weitere-liste .fa-vorschlag:not(.fa-vorschlag-mit-bild) .fa-vorschlag-text {
		padding-top: 0;
	}
	.fa-anzeigen-mobil {
		display: block;
		margin-top: 34px;
		padding-top: 18px;
		border-top: 1px solid var(--fa-linie);
	}
	/* Die Seitenspalte steht auf dem Telefon nach dem Artikel, nicht davor */
	.single-post .sidebar { margin-top: 34px; }
}

/* ---------------------------------------------------------------
   Vorspann (ACF-Feld "zusammenfassung")

   Mit Bild steht er darunter und ergaenzt das Motiv.
   Ohne Bild ruecken Ueberschrift, Untertitel und Vorspann auf und
   tragen den Einstieg gemeinsam - dieselbe Seite, nur ohne Foto.
   --------------------------------------------------------------- */
.fa-artikel-vorspann {
	font-size: 18px;
	line-height: 1.55;
	font-weight: 600;
	color: var(--fa-tinte);
	/* Deutlicher Abstand nach unten - der Vorspann soll als eigener Block
	   lesbar sein und nicht in den Fliesstext uebergehen. */
	margin: 20px 0 34px;
	text-wrap: pretty;
}

.fa-artikel--ohne-bild .fa-artikel-titel { font-size: clamp(31px, 4.6vw, 44px); }
.fa-artikel--ohne-bild .fa-artikel-untertitel {
	font-size: 18px;
	font-weight: 600;
	color: var(--fa-tinte);
}
.fa-artikel--ohne-bild .fa-artikel-meta { border-bottom-width: 2px; border-bottom-color: var(--fa-tinte); }
.fa-artikel--ohne-bild .fa-artikel-vorspann {
	font-size: 19.5px;
	line-height: 1.5;
	margin-bottom: 38px;
}

@media (max-width: 767px) {
	.fa-artikel-vorspann { font-size: 17px; margin-bottom: 30px; }
	.fa-artikel--ohne-bild .fa-artikel-titel { font-size: clamp(26px, 7.4vw, 33px); }
	.fa-artikel--ohne-bild .fa-artikel-untertitel { font-size: 16px; }
	.fa-artikel--ohne-bild .fa-artikel-vorspann { font-size: 18px; }
}

/* ---------------------------------------------------------------
   Seitenspalte

   Auf dem Desktop rechts neben dem Artikel, auf dem Telefon darunter.
   Der Platzhalter zeigt nur, wo Anzeigen laufen werden - er wird
   ersetzt, sobald Advanced Ads eingerichtet ist.
   --------------------------------------------------------------- */
.single-post .sidebar .widget {
	padding: 0;
	background: none;
	margin-bottom: 26px;
}

.fa-anzeigenplatz {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 250px;
	border: 1px dashed var(--fa-linie);
	border-radius: 3px;
	background: var(--fa-karte);
	color: var(--fa-text-sekund);
}
.fa-anzeigenplatz-label {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 11px;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.fa-anzeigenplatz-mass {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 12px;
	opacity: .6;
}

@media (max-width: 767px) {
	/* Unter dem Artikel, mit demselben Innenabstand wie dieser */
	.single-post .sidebar { padding-inline: 20px; margin-top: 34px; }
	.fa-anzeigenplatz { min-height: 200px; }
}

/* ---------------------------------------------------------------
   Beitragsliste

   Desktop: Bild links, Text rechts. Ohne Bild nimmt der Text die
   volle Breite - eine leere Bildspalte waere schlechter als gar keine.
   Telefon: alles untereinander.
   --------------------------------------------------------------- */
.fa-archiv-kopf {
	max-width: var(--fa-breite, 1200px);
	margin: 0 auto 4px;
	/* Luft zwischen Kopfleiste und Ortsname, danach der Name mit Abstand
	   zur trennenden Linie. */
	padding: 26px 0 16px;
	border-bottom: 2px solid var(--fa-tinte);
}

.fa-archiv-titel {
	font-family: 'Archivo', 'Segoe UI', system-ui, sans-serif;
	/* Kleiner als die Wortmarke (25px), groesser als ein Eintragstitel
	   (21px). Vorher waren es 34px - damit war das Etikett der Liste das
	   groesste auf der Seite und stach die Marke aus. Ein Artikeltitel
	   darf gross sein, der ist Inhalt; "Aus allen Orten" ist nur die
	   Aufschrift darueber. Die Praesenz holt sie sich aus der Linie
	   darunter, nicht aus der Groesse. */
	font-size: clamp(21px, 2.2vw, 24px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.15;
	color: var(--fa-tinte);
	margin: 0;
}

/* --- Ein Eintrag --- */
.fa-eintrag { border-bottom: 1px solid var(--fa-linie); }
.fa-eintrag .inside-article { padding-block: 26px; }
.fa-eintrag:first-of-type .inside-article { padding-top: 22px; }

.fa-eintrag--mit-bild .inside-article {
	display: grid;
	grid-template-columns: 15rem 1fr;
	gap: 22px;
	/* stretch, damit die Bildspalte die Hoehe des Textes bekommt. */
	align-items: stretch;
}

.fa-eintrag-bild { display: block; }
.fa-eintrag-bild img {
	display: block;
	width: 100%;
	/* Standard: Das Bild fuellt die Hoehe des Textes daneben und wird
	   dafuer beschnitten. */
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 3px;
	background: var(--fa-linie);
}

/* Quadratische Motive behalten ihr Format, auch wenn der Text daneben
   hoeher laeuft. Sie stehen dann oben, darunter bleibt Platz. */
.fa-eintrag-bild.fa-bild--quadratisch { align-self: start; }
.fa-eintrag-bild.fa-bild--quadratisch img {
	height: auto;
	aspect-ratio: 1 / 1;
}

.fa-eintrag-text { display: flex; flex-direction: column; align-items: flex-start; }

.fa-eintrag-kicker {
	font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
	font-size: 11px;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--fa-text-sekund);
	text-decoration: none;
	padding-bottom: 2px;
	border-bottom: 2px solid var(--fa-gelb);
	margin-bottom: 9px;
}
.fa-eintrag-kicker:hover { color: var(--fa-tinte); }

.fa-eintrag-untertitel {
	font-size: 14.5px;
	font-weight: 500;
	color: var(--fa-text-sekund);
	margin: 0 0 3px;
	line-height: 1.35;
}

.fa-eintrag-titel {
	font-family: 'Archivo', 'Segoe UI', system-ui, sans-serif;
	font-size: 21px;
	font-weight: 700;
	letter-spacing: -.018em;
	line-height: 1.22;
	margin: 0 0 7px;
	text-wrap: balance;
}
.fa-eintrag-titel a { color: var(--fa-tinte); text-decoration: none; }
@media (hover: hover) {
	.fa-eintrag-titel a:hover {
		text-decoration: underline;
		text-decoration-color: var(--fa-gelb);
		text-decoration-thickness: 2px;
	}
}

.fa-eintrag-meta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	font-size: 13px;
	color: var(--fa-text-sekund);
	margin: 0 0 9px;
}
.fa-eintrag-autor { font-weight: 500; }

.fa-eintrag-zusammenfassung {
	font-size: 15.5px;
	line-height: 1.6;
	color: var(--fa-tinte);
	margin: 0 0 14px;
	max-width: 62ch;
}
/* Ohne Bild steht dem Text die ganze Spalte zu - sonst rueckt er nur nach
   links und laesst rechts eine Luecke, wo das Bild waere. */
.fa-eintrag:not(.fa-eintrag--mit-bild) .fa-eintrag-zusammenfassung,
.fa-eintrag:not(.fa-eintrag--mit-bild) .fa-eintrag-titel {
	max-width: none;
}

.fa-eintrag-knopf {
	display: inline-block;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--fa-tinte);
	text-decoration: none;
	padding: 7px 16px;
	border: 1px solid var(--fa-tinte);
	border-radius: 999px;
	margin-top: auto;
}
.fa-eintrag-knopf:hover,
.fa-eintrag-knopf:focus-visible {
	background: var(--fa-gelb);
	border-color: var(--fa-gelb);
	color: var(--fa-tinte);
}

/* Anzeige zwischen den Eintraegen */
.fa-listen-anzeige {
	margin: 4px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--fa-linie);
}

.fa-archiv-ende {
	margin: 30px 0 0;
	padding: 18px 0;
	border-top: 2px solid var(--fa-tinte);
	font-size: 15px;
	color: var(--fa-text-sekund);
}
.fa-archiv-ende a { color: var(--fa-tinte); text-decoration-color: var(--fa-gelb); text-decoration-thickness: 2px; }

@media (max-width: 767px) {
	.fa-archiv-kopf { padding: 22px 20px 14px; }
	/* Untereinander: Bild oben, dann der Text. Es gibt keine Texthoehe,
	   an der sich das Bild ausrichten koennte - deshalb Querformat als
	   Standard, quadratische Motive bleiben quadratisch. */
	.fa-eintrag--mit-bild .inside-article { display: block; }
	.fa-eintrag-bild { margin-bottom: 13px; }
	.fa-eintrag-bild img { height: auto; aspect-ratio: 3 / 2; }
	.fa-eintrag-bild.fa-bild--quadratisch img { aspect-ratio: 1 / 1; }

	.fa-eintrag-titel { font-size: 19px; }
	.fa-eintrag-zusammenfassung { font-size: 15px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
	.fa-eintrag--mit-bild .inside-article { grid-template-columns: 11rem 1fr; gap: 18px; }
}

/* Anzeigenplatz zwischen den Listeneintraegen - waehrend der Bauphase */
.fa-anzeigenplatz--breit {
	min-height: 90px;
	width: 100%;
}
@media (max-width: 767px) {
	.fa-anzeigenplatz--breit { min-height: 100px; }
}
