/* article.css — Ratgeber-/Artikel-Bausteine: Meta-Zeile, Autorenbox, Inhalts-Tabellen.
   Nutzt ausschließlich Tokens aus base.css. Mobile-first. */

.art-meta {
  margin: -6px 0 18px;
  font-size: 14px;
  color: var(--text2);
}
.art-meta a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.art-meta time { white-space: nowrap; }

.author { padding: 8px 20px 48px; background: var(--surface); }
.author__box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  background: var(--surface2);
}
.author__img { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.author__name { margin: 0 0 6px; font-weight: 700; font-size: 16px; }
.author__name span { font-weight: 500; color: var(--text2); }
.author__bio { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text2); }
.author__bio a { color: var(--accent); }
@media (max-width: 520px) {
  .author__box { flex-direction: column; gap: 12px; }
}

/* Vergleichs-/Kriterien-Tabellen in Artikeln und Pillar-Seiten */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 8px 0 0; }
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.5;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
}
.tbl th, .tbl td { padding: 12px 14px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--border); }
.tbl th { font-weight: 700; background: var(--surface2); white-space: nowrap; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td strong { font-weight: 600; }
.tbl__note { margin: 10px 0 0; font-size: 13.5px; color: var(--text3); }
@media (max-width: 640px) {
  .tbl { font-size: 14px; }
  .tbl th, .tbl td { padding: 10px 10px; }
}

/* Fließtext-Absätze in Pillar-Abschnitten (statt inline-styles auf .lead) */
.prose { max-width: 780px; margin: 0 auto; }
.prose p { margin: 0 0 18px; font-size: 17px; line-height: 1.65; color: var(--text2); }
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose ul { margin: 0 0 18px 20px; padding: 0; color: var(--text2); font-size: 17px; line-height: 1.65; }
.prose li { margin: 0 0 8px; }
.prose h3 { margin: 28px 0 10px; font-size: 20px; font-weight: 700; }
.prose a { color: var(--accent); }

/* Glossar */
.glossar-jump { font-size: 15px; line-height: 2; text-align: center; }
.glossar-jump a { color: var(--accent); white-space: nowrap; }
.glossar-entry { padding: 36px 20px; scroll-margin-top: 90px; }
.glossar-entry .sec-h { margin-bottom: 14px; }
.glossar-entry h2 { font-size: clamp(22px, 2.6vw, 28px); }
