/* ───────────────────────────────────────────────────────────────────────
   themen-hub.css — NUR Inhalts-Komponenten der Themen-Übersicht (/themen/).
   Nav, Footer, ERLEDIGT-Bar, Tokens, Reset und Skip-Link liefert themen.css
   (+ site-motion.css + soehne.css) — identisch zu den Detailseiten.
   ───────────────────────────────────────────────────────────────────────── */

/* fehlendes Token im Themen-Set ergänzen (AA-Kontrast auf hellem Grund) */
:root { --ink-600: oklch(42.0% 0.010 252); }

/* ─── Themen-Hub Header ───────────────────────────────────── */
.hub {
  max-width: 720px; margin: 0 auto;
  padding: var(--s-9) var(--s-5) var(--s-7);
}
.hub__meta {
  display: flex; align-items: baseline; gap: var(--s-3);
  padding-bottom: var(--s-5); margin-bottom: var(--s-8);
  border-bottom: var(--hairline);
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-600);
}
.hub__meta-label { color: var(--accent-600); font-weight: 600; }
.hub__meta-sep { color: var(--ink-300); }

.hub h1 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.1; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink-900);
  margin: 0 0 var(--s-5);
  text-wrap: balance;
}
.hub__lede {
  font-family: var(--font-serif); font-style: normal; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 24px); line-height: 1.45;
  color: var(--ink-700);
  max-width: 52ch;
  margin: 0 0 var(--s-9);
}

/* ─── Themen-Liste ────────────────────────────────────────── */
.theme-list {
  max-width: 720px; margin: 0 auto;
  padding: 0 var(--s-5) var(--s-9);
  list-style: none;
}
.theme-list__cluster {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-600); font-weight: 600;
  margin: var(--s-9) 0 var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: var(--hairline);
}
.theme-list__cluster:first-child { margin-top: 0; }

.theme-entry {
  display: block;
  padding: var(--s-6) 0;
  border-bottom: var(--hairline);
  transition: border-color 200ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.theme-entry:hover { border-bottom-color: var(--accent-500); }
.theme-entry:last-child { border-bottom-color: transparent; }

.theme-entry__topline {
  display: flex; align-items: baseline; gap: var(--s-3);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: var(--s-3);
  flex-wrap: wrap;
}
.theme-entry__norm { color: var(--accent-600); font-weight: 600; }
.theme-entry__sep { color: var(--ink-300); }

.theme-entry h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 26px);
  line-height: 1.25; font-weight: 600; letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 var(--s-3);
  text-wrap: balance;
  transition: color 180ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.theme-entry:hover h2 { color: var(--accent-600); }

.theme-entry__lede {
  font-size: 16px; line-height: 1.6;
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0 0 var(--s-4);
}

.theme-entry__cta {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-600); font-weight: 600;
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.theme-entry__cta::after { content: "→"; transition: transform 200ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.theme-entry:hover .theme-entry__cta::after { transform: translateX(4px); }

/* ─── In Vorbereitung ─────────────────────────────────────── */
.planned {
  max-width: 720px; margin: var(--s-9) auto 0;
  padding: var(--s-7) var(--s-5);
  border-top: var(--hairline);
}
.planned__label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-600); font-weight: 600;
  margin: 0 0 var(--s-5); display: block;
}
.planned__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: var(--s-4);
}
.planned__item {
  display: grid; grid-template-columns: auto 1fr; gap: var(--s-4);
  align-items: baseline;
}
.planned__cluster {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-600); font-weight: 500;
  white-space: nowrap;
  min-width: 14ch;
}
.planned__title {
  font-size: 16px; color: var(--ink-700); line-height: 1.4;
}

/* Reduced Motion — Hub-Inhalt */
@media (prefers-reduced-motion: reduce) {
  .theme-entry, .theme-entry h2, .theme-entry__cta::after { transition: none; }
  .theme-entry:hover .theme-entry__cta::after { transform: none; }
}

/* ERLEDIGT-Bar mittig (wie Homepage) */
.erledigt-bar__row { justify-content: center; }
