/* Ratgeber — was nur er braucht.

   Tokens, Seitenaufbau und Grundtypografie stehen in /seiten.css; jede Ratgeberseite lädt erst
   diese, dann hier weiter. Übrig bleiben die Artikelliste der Übersicht und die
   Zwischenüberschriften, die im Handbuch so nicht vorkommen. */

/* Artikelliste der Übersichtsseite. */
.artikel {
  display: grid;
  gap: 12px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}

.artikel li { margin: 0; }

.artikel a {
  display: block;
  padding: 16px 18px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--body);
  text-decoration: none;
  transition: border-color .18s var(--ease);
}

.artikel b {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.artikel span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* Lesedauer. Sie steht bewusst UNTER dem Text und nicht neben dem Titel — als Versprechen,
   nicht als Warnung. */
.artikel em {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.artikel a:hover, .artikel a:focus-visible { border-color: var(--accent-line); }

/* Dritte Ebene: In den Artikeln gliedern nummerierte Regeln die Abschnitte, im Handbuch gibt es
   das nicht. Etwas Luft darüber, damit sie sich vom Absatz davor löst. */
.shell h3 {
  margin-top: 26px;
  color: var(--ink);
}

.zurueck {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
