/* ── TAOBS Unterseiten — geteiltes Stylesheet ──
   Nutzer: /blog/, /blog/<slug>/ und seit 15.08.2026 auch /projekte/<slug>/
   (erste Instanz: /projekte/pablo/). Der Dateiname bleibt `blog.css`, weil er
   in bereits ausgelieferten Seiten steht — der Vertrag ist aber breiter als
   der Name: wer hier etwas ändert, ändert AUCH die Projektseiten.
   Gleiche Design-Tokens wie index.html (Navy/Blau, Inter lokal, keine
   externen Font-Requests). Eigene Datei statt Duplikat pro Seite, damit
   jede neue Unterseite (Vorlage kopieren) automatisch im selben Look
   bleibt — kein Build-System, nur ein geteiltes Static-Asset. */

@font-face { font-family: 'Inter'; font-weight: 400; font-display: swap; src: url('/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-display: swap; src: url('/fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-display: swap; src: url('/fonts/inter-600.woff2') format('woff2'); }

:root {
  --navy: #0F1725;
  --navy-2: #131D2E;
  --ink: #F4F7FB;
  --steel: #8FA3BF;
  --steel-dim: #5B7396;
  --blue: #6E93C8;
  --line: rgba(110, 147, 200, 0.22);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--navy);
  color: var(--ink);
  font-family: 'Inter', 'Liberation Sans', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ── Kopf ── */
.blog-nav { padding: 28px 0 0; }
.blog-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--steel);
  text-decoration: none;
}
.blog-nav a:hover { color: var(--ink); }

header.blog-header { padding: 24px 0 56px; }
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
h1 .dot { color: var(--blue); }
.blog-intro { margin-top: 16px; max-width: 560px; color: var(--steel); font-size: 16px; }

/* ── Liste ── */
.post-list { display: flex; flex-direction: column; gap: 16px; padding-bottom: 72px; }
.post-card {
  display: block;
  text-decoration: none;
  background: linear-gradient(180deg, var(--navy-2) 0%, rgba(19,29,46,0.6) 100%);
  border: 1px solid rgba(110,147,200,0.16);
  border-radius: 10px;
  padding: 24px 26px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.post-card:hover { border-color: rgba(110,147,200,0.45); transform: translateY(-2px); }
.post-card .post-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-dim);
  margin-bottom: 6px;
}
.post-card h2 { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.post-card p { color: var(--steel); font-size: 15px; }

/* ── Artikel ── */
article.post { padding-bottom: 88px; }
.post-meta {
  font-size: 13px;
  color: var(--steel-dim);
  margin-bottom: 8px;
}
.post-meta .sep { margin: 0 8px; }
article.post h1 { margin-bottom: 18px; }
.post-body { color: var(--steel); font-size: 16px; max-width: 620px; }
.post-body p + p { margin-top: 14px; }
.post-body strong { color: var(--ink); font-weight: 500; }

/* ── Fuss ── */
footer.blog-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0 48px;
  font-size: 13px;
  color: var(--steel-dim);
}
footer.blog-footer a { color: var(--steel); text-decoration: none; }
footer.blog-footer a:hover { color: var(--ink); }

@media (max-width: 640px) {
  header.blog-header { padding: 18px 0 40px; }
  article.post { padding-bottom: 64px; }
}
