:root {
  --bg: #f7f5f2;
  --text: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #8a1f1f;
  --line: #ddd8d0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
a { color: var(--accent); }

/* Kopfzeile / Navigation */
.top-bar {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.top-bar a:hover { color: var(--accent); }

/* Seitentitel (nur auf der Startseite) */
.site-title {
  background: #000;
  padding: 1.75rem 0 2rem;
  margin-bottom: 1rem;
}
.site-title-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-title .eyebrow {
  display: block;
  color: #bfbfbf;
  font-size: 0.9rem;
  margin: 0 0 0.6rem 1.15rem;
}
.site-title h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
  border-left: 6px solid var(--accent);
  padding-left: 1rem;
}
.site-title .signature {
  display: block;
  text-align: right;
  color: #bfbfbf;
  font-size: 0.95rem;
  margin: 0.9rem 0 0;
}

/* Teaser-Kacheln auf der Übersichtsseite */
.teaser-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.teaser {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.75rem;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.teaser:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.teaser img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.teaser-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.teaser .post-date {
  margin-bottom: 0.7rem;
}
.teaser h2.teaser-title {
  font-size: 1.3rem;
  color: var(--text);
  margin: 0 0 0.6rem;
  display: block;
}
.teaser p.teaser-excerpt {
  color: var(--muted);
  margin: 0 0 0.8rem;
  font-size: 0.98rem;
}
.teaser .read-more {
  font-weight: 700;
  font-size: 0.9rem;
}

/* Einzelner Artikel */
article.post {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
header.hero {
  position: relative;
  padding: 2.5rem 1.5rem 2rem;
  text-align: left;
}
header.hero img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 0.5rem;
}
.img-caption {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 2rem;
}
.post-date {
  display: inline-block;
  color: #fff;
  background: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.7rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
header.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 0.5rem;
  border-left: 6px solid var(--accent);
  padding-left: 1rem;
}
header.hero p.subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin: 1rem 0 0 1.15rem;
}
main {
  padding: 0 1.5rem 3rem;
}
main p { margin: 0 0 1.2rem; }

section {
  margin-bottom: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
section:first-of-type { border-top: none; }
h2 {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
h2 .num {
  font-size: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  font-weight: 700;
}
h3 { font-size: 1.05rem; margin: 1.5rem 0 0.5rem; }
ul { padding-left: 1.3rem; margin: 0.5rem 0 1.2rem; }
li { margin-bottom: 0.9rem; }
li ul { margin-top: 0.6rem; }
.label { font-weight: 700; }

.stat-box {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
}
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-item { flex: 1; min-width: 140px; }
.stat-number { font-size: 1.8rem; font-weight: 800; color: var(--accent); }

.back-link {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--muted);
}
.back-link:hover { color: var(--accent); }

footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
