/* ==========================================================================
   KDS SchuBa´R – main.css
   Tokens · Basis · Layout · Komponenten · Seiten · Responsive
   ========================================================================== */

/* Schriften (lokal, WOFF2) */
@font-face {
	font-family: "Instrument Serif";
	src: url("../fonts/instrument-serif-400.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Figtree";
	src: url("../fonts/figtree-variable.woff2") format("woff2");
	font-weight: 300 900;
	font-style: normal;
	font-display: swap;
}

:root {
	/* Farben */
	--black: #000000;
	--bg: #000000;
	--bg-alt: #07101f;
	--surface: #0c1729;
	--surface-2: #112039;
	--cta-bg: #0a1b39;
	--primary: #244f99;
	--primary-hover: #2c5fb8;
	--ice: #aed3e3;
	--text: #edf3f6;
	--muted: #a7b6c2;
	--line: rgba(174, 211, 227, 0.16);
	--line-strong: rgba(174, 211, 227, 0.34);
	--shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.9);

	/* Typografie */
	--font-display: "Instrument Serif", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-sans: "Figtree", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	/* Abstände */
	--sec: clamp(64px, 9vw, 128px);
	--sec-sm: clamp(44px, 6vw, 80px);
	--gutter: clamp(18px, 4vw, 32px);
	--gap: clamp(20px, 3vw, 36px);
	--radius: 16px;
	--radius-sm: 12px;
	--header-h: clamp(64px, 7vw, 84px);
}

/* Basis
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	font-size: clamp(15.5px, 0.2vw + 15px, 16px);
	line-height: 1.8;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

[hidden] {
	display: none !important;
}

img,
video,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

a {
	color: var(--ice);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--text);
}

h1,
h2,
h3 {
	margin: 0 0 0.5em;
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.005em;
	color: var(--text);
	text-wrap: balance;
}

h1 {
	font-size: clamp(2.1rem, 4.6vw, 3.4rem);
}

h2 {
	font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

h3 {
	font-size: clamp(1.25rem, 1.8vw, 1.45rem);
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
	text-wrap: pretty;
}

p:last-child {
	margin-bottom: 0;
}

:focus-visible {
	outline: 2px solid var(--ice);
	outline-offset: 3px;
	border-radius: 4px;
}

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

.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;
}

.skip-link {
	position: absolute;
	left: 16px;
	top: -100px;
	z-index: 100;
	padding: 12px 18px;
	background: var(--ice);
	color: var(--black);
	font-weight: 700;
	border-radius: var(--radius-sm);
}

.skip-link:focus {
	top: 12px;
}

main:focus {
	outline: none;
}

/* Layout
   ========================================================================== */
.wrap {
	width: 100%;
	max-width: 1180px;
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wrap--narrow {
	max-width: 860px;
}

.wrap--legal {
	max-width: 760px;
}

/* Inhaltsabschnitte mit Karten: breiter Rahmen */
.wrap--wide {
	max-width: 1600px;
	padding-inline: clamp(20px, 4vw, 64px);
}

/* Header, Footer und Cookie-Leiste: echte Gesamtbreite auf jedem Bildschirm, nur Randabstand */
.site-header .wrap--wide,
.site-footer .wrap--wide,
.cookie .wrap--wide {
	max-width: none;
}

.sec {
	position: relative;
	padding-block: var(--sec);
	background: var(--bg);
}

.sec--alt {
	background: var(--bg-alt);
}

.sec__head {
	max-width: 720px;
	margin: 0 auto clamp(32px, 5vw, 56px);
	text-align: center;
}

.sec__head p {
	color: var(--muted);
}

.sec__foot {
	margin-top: clamp(28px, 4vw, 44px);
}

.sec__empty {
	text-align: center;
	color: var(--muted);
}

.kds-split {
	display: grid;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.kds-split--57 {
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.kds-split--65 {
	grid-template-columns: minmax(0, 6.5fr) minmax(0, 3.5fr);
}

.kds-split--75 {
	grid-template-columns: minmax(0, 7.5fr) minmax(0, 2.5fr);
}

.kds-split--top {
	align-items: start;
}

.kds-split--reverse > :first-child {
	order: 2;
}

.kds-split__text > p {
	color: var(--muted);
}

.kds-split__text .btn-row {
	margin-top: 28px;
}

/* Eyebrow, Lead, Hinweise
   ========================================================================== */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ice);
}

.eyebrow::before {
	content: "";
	width: 28px;
	height: 1px;
	background: currentColor;
	opacity: 0.7;
}

.lead {
	font-size: clamp(1.02rem, 0.4vw + 0.95rem, 1.15rem);
	color: var(--muted);
	max-width: 62ch;
}

.note {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	font-size: 14px;
	color: var(--ice);
}

.kds-missing {
	background: #ffe08a;
	color: #1a1400;
	padding: 0 6px;
	border-radius: 4px;
	font-weight: 600;
}

/* Buttons
   ========================================================================== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 26px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:active {
	transform: translateY(1px);
}

.btn--primary {
	background: var(--primary);
	color: #fff;
}

.btn--primary:hover {
	background: var(--primary-hover);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	border-color: var(--line-strong);
	color: var(--ice);
}

.btn--ghost:hover {
	border-color: var(--ice);
	color: var(--text);
}

.btn--light {
	background: var(--ice);
	color: var(--black);
}

.btn--light:hover {
	background: #fff;
	color: var(--black);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.btn-row--center {
	justify-content: center;
}

/* Header
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease;
}

/* Unschärfe auf eigener Ebene: backdrop-filter am Header selbst würde das
   fixierte Mobilmenü an die Headerhöhe binden. */
.site-header::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(0, 0, 0, 0.86);
	-webkit-backdrop-filter: saturate(140%) blur(12px);
	backdrop-filter: saturate(140%) blur(12px);
}

.site-header::before {
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(90deg, var(--primary), var(--ice));
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
}

/* Drei Spalten: Logo links, Navigation exakt mittig, CTA rechts */
.site-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: clamp(16px, 3vw, 40px);
	min-height: var(--header-h);
}

.brand {
	display: block;
	justify-self: start;
}

.nav {
	justify-self: center;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-self: end;
}

.brand img {
	width: auto;
	height: clamp(34px, 3.6vw, 44px);
}

.nav {
	display: flex;
	align-items: center;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--text);
}

.nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 2px;
	background: var(--ice);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.nav__link:hover,
.nav__link[aria-current="page"] {
	color: var(--ice);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
	transform: scaleX(1);
}

.nav__cta {
	display: none;
}

.burger {
	display: none;
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: transparent;
	color: var(--text);
	cursor: pointer;
}

.burger__bars,
.burger__bars::before,
.burger__bars::after {
	position: absolute;
	left: 50%;
	width: 18px;
	height: 2px;
	margin-left: -9px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger__bars {
	top: 50%;
	margin-top: -1px;
}

.burger__bars::before,
.burger__bars::after {
	content: "";
	left: 0;
	margin-left: 0;
}

.burger__bars::before {
	top: -6px;
}

.burger__bars::after {
	top: 6px;
}

.burger[aria-expanded="true"] .burger__bars {
	background: transparent;
}

.burger[aria-expanded="true"] .burger__bars::before {
	transform: translateY(6px) rotate(45deg);
	background: var(--text);
}

.burger[aria-expanded="true"] .burger__bars::after {
	transform: translateY(-6px) rotate(-45deg);
	background: var(--text);
}

/* Hero (Startseite)
   ========================================================================== */
.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: clamp(560px, 86vh, 860px);
	padding-block: clamp(56px, 8vw, 110px);
	background: var(--bg-alt);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

/* Glow läuft innerhalb der Fläche aus: Transparenz bei 70 % der Halbachse */
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Heller Kern hinter dem Logo (oben) + blaue Grundfläche; beide laufen bei 70 % der Halbachse vollständig aus */
	background:
		radial-gradient(ellipse 62% 30% at 50% 21%, rgba(255, 255, 255, 0.6) 0%, rgba(228, 242, 248, 0.46) 20%, rgba(174, 211, 227, 0.3) 36%, rgba(100, 150, 210, 0.14) 52%, rgba(52, 98, 172, 0.04) 63%, rgba(36, 79, 153, 0) 70%),
		radial-gradient(ellipse 46% 36% at 50% 30%, rgba(70, 120, 196, 0.32) 0%, rgba(52, 98, 172, 0.14) 45%, rgba(36, 79, 153, 0) 70%),
		radial-gradient(ellipse 62% 50% at 50% 40%, rgba(36, 79, 153, 0.5) 0%, rgba(36, 79, 153, 0.16) 45%, rgba(36, 79, 153, 0) 70%);
	pointer-events: none;
}

.hero--video::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.8) 100%);
}

.hero__video {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero__logo {
	width: min(640px, 88%);
	height: auto;
	margin-bottom: clamp(28px, 4vw, 44px);
	/* Feine dunkle Kontur (Lesbarkeit des weißen Claims) + weißer Lichthof hinter dem Schriftzug */
	--logo-filter: drop-shadow(0 1px 1.5px rgba(2, 10, 30, 0.6)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.55)) drop-shadow(0 0 18px rgba(255, 255, 255, 0.45)) drop-shadow(0 0 48px rgba(220, 238, 246, 0.35));
	filter: var(--logo-filter);
}

.hero__title {
	margin-bottom: 18px;
}

.hero .eyebrow::before {
	display: none;
}

.hero__lead {
	margin-inline: auto;
	margin-bottom: 32px;
}

.hero__today {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px 14px;
	margin: 36px 0 0;
	padding: 10px 20px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.5);
	font-size: 15px;
	color: var(--text);
}

.hero__today strong {
	color: var(--ice);
	font-weight: 650;
}

.hero__toggle {
	position: absolute;
	right: var(--gutter);
	bottom: var(--gutter);
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--text);
	cursor: pointer;
}

.hero__toggle .icon {
	width: 18px;
	height: 18px;
}

.hero__toggle-play,
.hero__toggle[aria-pressed="true"] .hero__toggle-pause {
	display: none;
}

.hero__toggle[aria-pressed="true"] .hero__toggle-play {
	display: block;
}

/* Einmaliger Einstieg: Leuchtschrift „geht an“ */
@keyframes kds-neon-on {
	0% { opacity: 0; filter: none; }
	18% { opacity: 0.9; }
	24% { opacity: 0.25; }
	34% { opacity: 1; }
	42% { opacity: 0.55; }
	60%, 100% { opacity: 1; filter: var(--logo-filter); }
}

@keyframes kds-rise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

.hero__logo {
	animation: kds-neon-on 1.6s ease-out both;
}

.hero__inner > :not(.hero__logo) {
	animation: kds-rise 0.7s ease-out both;
	animation-delay: 1.1s;
}

/* Page-Hero (Unterseiten)
   ========================================================================== */
.page-hero {
	position: relative;
	padding-block: clamp(56px, 8vw, 112px) clamp(48px, 7vw, 96px);
	background: var(--bg-alt);
	overflow: hidden;
	isolation: isolate;
	text-align: center;
}

.page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(ellipse 55% 55% at 50% 42%, rgba(36, 79, 153, 0.42) 0%, rgba(36, 79, 153, 0) 70%);
}

.page-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.page-hero .lead {
	margin-inline: auto;
}

/* Medien-Slots
   ========================================================================== */
.kds-media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--surface);
}

.kds-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kds-media--4-3 { aspect-ratio: 4 / 3; }
.kds-media--4-5 { aspect-ratio: 4 / 5; }
.kds-media--21-9 { aspect-ratio: 21 / 9; }
.kds-media--16-10 { aspect-ratio: 16 / 10; }
.kds-media--16-9 { aspect-ratio: 16 / 9; }

.kds-media--empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px dashed var(--line-strong);
	background:
		repeating-linear-gradient(135deg, rgba(174, 211, 227, 0.04) 0 12px, transparent 12px 24px),
		var(--surface);
	color: var(--muted);
}

.kds-media--empty .icon {
	width: 32px;
	height: 32px;
	opacity: 0.7;
}

.kds-media--empty figcaption {
	font-size: 14px;
}

/* Features (Startseite)
   ========================================================================== */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--gap);
}

.feature {
	padding-top: 24px;
	border-top: 1px solid var(--line-strong);
}

.feature__icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(36, 79, 153, 0.35);
	color: var(--ice);
}

.feature p {
	color: var(--muted);
}

/* Karten
   ========================================================================== */
.cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--gap);
}

.card {
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover {
	transform: translateY(-4px);
	border-color: var(--line-strong);
}

.card .kds-media {
	border-radius: 0;
}

.card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(20px, 2.4vw, 28px);
}

.card__title {
	margin-bottom: 10px;
}

.card__text {
	color: var(--muted);
}

.card__text p {
	margin-bottom: 0.7em;
}

.card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: auto 0 0;
	padding-top: 16px;
	font-size: 14px;
	color: var(--ice);
}

.card__meta .icon {
	width: 18px;
	height: 18px;
	flex: none;
}

.card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 12px;
}

.tag {
	display: inline-block;
	padding: 3px 12px;
	border-radius: 999px;
	background: rgba(174, 211, 227, 0.14);
	font-size: 13px;
	font-weight: 600;
	color: var(--ice);
}

.tag--soon {
	background: var(--primary);
	color: #fff;
}

.card--review {
	padding: clamp(22px, 2.6vw, 30px);
}

.card--review .card__text {
	margin: 0 0 0.5em;
	font-family: var(--font-display);
	font-size: 1.3rem;
	line-height: 1.45;
	color: var(--text);
}

.card--review .card__meta {
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	color: var(--muted);
}

.card--review .card__meta strong {
	color: var(--text);
	font-weight: 600;
}

.stars {
	display: flex;
	gap: 2px;
	margin: 0 0 16px;
	color: rgba(174, 211, 227, 0.25);
}

.stars__star .icon {
	width: 18px;
	height: 18px;
}

.stars__star.is-on {
	color: var(--ice);
}

.stars__star.is-on .icon {
	fill: currentColor;
}

.cards--team {
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.card--team .card__meta {
	padding-top: 4px;
	color: var(--muted);
}

/* Wochenprogramm-Tafel
   ========================================================================== */
.board {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background:
		repeating-linear-gradient(180deg, rgba(174, 211, 227, 0.025) 0 1px, transparent 1px 4px),
		#040a14;
	box-shadow: var(--shadow), inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.board__empty {
	margin: 0;
	padding: clamp(28px, 4vw, 44px);
	text-align: center;
	color: var(--muted);
}

.board__table {
	width: 100%;
	border-collapse: collapse;
}

.board__table thead th {
	padding: 14px clamp(16px, 2.6vw, 32px);
	border-bottom: 1px solid var(--line-strong);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: left;
	color: var(--muted);
}

.board__row > * {
	padding: 18px clamp(16px, 2.6vw, 32px);
	border-bottom: 1px solid var(--line);
	vertical-align: middle;
	text-align: left;
}

.board__row:last-child > * {
	border-bottom: 0;
}

.board__day {
	width: 26%;
	font-weight: 650;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ice);
}

.board__day span {
	display: inline-block;
	vertical-align: middle;
}

.board__time {
	width: 26%;
	font-size: 17px;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
	color: var(--text);
}

.board__prog strong {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.6vw, 1.4rem);
	font-weight: 400;
	line-height: 1.25;
	color: var(--text);
}

.board__prog small {
	display: block;
	margin-top: 2px;
	font-size: 14px;
	color: var(--muted);
}

.board__muted {
	color: var(--muted);
}

.board__today {
	margin-left: 10px;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--ice);
	color: var(--black);
	font-size: 11px;
	letter-spacing: 0.1em;
}

.board__row.is-closed > * {
	opacity: 0.5;
}

.board__row.is-today {
	background: linear-gradient(90deg, rgba(36, 79, 153, 0.45) 0%, rgba(36, 79, 153, 0.12) 60%, rgba(36, 79, 153, 0) 100%);
	box-shadow: inset 3px 0 0 var(--ice);
}

.board__row.is-today > * {
	opacity: 1;
}

/* Galerie & Lightbox
   ========================================================================== */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gallery__link {
	display: block;
	overflow: hidden;
	border-radius: var(--radius-sm);
	aspect-ratio: 4 / 3;
	background: var(--surface);
}

.gallery__link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gallery__link:hover img {
	transform: scale(1.04);
}

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 90;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	padding: clamp(12px, 3vw, 40px);
	background: rgba(0, 0, 0, 0.94);
}

.lightbox[hidden] {
	display: none;
}

.lightbox__figure {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.lightbox__img {
	max-height: calc(100vh - 120px);
	width: auto;
	border-radius: var(--radius-sm);
	touch-action: pan-y;
}

.lightbox__caption {
	font-size: 14px;
	color: var(--muted);
}

.lightbox__btn {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.6);
	color: var(--text);
	cursor: pointer;
}

.lightbox__btn:hover {
	border-color: var(--ice);
}

.lightbox__close {
	position: absolute;
	top: clamp(12px, 3vw, 28px);
	right: clamp(12px, 3vw, 28px);
}

/* FAQ
   ========================================================================== */
.faq {
	border-top: 1px solid var(--line-strong);
}

.faq__item {
	border-bottom: 1px solid var(--line-strong);
}

.faq__item summary {
	position: relative;
	display: block;
	padding: 22px 48px 22px 0;
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.8vw, 1.4rem);
	line-height: 1.3;
	cursor: pointer;
	list-style: none;
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__item summary::before,
.faq__item summary::after {
	content: "";
	position: absolute;
	right: 8px;
	top: 50%;
	width: 16px;
	height: 2px;
	background: var(--ice);
	transition: transform 0.25s ease;
}

.faq__item summary::after {
	transform: rotate(90deg);
}

.faq__item[open] summary::after {
	transform: rotate(0deg);
}

.faq__answer {
	padding: 0 48px 24px 0;
	color: var(--muted);
}

/* Abschluss-CTA
   ========================================================================== */
.sec--cta {
	background: var(--cta-bg);
	overflow: hidden;
	isolation: isolate;
}

.sec--cta::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(ellipse 55% 60% at 50% 50%, rgba(174, 211, 227, 0.14) 0%, rgba(174, 211, 227, 0) 70%);
}

.cta {
	max-width: 760px;
	text-align: center;
}

.cta .lead {
	margin: 0 auto 32px;
	color: #c6d3dc;
}

/* Leerzustände
   ========================================================================== */
.empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 620px;
	margin-inline: auto;
	padding: clamp(28px, 4vw, 48px);
	border: 1px dashed var(--line-strong);
	border-radius: var(--radius);
	text-align: center;
	color: var(--muted);
}

/* Formular
   ========================================================================== */
.form {
	display: grid;
	gap: 18px;
}

.form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.form__field {
	display: grid;
	gap: 6px;
}

.form label {
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form select,
.form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius-sm);
	background: var(--surface);
	color: var(--text);
	font: inherit;
	font-size: 16px;
	line-height: 1.5;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--ice) 50%), linear-gradient(135deg, var(--ice) 50%, transparent 50%);
	background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
	background-size: 6px 6px;
	background-repeat: no-repeat;
	padding-right: 44px;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
	outline: none;
	border-color: var(--ice);
	box-shadow: 0 0 0 3px rgba(174, 211, 227, 0.22);
}

.form textarea {
	resize: vertical;
	min-height: 150px;
}

.form__check {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	font-weight: 400 !important;
	color: var(--muted) !important;
}

.form__check input {
	width: 20px;
	height: 20px;
	margin: 3px 0 0;
	accent-color: var(--primary);
}

.form__note {
	margin: 0;
	font-size: 13px;
	color: var(--muted);
}

.form .btn {
	justify-self: start;
}

.form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form__msg {
	margin: 0;
	padding: 14px 18px;
	border-radius: var(--radius-sm);
	font-size: 15px;
}

.form__msg--ok {
	background: rgba(174, 211, 227, 0.14);
	border: 1px solid var(--ice);
	color: var(--text);
}

.form__msg--error {
	background: rgba(220, 80, 80, 0.12);
	border: 1px solid #e38b8b;
	color: #ffd6d6;
}

/* Kontakt
   ========================================================================== */
.contact-card {
	position: sticky;
	top: calc(var(--header-h) + 24px);
	padding: clamp(22px, 3vw, 32px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.contact-card .btn {
	margin-top: 8px;
}

.contact-card__sub {
	margin-top: 28px;
	font-size: 1.2rem;
}

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

.info-list li {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 12px;
	align-items: start;
	line-height: 1.55;
}

.info-list .icon {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	color: var(--ice);
}

.info-list a {
	color: var(--text);
	text-decoration: none;
	word-break: break-word;
}

.info-list a:hover {
	color: var(--ice);
}

.map {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 21 / 9;
	min-height: 360px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}

.map iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.map__consent {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 24px;
	text-align: center;
	color: var(--muted);
}

.map__consent > p {
	max-width: 520px;
	margin: 0;
}

.map__consent .icon {
	width: 36px;
	height: 36px;
	color: var(--ice);
}

.map__more {
	font-size: 14px;
}

@media (max-width: 640px) {
	.map {
		aspect-ratio: auto;
	}
}

/* Rechtstexte
   ========================================================================== */
.legal h2 {
	margin-top: 1.8em;
	font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.legal h2:first-child {
	margin-top: 0;
}

.legal p,
.legal li {
	color: var(--muted);
}

.legal__date {
	margin-top: 2.4em;
	font-size: 14px;
}

/* Footer
   ========================================================================== */
.site-footer {
	padding-top: clamp(56px, 7vw, 96px);
	background: var(--black);
	border-top: 1px solid var(--line);
	font-size: 15px;
}

/* Spalten über die volle Breite verteilt: erste bündig links, letzte bündig rechts */
.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(4, auto);
	justify-content: space-between;
	gap: clamp(28px, 4vw, 56px);
}

.site-footer__brand img {
	width: 260px;
	max-width: 100%;
	height: auto;
	margin-bottom: 18px;
}

.site-footer__note {
	color: var(--muted);
	font-size: 14px;
}

.site-footer__title {
	margin-bottom: 16px;
	font-family: var(--font-sans);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ice);
}

.hours {
	margin: 0;
}

.hours__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding: 3px 0;
}

.hours dt {
	color: var(--muted);
}

.hours dd {
	margin: 0;
	font-variant-numeric: tabular-nums;
	text-align: right;
}

.link-list {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.link-list a {
	color: var(--text);
	text-decoration: none;
}

.link-list a:hover {
	color: var(--ice);
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 8px 24px;
	margin-top: clamp(40px, 6vw, 72px);
	padding-block: 22px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	color: var(--muted);
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom a {
	color: var(--text);
}

/* Mobiles Kontakt-Dock
   ========================================================================== */
.dock {
	display: none;
}

/* Pop-up
   ========================================================================== */
.popup {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	padding: var(--gutter);
}

.popup[hidden] {
	display: none;
}

.popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.78);
}

.popup__dialog {
	position: relative;
	width: min(560px, 100%);
	max-height: calc(100dvh - 2 * var(--gutter));
	overflow: auto;
	border: 1px solid var(--line-strong);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 1);
	animation: kds-rise 0.35s ease-out both;
}

.popup__dialog .kds-media {
	border-radius: 0;
}

.popup__media {
	margin: 0;
	background: var(--black);
}

.popup__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: min(58vh, 620px);
	object-fit: contain;
}

.popup__body h2 {
	margin-bottom: 10px;
	padding-right: 36px;
	font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.popup__media + .popup__body h2 {
	padding-right: 0;
}

.popup__body > :last-child {
	margin-bottom: 0;
}

.popup__body {
	padding: clamp(22px, 3vw, 32px);
}

.popup__text {
	color: var(--muted);
}

.popup__body .card__meta {
	margin: 0 0 22px;
	padding-top: 12px;
}

.popup__dialog:focus {
	outline: none;
}

.popup__close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.7);
	color: var(--text);
	cursor: pointer;
}

.popup__close .icon {
	width: 18px;
	height: 18px;
}

body.has-overlay {
	overflow: hidden;
}

/* Responsive
   ========================================================================== */
@media (max-width: 1120px) {
	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
	}

	/* Fixiertes Menü über volle Breite (justify-self: center würde es im Grid auf Inhaltsbreite schrumpfen) */
	.site-header__inner > .nav {
		justify-self: stretch;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		justify-content: stretch;
	}

	.burger {
		display: inline-block;
	}

	.nav {
		position: fixed;
		top: calc(var(--header-h) + 3px);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 49;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
		padding: 24px var(--gutter) 40px;
		background: var(--black);
		border-top: 1px solid var(--line);
		overflow-y: auto;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
	}

	.nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
		transition: opacity 0.25s ease, transform 0.25s ease;
	}

	.nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.nav__list li {
		border-bottom: 1px solid var(--line);
	}

	.nav__link {
		width: 100%;
		min-height: 56px;
		font-size: 15px;
	}

	.nav__link::after {
		display: none;
	}

	.nav__cta {
		display: inline-flex;
		align-self: flex-start;
	}
}

@media (max-width: 860px) {
	.kds-split,
	.kds-split--57,
	.kds-split--65,
	.kds-split--75 {
		grid-template-columns: minmax(0, 1fr);
	}

	.kds-split--reverse > :first-child {
		order: 0;
	}

	.kds-split__text {
		text-align: center;
	}

	.kds-split__text .eyebrow {
		justify-content: center;
	}

	.kds-split__text .btn-row {
		justify-content: center;
	}

	.page-kontakt .kds-split__text {
		text-align: left;
	}

	.contact-card {
		position: static;
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.board__table thead {
		display: none;
	}

	.board__table,
	.board__table tbody,
	.board__row {
		display: block;
		width: 100%;
	}

	.board__row {
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 4px 16px;
		padding: 16px 18px;
		border-bottom: 1px solid var(--line);
	}

	.board__row:last-child {
		border-bottom: 0;
	}

	.board__row > * {
		display: block;
		width: auto;
		padding: 0;
		border: 0;
	}

	.board__time {
		text-align: right;
		font-size: 15px;
	}

	.board__prog {
		grid-column: 1 / -1;
	}

	.dock {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 45;
		display: grid;
		grid-auto-columns: 1fr;
		grid-auto-flow: column;
		padding-bottom: env(safe-area-inset-bottom);
		background: rgba(0, 0, 0, 0.94);
		border-top: 1px solid var(--line);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}

	.dock__item {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		min-height: 60px;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.04em;
		text-decoration: none;
		color: var(--text);
	}

	.dock__item .icon {
		width: 20px;
		height: 20px;
		color: var(--ice);
	}

	body {
		padding-bottom: calc(60px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 640px) {
	.btn {
		white-space: normal;
		max-width: 100%;
		text-align: center;
	}

	.btn-row .btn {
		flex: 1 1 100%;
	}

	.header-cta {
		display: none;
	}

	.form__row {
		grid-template-columns: minmax(0, 1fr);
	}

	.form .btn {
		justify-self: stretch;
	}

	.lightbox {
		grid-template-columns: minmax(0, 1fr);
	}

	.lightbox__prev,
	.lightbox__next {
		position: absolute;
		bottom: 18px;
	}

	.lightbox__prev {
		left: calc(50% - 60px);
	}

	.lightbox__next {
		right: calc(50% - 60px);
	}

	.lightbox__img {
		max-height: calc(100vh - 180px);
	}

	.faq__answer {
		padding-right: 0;
	}
}

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

/* Cookie-Leiste
   ========================================================================== */
.cookie {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 95;
	padding-block: clamp(18px, 2.4vw, 28px);
	padding-bottom: calc(clamp(18px, 2.4vw, 28px) + env(safe-area-inset-bottom));
	background: rgba(6, 18, 43, 0.97);
	border-top: 1px solid var(--line-strong);
	box-shadow: 0 -18px 40px -24px rgba(0, 0, 0, 0.9);
	font-size: 14.5px;
}

.cookie[hidden] {
	display: none;
}

.cookie__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(16px, 3vw, 48px);
}

.cookie__title {
	margin: 0 0 6px;
	font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

.cookie__text p {
	max-width: 760px;
	margin: 0 0 8px;
	color: var(--text);
}

.cookie__links {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 18px;
	font-size: 13.5px;
}

.cookie__links a {
	color: var(--ice);
}

.cookie__panel {
	display: grid;
	gap: 10px;
	max-width: 760px;
	margin-top: 12px;
}

.cookie__panel[hidden] {
	display: none;
}

.cookie__cat {
	display: grid;
	grid-template-columns: 22px 1fr;
	gap: 10px;
	align-items: start;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 12px;
	color: var(--muted);
	cursor: pointer;
}

.cookie__cat strong {
	display: block;
	color: var(--text);
}

.cookie__cat input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--primary);
}

.cookie__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.cookie__actions .btn {
	width: 100%;
}

.cookie__actions [data-cookie-save] {
	grid-column: 1 / -1;
}

.cookie__actions [hidden] {
	display: none;
}

/* Tabellen in Rechtstexten
   ========================================================================== */
.table-scroll {
	overflow-x: auto;
	margin: 0 0 1.5em;
	border: 1px solid var(--line);
	border-radius: 14px;
}

.legal-table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-size: 14.5px;
}

.legal-table th,
.legal-table td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

.legal-table th {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ice);
}

.legal-table tr:last-child td {
	border-bottom: 0;
}

.legal-table code {
	font-size: 13px;
	overflow-wrap: anywhere;
	color: var(--ice);
}

.legal-table td:first-child {
	width: 22%;
}

@media (max-width: 860px) {
	.cookie__inner {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.cookie__actions {
		grid-template-columns: minmax(0, 1fr);
	}
}

.map__links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 24px;
	margin: 16px 0 0;
	font-size: 15px;
}

.map__links a {
	color: var(--ice);
}

/* Social-Icons (Header, Mobilmenü)
   ========================================================================== */
.social {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.social__link {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	color: var(--text);
	transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.social__link:hover,
.social__link:focus-visible {
	border-color: var(--ice);
	background: rgba(174, 211, 227, 0.1);
	color: var(--ice);
}

.social__link .icon {
	width: 18px;
	height: 18px;
}

.social--nav {
	display: none;
}

/* Begrüßung mit Herz
   ========================================================================== */
.hero__heart {
	white-space: nowrap;
}

.hero__heart .icon {
	display: inline-block;
	width: 0.8em;
	height: 0.8em;
	margin-right: 0.03em;
	vertical-align: -0.04em;
	color: #fff;
	stroke-width: 1.6;
}

/* Wochenaktionen und Events
   ========================================================================== */
.sec__sub {
	margin: clamp(36px, 5vw, 56px) 0 20px;
	text-align: center;
}

.tag--day {
	background: var(--primary);
	color: #fff;
}

.tag--event {
	background: rgba(174, 211, 227, 0.16);
	color: var(--ice);
}

.card--weekly .card__title,
.card--event .card__title {
	font-size: clamp(1.4rem, 2.2vw, 1.75rem);
}

.card--weekly .card__text {
	margin: 0;
	font-size: 1.05rem;
	color: var(--text);
}

.board__events {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 6px;
}

.board__events .tag {
	font-size: 12.5px;
}

.event-dates {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.event-dates__label {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.event-dates__list {
	display: grid;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.event-dates__list li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-variant-numeric: tabular-nums;
}

.event-dates__list .icon {
	width: 16px;
	height: 16px;
	color: var(--ice);
}

/* Header zwischen Burger-Grenze und 1280 px: Navigation mittig im Restplatz */
@media (min-width: 1121px) and (max-width: 1280px) {
	.site-header__inner {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 16px;
	}

	.nav__list {
		gap: 18px;
	}

	.nav__link {
		letter-spacing: 0.07em;
	}
}

@media (max-width: 1120px) {
	.social--nav {
		display: flex;
		gap: 10px;
		margin-top: 8px;
	}

	.social--nav .social__link {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 860px) {
	.social--header {
		display: none;
	}
}

/* Mit drei Social-Icons braucht die rechte Spalte mehr Platz: Umschaltung erst ab 1400 px */
@media (min-width: 1281px) and (max-width: 1400px) {
	.site-header__inner:has(.social--header li:nth-child(3)) {
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 16px;
	}

	.site-header__inner:has(.social--header li:nth-child(3)) .nav__list {
		gap: 18px;
	}
}

/* Aktuelles
   ========================================================================== */
.news {
	display: grid;
	gap: clamp(48px, 7vw, 96px);
}

.news__item {
	scroll-margin-top: calc(var(--header-h) + 24px);
}

.news__item--text {
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	max-width: 760px;
	margin-inline: auto;
}

/* Einträge ohne Bild als Karte, damit sie neben Bild-Einträgen nicht verloren wirken */
.news__item--text .kds-split__text {
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
	box-shadow: var(--shadow);
	text-align: center;
}

.news__item--text .card__tags,
.news__item--text .btn-row {
	justify-content: center;
}

.news__media {
	margin: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--black);
}

.news__img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 640px;
	object-fit: contain;
}

.news__item:target .news__media,
.news__item:target .kds-split__text h2 {
	outline: 2px solid transparent;
}

.news__item:target .news__media {
	border-color: var(--ice);
}

/* Events und Wochenaktionen: volle Breite nutzen, Karten nebeneinander,
   unvollständige Reihen mittig */
.cards--events,
.cards--week {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(16px, 2vw, 28px);
}

.cards--events > .card,
.cards--week > .card {
	flex: 1 1 230px;
	max-width: 500px;
}

@media (max-width: 790px) {
	.cards--events > .card,
	.cards--week > .card {
		flex-basis: 100%;
		max-width: none;
	}
}

.review-hint .btn .icon {
	width: 18px;
	height: 18px;
	margin-right: 8px;
}

.events-note {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: clamp(18px, 2.5vw, 28px) auto 0;
	font-size: 15px;
	text-align: center;
	color: var(--muted);
}

.events-note .icon {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: var(--ice);
}
