/**
 * Styling for legal / static text pages (content type: privacy_policy).
 * Used for "Algemene voorwaarden", "Privacy & cookies", etc.
 *
 * The theme sets the page title (h1) in the condensed Oswald display face.
 * On these long-form legal pages we want the headings to use the DLPA type
 * system (Archia, via the tokens from dlpa-canvas.css) and the brand blue.
 * The font and the --dlpa-* tokens come from the dlpa_canvas library, which
 * dlpa_legal depends on.
 */

.page-node-type-privacy-policy h1,
.page-node-type-privacy-policy h2,
.page-node-type-privacy-policy h3 {
  font-family: var(--dlpa-font);
  font-weight: var(--dlpa-font-weight-regular);
  color: var(--dlpa-blauw);
}

.page-node-type-privacy-policy h1 {
  letter-spacing: -0.5px;
}

/* Body copy in the DLPA style (Archia light), scoped to the text field so it
   doesn't affect header/footer paragraphs. */
.page-node-type-privacy-policy .text-formatted p {
  font-family: var(--dlpa-font);
  font-size: 13px;
  font-style: normal;
  font-weight: var(--dlpa-font-weight-light);
  line-height: 140%;
  letter-spacing: -0.13px;
}
