/* Huisstijl /kennis — tokens en componenten overgenomen van de homepage (index.html) */
:root {
  --papier: #FAFAF7;
  --kaart: #FFFFFF;
  --inkt: #182420;
  --grijs: #5A665F;
  --groen: #0E6B47;
  --groen-diep: #0A5236;
  --groen-zweem: #EDF4F0;
  --lijn: #E3E7E2;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
body {
  font-family: var(--font);
  background: var(--papier);
  color: var(--inkt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 62rem; margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--groen); }
:focus-visible { outline: 2px solid var(--groen); outline-offset: 2px; border-radius: 2px; }

/* ---- Wordmark ---- */
.wordmark {
  display: inline-flex; align-items: baseline; gap: .15em;
  font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em;
  color: var(--inkt); text-decoration: none;
}
.wordmark svg { width: .62em; height: .62em; flex: none; align-self: center; margin-top: .2em; }
.slogan {
  font-family: var(--mono); font-size: .72rem; color: var(--grijs);
  letter-spacing: .02em; margin-top: .1rem;
}

/* ---- Header ---- */
header.site { padding: 1.5rem 0 0; }
header.site .wrap { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.header-cta {
  font-size: .9rem; font-weight: 600; text-decoration: none;
  color: var(--groen); white-space: nowrap; margin-top: .35rem;
}
.header-cta:hover { color: var(--groen-diep); }
@media (max-width: 40rem) { .header-cta { display: none; } }

.eyebrow {
  font-family: var(--mono); font-size: .75rem; text-transform: uppercase;
  letter-spacing: .09em; color: var(--groen); display: block; margin-bottom: 1rem;
}
.btn {
  display: inline-block; margin-top: 2rem;
  background: var(--groen); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 6px; border: none; cursor: pointer;
  font-family: var(--font);
  transition: background .15s ease;
}
.btn:hover { background: var(--groen-diep); }

/* ---- Artikel ---- */
main.artikel, main.kennis { padding: 3.5rem 0 4rem; }
.artikel .wrap, .kennis .wrap { max-width: 46rem; }
.terug {
  font-size: .9rem; font-weight: 600; text-decoration: none;
  display: inline-block; margin-bottom: 2rem;
}
h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.5rem);
  line-height: 1.15; letter-spacing: -0.025em; font-weight: 800;
  margin-bottom: 1.2rem;
}
.artikel h2 {
  font-size: 1.35rem; letter-spacing: -0.02em; line-height: 1.3;
  font-weight: 750; margin: 2.4rem 0 .9rem;
}
.artikel p { margin-bottom: 1.1rem; }
.artikel p, .artikel li { color: #333D38; font-size: 1rem; }
.artikel .intro { font-size: 1.1rem; color: var(--grijs); margin-bottom: 2rem; }

/* ---- CTA-blok onder artikel ---- */
.cta-kaart {
  background: var(--kaart); border: 1px solid var(--lijn); border-radius: 10px;
  padding: 2rem; margin-top: 3rem;
}
.cta-kaart h2 { font-size: 1.25rem; font-weight: 750; letter-spacing: -0.01em; margin: 0 0 .6rem; }
.cta-kaart p { color: var(--grijs); font-size: .95rem; max-width: 56ch; margin: 0; }
.cta-kaart .btn { margin-top: 1.4rem; }

/* ---- Kennis-overzicht ---- */
.artikel-lijst { list-style: none; margin-top: 2.5rem; }
.artikel-lijst li { border-top: 1px solid var(--lijn); padding: 1.6rem 0; }
.artikel-lijst li:last-child { border-bottom: 1px solid var(--lijn); }
.artikel-lijst h2 { font-size: 1.2rem; font-weight: 750; letter-spacing: -0.01em; line-height: 1.3; }
.artikel-lijst h2 a { color: var(--inkt); text-decoration: none; }
.artikel-lijst h2 a:hover { color: var(--groen-diep); text-decoration: underline; }
.artikel-lijst p { margin-top: .5rem; color: var(--grijs); font-size: .95rem; max-width: 60ch; }
.artikel-lijst .lees { display: inline-block; margin-top: .6rem; font-size: .9rem; font-weight: 600; text-decoration: none; }

/* ---- Footer ---- */
footer.site { border-top: 1px solid var(--lijn); padding: 2.5rem 0 3rem; margin-top: 4rem; }
footer.site .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: flex-start; }
footer.site .colofon { font-size: .8rem; color: var(--grijs); text-align: right; }
@media (max-width: 40rem) { footer.site .colofon { text-align: left; } }
