/* Blog-Layout — minimal, lesefreundlich, mobil-first */
:root {
  --primary: #b8860b;
  --primary-dark: #8b6508;
  --cream: #fdf8ee;
  --dark: #1a1a2e;
  --text: #2c2420;
  --muted: #6b6b6b;
  --border: #e8dfd0;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text); line-height: 1.7;
  background: #fff;
}
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wide-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav.blog-nav {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
nav.blog-nav .container { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; }
nav.blog-nav .logo img { height: 38px; display: block; }
nav.blog-nav a.cta {
  background: var(--primary); color: #fff; padding: 8px 16px;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.9rem;
}

/* Breadcrumb */
.crumb { font-size: 0.82rem; color: var(--muted); margin: 24px 0 12px; }
.crumb a { color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; }
.crumb a:hover { border-bottom-color: var(--primary); }

/* Article header */
.article-header { margin-top: 16px; margin-bottom: 32px; }
.article-cat {
  display: inline-block; background: #fff8e6; color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.article-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem; line-height: 1.15; margin: 14px 0 18px; font-weight: 700;
}
.article-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.article-meta time { font-weight: 600; }

/* Article body */
article {
  font-size: 1.06rem;
}
article p { margin: 0 0 18px; }
article h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem; margin: 44px 0 14px; line-height: 1.25;
  font-weight: 700;
}
article h3 {
  font-size: 1.2rem; margin: 28px 0 10px; font-weight: 700;
}
article ul, article ol {
  margin: 0 0 22px; padding-left: 22px;
}
article li { margin-bottom: 8px; }
article a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
article a:hover { color: var(--primary-dark); }
article strong { font-weight: 700; color: var(--dark); }
article blockquote {
  border-left: 4px solid var(--primary); margin: 24px 0;
  padding: 8px 0 8px 22px; background: #fdf8ee;
  font-style: italic; color: #44342a;
  border-radius: 0 8px 8px 0;
}

/* Step boxes (für HowTo Anleitungen) */
.howto-step {
  background: #fff8e6; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px 26px; margin: 20px 0;
  position: relative;
}
.howto-step .step-num {
  position: absolute; top: -14px; left: 22px;
  background: var(--primary); color: #fff;
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.95rem;
}
.howto-step h3 { margin-top: 6px; margin-bottom: 10px; }

/* Info box */
.info-box {
  background: #f0f4ff; border-left: 4px solid #4f6bff;
  padding: 18px 22px; border-radius: 0 8px 8px 0;
  margin: 28px 0;
}
.info-box strong { color: #1d3a8a; }

/* Vergleichs-Tabelle */
.compare-table {
  width: 100%; border-collapse: collapse;
  margin: 22px 0; font-size: 0.92rem;
}
.compare-table th, .compare-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: #fdf8ee; font-weight: 700;
}
.compare-table .yes { color: #059669; font-weight: 700; }
.compare-table .no  { color: #dc2626; font-weight: 700; }

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, #fff8e6 0%, #ffe4b5 100%);
  border: 2px solid var(--primary); border-radius: 14px;
  padding: 28px; margin: 36px 0; text-align: center;
}
.cta-box h3 { margin: 0 0 10px; font-size: 1.3rem; }
.cta-box p { margin: 0 0 16px; color: #5b4a39; }
.cta-box a.btn {
  display: inline-block; background: var(--primary); color: #fff;
  padding: 12px 26px; border-radius: 8px; text-decoration: none;
  font-weight: 700; font-size: 1rem;
}
.cta-box a.btn:hover { background: var(--primary-dark); color: #fff; }

/* Related */
.related {
  border-top: 2px solid var(--border); padding-top: 28px; margin-top: 48px;
}
.related h3 { font-size: 1.15rem; margin: 0 0 16px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }
.related a {
  display: block; padding: 16px; border: 1px solid var(--border);
  border-radius: 10px; text-decoration: none; color: var(--text);
  transition: all 0.15s;
}
.related a:hover { border-color: var(--primary); background: #fffcf3; }
.related a strong { display: block; font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.related a span { color: var(--muted); font-size: 0.85rem; }

/* Footer */
footer.blog-footer {
  background: #1a1a2e; color: #fff; padding: 44px 0 30px;
  margin-top: 80px; text-align: center;
}
footer.blog-footer a { color: #fff; text-decoration: none; }
footer.blog-footer a:hover { text-decoration: underline; }
footer.blog-footer .links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; font-size: 0.9rem; opacity: 0.85; margin-top: 12px; }

/* Blog Index */
.post-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; margin-bottom: 20px; transition: all 0.15s;
}
.post-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(184,134,11,0.08); }
.post-card .article-cat { margin-bottom: 8px; }
.post-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.55rem; line-height: 1.25; margin: 6px 0 10px;
}
.post-card h2 a { color: var(--dark); text-decoration: none; }
.post-card h2 a:hover { color: var(--primary); }
.post-card .excerpt { color: var(--muted); margin-bottom: 10px; }
.post-card .read-more { color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.post-card .read-more:hover { text-decoration: underline; }

/* Mobile-Touchup */
@media (max-width: 600px) {
  .article-header h1 { font-size: 1.75rem; }
  article h2 { font-size: 1.35rem; margin-top: 32px; }
  article { font-size: 1rem; }
}
