/* ============================================================
   Vlamwerk — blog (aanvullend op site.css, alleen voor /blog).
   Hergebruikt de tokens uit site.css; raakt de homepage niet.
   ============================================================ */

/* compacte page-kop voor losse pagina's (geen 100svh-hero) */
.page-head { padding: clamp(120px, 16vh, 200px) 0 clamp(40px, 6vw, 72px); position: relative; }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 {
  font-family: "Clash Display", sans-serif; font-weight: 600;
  font-size: clamp(40px, 6vw, 80px); line-height: 0.96; letter-spacing: -0.03em; margin: 14px 0 16px;
}
.page-head .lead { color: var(--muted); font-size: clamp(17px,1.5vw,20px); max-width: 56ch; }

/* terug-link */
.backlink { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color .2s; }
.backlink:hover { color: var(--ember); }

/* ---- Blog-index: post-grid ---- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r);
  padding: 30px 28px; text-decoration: none; color: inherit;
  transition: transform .4s var(--ease), box-shadow .4s, background .4s;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); background: var(--float); }
.post-card .cat { font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ember); }
.post-card h2 { font-size: clamp(20px,2.2vw,26px); line-height: 1.1; }
.post-card p { color: var(--muted); font-size: 15.5px; }
.post-card .read { color: var(--ink); font-weight: 600; font-size: 14.5px; margin-top: auto; padding-top: 8px; }
.post-card.soon { opacity: 0.6; pointer-events: none; }
.post-card.soon .read { color: var(--faint); }
@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }

/* ---- Artikel ---- */
.article { max-width: 760px; margin-inline: auto; padding-bottom: clamp(60px,8vw,110px); }
.article .meta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; color: var(--faint); font-size: 14px; margin-bottom: 8px; }
.article .meta-row .cat { color: var(--ember); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 12.5px; }
.article-body { font-size: 17.5px; line-height: 1.72; color: #2a251e; }
.article-body > * + * { margin-top: 22px; }
.article-body h2 { font-family: "Clash Display", sans-serif; font-weight: 600; font-size: clamp(24px,3vw,34px); letter-spacing: -0.02em; margin-top: 48px; line-height: 1.1; }
.article-body h3 { font-family: "Clash Display", sans-serif; font-weight: 600; font-size: clamp(19px,2.2vw,23px); margin-top: 32px; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-top: 8px; }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--ember); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote {
  border-left: 3px solid var(--ember); padding: 4px 0 4px 22px; margin-left: 0;
  color: var(--ink); font-family: "Clash Display", sans-serif; font-weight: 500; font-size: clamp(20px,2.4vw,26px); line-height: 1.25;
}
.article-body table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.article-body th, .article-body td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.article-body th { font-family: "Space Grotesk"; font-weight: 600; color: var(--ink); }
.article-body td { color: var(--muted); }

/* artikel-CTA + interne-link-blok */
.article-cta {
  margin-top: 54px; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--r); padding: 30px 32px; text-align: center;
}
.article-cta h3 { font-family: "Clash Display"; font-weight: 600; font-size: clamp(21px,2.4vw,27px); margin-bottom: 10px; }
.article-cta p { color: var(--muted); margin-bottom: 20px; }

/* mini-FAQ in artikel (sluit aan op FAQPage-schema) */
.article-faq { margin-top: 50px; border-top: 1px solid var(--line); }
