/* ===== Artikel-Seiten ===== */
.artikel-main {
  padding: 56px 0 80px;
  background: var(--white);
}

.artikel-container {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 32px;
  transition: gap .15s;
}
.back-link:hover { text-decoration: underline; }

.artikel-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.artikel-header .blog-meta { margin-bottom: 16px; }
.artikel-header h1 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.artikel-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== Article Body Typography ===== */
.artikel-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #1f2937;
}

.artikel-body h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 48px 0 14px;
  letter-spacing: -.3px;
  color: var(--text);
}
.artikel-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.artikel-body p { margin-bottom: 18px; }

.artikel-body ol,
.artikel-body ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.artikel-body li { margin-bottom: 8px; }

.artikel-body strong { font-weight: 700; }
.artikel-body em { font-style: italic; }

.artikel-body blockquote {
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  margin: 32px 0;
  background: var(--blue-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: #374151;
}
.artikel-body blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 10px;
  color: var(--text-muted);
}

/* Two-column comparison */
.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.spalte {
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.spalte ul { padding-left: 18px; margin: 0; }
.spalte li { font-size: .95rem; margin-bottom: 6px; }
.spalte-gruen { background: #f0fdf4; border-color: #bbf7d0; }
.spalte-gruen h4 { color: #15803d; }
.spalte-rot { background: #fef2f2; border-color: #fecaca; }
.spalte-rot h4 { color: #b91c1c; }

.artikel-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .zwei-spalten { grid-template-columns: 1fr; }
}
