/* ═══════════════════════════════════════════════════════════
   Leadsupporter — Blog (baut auf shop.css-Tokens auf)
   ═══════════════════════════════════════════════════════════ */

.blog-hero {
  padding: 64px 0 40px;
  text-align: center;
}
.blog-hero .eyebrow { justify-content: center; }
.blog-hero h1 { margin-top: 14px; }
.blog-hero p { max-width: 60ch; margin: 16px auto 0; color: var(--muted); font-size: 17px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0 104px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.blog-card .tag {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--teal);
}
.blog-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.blog-card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; }
.blog-card .read-more { margin-top: auto; font-size: 14px; font-weight: 600; color: var(--gold); }

/* ─────────── Newsletter-Anmeldung ─────────── */
.newsletter-box {
  margin: 0 0 8px;
  padding: 32px 34px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  text-align: center;
}
.newsletter-box h3 { font-family: var(--font-display); color: var(--ink); font-size: 21px; margin: 0 0 8px; }
.newsletter-box p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
.newsletter-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter-form input[type="email"] {
  flex: 1 1 260px; max-width: 320px;
  padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--bg-2); color: var(--ink);
  font-family: var(--font-body); font-size: 15px;
}
.newsletter-form input[type="email"]:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.newsletter-status { margin-top: 12px; font-size: 13.5px; color: var(--muted); min-height: 1.2em; }
.newsletter-status.success { color: var(--teal-bright); }
.newsletter-status.error { color: var(--red); }

/* ─────────── Artikel-Layout ─────────── */
.article-hero {
  padding: 56px 0 24px;
  text-align: center;
}
.article-hero .eyebrow { justify-content: center; }
.article-hero h1 { max-width: 20ch; margin: 14px auto 0; }
.article-meta { margin-top: 14px; color: var(--muted); font-size: 14px; }

.article-body {
  max-width: 68ch;
  margin: 0 auto;
  padding: 8px 24px 80px;
  color: var(--text);
  font-size: 16.5px;
  line-height: 1.75;
}
.article-body h2 {
  font-family: var(--font-display); color: var(--ink);
  font-size: 24px; font-weight: 700; margin: 44px 0 14px;
}
.article-body p { margin: 0 0 18px; }
.article-body ul { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a:not(.btn) { color: var(--teal); }
.article-body strong { color: var(--ink); }

.article-cta {
  margin: 40px 0 8px;
  padding: 28px 30px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  text-align: center;
}
.article-cta h3 { font-family: var(--font-display); color: var(--ink); font-size: 19px; margin: 0 0 8px; }
.article-cta p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
