/* Rechtstexte — ruhiger als die Startseite, gleiche Handschrift. */

:root {
  --nacht: #0d100f;
  --nacht-2: #141917;
  --papier: #edede8;
  --leise: #8b948f;
  --leise-hell: #a8b2ad;
  --linie: rgba(255, 255, 255, 0.12);
  --gruen: #2f9e73;

  --display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", "Liberation Sans Narrow", system-ui, sans-serif;
  --text: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --rand: clamp(1.15rem, 5vw, 5rem);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--nacht);
  color: var(--papier);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gruen);
}

.kopf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--rand);
  border-bottom: 1px solid var(--linie);
}
.wortmarke {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--papier);
  text-decoration: none;
}
.wortmarke span { color: var(--gruen); }

.knopf {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--papier);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  padding: 0.55rem 0.9rem;
  white-space: nowrap;
}
.knopf:hover { background: var(--gruen); border-color: var(--gruen); color: #06120d; }
.knopf:focus-visible { outline: 2px solid var(--gruen); outline-offset: 3px; }

.blatt {
  max-width: 44rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vh, 5rem) var(--rand) 4rem;
}

h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  line-height: 0.95;
  margin: 0.8rem 0 0;
}
h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.7rem;
  color: var(--papier);
}

.vorspann {
  font-size: 1.12rem;
  color: var(--leise-hell);
  margin: 1.4rem 0 0;
  max-width: 34rem;
}

section {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--linie);
}

p { margin: 0 0 0.9rem; }
p:last-child { margin-bottom: 0; }
.leise { color: var(--leise); font-size: 0.94rem; }

a { color: var(--papier); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gruen); }
a:hover { color: var(--gruen); }

ul { margin: 0.4rem 0 0; padding-left: 1.2rem; }
li { margin-bottom: 0.5rem; color: var(--leise-hell); }
li b { color: var(--papier); }

table { width: 100%; border-collapse: collapse; font-size: 0.94rem; margin-top: 0.6rem; display: block; overflow-x: auto; }
th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--leise);
  font-weight: 400;
  padding: 0.5rem 1rem 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}
td {
  padding: 0.7rem 1rem 0.7rem 0;
  border-bottom: 1px solid var(--linie);
  color: var(--leise-hell);
  vertical-align: top;
}

.hinweis {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gruen);
  background: rgba(47, 158, 115, 0.09);
  font-size: 0.96rem;
  color: var(--leise-hell);
}
.hinweis b { color: var(--papier); }

.stand { display: block; margin-top: 3rem; color: var(--leise); }

.fuss {
  padding: 2rem var(--rand) 3rem;
  border-top: 1px solid var(--linie);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--leise);
}
.fuss nav { display: flex; gap: 1.2rem; }
.fuss a { color: var(--leise-hell); text-decoration: none; }
.fuss a:hover { color: var(--papier); }
