/* =====================================================================
   Impressum und Datenschutzerklärung.

   Eigene Seiten, nicht der Design-Export. Grund: der Export ist eine
   einzige Datei mit einer React-Laufzeit darin, und zwei Textseiten
   brauchen davon nichts. Sie kommen ohne JavaScript aus, laden nichts
   nach und sind auch dann lesbar, wenn die Laufzeit nicht bootet – bei
   einer Pflichtangabe ist das keine Kleinigkeit.

   Die Farben und Schriften stehen hier ausgeschrieben statt als
   Variablen des Design-Systems. Diese Seiten sollen nicht davon
   abhängen, dass `_ds` geladen ist; die Werte sind aus dem Stilblatt
   übernommen (accent-300 ffc6a5, accent-400 f6a06b) und gehören bei
   einem Farbwechsel im Design abgeglichen.
   ===================================================================== */

@import url('./fonts/fonts.css');

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 clamp(20px, 5vw, 64px) clamp(48px, 8vw, 96px);
  background: #100c07;
  color: #e6d7c3;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.62;
  /* Ein Rechtstext wird gelesen, nicht überflogen: schmale Spalte. */
  max-width: 74ch;
  margin-inline: auto;
}

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

.kopf {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: baseline;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 40px) 0;
  border-bottom: 1px solid rgba(246, 160, 107, 0.16);
}

.marke {
  font-family: 'Caprasimo', system-ui, sans-serif;
  font-size: 19px;
  letter-spacing: 0.06em;
  color: #ffc6a5;
}

.marke span { color: #7d6b58; }

.zurueck { font-size: 14px; }

/* --- Text ----------------------------------------------------------- */

h1 {
  font-family: 'Caprasimo', system-ui, sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.06;
  margin: clamp(32px, 6vw, 56px) 0 8px;
  color: #fbf1e2;
}

h2 {
  font-family: 'Caprasimo', system-ui, sans-serif;
  font-size: clamp(21px, 3vw, 27px);
  line-height: 1.2;
  margin: clamp(36px, 5vw, 52px) 0 10px;
  color: #ffc6a5;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 6px;
  color: #f4e7d6;
}

p, li { margin: 0 0 12px; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }

li::marker { color: #b2622d; }

strong { color: #fbf1e2; }

a { color: #f6a06b; }

a:hover { color: #ffc6a5; }

:focus-visible { outline: 2px solid #f6a06b; outline-offset: 3px; }

.stand {
  margin: 0;
  font-size: 14px;
  color: #a2907a;
}

/* --- Kasten für „Kurz gefasst" und den Verantwortlichen ------------- */

.kasten {
  margin: 24px 0;
  padding: clamp(18px, 3vw, 28px);
  background: #1b1409;
  border: 1px solid rgba(246, 160, 107, 0.16);
  border-radius: 16px;
}

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

.kasten h2 { margin-top: 0; }

/* --- Platzhalter ----------------------------------------------------
   Solange in einer dieser Seiten noch `[[AUSFÜLLEN` steht, bricht der
   Build ab, sobald die Website nicht mehr auf Wartung steht – siehe
   tool/vercel_build.sh. Diese Auszeichnung ist der zweite Riegel: wer
   die Seite in der Vorschau ansieht, soll die Lücken nicht übersehen.
   -------------------------------------------------------------------- */

.fehlt {
  padding: 1px 6px;
  color: #ffd7d7;
  background: rgba(255, 59, 48, 0.22);
  border-radius: 5px;
  font-weight: 700;
}

/* --- Tabelle für Empfänger und Fristen ------------------------------ */

.tabelle-huelle { overflow-x: auto; margin: 0 0 20px; }

table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 15.5px;
}

th, td {
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(246, 160, 107, 0.12);
}

th {
  font-weight: 700;
  color: #ffc6a5;
  white-space: nowrap;
}

/* --- Fuß ------------------------------------------------------------ */

.fuss {
  margin-top: clamp(40px, 7vw, 72px);
  padding-top: 20px;
  border-top: 1px solid rgba(246, 160, 107, 0.16);
  font-size: 14px;
  color: #a2907a;
}

.fuss a { margin-right: 20px; }
