/* Aussehen der Textseiten. Dieselben Schriften und Farben wie die Startseite,
   nur ohne deren Hero-Layout: die Startseite traegt ihr CSS im Kopf, weil sie
   in einem Zug geladen wird; die beiden Textseiten teilen sich diese Datei. */
@font-face {
  font-family: "Inter";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter-regular.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter-medium.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/inter-bold.woff") format("woff");
}

:root {
  --paper: #f8f3ec;
  --ink: #1c1613;
  --muted: #57534e;
  --border: #eae2d6;
  --coral: #e5694c;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 24px 56px;
}

/* Der Weg zurueck steht auf der Seite selbst und nicht nur in der Leiste des
   Browsers: auf einem Telefon ist die Leiste beim Scrollen weg. */
.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 32px;
  padding: 10px 16px 10px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--border);
  background: #fff;
}
.back:hover { border-color: var(--ink); }
.back:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.back svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.updated {
  margin: 0 0 32px;
  font-size: 15px;
  color: var(--muted);
}

h2 {
  margin: 36px 0 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

p { margin: 0 0 12px; }
ul { margin: 0 0 12px; padding-left: 22px; }
li { margin-bottom: 6px; }

a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--coral); text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

address { font-style: normal; }

footer {
  flex: none;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 15px;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--ink); text-decoration: underline; }

@media (min-width: 720px) {
  main { padding: 32px 32px 64px; }
  h1 { font-size: 42px; }
  footer { padding: 24px 32px 32px; }
}
