/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;600;700&display=swap');

:root {
  --brand: #d9933d;   /* oranje/gele rand */
  --panel: #5c859b;   /* blauw vlak */
  --ink: #eaf2f6;     /* tekst op blauw */
  --ink-soft: #d7e3ea;
  --edge: #000;
}

/* ---------- Basis ---------- */
body {
  background: #fff;
  color: #333;
  font-family: 'Lato', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* ---------- Shell ---------- */
.post-shell {
  width: 1200px;
  margin: 40px auto 80px;
  padding: 22px;
  background: var(--brand);
  border: 2px solid var(--edge);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.post-card {
  background: var(--panel);
  border: 2px solid var(--edge);
  border-radius: 8px;
  padding: 40px;
  color: var(--ink);
}

/* ---------- Titels ---------- */
.post-title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  margin: 6px 0 14px;
  letter-spacing: 0;
  text-transform: none !important;
}

/* ---------- Tekst ---------- */
.post-card .post-content {
  font-size: 25px;
  line-height: 1.2;
  max-width: none;
  font-weight: 300;
  letter-spacing: 0;
}

.post-card .post-content p,
.post-card .post-content ul,
.post-card .post-content li,
.post-card .post-content a,
.post-card .post-content strong {
  font-size: inherit;
  line-height: inherit;
}

.post-card .post-content p {
  margin: 12px 0 14px;
}

.post-card .post-content ul {
  margin: 12px 0 14px 24px;
}

.post-card .post-content li {
  margin-bottom: 6px;
}

/* Link opmaak in de tekst */
.post-card .post-content a {
  color: var(--brand); /* Oranje-gele kleur voor contrast op blauw */
  text-decoration: underline;
}

.post-card .post-content a:hover {
  text-decoration: none;
}

/* ---------- Headings binnen posts ---------- */
.post-card .post-content h2 {
  font-family: 'Lato', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.25;
  font-weight: 700;
  font-size: 28px;
  margin: 32px 0 8px; /* Iets meer ruimte boven nieuwe secties */
}

/* ---------- Terugknop Bovenaan ---------- */
.back-wrap {
  text-align: left;
  margin-bottom: 28px; /* Ruimte tussen de knop en de paginatitel */
}

.back {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  background: #fff;
  border: 2px solid #222;
  padding: 10px 16px;
  border-radius: 10px;
  transition: transform .08s ease, background .12s ease;
}

.back:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
}