/* ============================================================
   Blog — Übersicht und Artikel

   Der Blog ist die Fortsetzung des weißen Bereichs der Startseite,
   keine eigene Seitenart. Deshalb derselbe Grund (#f6f7f9), dieselben
   Systemschriften, dieselbe Pille als Handlungsaufruf.

   Keine Webfonts, keine Fremd-Requests. Das ist eine Aussage der
   Seite (kein Cookie-Banner nötig) und wird nicht für Typografie
   geopfert.
   ============================================================ */

:root {
  --blau: #0d62f5;
  --schrift: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, monospace;

  --grund: #f6f7f9;
  --grund2: #fff;
  --text: #0b0d12;
  --text2: rgba(11, 13, 18, .62);
  --text3: rgba(11, 13, 18, .42);
  --linie: rgba(11, 13, 18, .1);
  --punkt: rgba(11, 13, 18, .16);

  /* Dreistufiges Breitensystem. Eine Spalte für alles liest sich
     schlechter: der Fließtext braucht 65-80 Zeichen, die Überschrift
     darf breiter laufen, Ausbrüche noch breiter. */
  --b-text: 680px;
  --b-titel: 860px;
  --b-weit: 1100px;
  --rand: clamp(20px, 5vw, 64px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--grund); color: var(--text);
  font: 400 16px/1.6 var(--schrift);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ---------------------------------------------------------- Kopfzeile */

.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 16px var(--rand);
  background: rgba(246, 247, 249, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--linie);
}
.nav .marke {
  font-size: 15px; font-weight: 500; letter-spacing: -.01em;
  text-decoration: none;
}
.nav .wege { display: flex; gap: 22px; font-size: 14px; }
.nav .wege a { color: var(--text2); text-decoration: none; }
.nav .wege a:hover, .nav .wege a[aria-current] { color: var(--text); }

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

.kopf { max-width: var(--b-weit); margin: 0 auto; padding: clamp(50px, 9vh, 96px) var(--rand) 0; }
.kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 18px;
}

/* ---------------------------------------------------------- Übersicht */

.uebersicht h1 {
  font-size: clamp(30px, 4.2vw, 52px); line-height: 1.1;
  letter-spacing: -.028em; font-weight: 500; max-width: 17ch;
}
.uebersicht .unterzeile {
  margin-top: 22px; max-width: 56ch; color: var(--text2);
  font-size: clamp(16px, 1.2vw, 18px); line-height: 1.6;
}

/* Gebiete als schlichte Wortreihe. Bunte Pillen zerhacken bei acht
   Einträgen die Zeile und sehen nach Etikettenwand aus. */
.gebiete {
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  margin-top: 42px; padding-bottom: 22px;
  border-bottom: 1px solid var(--linie);
  font-size: 14px; color: var(--text2); list-style: none;
}
.gebiete li[aria-current] { color: var(--text); font-weight: 500; }

.liste { max-width: var(--b-weit); margin: 0 auto; padding: 0 var(--rand) 120px; list-style: none; }
.eintrag { border-bottom: 1px solid var(--linie); }
.eintrag > a {
  display: grid; grid-template-columns: 132px 1fr; gap: 8px 34px;
  padding: 34px 0; text-decoration: none;
  transition: opacity .18s ease;
}
.eintrag > a:hover { opacity: .62; }
.eintrag .meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text3); padding-top: 6px;
}
.eintrag h2 {
  font-size: clamp(19px, 1.7vw, 23px); font-weight: 500;
  line-height: 1.32; letter-spacing: -.015em; max-width: 34ch;
}
/* Jeder Eintrag trägt einen ganzen Satz. Bei acht Fachthemen
   entscheidet dieser Satz darüber, ob jemand klickt. */
.eintrag p { margin-top: 10px; color: var(--text2); font-size: 15px; line-height: 1.55; max-width: 62ch; }
.eintrag.folgt > a { pointer-events: none; }
.eintrag.folgt h2, .eintrag.folgt p { color: var(--text3); }
.eintrag .bald {
  display: inline-block; margin-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text3);
}

/* ---------------------------------------------------------- Artikel */

.artikel .kopf { padding-bottom: 0; }
.zurueck { display: inline-block; margin-bottom: 34px; text-decoration: none; font-size: 14px; color: var(--text2); }
.zurueck:hover { color: var(--text); }

.artikel h1 {
  max-width: var(--b-titel);
  font-size: clamp(29px, 3.9vw, 46px); line-height: 1.12;
  letter-spacing: -.028em; font-weight: 500;
}
.angaben {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  margin-top: 26px; padding-bottom: 30px; border-bottom: 1px solid var(--linie);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text3);
}

.inhalt { max-width: var(--b-weit); margin: 0 auto; padding: 0 var(--rand) 40px; }
/* Die Lesespalte: 680px bei 18px sind rund 78 Zeichen. */
.inhalt > * { max-width: var(--b-text); }
.inhalt p { margin-top: 26px; font-size: 18px; line-height: 1.62; }
.inhalt p.vorlauf { font-size: clamp(19px, 1.5vw, 21px); line-height: 1.55; margin-top: 40px; }
.inhalt h2 {
  margin-top: 66px; max-width: var(--b-titel);
  font-size: clamp(22px, 2.1vw, 28px); line-height: 1.25;
  letter-spacing: -.02em; font-weight: 500;
}
/* Die Antwort steht direkt unter der Frage — das ist die Passage,
   die in KI-Antworten zitiert wird. */
.inhalt h2 + p { margin-top: 18px; }
.inhalt h3 { margin-top: 38px; font-size: 18px; font-weight: 600; }
.inhalt strong { font-weight: 600; }
.inhalt a { color: var(--blau); text-underline-offset: 3px; }

.inhalt ol, .inhalt ul { margin-top: 26px; padding-left: 0; list-style: none; }
.inhalt ol { counter-reset: s; }
.inhalt ol > li {
  counter-increment: s; position: relative;
  padding-left: 44px; margin-top: 20px; font-size: 18px; line-height: 1.6;
}
.inhalt ol > li::before {
  content: counter(s); position: absolute; left: 0; top: 1px;
  width: 27px; height: 27px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blau); color: #fff;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
}
.inhalt ul > li {
  position: relative; padding-left: 24px; margin-top: 16px;
  font-size: 18px; line-height: 1.6;
}
.inhalt ul > li::before {
  content: ""; position: absolute; left: 4px; top: 12px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--text3);
}

/* Punktraster als Bezug zur Szene, ohne WebGL. Die Verbindung zur
   Startseite darf nicht heißen, dass jeder Artikel eine
   340.000-Punkte-Wolke lädt. */
.merksatz {
  margin-top: 46px; padding: 30px 32px;
  background: var(--grund2); border-left: 2px solid var(--blau);
  background-image: radial-gradient(var(--punkt) 1px, transparent 1px);
  background-size: 15px 15px; background-position: right -6px top -6px;
  font-size: 18px; line-height: 1.55;
}

/* Noch nicht geschriebener Zielartikel: sichtbar als Absicht,
   nicht als toter Link. */
.spaeter { color: var(--text2); border-bottom: 1px dotted var(--text3); cursor: help; }

.fuss { max-width: var(--b-weit); margin: 0 auto; padding: 0 var(--rand) 110px; }
.fuss .kasten { max-width: var(--b-text); margin-top: 76px; padding-top: 40px; border-top: 1px solid var(--linie); }
.fuss .zeile { color: var(--text2); font-size: 17px; max-width: 54ch; line-height: 1.6; }
.pille {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 24px;
  background: var(--text); color: var(--grund);
  border-radius: 999px; padding: 14px 26px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: transform .18s ease;
}
.pille:hover { transform: translateY(-1px); }

/* Weiterlesen — Navigation, kein Themenlink. Steht deshalb unter
   dem Handlungsaufruf und nicht mitten im Text. */
.weiter { max-width: var(--b-text); margin-top: 60px; padding-top: 30px; border-top: 1px solid var(--linie); }
.weiter .titel { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text3); }
.weiter ul { list-style: none; margin-top: 16px; }
.weiter li { margin-top: 10px; }
.weiter a { font-size: 16px; text-decoration: none; border-bottom: 1px solid var(--linie); }
.weiter a:hover { border-color: var(--text); }

.seitenfuss {
  border-top: 1px solid var(--linie);
  padding: 34px var(--rand);
  display: flex; flex-wrap: wrap; gap: 10px 24px;
  font-size: 13px; color: var(--text3);
}
.seitenfuss a { color: var(--text2); text-decoration: none; }
.seitenfuss a:hover { color: var(--text); }

@media (max-width: 680px) {
  .eintrag > a { grid-template-columns: 1fr; gap: 4px; }
  .eintrag .meta { padding-top: 0; }
  .inhalt p, .inhalt ol > li, .inhalt ul > li { font-size: 17px; }
  .nav .wege { gap: 16px; }
}
