/**
 * Ergänzungen zum Entwurf.
 *
 * Der Entwurf kannte weder Kalender noch Belegungsplan, Nutzungsanfrage,
 * Karte oder Suchergebnisse. Diese Bausteine folgen hier – mit denselben
 * Farbwerten und Abständen wie base.css, damit nichts auffällt.
 */

/* ---------------------------------------------------------------------
 * hidden muss verstecken
 *
 * Browser blenden [hidden] über display:none aus – eine Regel mit der
 * niedrigsten möglichen Spezifität. Jede Klasse, die selbst ein display
 * setzt (und das tun im Entwurf fast alle Kacheln und Schaltflächen),
 * überstimmt sie. Die Folge war, dass die Filter zwar richtig rechneten,
 * optisch aber nichts geschah.
 * ------------------------------------------------------------------ */

[hidden] {
	display: none !important;
}

/* ---------------------------------------------------------------------
 * Zugänglichkeit
 * ------------------------------------------------------------------ */

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.ssv-skiplink {
	position: absolute;
	top: -60px;
	left: 16px;
	z-index: 1000;
	padding: 12px 20px;
	background: var(--blue);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 0 0 var(--r-md) var(--r-md);
	transition: top 150ms var(--ease-plain);
}

.ssv-skiplink:focus {
	top: 0;
	color: #fff;
}

/* Fokusumriss.
 *
 * Bewusst ohne :where() — das hat null Spezifität, wodurch jede beliebige
 * andere Regel den Umriss überstimmte und die Tastaturbedienung unsichtbar
 * blieb. Ein Fokusindikator ist die letzte Stelle, an der ein schwacher
 * Selektor angebracht ist. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--green-dark);
	outline-offset: 2px;
	border-radius: 3px;
}

/* Felder, die ihren Fokus im Entwurf nur über Rahmen und Schein zeigten.
   Diese Regeln stehen später in der Kaskade und gewinnen deshalb gegen die
   „outline: none“ aus base.css. */
.search-input:focus-visible,
.filter-select:focus-visible,
.ssv-formular input:focus-visible,
.ssv-formular textarea:focus-visible {
	outline: 3px solid var(--green-dark);
	outline-offset: 2px;
}

/* Auf dunklem Grund wäre Grün auf Blau zu leise – dort ein weißer Umriss. */
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.club-hero a:focus-visible,
.facility-hero a:focus-visible,
.article-hero a:focus-visible,
.cta-section a:focus-visible,
.ssv-karte .leaflet-marker-icon:focus-visible {
	outline-color: #fff;
}

.header-brand-text {
	font-family: var(--font-head);
	font-size: 1.5rem;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--blue);
}

/* ---------------------------------------------------------------------
 * Brotkrumen
 * ------------------------------------------------------------------ */

.ssv-brotkrumen {
	padding: 20px 0 0;
	font-size: 0.85rem;
}

.ssv-brotkrumen ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ssv-brotkrumen li + li::before {
	content: "›";
	margin-right: 8px;
	color: var(--ink-soft);
}

.ssv-brotkrumen a { color: var(--ink-mid); }
.ssv-brotkrumen a:hover { color: var(--blue); }
.ssv-brotkrumen [aria-current] { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------------
 * Termine und Kalender
 * ------------------------------------------------------------------ */

.termine-liste,
.kalender-liste {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.termine-vorschau { margin-top: 56px; }

.termine-vorschau-titel {
	margin-bottom: 20px;
	font-size: 1.5rem;
	color: var(--blue);
}

.termin-karte {
	display: flex;
	gap: 20px;
	padding: 20px 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 4px solid var(--blue);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	transition: box-shadow 200ms var(--ease-plain), transform 200ms var(--ease-plain);
}

.termin-karte:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.termin-datum {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 0 0 74px;
	padding: 10px 0;
	background: var(--blue-light);
	border-radius: var(--r-md);
	font-family: var(--font-head);
	line-height: 1;
	text-align: center;
}

.termin-tag {
	font-size: 1.9rem;
	font-weight: 800;
	color: var(--blue);
}

.termin-monat {
	margin-top: 3px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--blue-mid);
}

.termin-jahr {
	margin-top: 2px;
	font-size: 0.7rem;
	color: var(--ink-soft);
}

.termin-inhalt { flex: 1; min-width: 0; }

.termin-inhalt h3 {
	margin: 8px 0 10px;
	font-size: 1.25rem;
}

.termin-inhalt h3 a { color: var(--ink); }
.termin-inhalt h3 a:hover { color: var(--blue); }

.termin-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.88rem;
	color: var(--ink-mid);
}

.termin-meta li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.termin-meta svg { flex: 0 0 auto; color: var(--blue); }

.termin-veranstalter {
	margin: 10px 0 0;
	font-size: 0.82rem;
	color: var(--ink-soft);
}

.kalender-monat {
	margin: 36px 0 6px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--border);
	font-size: 1.35rem;
	color: var(--blue);
}

.kalender-monat:first-child { margin-top: 0; }

.kalender-umschalter,
.ansicht-umschalter {
	display: flex;
	gap: 8px;
	margin-bottom: 28px;
}

.kalender-umschalter .is-aktiv,
.ansicht-umschalter .is-aktiv {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.ssv-abo-hinweis { margin: -32px 0 28px; }

/* ---------------------------------------------------------------------
 * Belegungsplan und Zeitangaben
 * ------------------------------------------------------------------ */

.schedule-table th[scope="rowgroup"] {
	vertical-align: top;
	white-space: nowrap;
	background: var(--surface);
	font-family: var(--font-head);
	font-size: 1.05rem;
	text-transform: uppercase;
	color: var(--blue);
}

.ssv-zusatz {
	display: block;
	margin-top: 2px;
	font-size: 0.78rem;
	font-style: italic;
	color: var(--ink-soft);
}

.ssv-hinweis-klein {
	margin-bottom: 18px;
	font-size: 0.85rem;
	color: var(--ink-mid);
}

.ssv-pruefhinweis {
	margin-top: 16px;
	padding: 12px 16px;
	background: var(--surface);
	border-left: 3px solid var(--green);
	border-radius: 0 var(--r-md) var(--r-md) 0;
	font-size: 0.82rem;
	color: var(--ink-mid);
}

/* ---------------------------------------------------------------------
 * Sportstättenkacheln: Ergänzungen
 * ------------------------------------------------------------------ */

.fac-card-eigentum {
	margin: 4px 0 10px;
	font-size: 0.82rem;
	color: var(--ink-mid);
}

.fac-card-belegung {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 12px 0 0;
	font-size: 0.8rem;
	color: var(--green-dark);
}

.fac-card-platzhalter {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: var(--surface-2);
}

.club-pill--rest {
	background: var(--surface-2);
	color: var(--ink-soft);
	cursor: default;
}

/* ---------------------------------------------------------------------
 * Wappen
 * ------------------------------------------------------------------ */

.ssv-ersatzwappen,
.ssv-vereinslogo {
	display: block;
	width: 100%;
	height: auto;
}

.ssv-vereinslogo { object-fit: contain; }

.mini-crest .ssv-vereinslogo,
.club-pill-crest .ssv-vereinslogo {
	max-height: 100%;
}

/* ---------------------------------------------------------------------
 * Meldungen
 * ------------------------------------------------------------------ */

.ssv-meldung {
	padding: 14px 20px;
	margin: 20px 0;
	border-radius: var(--r-md);
	border-left: 4px solid;
	font-size: 0.92rem;
}

.ssv-meldung--erfolg  { background: var(--green-light); border-color: var(--green-dark); color: #236b23; }
.ssv-meldung--fehler  { background: #FBEAEA; border-color: #b32d2e; color: #8a2223; }
.ssv-meldung--hinweis { background: var(--surface-2); border-color: var(--ink-soft); color: var(--ink-mid); }

/* ---------------------------------------------------------------------
 * Formulare
 * ------------------------------------------------------------------ */

.ssv-formular label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: 0.88rem;
}

.ssv-formular input[type="text"],
.ssv-formular input[type="email"],
.ssv-formular input[type="tel"],
.ssv-formular textarea {
	width: 100%;
	padding: 11px 14px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--ink);
}

.ssv-formular input:focus,
.ssv-formular textarea:focus {
	border-color: var(--blue);
	outline: none;
}

.ssv-formular-zeile {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}

@media (max-width: 640px) {
	.ssv-formular-zeile { grid-template-columns: 1fr; }
}

.ssv-datenschutz {
	font-size: 0.8rem;
	color: var(--ink-soft);
}

/* Der Köder gegen Formularroboter: für Menschen unsichtbar, für
   Bildschirmleser ausgeblendet, für Skripte aber ausfüllbar. */
.ssv-koeder {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* ---------------------------------------------------------------------
 * Suche
 * ------------------------------------------------------------------ */

.suchformular { margin-bottom: 36px; }

.ssv-suche {
	display: flex;
	gap: 10px;
	max-width: 560px;
}

.ssv-suche .search-input {
	flex: 1;
	padding: 12px 16px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	font-family: var(--font-body);
	font-size: 0.95rem;
}

.suchtreffer {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.suchtreffer-eintrag {
	padding: 22px 0;
	border-bottom: 1px solid var(--border);
}

.suchtreffer-eintrag h3 {
	margin: 8px 0 6px;
	font-size: 1.3rem;
}

.suchtreffer-eintrag p { margin: 0; font-size: 0.92rem; }

/* ---------------------------------------------------------------------
 * Karte
 * ------------------------------------------------------------------ */

.ssv-karte {
	height: 520px;
	margin-bottom: 32px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
}


/* ---------------------------------------------------------------------
 * Seitenweiterschaltung und Fließtext
 * ------------------------------------------------------------------ */

.pagination,
.navigation.pagination {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	font-family: var(--font-head);
	font-weight: 600;
	color: var(--ink-mid);
}

.page-numbers:hover { border-color: var(--blue); color: var(--blue); }

.page-numbers.current {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.entry-content > * + * { margin-top: 1em; }
.entry-content h2 { margin-top: 1.8em; font-size: 1.7rem; }
.entry-content h3 { margin-top: 1.5em; font-size: 1.3rem; }
.entry-content ul,
.entry-content ol { margin-left: 1.4em; padding-left: 0; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4em; color: var(--ink-mid); }

.entry-content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 4px solid var(--green);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--ink);
}

.entry-content img { border-radius: var(--r-md); }

.entry-content table {
	width: 100%;
	border-collapse: collapse;
}

.entry-content th,
.entry-content td {
	padding: 10px 14px;
	border-bottom: 1px solid var(--border);
	text-align: left;
}

/* Breite Tabellen dürfen scrollen, die Seite selbst nicht. */
.schedule-table,
.entry-content table {
	display: block;
	overflow-x: auto;
	max-width: 100%;
}

@media (min-width: 720px) {
	.schedule-table,
	.entry-content table { display: table; }
}

/* ---------------------------------------------------------------------
 * Schmale Bildschirme
 * ------------------------------------------------------------------ */

@media (max-width: 720px) {
	.termin-karte {
		flex-direction: column;
		gap: 14px;
	}

	.termin-datum {
		flex-direction: row;
		gap: 8px;
		align-items: baseline;
		justify-content: flex-start;
		padding: 8px 14px;
	}

	.termin-tag { font-size: 1.4rem; }

	.kalender-umschalter,
	.ansicht-umschalter { flex-wrap: wrap; }

	.ssv-karte { height: 400px; }
}

/* ---------------------------------------------------------------------
 * Nachbesserungen an den übernommenen Bausteinen
 *
 * Der Entwurf ging davon aus, dass jeder Eintrag ein Bild hat und dass die
 * Anlagenart als Aufkleber über einem Foto liegt. In der Wirklichkeit fehlen
 * am Anfang die meisten Fotos – hier stehen die Regeln, die das auffangen.
 * ------------------------------------------------------------------ */

/* Nachrichtenkachel ohne Vorschaubild: Die Spalte für das Bild würde sonst
   leer stehen bleiben und den Text auf ein Drittel zusammenquetschen. */
.news-update-card--ohne-bild { grid-template-columns: 1fr; }

/* Aufmacher ohne Bild bekommt die Punktetextur statt einer schwarzen Fläche. */
.news-featured:not(:has(.news-featured-img)) {
	min-height: 340px;
	background-color: var(--blue-dark);
	background-image: var(--dot-texture);
}

/* Sportstättenkachel: Das Bild ist ein Link, damit auch die Fläche klickbar
   ist – der Aufkleber mit der Anlagenart braucht deshalb hier seinen Bezug. */
.fac-card-img {
	position: relative;
	display: block;
	overflow: hidden;
	line-height: 0;
}

.fac-card-img img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.fac-card .fac-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 5px 12px;
	background: var(--marker, rgba(0, 70, 150, 0.88));
	color: #fff;
	border-radius: var(--r-pill);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.4;
}

.fac-card-platzhalter { height: 180px; aspect-ratio: auto; }

/* Ortsteil und Titel stehen jetzt beide im Kachelrumpf, der Ortsteil braucht
   deshalb keinen eigenen Außenabstand mehr. */
.fac-card-body .fac-card-district {
	display: block;
	padding: 0;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}

.fac-card-body h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	line-height: 1.25;
}

.fac-card-body h3 a { color: var(--ink); }
.fac-card-body h3 a:hover { color: var(--blue); }

.fac-card-body .club-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 12px;
}

.fac-card-body .club-pill {
	padding: 4px 10px;
	font-size: 0.75rem;
}

/* Solange kein Logo hochgeladen ist, steht der Verbandsname im Kopf. Ohne
   diese Regeln schiebt er auf schmalen Bildschirmen den Menüknopf aus dem
   Bild und die Seite lässt sich seitlich scrollen. */
.header-wrap { min-width: 0; }

.header-brand {
	min-width: 0;
	flex-shrink: 1;
}

.header-brand-text {
	display: block;
	line-height: 1.05;
	overflow-wrap: anywhere;
}

@media (max-width: 960px) {
	.header-brand-text { font-size: 1.15rem; }
}

@media (max-width: 480px) {
	.header-brand-text { font-size: 0.95rem; }
}

/* Die Überschrift des Aufmachers liegt auf dunklem Grund und ist zugleich ein
   Link – ohne diese Regel erbt sie das Blau der Verweise und verschwindet. */
.news-featured-body h3 a,
.news-featured-body h3 a:hover {
	color: #fff;
}

.news-featured { height: 100%; }

/* ---------------------------------------------------------------------
 * Menüs
 *
 * Der Entwurf hatte die Menüpunkte als lose Verweise im <nav>. WordPress
 * liefert sie als Liste – die Aufzählungspunkte müssen deshalb weg.
 * ------------------------------------------------------------------ */

.header-menu,
.footer-legal-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header-menu li { margin: 0; }

.footer-legal-menu { gap: 20px; }

@media (max-width: 960px) {
	.header-nav.open .header-menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0;
	}
}

/* ---------------------------------------------------------------------
 * Kopfbereich einer Sportstätte
 *
 * Der Entwurf setzte ein großes Foto voraus. Solange keines hinterlegt ist,
 * tritt die Verbandsfarbe mit der Punktetextur an seine Stelle – sonst steht
 * weiße Schrift auf weißem Grund.
 * ------------------------------------------------------------------ */

.facility-hero-img {
	position: absolute;
	inset: 0;
	line-height: 0;
}

.facility-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.facility-hero:not(:has(.facility-hero-img)) {
	height: auto;
	min-height: 280px;
	background-color: var(--blue-dark);
	background-image: var(--dot-texture);
}

.facility-hero:not(:has(.facility-hero-img)) .facility-hero-overlay { display: none; }

.facility-hero:not(:has(.facility-hero-img)) .facility-hero-content {
	position: static;
	padding: 64px 0 48px;
}

.facility-hero .fac-address {
	margin: 12px 0 0;
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.85);
}

.facility-hero-tags { margin-bottom: 14px; }

/* ---------------------------------------------------------------------
 * Anfrageformular
 *
 * Bewusst hell statt in der blauen Fläche des Entwurfs: Dort war es eine
 * kleine Schaltfläche in der Seitenleiste, hier ist es ein Formular mit
 * neun Feldern – auf Blau wäre das kaum lesbar.
 * ------------------------------------------------------------------ */

.ssv-anfrage {
	padding: 32px 36px;
	background: var(--surface);
	background-image: var(--dot-texture);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
}

.ssv-anfrage .fac-section-title { margin-top: 0; }
.ssv-anfrage p { color: var(--ink-mid); }
.ssv-anfrage label { color: var(--ink); }

@media (max-width: 640px) {
	.ssv-anfrage { padding: 24px 20px; }
}

/* Die helle Plakette für dunkle Kopfbereiche. Sie steckte im Entwurf im
   Abschnitt, der sich mit base.css doppelte, und ist deshalb hier nachgetragen. */
.tag-white {
	background: rgba(255, 255, 255, 0.18);
	color: #fff;
}

/* Menüpunkte dürfen nicht mitten im Wort umbrechen. */
.header-nav a { white-space: nowrap; }

@media (max-width: 1180px) {
	.header-nav a { padding: 7px 9px; font-size: 0.95rem; }
}

/* Der Inhalt unter dem Kopfbereich braucht Luft. */
.facility-content,
.club-content { padding-top: 64px; }

/* Schaltflächen auf den dunklen Kopfbereichen. Die Umrissvariante aus dem
   Entwurf ist blau auf Weiß gedacht und verschwände hier im Hintergrund. */
.club-hero .btn-ghost,
.facility-hero .btn-ghost,
.article-hero .btn-ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
	background: transparent;
}

.club-hero .btn-ghost:hover,
.facility-hero .btn-ghost:hover,
.article-hero .btn-ghost:hover {
	background: rgba(255, 255, 255, 0.14);
	border-color: #fff;
	color: #fff;
}

.club-hero .btn-primary,
.facility-hero .btn-primary {
	background: var(--green);
	border-color: var(--green);
	color: var(--ink);
}

.club-hero .btn-primary:hover,
.facility-hero .btn-primary:hover {
	background: var(--green-dark);
	border-color: var(--green-dark);
	color: var(--ink);
}

/* =====================================================================
 * Übersichtskarte des Stadtgebiets
 *
 * Grundgedanke: Die Kartenkacheln treten zurück, die Marker führen. Deshalb
 * werden die Kacheln entsättigt und leicht aufgehellt – die einzigen kräftigen
 * Farben auf der Karte sind dann die Vereinsfarben und die Eigentümerfarben.
 * ================================================================== */

.ssv-karte {
	position: relative;
	height: 660px;
	margin-bottom: 32px;
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	overflow: hidden;
	background: var(--surface);
	box-shadow: var(--shadow-sm);
}

/* Die Kacheln zurücknehmen. Nur die Kachelebene, nicht die Marker – sonst
   verlören auch die Vereinsfarben ihre Wirkung. */
.ssv-karte .leaflet-tile-pane {
	filter: grayscale(0.88) brightness(1.1) contrast(0.86);
}

.ssv-karte .leaflet-container {
	font-family: var(--font-body);
	background: #eef2f8;
}

/* Solange nicht in die Karte geklickt wurde, zoomt das Mausrad die Seite.
   Der Hinweis sitzt oben – unten säße er auf der Quellenangabe von Leaflet. */
.ssv-karte::after {
	content: attr(data-hinweis);
	position: absolute;
	inset: 0 0 auto 0;
	z-index: 500;
	padding: 8px 14px;
	background: linear-gradient(to bottom, rgba(0, 53, 113, 0.88), rgba(0, 53, 113, 0.72));
	color: #fff;
	font-size: 0.76rem;
	letter-spacing: 0.01em;
	text-align: center;
	pointer-events: none;
	transition: opacity 250ms var(--ease-plain);
}

.ssv-karte--aktiv::after { opacity: 0; }

/* ---- Marker einer Sportstätte ---- */

.ssv-marker { background: none; border: 0; }

.ssv-marker--staette .ssv-marker-huelle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	background: var(--marker, #004696);
	border: 2.5px solid #fff;
	border-radius: 50%;
	box-shadow: 0 3px 10px rgba(0, 40, 120, 0.35);
	transition: transform 160ms var(--ease-plain);
}

.ssv-marker--staette svg { width: 23px; height: 23px; }

/* Das kleine Dreieck, das den Anstecker auf den Punkt zeigen lässt. */
.ssv-marker--staette .ssv-marker-spitze {
	display: block;
	width: 0;
	height: 0;
	margin: -3px auto 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 9px solid var(--marker, #004696);
	filter: drop-shadow(0 2px 2px rgba(0, 40, 120, 0.28));
}

.leaflet-marker-icon:hover .ssv-marker-huelle { transform: scale(1.12); }

/* ---- Marker eines Vereins ---- */

.ssv-marker--verein .ssv-marker-wappen {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 3px;
	background: #fff;
	border: 2px solid var(--blue);
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 40, 120, 0.3);
	overflow: hidden;
	transition: transform 160ms var(--ease-plain);
}

.ssv-marker--verein img,
.ssv-marker--verein svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.leaflet-marker-icon:hover .ssv-marker-wappen { transform: scale(1.15); }

/* ---- Sprechblasen ---- */

.ssv-popup-huelle .leaflet-popup-content-wrapper {
	padding: 0;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}

/* Leaflet misst die Breite selbst und schreibt sie inline. Eine feste Breite
   ist hier nötig, sonst quetscht sich die Anschrift auf drei Zeilen. */
.ssv-popup-huelle .leaflet-popup-content {
	margin: 0;
	width: min(300px, 78vw) !important;
	line-height: 1.5;
}

.ssv-popup-huelle .leaflet-popup-tip { box-shadow: var(--shadow-md); }

.ssv-popup-bild {
	width: 100%;
	height: 118px;
	object-fit: cover;
	display: block;
}

.ssv-popup-inhalt { padding: 16px 18px 18px; }

.ssv-popup-marke {
	display: inline-block;
	margin-bottom: 8px;
	padding: 3px 10px;
	background: var(--marker, var(--blue));
	color: #fff;
	border-radius: var(--r-pill);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.ssv-popup h3 {
	margin: 0 0 4px;
	font-size: 1.05rem;
	line-height: 1.25;
}

.ssv-popup h3 a { color: var(--ink); }
.ssv-popup h3 a:hover { color: var(--blue); }

.ssv-popup-ort {
	margin: 0 0 10px;
	font-size: 0.82rem;
	color: var(--ink-soft);
}

.ssv-popup-daten {
	margin: 0 0 12px;
	padding: 10px 0 0;
	border-top: 1px solid var(--border);
	font-size: 0.8rem;
}

.ssv-popup-daten dt {
	font-weight: 700;
	color: var(--ink-soft);
	font-size: 0.68rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-top: 8px;
}

.ssv-popup-daten dt:first-child { margin-top: 0; }
.ssv-popup-daten dd { margin: 2px 0 0; color: var(--ink-mid); }

.ssv-popup-belegung {
	margin: 0 0 12px;
	font-size: 0.78rem;
	color: var(--green-dark);
	font-weight: 600;
}

.ssv-popup-hinweis {
	margin: 0 0 10px;
	font-size: 0.74rem;
	font-style: italic;
	color: var(--ink-soft);
}

.ssv-popup-knopf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	padding: 8px 16px;
	background: var(--blue);
	border-radius: var(--r-md);
	font-family: var(--font-head);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Leaflet färbt in .leaflet-container alle Verweise türkis. Die folgenden
   Regeln sind deshalb bewusst eine Stufe spezifischer – sonst stünde der
   Knopftext in Leaflets Farbe auf blauem Grund und wäre unlesbar. */
.ssv-popup-huelle .ssv-popup-knopf,
.ssv-popup-huelle .ssv-popup-knopf:hover,
.ssv-popup-huelle .ssv-popup-knopf:focus { color: #fff; }

.ssv-popup-huelle .ssv-popup-knopf:hover { background: var(--blue-dark); }

.ssv-popup-huelle .ssv-popup h3 a { color: var(--ink); }
.ssv-popup-huelle .ssv-popup h3 a:hover { color: var(--blue); }

/* ---- Legende ---- */

.ssv-legende {
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--border);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-sm);
	font-size: 0.78rem;
	line-height: 1.5;
	backdrop-filter: blur(4px);
}

.ssv-legende strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-head);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink);
}

.ssv-legende ul {
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

.ssv-legende li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ink-mid);
}

.ssv-legende-punkt {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--marker);
	box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.9), 0 1px 3px rgba(0, 40, 120, 0.28);
	flex: 0 0 auto;
}

.ssv-legende-schalter {
	display: flex;
	align-items: center;
	gap: 7px;
	padding-top: 9px;
	border-top: 1px solid var(--border);
	cursor: pointer;
	font-weight: 600;
	color: var(--ink);
}

/* ---- Karte auf der Startseite ---- */

.karte-abschnitt .ssv-karte { height: 520px; margin-bottom: 0; }

.karte-hinweis {
	margin: 18px 0 0;
	font-size: 0.85rem;
	color: var(--ink-mid);
}

@media (max-width: 720px) {
	.ssv-karte,
	.karte-abschnitt .ssv-karte { height: 420px; }

	.ssv-legende {
		font-size: 0.72rem;
		padding: 10px 12px;
		max-width: 168px;
	}

	.ssv-popup-bild { height: 96px; }
}

/* Leaflets eigene Bedienelemente an das Erscheinungsbild anpassen. */
.ssv-karte .leaflet-control-zoom { margin-top: 46px; border: 0; }

.ssv-karte .leaflet-control-zoom a {
	width: 34px;
	height: 34px;
	line-height: 32px;
	color: var(--blue);
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid var(--border);
	font-size: 1.2rem;
}

.ssv-karte .leaflet-control-zoom a:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.ssv-karte .leaflet-control-zoom a:last-child  { border-radius: 0 0 var(--r-md) var(--r-md); }
.ssv-karte .leaflet-control-zoom a:hover { background: var(--blue-light); color: var(--blue-dark); }

.ssv-karte .leaflet-control-attribution {
	background: rgba(255, 255, 255, 0.9);
	font-size: 0.68rem;
	padding: 2px 8px;
	border-radius: var(--r-sm) 0 0 0;
}

.ssv-karte-block { margin: 0 0 8px; }

/* Ersatzgrafik für Sportstätten ohne Foto. Sie füllt die Bildfläche
   vollständig aus, damit die Kachel dieselbe Form behält wie mit Foto. */
.ssv-platzhalter {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fac-card-img .ssv-platzhalter { height: 180px; }
.facility-hero-img .ssv-platzhalter { height: 100%; min-height: 320px; }

/* Mit Ersatzgrafik ist der Kopfbereich wieder ein Bildbereich – die Regel
   für „kein Bild vorhanden“ darf dann nicht mehr greifen. */
.facility-hero:has(.ssv-platzhalter) { height: 420px; }
.facility-hero:has(.ssv-platzhalter) .facility-hero-overlay { display: block; }
.facility-hero:has(.ssv-platzhalter) .facility-hero-content { position: absolute; padding: 40px 0; }

/* ---- Ortsteile auf der Karte ---- */

.ssv-karte .leaflet-interactive { cursor: pointer; }

.ssv-ortsteil-hinweis {
	padding: 9px 13px;
	background: rgba(0, 53, 113, 0.94);
	border: 0;
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.8rem;
	line-height: 1.45;
	/* Ohne feste Breite bricht Leaflet kurze Sätze in drei Zeilen um. */
	white-space: normal;
	width: max-content;
	max-width: 240px;
}

.ssv-ortsteil-hinweis strong {
	display: block;
	font-family: var(--font-head);
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.ssv-ortsteil-hinweis span {
	display: block;
	color: rgba(255, 255, 255, 0.8);
}

.ssv-ortsteil-hinweis .ssv-ortsteil-flaeche {
	margin-top: 2px;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.6);
}

.ssv-ortsteil-hinweis::before { border-top-color: rgba(0, 53, 113, 0.94); }

/* ---- Legende: Flächenerklärung ---- */

.ssv-legende-flaeche {
	padding: 9px 0;
	margin-bottom: 2px;
	border-top: 1px solid var(--border);
}

.ssv-legende-titel {
	display: block;
	font-family: var(--font-head);
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink);
	margin-bottom: 5px;
}

.ssv-legende-verlauf {
	display: block;
	height: 9px;
	border-radius: 5px;
	background: linear-gradient(
		to right,
		rgba(143, 166, 196, 0.28),
		rgba(26, 93, 174, 0.22),
		rgba(26, 93, 174, 0.55)
	);
	box-shadow: inset 0 0 0 1px rgba(74, 110, 158, 0.35);
}

.ssv-legende-fuss {
	display: block;
	margin-top: 4px;
	font-size: 0.7rem;
	color: var(--ink-soft);
}

/* =====================================================================
 * Logo, Kopfsuche und Filterleisten
 * ================================================================== */

/* ---- Logo ---- */

.header-brand .ssv-logo,
.header-brand img {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}

.footer-logo-link { display: inline-block; }

.footer-logo img,
.footer-logo .custom-logo {
	max-width: 260px;
	max-height: 74px;
	width: auto;
	height: auto;
	margin-bottom: 18px;
}

@media (max-width: 960px) {
	.header-brand .custom-logo,
	.header-brand img { max-height: 42px; }
}

/* ---- Suche im Kopfbereich ---- */

.header-suche-knopf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	padding: 0;
	background: transparent;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	color: var(--blue);
	cursor: pointer;
	transition: all 180ms var(--ease-plain);
}

.header-suche-knopf:hover {
	background: var(--blue-light);
	border-color: var(--blue);
}

.header-suche-knopf[aria-expanded="true"] {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.header-suche {
	padding: 20px 0 22px;
	background: var(--surface);
	border-top: 1px solid var(--border);
}

.header-suche .ssv-suche { max-width: 640px; }

.header-suche-hinweis {
	max-width: 640px;
	margin: 8px 0 0;
	font-size: 0.8rem;
	color: var(--ink-soft);
}

@media (max-width: 960px) {
	/* Auf schmalen Bildschirmen verschwindet die Schaltflächenzeile –
	   der Suchknopf soll trotzdem erreichbar bleiben. */
	.header-cta { display: none; }

	.header-suche { padding: 16px 0 18px; }
}

/* ---- Filterleisten ---- */

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}

.filter-bar .search-wrap { flex: 1 1 300px; }

.filter-bar .filter-select {
	flex: 0 1 auto;
	min-width: 190px;
	padding: 12px 16px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	font-family: var(--font-body);
	font-size: 0.92rem;
	color: var(--ink);
	cursor: pointer;
}

.filter-bar .filter-select:hover { border-color: var(--blue); }

.filter-ergebnis {
	flex: 1 1 100%;
	order: 10;
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--blue);
	min-height: 1.4em;
}

.filter-ergebnis:empty { display: none; }

.filter-zuruecksetzen { order: 11; }

@media (max-width: 640px) {
	.filter-bar { gap: 10px; }
	.filter-bar .filter-select { flex: 1 1 100%; min-width: 0; }
}

/* Der Entwurf gab dem Fußzeilenlogo eine feste Höhe und abgerundete Ecken –
   beides passt zu einem quadratischen Bildzeichen, nicht zu diesem breiten
   Logo. */
.footer-logo img.ssv-logo {
	height: auto;
	max-height: 58px;
	max-width: 280px;
	border-radius: 0;
}

/* =====================================================================
 * Kopfbereich der Vereinsseite, überarbeitet
 *
 * Der Entwurf setzte das Wappen in ein halbdurchsichtiges Quadrat. Das
 * funktioniert nur für Wappen, die ohnehin auf Blau gedacht sind — echte
 * Vereinslogos sind fast immer für weißen Grund gemacht und wirken darin
 * schmutzig. Sie bekommen deshalb eine eigene weiße Karte, die sich dem
 * Format anpasst: hochkant für Wappen, breit für Schriftzüge.
 * ================================================================== */

.club-hero {
	padding: 72px 0 76px;
	background-color: var(--blue);
	background-image: linear-gradient( 145deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-mid) 100% );
}

/* Ein weicher Lichtschein hinter dem Logo gibt der Fläche Tiefe, ohne
   ein Muster einzuführen. */
.club-hero::after {
	content: '';
	position: absolute;
	top: -30%;
	left: -8%;
	width: 620px;
	height: 620px;
	background: radial-gradient( circle, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 68% );
	opacity: 1;
	pointer-events: none;
}

/* Die Markenfarben als schmaler Abschluss – dasselbe Element wie unter
   dem Kopfbereich der Website. */
.club-hero::before {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 5px;
	/* Ein helleres Blau als die Fläche darüber, sonst verschwände die linke
	   Hälfte des Markenstreifens im Hintergrund. */
	background: linear-gradient( to right, #5C9AE0 0%, #5C9AE0 50%, var(--green) 50%, var(--green) 100% );
	z-index: 2;
}

.club-hero-inner {
	align-items: center;
	gap: 44px;
}

/* ---- Die Logokarte ---- */

.club-crest-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	/* Höhe fest, Breite atmend: Ein Wappen bleibt quadratisch, ein breiter
	   Schriftzug bekommt mehr Platz, statt auf einen Streifen zu schrumpfen. */
	width: auto;
	min-width: 150px;
	max-width: 300px;
	height: 150px;
	padding: 18px 22px;
	background: #fff;
	border: 0;
	border-radius: 16px;
	box-shadow: 0 14px 34px rgba(0, 22, 62, 0.3), 0 2px 6px rgba(0, 22, 62, 0.2);
}

.club-crest-wrap img,
.club-crest-wrap svg {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Das erzeugte Ersatzwappen ist hochkant und darf die Karte ausfüllen. */
.club-crest-wrap .ssv-ersatzwappen {
	height: 100%;
	width: auto;
}

/* ---- Text daneben ---- */

.club-hero-eyebrow {
	margin-bottom: 2px;
	letter-spacing: 0.01em;
}

.club-hero h1 {
	margin-bottom: 16px;
	line-height: 0.98;
}

.club-hero-meta { margin-bottom: 26px; }

.club-hero-meta .tag {
	padding: 6px 14px;
	font-size: 0.76rem;
	backdrop-filter: blur(3px);
}

.club-hero-meta .tag-blue {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.club-hero-actions { gap: 10px; }

@media (max-width: 780px) {
	.club-hero { padding: 48px 0 52px; }

	.club-hero-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 26px;
	}

	.club-crest-wrap {
		height: 116px;
		min-width: 116px;
		padding: 14px 18px;
	}

	.club-hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ---- Meldungen des Vereins ---- */

/* Drei Spalten sind in der schmaleren Hauptspalte der Vereinsseite zu eng;
   der Text bricht dann nach zwei bis drei Wörtern um. */
.club-main .related-grid,
.fac-main .related-grid {
	grid-template-columns: repeat( auto-fit, minmax( 250px, 1fr ) );
	gap: 20px;
}

.club-main .news-card-body,
.fac-main .news-card-body { padding: 18px 20px 20px; }

.club-main .news-card h3,
.fac-main .news-card h3 {
	font-size: 1rem;
	line-height: 1.3;
}

/* ---- Seitenleiste ---- */

.club-sidebar .social-row {
	gap: 8px;
	margin-top: 18px;
}

.club-sidebar .social-btn {
	width: 42px;
	height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid var(--border);
	border-radius: var(--r-md);
	color: var(--blue);
	transition: all 180ms var(--ease-plain);
}

.club-sidebar .social-btn:hover {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

/* Der Entwurf gab dem Seitenrumpf oben 72 Pixel Abstand – gedacht für eine
   Seite ohne Brotkrumen. Mit Brotkrumen entsteht daraus eine große Lücke
   zwischen Menü und Inhalt. */
.club-wrap,
.facility-wrap { padding-top: 0; }

.club-wrap .ssv-brotkrumen,
.facility-wrap .ssv-brotkrumen { padding: 18px 0 20px; }

/* Rasterelemente haben von Haus aus min-width: auto und lassen sich deshalb
   von breitem Inhalt aufblähen — eine breite Tabelle schiebt die ganze Spalte
   über den Rand hinaus, und die Seite scrollt seitlich. min-width: 0 hebt das
   auf; die Tabelle scrollt dann in sich selbst, so wie vorgesehen. */
.club-main,
.club-sidebar,
.fac-main,
.fac-sidebar,
.article-body,
.article-sidebar {
	min-width: 0;
}

/* =====================================================================
 * Bildmarke im Aufmacher
 *
 * Statt einer Bildercollage steht neben der Überschrift die Bildmarke des
 * Verbands – der Umriss des Stadtgebiets mit dem Laaspher Wappen. Sie schlägt
 * wie ein Herz: zwei Schläge, dann eine Pause.
 * ================================================================== */

.hero-marke {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	/* Kein Innenabstand: Die Marke soll ihre Spalte ausfüllen. Den Abstand
	   zum Text hält der Zwischenraum des Rasters. */
	padding: 0;
}

.hero-marke-bild {
	width: 100%;
	/* So groß, dass sie dem Textblock daneben standhält. Beim Schlag wächst
	   sie auf gut 560 Pixel — das bleibt innerhalb des Rasterzwischenraums,
	   die Marke stößt also nirgends an. */
	max-width: 520px;
	height: auto;
	transform-origin: center;
}

/* Zwei Schläge kurz hintereinander, dann zwei Drittel des Takts Ruhe – so
   schlägt ein Herz. Ein gleichmäßiges Auf und Ab wirkt dagegen mechanisch.
   Der zweite Schlag fällt schwächer aus als der erste, wie der Nachschlag
   beim Puls. */
@keyframes ssv-herzschlag {
	0%   { transform: scale(1); }
	7%   { transform: scale(1.075); }
	14%  { transform: scale(0.995); }
	21%  { transform: scale(1.045); }
	30%  { transform: scale(1); }
	100% { transform: scale(1); }
}

.hero-marke--puls .hero-marke-bild {
	animation: ssv-herzschlag 2.4s cubic-bezier( 0.22, 0.68, 0.15, 1 ) infinite;
	will-change: transform;
}

/* Wer im Betriebssystem weniger Bewegung eingestellt hat, bekommt ein
   ruhiges Bild. Das ist keine Feinheit: Bewegung kann bei manchen Menschen
   Übelkeit oder Migräne auslösen. */
@media (prefers-reduced-motion: reduce) {
	.hero-marke--puls .hero-marke-bild { animation: none; }
}

@media (max-width: 960px) {
	.hero-marke {
		min-height: 0;
		padding: 8px 0 12px;
	}

	.hero-marke-bild { max-width: 320px; }
}

@media (max-width: 640px) {
	.hero-marke-bild { max-width: 250px; }
}

/* ---- Ausstattung in der Seitenleiste ----
 *
 * Der Entwurf legte die Merkmale als Drei-Spalten-Raster an, gedacht für die
 * breite Hauptspalte. In der schmalen Seitenleiste passen dort weder
 * „Umkleidekabinen“ noch „Parkplätze“ hinein — sie liefen über den Rand.
 * Als umbrechende Plaketten ordnen sie sich selbst. */

.fac-sidebar .sports-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fac-sidebar .sport-chip {
	padding: 7px 13px;
	border: 1.5px solid var(--border);
	border-radius: var(--r-pill);
	font-size: 0.8rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--ink-mid);
	background: var(--white);
	transition: border-color 200ms var(--ease-plain), background 200ms var(--ease-plain), color 200ms var(--ease-plain);
}

/* Der Entwurf schob beim Überfahren den linken Rand auf 4 Pixel — dadurch
   springt die Plakette und die ganze Zeile bricht neu um. */
.fac-sidebar .sport-chip:hover {
	border-color: var(--blue);
	background: var(--blue-light);
	color: var(--blue);
}

/* =====================================================================
 * Sportartenübersicht
 *
 * Beantwortet die Frage, mit der die meisten Besucher kommen: „Wo kann ich
 * hier eigentlich X machen?“ Deshalb steht bei jeder Sportart gleich, wer
 * sie anbietet — nicht erst einen Klick weiter.
 * ================================================================== */

.sportarten-einleitung {
	max-width: 720px;
	margin-bottom: 32px;
}

.sportarten-raster {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 320px, 1fr ) );
	gap: 22px;
	align-items: start;
}

.sportart-karte {
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 3px solid var(--blue);
	border-radius: var(--r-lg);
	padding: 22px 24px 18px;
	box-shadow: var(--shadow-xs);
	transition: box-shadow 200ms var(--ease-plain), transform 200ms var(--ease-plain);
}

.sportart-karte:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.sportart-kopf {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 14px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--border);
}

.sportart-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	background: var(--blue-light);
	border-radius: 50%;
	color: var(--blue);
}

.sportart-karte h3 {
	margin: 0 0 2px;
	font-size: 1.2rem;
	line-height: 1.15;
}

.sportart-karte h3 a { color: var(--ink); }
.sportart-karte h3 a:hover { color: var(--blue); }

.sportart-zahl {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

.sportart-vereine {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sportart-vereine a {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 7px 8px;
	margin: 0 -8px;
	border-radius: var(--r-md);
	color: var(--ink-mid);
	font-size: 0.88rem;
	line-height: 1.3;
	transition: background 160ms var(--ease-plain), color 160ms var(--ease-plain);
}

.sportart-vereine a:hover {
	background: var(--surface);
	color: var(--blue);
}

.sportart-wappen {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
}

.sportart-wappen img,
.sportart-wappen svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.sportart-verein-name em {
	display: block;
	font-style: normal;
	font-size: 0.74rem;
	color: var(--ink-soft);
}

/* Gruppenüberschrift auf Archivseiten, wenn mehrere Inhaltstypen zugleich
   erscheinen – etwa Vereine und Sportstätten zur selben Sportart. */
.archiv-gruppe {
	margin: 40px 0 18px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--border);
	font-size: 1.3rem;
	color: var(--blue);
}

.archiv-gruppe:first-of-type { margin-top: 0; }

@media (max-width: 640px) {
	.sportarten-raster { grid-template-columns: 1fr; gap: 16px; }
	.sportart-karte { padding: 18px 18px 14px; }
}

/* =====================================================================
 * Zielgruppen, Vereinsservice
 * ================================================================== */

/* ---- Einstieg über die Zielgruppe ---- */

.zielgruppen-abschnitt { background: var(--surface); }

.zielgruppen-raster {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 250px, 1fr ) );
	gap: 14px;
}

.zielgruppe-kachel {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 4px solid var(--green);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	color: var(--ink);
	transition: box-shadow 200ms var(--ease-plain), transform 200ms var(--ease-plain), border-color 200ms var(--ease-plain);
}

.zielgruppe-kachel:hover {
	border-left-color: var(--blue);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	color: var(--blue);
}

.zielgruppe-name {
	flex: 1;
	font-family: var(--font-head);
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.15;
}

.zielgruppe-zahl {
	font-size: 0.76rem;
	font-weight: 600;
	color: var(--ink-soft);
	white-space: nowrap;
}

.zielgruppe-pfeil {
	font-size: 1.2rem;
	color: var(--green-dark);
	transition: transform 200ms var(--ease-plain);
}

.zielgruppe-kachel:hover .zielgruppe-pfeil { transform: translateX(3px); }

/* Zielgruppen an einer Trainingszeit */
.training-zielgruppen {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 5px;
}

.training-zielgruppen .tag {
	padding: 2px 8px;
	font-size: 0.66rem;
	letter-spacing: 0.03em;
}

/* ---- Rubrik „Für Vereine“ ---- */

.vereinsservice-einleitung {
	max-width: 720px;
	margin-bottom: 36px;
}

.service-raster {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 300px, 1fr ) );
	gap: 22px;
	align-items: start;
}

.service-karte {
	padding: 26px 28px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-top: 3px solid var(--blue);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	transition: box-shadow 200ms var(--ease-plain), transform 200ms var(--ease-plain);
}

.service-karte:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.service-karte h3 {
	margin: 0 0 10px;
	font-size: 1.25rem;
	line-height: 1.2;
}

.service-karte h3 a { color: var(--ink); }
.service-karte h3 a:hover { color: var(--blue); }
.service-karte p { font-size: 0.92rem; margin-bottom: 14px; }

.service-link {
	font-family: var(--font-head);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

/* Nur für angemeldete Redakteure sichtbar. */
.service-entwuerfe {
	margin-top: 36px;
	padding: 22px 26px;
	background: #FCF6E8;
	border: 1px dashed #DBA617;
	border-radius: var(--r-lg);
}

.service-entwuerfe h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
	color: #7A5406;
}

.service-entwuerfe p { font-size: 0.88rem; margin-bottom: 10px; }
.service-entwuerfe ul { margin-left: 18px; list-style: disc; }
.service-entwuerfe li { margin-bottom: 4px; }

.service-kontakt {
	margin-top: 48px;
	padding: 32px 36px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
}

.service-kontakt h3 { margin-top: 0; font-size: 1.4rem; }
.service-kontakt p { max-width: 560px; }

@media (max-width: 640px) {
	.zielgruppen-raster,
	.service-raster { grid-template-columns: 1fr; }

	.service-kontakt { padding: 24px 20px; }
}

/* =====================================================================
 * Hauptmenü mit Untermenüs
 *
 * Neun Punkte nebeneinander waren zu viel, und die wichtigen Wege gingen
 * zwischen Verwaltungsseiten unter. Jetzt fünf Punkte, zwei davon mit
 * Untermenü.
 *
 * Bewusst kein Hamburger am Rechner: Versteckte Navigation wird seltener
 * benutzt, und diese Seite lebt davon, dass „Sport finden“ sofort sichtbar
 * ist — auch für Menschen, denen das Symbol nichts sagt.
 * ================================================================== */

.header-menu {
	gap: 2px;
	position: relative;
}

.header-menue-punkt {
	position: relative;
	display: flex;
	align-items: center;
}

.header-menue-punkt > a { display: block; }

.header-menue-punkt.ist-aktiv > a {
	background: var(--blue-light);
	color: var(--blue);
}

/* ---- Schalter für das Untermenü ---- */

.untermenue-schalter {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	margin-left: -6px;
	padding: 0;
	background: none;
	border: 0;
	border-radius: var(--r-sm);
	color: var(--ink-mid);
	cursor: pointer;
	transition: transform 180ms var(--ease-plain), color 180ms var(--ease-plain);
}

.untermenue-schalter:hover { color: var(--blue); }
.untermenue-schalter[aria-expanded="true"] { transform: rotate(180deg); color: var(--blue); }

/* ---- Untermenü am Rechner ---- */

@media (min-width: 961px) {
	.header-untermenue {
		position: absolute;
		top: calc(100% + 10px);
		left: -8px;
		z-index: 300;
		min-width: 306px;
		margin: 0;
		padding: 10px;
		list-style: none;
		background: var(--white);
		border: 1px solid var(--border);
		border-top: 3px solid var(--blue);
		border-radius: var(--r-lg);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-6px);
		transition: opacity 160ms var(--ease-plain), transform 160ms var(--ease-plain), visibility 160ms;
	}

	/* Auf- und Zuklappen über Überfahren, Tastatur und den Schalter. Alle
	   drei Wege müssen funktionieren – sonst kommt man per Tastatur nicht
	   ins Untermenü. */
	.header-menue-punkt.hat-untermenue:hover > .header-untermenue,
	.header-menue-punkt.hat-untermenue:focus-within > .header-untermenue,
	.header-menue-punkt.hat-untermenue.ist-offen > .header-untermenue {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* Unsichtbare Brücke, damit der Zeiger den Spalt zum Untermenü
	   überqueren kann, ohne dass es zuklappt. */
	.header-menue-punkt.hat-untermenue::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: 12px;
	}

	.header-untermenue .header-menue-punkt { display: block; }

	.header-untermenue a {
		display: block;
		padding: 10px 14px;
		border-radius: var(--r-md);
		font-family: var(--font-head);
		font-size: 1.05rem;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.02em;
		color: var(--ink);
		white-space: normal;
	}

	.header-untermenue a:hover { background: var(--blue-light); color: var(--blue); }

	.menue-beschreibung {
		display: block;
		margin-top: 2px;
		font-family: var(--font-body);
		font-size: 0.78rem;
		font-weight: 400;
		text-transform: none;
		letter-spacing: 0;
		line-height: 1.35;
		color: var(--ink-soft);
	}
}

/* ---- Menü auf schmalen Bildschirmen ---- */

@media (max-width: 960px) {
	.header-nav.open {
		top: 100%;
		max-height: calc(100vh - 76px);
		overflow-y: auto;
		padding: 8px 0 24px;
		gap: 0;
	}

	.header-nav.open .header-menu { padding: 0 24px; }

	.header-menue-punkt {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: 1px solid var(--border);
	}

	.header-menue-punkt:last-child { border-bottom: 0; }

	.header-nav.open .header-menue-punkt > a {
		flex: 1;
		padding: 15px 0;
		border-bottom: 0;
		font-size: 1.15rem;
	}

	/* Große Trefferfläche: 44 Pixel sind das Mindestmaß, das sich mit dem
	   Daumen zuverlässig treffen lässt. */
	.untermenue-schalter {
		width: 44px;
		height: 44px;
		margin: 0;
		color: var(--blue);
	}

	.header-untermenue {
		flex: 1 1 100%;
		margin: 0 0 12px;
		padding: 4px 0 4px 14px;
		list-style: none;
		border-left: 3px solid var(--green);
		display: none;
	}

	.header-menue-punkt.ist-offen > .header-untermenue { display: block; }

	.header-untermenue .header-menue-punkt { border-bottom: 0; }

	.header-nav.open .header-untermenue a {
		padding: 11px 0;
		font-size: 1rem;
		color: var(--ink-mid);
	}

	.header-nav.open .header-untermenue a:hover { color: var(--blue); }

	.menue-beschreibung {
		display: block;
		margin-top: 1px;
		font-family: var(--font-body);
		font-size: 0.78rem;
		font-weight: 400;
		text-transform: none;
		letter-spacing: 0;
		line-height: 1.35;
		color: var(--ink-soft);
	}

	/* Suche und die beiden Schaltflächen gehören ins offene Menü – sonst
	   sind sie auf dem Handy gar nicht erreichbar. */
	.menue-fuss {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin: 18px 24px 0;
		padding-top: 18px;
		border-top: 1px solid var(--border);
	}

	.menue-fuss .btn { flex: 1 1 auto; justify-content: center; }
}

@media (min-width: 961px) {
	.menue-fuss { display: none; }
}

/* Solange das Menü offen ist, soll die Seite darunter nicht mitscrollen. */
body.menue-offen { overflow: hidden; }

@media (min-width: 961px) {
	body.menue-offen { overflow: visible; }
}

/* ---- Werkzeuge im Kopfbereich ---- */

.header-werkzeuge {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: 4px;
}

/* Der Menüknopf erscheint erst auf schmalen Bildschirmen, die Suche immer. */
.header-werkzeuge .nav-toggle { margin-left: 0; }

/* ---- Nachbesserungen am offenen Mobilmenü ---- */

@media (max-width: 960px) {
	/* Ohne das richtet der Kopfbereich die Menüinhalte mittig aus und die
	   Schaltflächen unten schrumpfen auf Textbreite zusammen. */
	.header-nav.open { align-items: stretch; }

	/* Menüpunkte dürfen umbrechen – die Regel gegen Umbrüche gilt nur für
	   die waagerechte Leiste am Rechner. */
	.header-nav.open a { white-space: normal; }
}

.menue-beschreibung { white-space: normal; }

/* Die Abschnittsüberschriften der Fußzeile sind semantisch zweite Ebene,
   sollen aber klein bleiben wie zuvor. */
.footer-col .footer-titel {
	font-family: var(--font-head);
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	margin-bottom: 18px;
}

.footer-col .footer-titel a { color: inherit; }
.footer-col .footer-titel a:hover { color: var(--green); }

/* Die Kachelüberschrift in der Seitenspalte bleibt optisch klein. */
.news-update-card .info h3 {
	font-family: var(--font-head);
	font-size: 0.92rem;
	line-height: 1.25;
	margin: 0 0 4px;
}

/* =====================================================================
 * Laufende Bänder (Vereine und Sportstätten)
 *
 * Ersetzen auf der Startseite die Wand aus dreißig Vereinskacheln und die
 * willkürliche Auswahl von sechs Sportstätten. Beide Bänder teilen sich
 * die Mechanik (.ssv-band), unterscheiden sich aber in der Kachel.
 *
 * Die Dauer kommt als --band-dauer aus der Vorlage: Sie hängt an der Zahl
 * der Einträge, damit das Tempo gleich bleibt, egal wie viele es sind.
 * ================================================================== */

.vereinsband-abschnitt {
	background: var(--surface);
	padding-bottom: 72px;
	overflow: hidden;
}

/* ---- Suche, die ins Verzeichnis führt ---- */

.vereinsband-suche { max-width: 640px; }

.vereinsband-suche > label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--ink);
}

.vereinsband-suche-zeile {
	display: flex;
	gap: 10px;
}

.vereinsband-suche-zeile .search-wrap { flex: 1; }

@media (max-width: 640px) {
	.vereinsband-suche-zeile { flex-direction: column; }
	.vereinsband-suche-zeile .btn { justify-content: center; }
}

/* ---- Die gemeinsame Mechanik ---- */

.ssv-band {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-top: 40px;
	padding: 6px 0 10px;
	overflow: hidden;
	/* Weiche Kanten links und rechts, damit das Band nicht abgeschnitten
	   wirkt, sondern aus dem Bild läuft. */
	-webkit-mask-image: linear-gradient( to right, transparent, #000 5%, #000 95%, transparent );
	mask-image: linear-gradient( to right, transparent, #000 5%, #000 95%, transparent );
}

.ssv-band-spur {
	display: flex;
	align-items: stretch;
	gap: 20px;
	margin: 0;
	padding: 4px 0;
	list-style: none;
	width: max-content;
	animation: ssv-band var(--band-dauer, 90s) linear infinite;
}

/* Die Spur enthält die Einträge zweimal; bei minus fünfzig Prozent sieht
   das Bild genauso aus wie am Anfang, der Sprung fällt nicht auf. */
@keyframes ssv-band {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* Das Anhalten beim Überfahren gilt nur für die Spur selbst, nicht für den
   ganzen Bereich: Sonst pausierte das Band auch, während der Zeiger auf der
   Schaltfläche steht — „Weiterlaufen“ schiene dann wirkungslos. */
.ssv-band-spur:hover,
.ssv-band-spur:focus-within,
.ssv-band.ist-angehalten .ssv-band-spur {
	animation-play-state: paused;
}

.ssv-band-eintrag {
	display: flex;
	flex: 0 0 auto;
}

/* ---- Kachel eines Vereins ---- */

.vereinsband-eintrag { width: 190px; }

.vereinsband-eintrag > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	width: 100%;
	padding: 26px 18px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	color: var(--ink);
	text-align: center;
	transition: border-color 180ms var(--ease-plain), box-shadow 180ms var(--ease-plain), transform 180ms var(--ease-plain);
}

.vereinsband-eintrag > a:hover,
.vereinsband-eintrag > a:focus-visible {
	border-color: var(--blue);
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	color: var(--blue);
}

/* Das Wappen bekommt ein festes Feld, damit hohe und breite Logos gleich
   viel Platz einnehmen und die Namen auf einer Linie beginnen. */
.vereinsband-wappen {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 96px;
	height: 96px;
}

.vereinsband-wappen img,
.vereinsband-wappen svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* Das Wappen sitzt oben und ist überall gleich hoch, damit die Kacheln eine
   Linie bilden. Der Text darunter nimmt den Rest und steht darin mittig —
   sonst hinge er bei kurzen Namen im oberen Drittel. */
.vereinsband-text {
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
}

.vereinsband-name {
	font-family: var(--font-head);
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	/* Die Namen sind unterschiedlich lang. Drei Zeilen reichen für die
	   längsten, ohne dass die Kacheln unterschiedlich hoch werden. */
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vereinsband-ortsteil {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-soft, var(--ink-mid));
}

/* ---- Kachel einer Sportstätte ---- */

.staettenband { margin-top: 40px; }

.staettenband-eintrag { width: 340px; }

.staettenband-eintrag > .fac-card {
	width: 100%;
	border-radius: var(--r-lg);
	overflow: hidden;
}

/* Der farbige Rand beim Überfahren darf die Kachel nicht breiter machen —
   sonst ruckelt das ganze Band. */
.staettenband-eintrag > .fac-card:hover {
	border-left-width: 2px;
	box-shadow: var(--shadow-md);
	border-color: var(--blue);
}

/* ---- Anhalten ---- */

.ssv-band-schalter {
	display: inline-flex;
	align-self: center;
	align-items: center;
	gap: 7px;
	margin: 20px auto 0;
	padding: 8px 16px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-pill);
	color: var(--ink-mid);
	font-family: var(--font-body);
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	transition: border-color 180ms var(--ease-plain), color 180ms var(--ease-plain);
}

.ssv-band-schalter:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.ssv-band-schalter-start { display: none; }
.ssv-band.ist-angehalten .ssv-band-schalter-pause { display: none; }
.ssv-band.ist-angehalten .ssv-band-schalter-start { display: inline-flex; }

/* Wer weniger Bewegung eingestellt hat, bekommt eine ruhige Liste, die
   sich von Hand schieben lässt. Die Schaltfläche entfällt dann. */
@media (prefers-reduced-motion: reduce) {
	.ssv-band-spur {
		animation: none;
		width: auto;
	}

	.ssv-band {
		overflow-x: auto;
		-webkit-mask-image: none;
		mask-image: none;
	}

	.ssv-band-schalter { display: none; }
}

@media (max-width: 640px) {
	.ssv-band-spur { gap: 14px; }
	.vereinsband-eintrag { width: 150px; }
	.vereinsband-eintrag > a { padding: 20px 14px 18px; }
	.vereinsband-wappen { width: 72px; height: 72px; }
	.vereinsband-name { font-size: 0.92rem; }
	.staettenband-eintrag { width: 280px; }
}

/* =====================================================================
 * Zugänglichkeit: Feinschliff
 * ================================================================== */

/* Der Fokusumriss soll sofort da sein. Viele Bausteine aus dem Entwurf
   haben „transition: all“, wodurch auch der Umriss eingeblendet wurde —
   bei einem Indikator, der Orientierung geben soll, ist das falsch. */
*,
*::before,
*::after {
	transition-property: color, background-color, border-color, box-shadow, transform, opacity, filter, visibility;
}

/* Bausteine, die den Übergang bewusst auf einzelne Eigenschaften setzen,
   behalten ihre eigene Angabe – diese Regel greift nur dort, wo „all“ stand. */

/* ---- Zielgröße (WCAG 2.5.8): mindestens 24 × 24 Pixel ----
 *
 * Verweise mitten im Fließtext sind davon ausgenommen; die folgenden
 * stehen aber für sich und müssen die Mindestgröße erreichen. */

.assoc-link,
.news-view-all,
.service-link,
.sportart-karte h3 a,
.ssv-band-eintrag > a,
.zielgruppe-kachel {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
	/* Auch in der Breite: Kurze Namen wie „Ski“ blieben sonst darunter. */
	min-width: 24px;
}

.footer-col li a,
.footer-legal-menu a,
.footer-col .footer-titel a {
	display: inline-block;
	padding: 4px 0;
	min-height: 24px;
}

.news-featured-body .meta a {
	display: inline-flex;
	align-items: center;
	min-height: 24px;
}

.info-value a,
.sportart-vereine a,
.club-pill {
	min-height: 24px;
}

.info-value a {
	display: inline-block;
	padding: 2px 0;
}

/* Sportarten als Plaketten: waren 23 Pixel hoch. */
.club-hero-meta .tag,
a.tag {
	min-height: 24px;
	display: inline-flex;
	align-items: center;
}

/* Der Schalter in der Kartenlegende. Anklickbar ist die ganze Beschriftung,
   das Kästchen selbst darf trotzdem größer sein. */
.ssv-legende-schalter {
	min-height: 24px;
	padding-top: 11px;
}

.ssv-legende-schalter input {
	width: 18px;
	height: 18px;
	margin: 0;
}

/* Überschriften-Verweise in Kacheln sind eigenständige Ziele und dürfen
   nicht unter 24 Pixel liegen. */
.fac-card-body h3 a,
.termin-inhalt h3 a,
.service-karte h3 a {
	display: inline-block;
	min-height: 24px;
}

/* Kurze Plaketten wie „Ski“ waren 23 Pixel breit. */
a.tag {
	min-width: 26px;
	justify-content: center;
}

/* Mehrere Plaketten in einer Angabe brauchen Abstand — sonst liest sich
   „Gymnastik Karate“ wie ein einziger Begriff. */
.info-value .tag {
	margin: 0 5px 5px 0;
}

.info-value .tag:last-child { margin-right: 0; }

/* =====================================================================
 * Der Vorstand des Verbands
 *
 * Gruppenfoto und Ämterliste werden im Backend an der Seite selbst
 * gepflegt (Seiten → Der Vorstand). Solange dort nichts steht, erscheint
 * hier auch nichts — die Seite erklärt dann nur die Satzungslage.
 * ================================================================== */

.vorstand-foto {
	margin: 0 0 44px;
}

.vorstand-foto-bild {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--r-lg);
	border: 1px solid var(--border);
}

.vorstand-foto figcaption {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 12px;
	font-size: 0.88rem;
	line-height: 1.5;
	color: var(--ink-mid);
}

.vorstand-foto-quelle {
	font-size: 0.8rem;
	color: var(--ink-soft, var(--ink-mid));
}

.vorstand-titel {
	margin: 0 0 24px;
}

.vorstand-raster {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
	gap: 20px;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

/* Dieselbe Kachel wie überall auf der Seite: weiße Fläche, ein Pixel Rand,
   derselbe Radius und Schatten wie bei den Zielen und den Sportstätten.
   Nur der Kopf ist eigen — dort läuft der Schweif der Bildmarke durch. */
.vorstand-person {
	display: flex;
	flex-direction: column;
	padding: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	overflow: hidden;
	transition: border-color 200ms var(--ease-plain), box-shadow 200ms var(--ease-plain);
}

.vorstand-person:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-md);
}

/* Der Vorstand nach § 26 BGB kann den Verband vertreten. Das ist für Vereine
   und Behörden die wichtigste Unterscheidung — dieselbe Geste wie bei den
   Grundsätzen auf „Über den SSV“: ein farbiger Streifen an der Kante. */
.vorstand-person--gf { border-left: 4px solid var(--blue); }

/* ---- Kopf mit Schweif ---- */

/* Der untere Abstand steckt im Kopf und nicht im Text darunter: Bei einem
   Beisitzer ohne Zuständigkeit und ohne Adresse fehlen beide Blöcke, und der
   Name klebte sonst am unteren Rand. */
.vorstand-person-kopf {
	padding: 0 26px 22px;
}

/* Eigenes Band für Bild und Schweif. Der Text darunter bleibt frei: Über
   einer Grafik ist er schlecht zu lesen. */
.vorstand-person-band {
	position: relative;
	/* Der Schweif läuft über die ganze Kartenbreite, also aus dem Innenabstand
	   heraus. */
	margin: 0 -26px 18px;
	padding: 28px 26px 0;
	overflow: hidden;
}

/* Der Schweif füllt den ganzen Kopf, das Bild liegt darüber — dieselbe
   Schichtung wie im Logo, wo das Wappen auf dem Band sitzt. */
.ssv-schweif {
	position: absolute;
	right: 0;
	bottom: 0;
	/* Nur die rechten zwei Drittel: Links sitzt das Bild, dort käme das Band
	   im Logo hinter dem Wappen hervor. */
	width: 74%;
	height: 86px;
	opacity: 0.85;
}

.vorstand-person-bild {
	position: relative;
	width: 104px;
	height: 104px;
}

.vorstand-person-bild img {
	width: 104px;
	height: 104px;
	border-radius: 50%;
	object-fit: cover;
	/* Der weiße Ring hebt das Bild vom Schweif dahinter ab, wie im Logo das
	   Wappen vom Band. */
	box-shadow: 0 0 0 5px var(--white);
}

/* Der Platzhalter zeigt das Symbol des Amtes: eine Kasse, ein Schriftstück,
   eine Stoppuhr. Initialen sagten nichts, was nicht daneben schon stand. */
.ssv-amtsplatzhalter {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	background: var(--surface);
	color: var(--blue);
	box-shadow: 0 0 0 5px var(--white);
}

.ssv-amtsplatzhalter .ssv-zielsymbol {
	width: 46px;
	height: 46px;
}

.vorstand-person:nth-child(even) .ssv-amtsplatzhalter {
	color: var(--green-dark, #288628);
}

/* ---- Text ---- */

.vorstand-person-amt {
	position: relative;
	margin: 0;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--blue);
}

.vorstand-person-name {
	position: relative;
	margin: 4px 0 0;
	font-family: var(--font-head);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.2;
}

.vorstand-plakette {
	position: relative;
	display: inline-block;
	margin: 12px 0 0;
	padding: 3px 10px;
	border: 1.5px solid var(--blue);
	border-radius: var(--r-pill);
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--blue);
}

/* Linksbündig: Fließtext über mehrere Zeilen ist zentriert schlecht zu lesen,
   weil jede Zeile an einer anderen Stelle beginnt. */
.vorstand-person-zustaendig {
	margin: 0;
	padding: 0 26px 22px;
	font-size: 0.94rem;
	line-height: 1.6;
	color: var(--ink-mid);
}

/* ---- Fuß mit den harten Angaben ---- */

/* Nur noch der Kontakt. Das Wahljahr stand hier in einer zweiten Spalte und
   drängte die Adressen in den Umbruch; es steht jetzt weiter unten gesammelt. */
.vorstand-person-fuss {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: auto 0 0;
	padding: 16px 26px 18px;
	background: var(--surface);
	border-top: 1px solid var(--border);
}

.vorstand-person-fuss > div {
	display: flex;
	flex-direction: column;
	gap: 1px;
	/* Ohne das sprengt eine lange Adresse die Spalte. */
	min-width: 0;
}

.vorstand-person-fuss dt {
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.vorstand-person-fuss dd {
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	overflow-wrap: anywhere;
}

.vorstand-person-fuss a { color: var(--blue); }

.vorstand-person-fuss a:hover,
.vorstand-person-fuss a:focus-visible { text-decoration: underline; }

.vorstand-vertretung {
	margin: 0 0 48px;
	padding: 14px 18px;
	background: var(--surface);
	border-left: 3px solid var(--blue);
	border-radius: var(--r-sm, 6px);
	font-size: 0.92rem;
	color: var(--ink-mid);
}

@media (max-width: 640px) {
	.vorstand-raster { grid-template-columns: 1fr; }
}

.vorstand-hinweis {
	margin: 0 0 36px;
	padding: 14px 18px;
	background: var(--surface);
	border-left: 3px solid var(--blue);
	border-radius: var(--r-sm, 6px);
	font-style: italic;
	color: var(--ink-mid);
}

/* =====================================================================
 * Kennzahlen des Verbands
 *
 * Standen erst als eigener Abschnitt am Seitenende. Dort las sie niemand —
 * jetzt stehen sie im Aufmacher, direkt unter der Aussage, zu der sie der
 * Beleg sind. Derselbe Baustein wird auf der Seite „Über den SSV“ noch
 * einmal verwendet.
 * ================================================================== */

.ssv-zahlen {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 16px;
	margin: 0;
}

.ssv-zahl {
	padding: 22px 24px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
}

/* Wert vor Bezeichnung – so liest ein Bildschirmleser „7.959 – Mitglieder“. */
.ssv-zahl dd {
	margin: 0;
	font-family: var(--font-head);
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	font-weight: 700;
	line-height: 1;
	color: var(--blue);
	font-variant-numeric: tabular-nums;
}

.ssv-zahl dt {
	margin-top: 7px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

/* Im Aufmacher sitzen die Zahlen unter dem Raster aus Text und Bildmarke.
   Das Raster bringt schon 80 Pixel Abstand nach unten mit — die werden hier
   zurückgenommen, sonst klafft eine Lücke. */
.hero .hero-grid { padding-bottom: 40px; }

.hero-zahlen {
	padding: 36px 0 8px;
	border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
	.hero-zahlen {
		margin-top: 36px;
		padding-top: 28px;
		grid-template-columns: 1fr 1fr;
	}
}

/* ---------------------------------------------------------------------
 * Streifen mit den Wegen in die Verbandsseiten
 * ------------------------------------------------------------------ */

.verband-streifen { padding-top: 56px; padding-bottom: 56px; }

.verband-streifen-inhalt {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.verband-streifen h2 {
	margin: 6px 0 10px;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.verband-streifen p {
	margin: 0;
	max-width: 52ch;
	color: var(--ink-mid);
}

.verband-verweise {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.verband-verweise a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 16px;
	background: var(--white);
	border: 1.5px solid var(--border);
	border-radius: var(--r-pill);
	color: var(--ink);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	transition: border-color 180ms var(--ease-plain), color 180ms var(--ease-plain);
}

.verband-verweise a:hover,
.verband-verweise a:focus-visible {
	border-color: var(--blue);
	color: var(--blue);
}

/* =====================================================================
 * Die Ziele des Verbands
 *
 * Vorher eine Wand aus sechs Absätzen Fließtext — inhaltlich richtig, aber
 * niemand las sie zu Ende. Jetzt sechs Kacheln mit Symbol; die Symbole sind
 * für Bildschirmleser ausgeblendet, weil sie nur doppeln, was daneben steht.
 * ================================================================== */

.ziele-einleitung {
	max-width: 60ch;
	margin-bottom: 40px;
	font-size: 1.08rem;
}

.ziele-raster {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 20px;
	margin: 0 0 64px;
	padding: 0;
	list-style: none;
}

.ziel-kachel {
	padding: 30px 28px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	transition: border-color 200ms var(--ease-plain), box-shadow 200ms var(--ease-plain);
}

.ziel-kachel:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-md);
}

.ziel-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	border-radius: 16px;
	background: var(--surface);
	color: var(--blue);
}

.ziel-symbol .ssv-zielsymbol {
	width: 32px;
	height: 32px;
}

/* Jedes zweite Symbol in Grün: Die beiden Verbandsfarben wechseln sich ab,
   ohne dass jede Kachel eine eigene Farbe braucht. */
.ziel-kachel:nth-child(even) .ziel-symbol {
	color: var(--green-dark, #288628);
}

.ziel-titel {
	margin: 0 0 10px;
	font-size: 1.22rem;
	line-height: 1.25;
}

.ziel-text {
	margin: 0;
	color: var(--ink-mid);
	line-height: 1.6;
}

/* ---- Kernthemen ---- */

.kernthemen {
	padding: 36px 34px;
	background: var(--surface);
	border-radius: var(--r-lg);
}

.kernthemen-titel {
	margin: 0 0 24px;
	font-size: 1.35rem;
}

/* Bei fünf Themen sieht 3 + 2 aufgeräumter aus als 4 + 1. */
.kernthemen-reihe {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px 28px;
	align-items: start;
	margin: 0;
	padding: 0;
	list-style: none;
}

.kernthema {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.kernthema-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--white);
	color: var(--blue);
}

.kernthema-symbol .ssv-zielsymbol {
	width: 22px;
	height: 22px;
}

.kernthema-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	/* Ohne das sprengen lange Zusätze die Spalte. */
	min-width: 0;
}

.kernthema-text strong { line-height: 1.3; }

.kernthema-zusatz {
	font-size: 0.88rem;
	color: var(--ink-mid);
	line-height: 1.4;
}

.ziele-nachwort {
	max-width: 60ch;
	margin-top: 40px;
	color: var(--ink-mid);
}

@media (max-width: 640px) {
	.ziel-kachel { padding: 24px 22px; }
	.kernthemen { padding: 26px 22px; }
}

/* =====================================================================
 * Über den SSV
 *
 * Der Text war richtig, aber die harten Angaben — Gründung, Registernummer,
 * Mitgliedschaft — gingen darin unter. Jetzt stehen sie als Karte daneben,
 * die Geschichte als Zeitleiste, die Grundsätze aus § 2 als Kacheln.
 * ================================================================== */

.ueberuns-spalten {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
	margin-bottom: 72px;
}

.ueberuns-text .ueberuns-vorspann {
	font-size: 1.2rem;
	line-height: 1.6;
	color: var(--ink);
}

.ueberuns-text h2 { margin-top: 36px; }

/* ---- Karte mit den Eckdaten ---- */

.eckdaten {
	position: sticky;
	top: 100px;
	padding: 28px 30px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
}

.eckdaten-titel {
	margin: 0 0 18px;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.eckdaten dl { margin: 0; }

.eckdaten-zeile {
	padding: 12px 0;
	border-top: 1px solid var(--border);
}

.eckdaten-zeile:first-child {
	padding-top: 0;
	border-top: 0;
}

.eckdaten dt {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.eckdaten dd {
	margin: 3px 0 0;
	font-weight: 600;
	line-height: 1.4;
}

/* ---- Zeitleiste ---- */

.zeitleiste-block { margin-bottom: 72px; }
.zeitleiste-titel { margin: 0 0 28px; }

.zeitleiste {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
	/* Die durchgehende Linie, auf der die Stationen sitzen. */
	background-image: linear-gradient(to right, var(--border), var(--border));
	background-size: 100% 2px;
	background-position: 0 7px;
	background-repeat: no-repeat;
}

.zeitleiste-station {
	position: relative;
	padding-top: 34px;
}

/* Der Punkt auf der Linie. */
.zeitleiste-station::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 4px var(--white);
}

.zeitleiste-station:last-child::before { background: var(--green-dark, #288628); }

.zeitleiste-jahr {
	display: block;
	margin-bottom: 4px;
	font-family: var(--font-head);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	color: var(--blue);
}

.zeitleiste-station-titel {
	margin: 0 0 6px;
	font-size: 1.08rem;
}

.zeitleiste-station p {
	margin: 0;
	color: var(--ink-mid);
	line-height: 1.6;
}

/* ---- Grundsätze ---- */

.grundsaetze-block { margin-bottom: 72px; }
.grundsaetze-titel { margin: 0 0 24px; }

.grundsaetze {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.grundsatz {
	padding: 28px 26px;
	background: var(--white);
	border: 1px solid var(--border);
	border-left: 4px solid var(--blue);
	border-radius: var(--r-lg);
}

.grundsatz:nth-child(even) { border-left-color: var(--green-dark, #288628); }

.grundsatz-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border-radius: 14px;
	background: var(--surface);
	color: var(--blue);
}

.grundsatz:nth-child(even) .grundsatz-symbol { color: var(--green-dark, #288628); }

.grundsatz-symbol .ssv-zielsymbol { width: 26px; height: 26px; }

.grundsatz-titel { margin: 0 0 8px; font-size: 1.12rem; }

.grundsatz p {
	margin: 0;
	color: var(--ink-mid);
	line-height: 1.6;
}

/* ---- Zahlen am Fuß der Seite ---- */

.ueberuns-zahlen-titel { margin: 0 0 24px; }

@media (max-width: 900px) {
	.ueberuns-spalten { grid-template-columns: 1fr; gap: 36px; }
	.eckdaten { position: static; }

	/* Untereinander trägt keine waagerechte Linie mehr. */
	.zeitleiste { background-image: none; }
}

/* =====================================================================
 * Hinweis auf den Dienstleister ganz unten im Fuß
 *
 * Klein, aber sichtbar. Die Wortmarke ist schwarz-orange und wäre auf dem
 * dunklen Grund zur Hälfte unsichtbar — sie steht deshalb auf einer weißen
 * Fläche und behält ihre Farben. An einem fremden Logo wird nichts verändert.
 * ================================================================== */

.footer-partner {
	display: flex;
	justify-content: center;
	padding: 0 0 26px;
}

.footer-partner a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 7px 12px 7px 14px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #8890a8;
	font-size: 0.76rem;
	letter-spacing: 0.03em;
	text-decoration: none;
	transition: border-color 180ms var(--ease-plain), color 180ms var(--ease-plain);
}

.footer-partner a:hover,
.footer-partner a:focus-visible {
	border-color: rgba(255, 255, 255, 0.28);
	color: #d6dae6;
}

.footer-partner img {
	display: block;
	width: 104px;
	height: auto;
	padding: 5px 8px;
	background: var(--white);
	border-radius: 4px;
}

@media (max-width: 480px) {
	.footer-partner a { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------------------------------------------------------------------
 * Wer wann zur Wahl steht
 *
 * Aus § 18 Absatz 5 gerechnet und nach Jahren gruppiert. In den Kacheln
 * nahm die Angabe Platz weg; hier beantwortet sie eine eigene Frage —
 * „wen können wir nächstes Jahr vorschlagen?“
 * ------------------------------------------------------------------ */

.wahlplan {
	margin: 56px 0 0;
	padding: 32px 34px;
	background: var(--surface);
	border-radius: var(--r-lg);
}

.wahlplan-titel { margin: 0 0 10px; }

.wahlplan-hinweis {
	margin: 0 0 26px;
	max-width: 62ch;
	color: var(--ink-mid);
}

.wahlplan-jahre {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.wahlplan-jahr {
	padding: 20px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
}

.wahlplan-jahr-titel {
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--blue);
	font-family: var(--font-head);
	font-size: 1.5rem;
	line-height: 1;
	color: var(--blue);
	font-variant-numeric: tabular-nums;
}

.wahlplan-jahr ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wahlplan-jahr li {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 9px 0;
	border-top: 1px solid var(--border);
}

.wahlplan-jahr li:first-child {
	padding-top: 0;
	border-top: 0;
}

.wahlplan-amt {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.wahlplan-name { font-weight: 600; }

@media (max-width: 640px) {
	.wahlplan { padding: 24px 20px; }
}

/* =====================================================================
 * Die Seite „Für wen?“
 *
 * Vorher eine Reihe gleich aussehender Kacheln mit Namen und Zahl. Jetzt
 * trägt jede Karte, was hinter der Zahl steckt: die Sportarten und die
 * Wappen der Vereine. Man erkennt seinen Verein wieder, bevor man klickt.
 * ================================================================== */

.zielgruppen-liste {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	gap: 20px;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
}

.zielgruppe-karte {
	display: flex;
	flex-direction: column;
	padding: 26px 26px 22px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-xs);
	transition: border-color 200ms var(--ease-plain), box-shadow 200ms var(--ease-plain);
}

.zielgruppe-karte:hover {
	border-color: var(--blue);
	box-shadow: var(--shadow-md);
}

.zielgruppe-kopf {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}

.zielgruppe-symbol {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: var(--surface);
	color: var(--blue);
}

.zielgruppe-symbol .ssv-zielsymbol { width: 32px; height: 32px; }

.zielgruppe-karte:nth-child(even) .zielgruppe-symbol {
	color: var(--green-dark, #288628);
}

.zielgruppe-titel {
	margin: 0;
	font-size: 1.2rem;
	line-height: 1.2;
}

.zielgruppe-titel a {
	color: var(--ink);
	text-decoration: none;
}

.zielgruppe-titel a:hover,
.zielgruppe-titel a:focus-visible { color: var(--blue); }

.zielgruppe-zahl {
	margin: 4px 0 0;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-mid);
}

.zielgruppe-beschreibung {
	margin: 0 0 14px;
	color: var(--ink-mid);
	line-height: 1.55;
}

.zielgruppe-sport {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 16px;
}

/* Die Wappen der Vereine, die diese Gruppe bedienen. */
.zielgruppe-vereine {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 14px 0 0;
	border-top: 1px solid var(--border);
	list-style: none;
}

.zielgruppe-vereine a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 4px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	transition: border-color 180ms var(--ease-plain);
}

.zielgruppe-vereine a:hover,
.zielgruppe-vereine a:focus-visible { border-color: var(--blue); }

.zielgruppe-vereine img,
.zielgruppe-vereine svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.zielgruppe-mehr {
	margin: auto 0 0;
	font-size: 0.9rem;
	font-weight: 600;
}

.zielgruppe-mehr a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	color: var(--blue);
	text-decoration: none;
}

.zielgruppe-mehr a:hover,
.zielgruppe-mehr a:focus-visible { text-decoration: underline; }

.zielgruppen-fuss {
	max-width: 66ch;
	margin: 36px 0 0;
	font-size: 0.9rem;
	color: var(--ink-mid);
}

@media (max-width: 480px) {
	.zielgruppe-karte { padding: 22px 20px 20px; }
}
