:root {
  --kleur-tekst: #1a1a1a;
  --kleur-zacht: #555;
  --kleur-accent: #c8102e;
  --kleur-rand: #e6e6e6;
  --kleur-achtergrond: #ffffff;
  --kleur-blok: #f6f6f6;
  --max-breedte: 720px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--kleur-tekst);
  background: var(--kleur-achtergrond);
  line-height: 1.7;
  font-size: 1.125rem;
}

.site-header {
  width: 100%;
  margin: 0;
}

.site-header img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}

.figcaption {
  max-width: var(--max-breedte);
  margin: 0.5rem auto 0;
  padding: 0 1.25rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: var(--kleur-zacht);
}

main {
  max-width: var(--max-breedte);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

.kicker {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--kleur-accent);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 700;
}

.lead {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

h2 {
  font-size: clamp(1.3rem, 3.5vw, 1.6rem);
  line-height: 1.3;
  margin: 2.25rem 0 0.75rem;
  font-weight: 700;
}

p {
  margin: 0 0 1.25rem;
}

blockquote {
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.25rem;
  border-left: 4px solid var(--kleur-accent);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--kleur-tekst);
}

.bron {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--kleur-blok);
  border-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--kleur-zacht);
}

.bron a {
  color: var(--kleur-accent);
  text-decoration: underline;
  word-break: break-word;
}

.bron a:hover,
.bron a:focus {
  text-decoration: none;
}

@media (max-width: 600px) {
  body {
    font-size: 1.05rem;
  }
  .lead {
    font-size: 1.15rem;
  }
  blockquote {
    font-size: 1.2rem;
  }
}
