/* ==========================================================================
   FST Suche
   SPEC 9 (Layout), 11 (Design), 14 (Barrierefreiheit)
   Abstandsraster 4 px. Kein Text unter 13 px. Fokus immer sichtbar.
   ========================================================================== */

.fst-suche {
	--fst-akzent: #0e7c66;
	--fst-akzent-dunkel: #0a5f4e;
	--fst-akzent-hell: #e8f4f1;
	--fst-stern: #f0a500;
	--fst-text: #1c2024;
	--fst-text-leise: #5b6670;
	--fst-linie: #dfe4e8;
	--fst-flaeche: #ffffff;
	--fst-flaeche-leise: #f6f8f9;
	--fst-anzeige: #8a6d00;
	--fst-radius: 8px;
	--fst-schatten: 0 1px 2px rgba(20, 30, 40, .06), 0 4px 12px rgba(20, 30, 40, .04);
	--fst-max: 1200px;
	--fst-sidebar: 280px;

	color: var(--fst-text);
	font-size: 16px;
	line-height: 1.5;
}

.fst-suche *,
.fst-suche *::before,
.fst-suche *::after { box-sizing: border-box; }

.fst-suche__innen {
	max-width: var(--fst-max);
	margin: 0 auto;
	padding: 24px 16px 64px;
}

/* Barrierefreiheit ------------------------------------------------------- */

.fst-sr-only {
	position: absolute !important;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.fst-suche a:focus-visible,
.fst-suche button:focus-visible,
.fst-suche input:focus-visible,
.fst-suche select:focus-visible,
.fst-suche summary:focus-visible {
	outline: 3px solid var(--fst-akzent);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	.fst-suche * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* Buttons ---------------------------------------------------------------- */

.fst-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 10px 20px;
	border: 1px solid transparent;
	border-radius: var(--fst-radius);
	font: inherit;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease;
}

.fst-btn--primaer { background: var(--fst-akzent); color: #fff !important; }
.fst-btn--primaer:hover { background: var(--fst-akzent-dunkel); }
.fst-btn--sekundaer { background: #fff; color: var(--fst-text) !important; border-color: var(--fst-linie); }
.fst-btn--sekundaer:hover { border-color: var(--fst-akzent); }
.fst-btn--klein { min-height: 32px; padding: 4px 12px; font-size: 14px; }
.fst-btn--block { width: 100%; }

/* Suchleiste ------------------------------------------------------------- */

.fst-suchleiste { position: relative; margin-bottom: 16px; }

.fst-suchleiste__feld {
	display: flex;
	gap: 8px;
}

.fst-suchleiste input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 48px;
	padding: 8px 16px;
	font: inherit;
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
	background: #fff;
}

.fst-vorschlaege {
	position: absolute;
	z-index: 30;
	top: calc(100% + 4px);
	left: 0; right: 0;
	margin: 0; padding: 4px;
	list-style: none;
	background: #fff;
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
	box-shadow: var(--fst-schatten);
	max-height: 380px;
	overflow-y: auto;
}

.fst-vorschlaege li { margin: 0; }

.fst-vorschlaege__gruppe {
	padding: 8px 12px 4px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--fst-text-leise);
}

.fst-vorschlag {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.fst-vorschlag:hover,
.fst-vorschlag.is-aktiv { background: var(--fst-akzent-hell); }

.fst-vorschlag small { display: block; color: var(--fst-text-leise); font-size: 13px; }

/* Tabs ------------------------------------------------------------------- */

.fst-tabs {
	display: flex;
	gap: 4px;
	border-bottom: 2px solid var(--fst-linie);
	margin-bottom: 20px;
	overflow-x: auto;
}

.fst-tab {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 12px 16px;
	text-decoration: none;
	color: var(--fst-text-leise);
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	white-space: nowrap;
	min-height: 44px;
}

.fst-tab:hover { color: var(--fst-text); }
.fst-tab.is-aktiv { color: var(--fst-akzent); border-bottom-color: var(--fst-akzent); font-weight: 600; }
.fst-tab__zahl { font-size: 18px; font-weight: 700; line-height: 1.1; }
.fst-tab__label { font-size: 14px; }

/* Kopf ------------------------------------------------------------------- */

.fst-kopf {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 16px;
}

.fst-kopf__h1 {
	margin: 0 0 4px;
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.25;
}

.fst-kopf__hinweis { margin: 0; font-size: 14px; color: var(--fst-text-leise); }
.fst-kopf__hinweis a { color: var(--fst-text-leise); }

.fst-info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px; height: 18px;
	margin-right: 4px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
}

.fst-feld {
	display: block;
	margin-bottom: 4px;
	font-size: 13px;
	font-weight: 600;
	color: var(--fst-text-leise);
}

.fst-select,
.fst-input {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	font: inherit;
	font-size: 15px;
	border: 1px solid var(--fst-linie);
	border-radius: 6px;
	background: #fff;
	color: inherit;
}

.fst-kopf__sort { min-width: 220px; }
.fst-sortform { display: flex; gap: 8px; }

/* Layout ----------------------------------------------------------------- */

.fst-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 900px) {
	.fst-layout { grid-template-columns: var(--fst-sidebar) minmax(0, 1fr); }
}

@media (min-width: 1280px) {
	.fst-suche { --fst-sidebar: 300px; }
}

.fst-sidebar__innen {
	position: sticky;
	top: 24px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

/* Filter ----------------------------------------------------------------- */

.fst-filter__kopf {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}

.fst-filter__titel { margin: 0; font-size: 18px; }
.fst-filter__reset { font-size: 14px; }

.fst-facette {
	border-bottom: 1px solid var(--fst-linie);
	padding: 4px 0;
}

.fst-facette__kopf {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 4px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	list-style: none;
	min-height: 44px;
}

.fst-facette__kopf::-webkit-details-marker { display: none; }

.fst-facette__kopf::after {
	content: "";
	width: 8px; height: 8px;
	border-right: 2px solid var(--fst-text-leise);
	border-bottom: 2px solid var(--fst-text-leise);
	transform: rotate(45deg) translateY(-2px);
	transition: transform .15s ease;
}

.fst-facette[open] > .fst-facette__kopf::after { transform: rotate(-135deg) translateY(-2px); }

.fst-facette__inhalt {
	border: 0;
	margin: 0;
	padding: 0 4px 12px;
	min-width: 0;
}

.fst-facette--schalter { padding: 8px 0; }
.fst-facette--klein .fst-option__label { font-size: 14px; color: var(--fst-text-leise); }

.fst-option,
.fst-radio {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 4px;
	min-height: 36px;
	cursor: pointer;
	border-radius: 4px;
	font-size: 15px;
}

.fst-option:hover,
.fst-radio:hover { background: var(--fst-flaeche-leise); }

.fst-option input,
.fst-radio input {
	width: 18px; height: 18px;
	margin: 0;
	flex: 0 0 auto;
	accent-color: var(--fst-akzent);
}

.fst-option__label,
.fst-radio span:not(.fst-option__zahl) { flex: 1 1 auto; min-width: 0; }

.fst-option__zahl {
	flex: 0 0 auto;
	font-size: 13px;
	color: var(--fst-text-leise);
	font-variant-numeric: tabular-nums;
}

.fst-option--leer { opacity: .45; cursor: not-allowed; }
.fst-option--leer:hover { background: transparent; }
.fst-option--mehr { display: none; }
.fst-facette.is-alle .fst-option--mehr { display: flex; }

.fst-mehr {
	margin-top: 4px;
	padding: 6px 4px;
	background: none;
	border: 0;
	color: var(--fst-akzent);
	font: inherit;
	font-size: 14px;
	cursor: pointer;
	text-decoration: underline;
	min-height: 32px;
}

.fst-umkreis { border: 0; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 12px; }
.fst-umkreis[disabled] { opacity: .5; }
.fst-umkreis .fst-radio { padding: 4px; font-size: 14px; }

.fst-vonbis { display: flex; align-items: center; gap: 8px; }
.fst-vonbis .fst-input { min-width: 0; }

.fst-schnellwahl { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; }

.fst-hinweis { margin: 8px 0 0; font-size: 13px; color: var(--fst-text-leise); }

.fst-filter__fuss { margin-top: 16px; }

/* Aktive Filter ---------------------------------------------------------- */

.fst-aktivfilter {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	padding: 12px;
	background: var(--fst-flaeche-leise);
	border-radius: var(--fst-radius);
}

.fst-aktivfilter__label { font-size: 14px; font-weight: 600; color: var(--fst-text-leise); }
.fst-aktivfilter__liste { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.fst-aktivfilter__reset { margin-left: auto; font-size: 14px; }

/* Chips ------------------------------------------------------------------ */

.fst-chips { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 10px 0 0; padding: 0; }

.fst-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: var(--fst-flaeche-leise);
	border: 1px solid var(--fst-linie);
	border-radius: 999px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--fst-text);
	white-space: nowrap;
}

.fst-chip--klick { text-decoration: none; min-height: 32px; }
.fst-chip--klick:hover { border-color: var(--fst-akzent); }
.fst-chip--klick.is-aktiv { background: var(--fst-akzent-hell); border-color: var(--fst-akzent); }

.fst-chip--aktiv {
	background: var(--fst-akzent-hell);
	border-color: var(--fst-akzent);
	text-decoration: none;
	min-height: 32px;
}

.fst-chip__x { font-size: 16px; line-height: 1; color: var(--fst-akzent); }

/* Karten ----------------------------------------------------------------- */

.fst-liste { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fst-liste__eintrag { margin: 0; }

.fst-anzeigen { display: grid; gap: 12px; margin-bottom: 12px; }

.fst-liste__zwischenkopf {
	margin: 20px 0 4px;
	padding-top: 16px;
	border-top: 1px solid var(--fst-linie);
}

.fst-liste__zwischenkopf h2 { margin: 0 0 2px; font-size: 18px; }
.fst-liste__zwischenkopf p { margin: 0; font-size: 14px; color: var(--fst-text-leise); }

.fst-karte {
	position: relative;
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	grid-template-areas:
		"logo haupt"
		"bew  bew"
		"akt  akt";
	gap: 12px 16px;
	padding: 16px;
	background: var(--fst-flaeche);
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
	box-shadow: var(--fst-schatten);
	transition: border-color .15s ease;
}

.fst-karte:hover { border-color: #c3ccd3; }

.fst-karte--anzeige {
	border-color: #e7d9a8;
	background: #fffdf6;
	grid-template-areas:
		"anz  anz"
		"logo haupt"
		"bew  bew"
		"akt  akt";
}

@media (min-width: 640px) {
	.fst-karte {
		grid-template-columns: 72px minmax(0, 1fr) 200px;
		grid-template-areas:
			"logo haupt bew"
			"logo haupt akt";
		align-items: start;
	}

	.fst-karte--anzeige {
		grid-template-areas:
			"anz  anz   anz"
			"logo haupt bew"
			"logo haupt akt";
	}
}

/* Die Kennzeichnung steht in einer eigenen Zeile ganz oben, nicht
   ueberlagernd. Sie muss ohne Scrollen und ohne Verdeckung lesbar sein. */
.fst-karte__anzeige {
	grid-area: anz;
	margin: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--fst-anzeige);
}

.fst-karte__logo { grid-area: logo; }

.fst-karte__logo img {
	width: 72px; height: 72px;
	object-fit: contain;
	border: 1px solid var(--fst-linie);
	border-radius: 6px;
	background: #fff;
	max-width: 100%;
}

.fst-karte__initialen {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px; height: 72px;
	border-radius: 6px;
	background: var(--fst-akzent-hell);
	color: var(--fst-akzent-dunkel);
	font-size: 24px;
	font-weight: 700;
}

.fst-karte__haupt { grid-area: haupt; min-width: 0; }

.fst-karte__titel { margin: 0 0 2px; font-size: 18px; line-height: 1.3; }

.fst-karte__link { color: inherit; text-decoration: none; }
.fst-karte__link:hover { text-decoration: underline; }

/* Ganze Karte klickbar, ohne onclick: das Pseudo-Element des Titellinks
   legt sich ueber die Karte. Untergeordnete Links liegen darueber. */
.fst-karte__link::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.fst-karte__anbieter a,
.fst-karte__anzahl a,
.fst-karte__cta { position: relative; z-index: 2; }

.fst-karte__zusatz { margin: 0 0 4px; font-size: 14px; color: var(--fst-text-leise); }
.fst-karte__anbieter { margin: 0 0 2px; font-size: 15px; }
.fst-karte__orte { margin: 0; font-size: 14px; color: var(--fst-text-leise); }

.fst-karte__bewertung {
	grid-area: bew;
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: flex-start;
}

@media (min-width: 640px) {
	.fst-karte__bewertung { align-items: flex-end; text-align: right; }
	.fst-karte__aktion { align-items: flex-end; }
}

.fst-karte__empfehlung { margin: 0; font-size: 13px; line-height: 1.35; }
.fst-karte__anzahl { margin: 0; font-size: 13px; }

.fst-karte__aktion {
	grid-area: akt;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.fst-karte__cta { white-space: nowrap; padding-left: 16px; padding-right: 16px; }

/* Note und Sterne -------------------------------------------------------- */

.fst-note { display: inline-flex; align-items: center; gap: 6px; }
.fst-note--leer { font-size: 14px; color: var(--fst-text-leise); }
.fst-note__zahl { font-size: 20px; font-weight: 700; line-height: 1; }

.fst-sterne {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 1px;
	white-space: nowrap;
}

.fst-sterne__leer { color: #d8dee3; }

.fst-sterne__voll {
	position: absolute;
	inset: 0 auto 0 0;
	overflow: hidden;
	color: var(--fst-stern);
}

.fst-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
}

.fst-badge--info { background: var(--fst-akzent-hell); color: var(--fst-akzent-dunkel); }

/* Leerzustand ------------------------------------------------------------ */

.fst-leer {
	padding: 32px 20px;
	background: var(--fst-flaeche-leise);
	border-radius: var(--fst-radius);
}

.fst-leer__titel { margin: 0 0 12px; font-size: 20px; }
.fst-leer__korrektur { margin: 0 0 16px; font-size: 17px; }
.fst-leer__anker { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.fst-leer__anker li { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.fst-leer__vorschlaege h3 { margin: 0 0 6px; font-size: 16px; }
.fst-leer__vorschlaege ul { margin: 0; padding-left: 20px; }

/* Pagination ------------------------------------------------------------- */

.fst-pagination { margin-top: 28px; }
.fst-pagination__liste { display: none; }
.fst-pagination__mobil { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 0; }

@media (min-width: 640px) {
	.fst-pagination__mobil { display: none; }
	.fst-pagination__liste {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px;
		list-style: none;
		margin: 0;
		padding: 0;
	}
}

.fst-pagination__liste a,
.fst-pagination__aktuell,
.fst-pagination__pfeil,
.fst-pagination__luecke {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 8px;
	border: 1px solid var(--fst-linie);
	border-radius: 6px;
	text-decoration: none;
	color: inherit;
	background: #fff;
}

.fst-pagination__aktuell { background: var(--fst-akzent); color: #fff; border-color: var(--fst-akzent); font-weight: 700; }
.fst-pagination__luecke { border-color: transparent; background: transparent; }
.fst-pagination__pfeil.is-aus { opacity: .4; }
.fst-pagination__liste a:hover { border-color: var(--fst-akzent); }

/* Verwandte Suchen ------------------------------------------------------- */

.fst-verwandt { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--fst-linie); }
.fst-verwandt__titel { margin: 0 0 12px; font-size: 18px; }
.fst-verwandt__liste { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }

.fst-verwandt__liste a {
	display: inline-block;
	padding: 6px 12px;
	background: var(--fst-flaeche-leise);
	border: 1px solid var(--fst-linie);
	border-radius: 999px;
	font-size: 14px;
	text-decoration: none;
	color: inherit;
	min-height: 32px;
}

.fst-verwandt__liste a:hover { border-color: var(--fst-akzent); }

/* Ladezustand ------------------------------------------------------------ */

.fst-ergebnisse[aria-busy="true"] .fst-liste { opacity: .35; }

.fst-skelett {
	display: grid;
	gap: 12px;
}

.fst-skelett__karte {
	height: 148px;
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
	background: linear-gradient(90deg, #f4f6f7 25%, #eceff1 37%, #f4f6f7 63%);
	background-size: 400% 100%;
	animation: fst-schimmer 1.4s ease infinite;
}

@keyframes fst-schimmer {
	0% { background-position: 100% 50%; }
	100% { background-position: 0 50%; }
}

.fst-fehler {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	padding: 12px 16px;
	background: #fdf2f2;
	border: 1px solid #f0c6c6;
	border-radius: var(--fst-radius);
	font-size: 15px;
}

/* Mobiles Filter-Sheet --------------------------------------------------- */

.fst-mobilleiste {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	gap: 8px;
	padding: 8px 0;
	margin-bottom: 12px;
	background: #fff;
}

@media (min-width: 900px) {
	.fst-mobilleiste { display: none; }
}

@media (max-width: 899px) {
	.fst-sidebar {
		position: fixed;
		inset: 0;
		z-index: 100;
		background: rgba(15, 22, 28, .5);
		display: none;
	}

	.fst-sidebar.is-offen { display: block; }

	.fst-sidebar__innen {
		position: absolute;
		inset: auto 0 0 0;
		max-height: 88vh;
		padding: 0 16px 16px;
		background: #fff;
		border-radius: 16px 16px 0 0;
		overflow-y: auto;
		top: auto;
	}

	.fst-sheet__kopf {
		position: sticky;
		top: 0;
		z-index: 2;
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		padding: 12px 0;
		background: #fff;
		border-bottom: 1px solid var(--fst-linie);
	}

	.fst-sheet__kopf h2 { margin: 0; font-size: 18px; }

	.fst-sheet__schliessen {
		width: 44px; height: 44px;
		border: 0;
		background: none;
		font-size: 28px;
		line-height: 1;
		cursor: pointer;
	}

	.fst-sheet__fuss {
		position: sticky;
		bottom: 0;
		display: flex !important;
		gap: 8px;
		padding: 12px 0;
		background: #fff;
		border-top: 1px solid var(--fst-linie);
	}

	.fst-sheet__fuss .fst-btn { flex: 1 1 auto; }

	/* Im Sheet wird erst beim Bestaetigen gefiltert, der eigene
	   Submit-Button der Sidebar waere dort doppelt. */
	.fst-sidebar.is-offen .fst-filter__fuss { display: none; }

	body.fst-sheet-offen { overflow: hidden; }
}

/* ==========================================================================
   Detailseiten und Bewertungsformular
   ========================================================================== */

.fst-brotkrumen { margin-bottom: 16px; font-size: 14px; color: var(--fst-text-leise); }
.fst-brotkrumen a { color: var(--fst-text-leise); }

.fst-detail__kopf {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid var(--fst-linie);
}

@media (min-width: 800px) {
	.fst-detail__kopf { grid-template-columns: minmax(0, 1fr) 300px; align-items: start; }
}

.fst-detail__kopf h1 { margin: 0 0 4px; font-size: clamp(24px, 3.4vw, 34px); line-height: 1.2; }
.fst-detail__grad { color: var(--fst-text-leise); font-weight: 400; }
.fst-detail__zusatz { margin: 0 0 6px; font-size: 17px; color: var(--fst-text-leise); }
.fst-detail__anbieter { margin: 0; font-size: 15px; }
.fst-detail__logo img { max-width: 160px; height: auto; margin-bottom: 12px; }

.fst-detail__box {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px;
	background: var(--fst-flaeche-leise);
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
}

.fst-detail__box p { margin: 0; font-size: 15px; }

.fst-detail__eckdaten,
.fst-detail__text,
.fst-detail__bewertungen,
.fst-detail__studiengaenge { margin-bottom: 40px; }

.fst-detail h2 { font-size: 22px; margin: 0 0 12px; }

.fst-eckdaten { display: grid; gap: 0; margin: 0; }

.fst-eckdaten__zeile {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr);
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--fst-linie);
}

@media (max-width: 599px) {
	.fst-eckdaten__zeile { grid-template-columns: 1fr; gap: 2px; }
}

.fst-eckdaten dt { margin: 0; font-weight: 600; color: var(--fst-text-leise); }
.fst-eckdaten dd { margin: 0; }

.fst-teilnoten { display: grid; gap: 8px; margin-bottom: 24px; max-width: 560px; }

.fst-teilnote,
.fst-verteilung__zeile {
	display: grid;
	grid-template-columns: 200px minmax(0, 1fr) 48px;
	align-items: center;
	gap: 12px;
	font-size: 15px;
}

@media (max-width: 599px) {
	.fst-teilnote,
	.fst-verteilung__zeile { grid-template-columns: 130px minmax(0, 1fr) 40px; font-size: 14px; }
}

.fst-teilnote__balken,
.fst-verteilung__balken {
	display: block;
	height: 10px;
	background: #e6eaed;
	border-radius: 999px;
	overflow: hidden;
}

.fst-teilnote__balken > span,
.fst-verteilung__balken > span {
	display: block;
	height: 100%;
	background: var(--fst-akzent);
	border-radius: 999px;
}

.fst-teilnote__zahl { text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }

.fst-bewkopf {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 20px;
	margin-bottom: 24px;
	background: var(--fst-flaeche-leise);
	border-radius: var(--fst-radius);
}

@media (min-width: 720px) {
	.fst-bewkopf { grid-template-columns: 240px minmax(0, 1fr); }
}

.fst-bewkopf__note p { margin: 4px 0 0; }
.fst-verteilung { display: grid; gap: 6px; }

.fst-bewliste { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }

.fst-bew {
	padding: 16px;
	background: #fff;
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
}

.fst-bew__kopf { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 4px; }
.fst-bew__kopf h2,
.fst-bew__kopf h3 { margin: 0; font-size: 18px; }
.fst-bew__meta { margin: 0 0 10px; font-size: 14px; color: var(--fst-text-leise); }
.fst-bew__text { margin: 0; white-space: pre-line; }

.fst-bew__antwort {
	margin-top: 12px;
	padding: 12px;
	background: var(--fst-flaeche-leise);
	border-left: 3px solid var(--fst-akzent);
	border-radius: 0 6px 6px 0;
}

.fst-bew__antwort p { margin: 4px 0 0; }
.fst-bewsort { max-width: 260px; margin-bottom: 16px; }

/* Bewertungsformular ----------------------------------------------------- */

.fst-bewform { max-width: 720px; }
.fst-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.fst-bewform__schritt {
	margin: 0 0 24px;
	padding: 20px;
	border: 1px solid var(--fst-linie);
	border-radius: var(--fst-radius);
	background: #fff;
}

.fst-bewform__schritt > legend {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 8px;
	font-size: 18px;
	font-weight: 700;
}

.fst-schrittnr {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: var(--fst-akzent);
	color: #fff;
	font-size: 15px;
}

.fst-bewform__unter { border: 0; margin: 16px 0; padding: 0; display: flex; gap: 16px; flex-wrap: wrap; }
.fst-bewform__kriterium { display: grid; gap: 4px; margin-bottom: 12px; }

.fst-sternwahl { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }

.fst-sternwahl__stern {
	cursor: pointer;
	font-size: 30px;
	line-height: 1;
	color: #d8dee3;
	min-width: 36px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.fst-sternwahl__stern input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.fst-sternwahl__stern:hover,
.fst-sternwahl__stern:hover ~ .fst-sternwahl__stern,
.fst-sternwahl__stern:has(input:checked),
.fst-sternwahl__stern:has(input:checked) ~ .fst-sternwahl__stern { color: var(--fst-stern); }
.fst-sternwahl__stern:has(input:focus-visible) { outline: 3px solid var(--fst-akzent); outline-offset: 2px; border-radius: 4px; }

.fst-textarea { min-height: 220px; resize: vertical; line-height: 1.6; }

.fst-hinweisbox {
	padding: 16px 20px;
	margin-bottom: 24px;
	border-radius: var(--fst-radius);
	border: 1px solid var(--fst-linie);
}

.fst-hinweisbox h2 { margin: 0 0 4px; font-size: 19px; }
.fst-hinweisbox p { margin: 0; }
.fst-hinweisbox--ok { background: var(--fst-akzent-hell); border-color: var(--fst-akzent); }
.fst-hinweisbox--fehler { background: #fdf2f2; border-color: #f0c6c6; }
