:root
{
	--asphalt: #464f58;
	--asphalt-tief: #2e353c;
	--asphalt-kante: #5c6672;
	--nebel: #c3ccd4;
	--kaltweiss: #eef2f5;
	--kaltweiss-schatten: #dde4ea;
	--tinte: #222a31;
	--tinte-weich: #55606b;
	--rot: #d93a2b;
	--rot-tief: #c4301f;
	--rot-hell: #ff8271;
}

*
{
	box-sizing: border-box;
}

html
{
	-webkit-text-size-adjust: 100%;
}

body
{
	margin: 0;
	background: var(--asphalt);
	color: #e7edf2;
	font-family: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

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

a
{
	color: inherit;
}

/* ---------------------------------------------------------------
   Layoutprinzip: die versetzte Kante.
   Die Seite hat eine unsichtbare Naht bei 38 % der Breite. Sie wird
   nicht gezeichnet, sondern entsteht aus den Kanten der Blöcke:
   Alles, was „dort" ist, endet an der Naht; alles, was „hier" ist,
   beginnt dort und läuft bis zum rechten Seitenrand.
   --------------------------------------------------------------- */
.szene
{
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.szene > *
{
	min-width: 0;
}

@media (min-width: 64rem)
{
	.szene
	{
		grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
		align-items: center;
	}
}

/* „dort" — schmale Spalte, kleiner Grad, engerer Satz, an der Naht endend */
.dort
{
	padding: clamp(2.6rem, 7vw, 4.6rem) clamp(1.2rem, 5vw, 2.6rem);
	color: var(--nebel);
	font-size: 0.95rem;
	line-height: 1.62;
}

@media (min-width: 64rem)
{
	.dort
	{
		margin-left: auto;
		max-width: 25rem;
		padding-right: 2.6rem;
	}
}

.dort p
{
	margin: 0 0 0.95em;
}

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

/* „hier" — kaltweiße Bahn, breiterer Satz, größerer Grad, weiter gesetzt */
.hier
{
	background: var(--kaltweiss);
	color: var(--tinte);
	padding: clamp(2.4rem, 6vw, 4.4rem) clamp(1.2rem, 5vw, 3.4rem);
	font-size: 1.06rem;
	line-height: 1.78;
}

.hier p
{
	margin: 0 0 1.1em;
	max-width: 38rem;
}

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

.hier--dunkel
{
	background: var(--asphalt-tief);
	color: #e7edf2;
}

/* Bildfeld, das von der linken Seitenkante bis an die Naht läuft */
.anschlag
{
	margin: 0;
}

.anschlag img
{
	width: 100%;
}

/* ---------------------------------------------------------------
   Typografie: eine Familie, zwei Satzbilder. Die Seite der Naht
   bestimmt Spaltenbreite, Grad und Zeilenabstand — nicht die Schrift.
   --------------------------------------------------------------- */
h1
{
	margin: 1.1rem 0 0;
	max-width: 15ch;
	font-size: clamp(2.1rem, 1.1rem + 4.2vw, 4rem);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.018em;
}

h1 em
{
	display: block;
	font-style: normal;
	color: var(--rot-hell);
}

h2
{
	margin: 0 0 0.9rem;
	font-weight: 700;
	line-height: 1.22;
	letter-spacing: -0.01em;
}

.dort h2
{
	font-size: 1.12rem;
}

.hier h2
{
	font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.85rem);
	max-width: 22ch;
}

.marke
{
	display: block;
	margin-bottom: 0.7rem;
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--nebel);
}

/* Auf der grauen Fläche trägt ein rotes Quadrat die Farbe, nicht die
   Schrift — kleine rote Versalien auf Asphalt wären zu blass. */
.marke::before
{
	content: "";
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	margin-right: 0.55rem;
	background: var(--rot);
}

.hier .marke
{
	color: var(--rot-tief);
}

.hier .marke::before
{
	display: none;
}

.hier--dunkel .marke
{
	color: var(--nebel);
}

.hier--dunkel .marke::before
{
	display: inline-block;
}

/* ---------------------------------------------------------------
   Kopf
   --------------------------------------------------------------- */
.kopf
{
	padding: clamp(2.4rem, 7vw, 4.6rem) clamp(1.2rem, 5vw, 3.4rem) 0;
}

.kopf__satz
{
	max-width: 34rem;
	margin: 1.5rem 0 clamp(2rem, 5vw, 3rem);
	font-size: clamp(1.04rem, 0.95rem + 0.5vw, 1.22rem);
	line-height: 1.62;
	color: var(--nebel);
}

.titelbild
{
	margin: 0;
}

.titelbild img
{
	width: 100%;
}

.titelbild figcaption
{
	max-width: 36rem;
	margin: 0.9rem clamp(1.2rem, 5vw, 3.4rem) clamp(1rem, 3vw, 2rem);
	font-size: 0.86rem;
	line-height: 1.55;
	color: var(--nebel);
}

/* ---------------------------------------------------------------
   Gesetzesstelle — kein Kasten, sondern ein eingerückter Absatz mit
   rotem Anschlag
   --------------------------------------------------------------- */
.norm
{
	margin: 1.6rem 0;
	padding: 0.2rem 0 0.2rem 1.2rem;
	border-left: 3px solid var(--rot);
	max-width: 38rem;
}

.norm b
{
	display: block;
	font-size: 0.74rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tinte-weich);
}

.norm q
{
	quotes: "\201E" "\201C";
	font-size: 1.02rem;
	line-height: 1.62;
}

.dort .norm
{
	max-width: none;
}

.dort .norm b,
.hier--dunkel .norm b
{
	color: var(--nebel);
}

/* ---------------------------------------------------------------
   Fragenliste
   --------------------------------------------------------------- */
.fragen
{
	list-style: none;
	margin: 1.4rem 0 1.6rem;
	padding: 0;
	max-width: 38rem;
}

.fragen li
{
	padding: 0.75rem 0 0.75rem 2.2rem;
	position: relative;
	border-top: 1px solid var(--kaltweiss-schatten);
	font-weight: 600;
}

.fragen li:last-child
{
	border-bottom: 1px solid var(--kaltweiss-schatten);
}

.fragen li::before
{
	content: "?";
	position: absolute;
	left: 0;
	top: 0.75rem;
	color: var(--rot-tief);
	font-weight: 700;
}

/* ---------------------------------------------------------------
   Merksatz mit der Spur — hier sitzt der Effekt
   --------------------------------------------------------------- */
.merksatz
{
	padding: clamp(3rem, 8vw, 5.4rem) clamp(1.2rem, 5vw, 3.4rem);
	background: var(--asphalt-tief);
}

.merksatz p
{
	margin: 0;
	max-width: 32rem;
	font-size: clamp(1.45rem, 1.1rem + 1.8vw, 2.3rem);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: -0.015em;
}

.merksatz span
{
	display: block;
	margin-top: 1.1rem;
	max-width: 36rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: normal;
	color: var(--nebel);
}

/* Die Spur: eine gepunktete Verbindung zwischen Herkunft und Ankunft,
   die beim Lesen auseinandergeht und reißt. */
.spur
{
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin: clamp(2rem, 5vw, 3rem) 0 0;
	max-width: 34rem;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nebel);
}

.spur__linie
{
	position: relative;
	flex: 1 1 auto;
	height: 0.65rem;
}

.spur__linie::before,
.spur__linie::after
{
	content: "";
	position: absolute;
	top: 0.3rem;
	width: 50%;
	border-top: 2px dotted var(--asphalt-kante);
}

.spur__linie::before
{
	left: 0;
}

.spur__linie::after
{
	right: 0;
}

.spur__riss
{
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 0.65rem;
	margin-left: -1px;
	background: var(--rot);
	opacity: 0;
}

@media (prefers-reduced-motion: no-preference)
{
	.js .spur__linie::before,
	.js .spur__linie::after
	{
		transition: transform 1.1s cubic-bezier(0.35, 0.7, 0.25, 1);
	}

	.js .spur__riss
	{
		transition: opacity 0.7s ease 0.55s;
	}

	.js .spur.gerissen .spur__linie::before
	{
		transform: translateX(-16%);
	}

	.js .spur.gerissen .spur__linie::after
	{
		transform: translateX(16%);
	}

	.js .spur.gerissen .spur__riss
	{
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce)
{
	.spur__riss
	{
		opacity: 1;
	}
}

/* ---------------------------------------------------------------
   Schluss
   --------------------------------------------------------------- */
.knopf
{
	display: inline-block;
	margin-top: 0.6rem;
	padding: 0.9rem 1.8rem;
	background: var(--rot-tief);
	color: #ffffff;
	font-weight: 700;
	font-size: 0.98rem;
	text-decoration: none;
}

.knopf:hover,
.knopf:focus
{
	background: var(--kaltweiss);
	color: var(--tinte);
}

.siegel
{
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin: 2.4rem 0 0;
}

.siegel img
{
	width: 7.5rem;
}

.siegel figcaption
{
	max-width: 24rem;
	font-size: 0.84rem;
	line-height: 1.55;
	color: var(--tinte-weich);
}

/* Das Siegel ist eine schwarze Zeichnung auf transparentem Grund und
   braucht auf der dunklen Fläche eine helle Unterlage. */
.hier--dunkel .siegel img
{
	background: var(--kaltweiss);
	padding: 0.7rem;
}

.hier--dunkel .siegel figcaption
{
	color: var(--nebel);
}

/* ---------------------------------------------------------------
   Querlinks: die Liste läuft im Zickzack um dieselbe Naht — ungerade
   Zeilen enden links davon, gerade beginnen rechts davon.
   --------------------------------------------------------------- */
.themen
{
	padding: clamp(2.6rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3.4rem) clamp(3rem, 7vw, 4.6rem);
	background: var(--asphalt);
}

.themen h2
{
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--nebel);
	margin-bottom: 1.4rem;
}

.themenliste
{
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0.15rem;
}

.themenliste li[hidden]
{
	display: none;
}

.themenliste a
{
	display: inline-block;
	padding: 0.42rem 0;
	font-size: 0.88rem;
	line-height: 1.4;
	text-decoration: none;
	color: #e7edf2;
	border-bottom: 1px solid transparent;
}

.themenliste a::before,
.themenliste a::after
{
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	background: var(--asphalt-kante);
	vertical-align: 0.05em;
	transition: width 0.25s ease, background-color 0.25s ease;
}

.themenliste a::before
{
	display: inline-block;
	margin-right: 0.6rem;
}

.themenliste a::after
{
	display: none;
	margin-left: 0.6rem;
}

.themenliste a:hover,
.themenliste a:focus
{
	border-bottom-color: var(--rot);
}

.themenliste a:hover::before,
.themenliste a:focus::before,
.themenliste a:hover::after,
.themenliste a:focus::after
{
	width: 1.7rem;
	background: var(--rot);
}

@media (min-width: 64rem)
{
	.themenliste
	{
		grid-template-columns: minmax(0, 38fr) minmax(0, 62fr);
		column-gap: 2.6rem;
	}

	/* Zickzack um die Naht: ungerade Zeilen enden links davon,
	   gerade beginnen rechts davon. */
	.themenliste li:nth-child(odd)
	{
		grid-column: 1;
		text-align: right;
	}

	.themenliste li:nth-child(even)
	{
		grid-column: 2;
	}

	.themenliste li:nth-child(odd) a::before
	{
		display: none;
	}

	.themenliste li:nth-child(odd) a::after
	{
		display: inline-block;
	}
}

/* ---------------------------------------------------------------
   Impressum: kaltweiße Fläche, die Beschriftungen stehen nachgestellt
   in Klammern hinter der jeweiligen Angabe.
   --------------------------------------------------------------- */
.fuss
{
	background: var(--kaltweiss-schatten);
	color: var(--tinte);
	padding: clamp(2.4rem, 6vw, 3.8rem) clamp(1.2rem, 5vw, 3.4rem);
	font-size: 0.88rem;
	line-height: 1.75;
}

.fuss p
{
	margin: 0 0 1.1rem;
	max-width: 46rem;
}

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

.fuss i
{
	font-style: normal;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--rot-tief);
	white-space: nowrap;
}

.fuss a
{
	color: var(--tinte);
	text-decoration: underline;
	text-decoration-color: var(--rot-tief);
	text-underline-offset: 0.2em;
}

/* ---------------------------------------------------------------
   Weitergeben: ein Block, den eine dicke rote Kante links hält —
   dieselbe Farbe, die auf der Seite die Warnstellen markiert.
   Eine mitscrollende Randleiste bekommt diese Seite nicht: das
   Kantenlayout läuft bis an beide Seitenränder, dort ist kein Platz,
   der frei von Text wäre.
   --------------------------------------------------------------- */
.weitergeben
{
	padding: clamp(2.4rem, 6vw, 4rem) clamp(1.2rem, 5vw, 3.4rem);
}

.weitergeben__kante
{
	max-width: 44rem;
	border-left: 6px solid var(--rot);
	padding-left: clamp(1.1rem, 3vw, 2rem);
}

.weitergeben__kante p
{
	margin: 0;
	max-width: 36rem;
	color: #e7edf2;
}

.weitergeben__wahl
{
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	margin-top: clamp(1.2rem, 3vw, 1.8rem);
}

.weitergeben__wahl a,
.weitergeben__wahl button
{
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin: 0;
	padding: .6rem .95rem;
	border: 1px solid var(--asphalt-kante);
	background: var(--asphalt-tief);
	color: #e7edf2;
	font: inherit;
	font-size: .86rem;
	line-height: 1.3;
	text-decoration: none;
	cursor: pointer;
	transition: border-color .2s ease, background-color .2s ease;
}

.weitergeben__wahl a:hover,
.weitergeben__wahl a:focus,
.weitergeben__wahl button:hover,
.weitergeben__wahl button:focus
{
	border-color: var(--rot);
	background: var(--asphalt);
}

.weitergeben__wahl [hidden]
{
	display: none;
}

.weitergeben__wahl svg
{
	flex: none;
	color: var(--rot-hell);
}
