@font-face {
  font-family: Aeonik;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Aeonik-Regular.woff2") format("woff2");
}
@font-face {
  font-family: Aeonik;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Aeonik-Medium.woff2") format("woff2");
}
@font-face {
  font-family: Aeonik;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Aeonik-Bold.woff2") format("woff2");
}
@font-face {
  font-family: Aeonik;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Aeonik-Black.woff2") format("woff2");
}

:root {
  --ink: #1d1d1d;
  --muted: #6b7479;
  --paper: #fff;
  --paper-2: #f0f0f0;
  --line: #d1d5d6;
  --orange: #ff5500;
  --orange-deep: #e65a00;
  --navy: #0a2cca;
  --navy-2: #0823a2;
  --blue-lightest: #eeefff;
  --green: #0afb80;
  --white: #fff;
  --shadow: 0 3px 30px rgba(10, 44, 202, .08);
  --radius: 12px;
  --sans: Aeonik, Arial, sans-serif;
  --serif: Aeonik, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; min-height: 100%; }
body { overflow-x: clip; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
body::selection { background: #ffd0b8; }
.grain { display: none; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 100; }

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px max(28px, env(safe-area-inset-right)) 10px max(28px, env(safe-area-inset-left));
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 56px;
  width: auto;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 18px;
  white-space: nowrap;
}
.brand-mark svg { width: 22px; height: 25px; display: block; }
.brand-txt { font-size: 14px; }
.top-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.top-nav a, .top-nav button, .nav-contact {
  font: inherit;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}
.top-nav a:hover, .top-nav button:hover { background: var(--paper-2); }
.top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.nav-contact {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.nav-contact:hover { filter: brightness(1.05); color: #fff; }

#app { min-height: 70vh; }

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  padding: 40px 0 20px;
}
.hero-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 48px;
  align-items: end;
}
.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}
.kicker:before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}
h1, h2, h3 { font-family: var(--sans); font-weight: 700; letter-spacing: -.03em; line-height: 1.05; color: var(--navy); }
.hero h1 {
  font-size: clamp(34px, 6.4vw, 84px);
  margin: 12px 0 4px;
  max-width: 14em;
  color: var(--navy);
  line-height: 1.08;
  overflow-wrap: normal;
  hyphens: none;
  -webkit-hyphens: none;
}
.stand {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--navy);
  margin: 0 0 10px;
  max-width: 22ch;
  line-height: 1.15;
}
.lede { font-size: 18px; max-width: 62ch; color: var(--ink); line-height: 1.35; }
.after-lede { font-size: 18px; max-width: 62ch; color: var(--ink); line-height: 1.35; margin-top: 8px; }
.proof {
  list-style: disc;
  margin: 12px 0 0;
  padding: 0 0 0 1.15em;
  max-width: 62ch;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.32;
}
.proof li + li { margin-top: 2px; }
.proof li::marker { color: var(--orange); }
.proof-close {
  margin: 16px 0 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--navy);
  line-height: 1.15;
}
.places { color: var(--navy); font-size: 15px; font-weight: 500; margin: 14px 0 0; max-width: 62ch; line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 13px 18px;
  border-radius: 999px;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.dudok {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 42px);
  gap: 8px;
  transform: rotate(-8deg);
}
.dudok span {
  background: var(--orange);
  border-radius: 4px;
}
.dudok span:nth-child(1) { grid-area: 3 / 1 / 5 / 2; opacity: .4; }
.dudok span:nth-child(2) { grid-area: 2 / 2 / 5 / 3; }
.dudok span:nth-child(3) { grid-area: 1 / 3 / 5 / 4; opacity: .7; }
.dudok span:nth-child(4) { grid-area: 2 / 4 / 4 / 5; opacity: .35; }

.wrap { max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.section { padding-block: 64px; }
.section h2 { font-size: clamp(28px, 4vw, 46px); margin: 0 0 12px; }
.sub { color: var(--muted); max-width: 58ch; margin: 0 0 28px; }

.summary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.summary a {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  text-decoration: none;
  color: inherit;
  background: var(--blue-lightest);
  border-radius: var(--radius);
  padding: 18px 20px;
  min-height: 100%;
}
.summary a:hover { background: #e0e4ff; }
.sn {
  grid-row: 1 / 3;
  color: var(--orange);
  font-weight: 700;
  font-size: 16px;
  padding-top: 2px;
}
.st {
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
}
.sl { color: var(--ink); font-size: 15px; line-height: 1.45; }
.sl .kort-line,
.sl .b1-line,
.sl .programma-line { display: block; font-size: inherit; line-height: inherit; margin: 0; }

.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.topic {
  display: inline-flex;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
}
.topic:hover { background: var(--navy); color: #fff; }

.section-topics { padding-top: 0; }
.section-wins { padding-top: 0; }
.wins {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.wins a {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-height: 100%;
}
.wins a:hover { border-color: var(--navy); }
.wins .kort-line,
.wins .b1-line,
.wins .programma-line { display: block; margin: 0; font-size: 15px; line-height: 1.45; }

.lenses, .chapters, .plans, .facts, .glossary {
  display: grid;
  gap: 16px;
}
.lenses { grid-template-columns: repeat(3, 1fr); }
.chapters { grid-template-columns: repeat(2, 1fr); }
.card, .chapter, .plan, .lens, .term {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: block;
}
.chapter, .lens { transition: transform .2s ease, box-shadow .2s ease; }
.chapter:hover, .lens:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.nr {
  font-family: var(--sans);
  color: var(--orange);
  font-weight: 700;
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.chapter h3, .lens h3, .plan h3 { margin: 0 0 8px; font-size: 26px; }
.one { font-size: 16px; color: var(--muted); margin: 0; }

.depth-bar {
  position: sticky;
  top: var(--top-h, 62px);
  z-index: 30;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.depth {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.depth span { color: var(--muted); margin-right: 6px; font-size: 13px; }
.depth button {
  font: inherit;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}
.depth button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.chapter-hero {
  background: var(--navy);
  color: #fff;
  padding: 48px 0 56px;
}
.chapter-hero h1, .chapter-hero .lede { color: #fff; }
.chapter-hero .lede p { margin: 0; color: #fff; }
.chapter-hero .nr { color: var(--orange); }
.chapter-hero h1 {
  font-size: clamp(32px, 6vw, 68px);
  margin: 8px 0 16px;
  max-width: 14em;
  line-height: 1.08;
  overflow-wrap: break-word;
}
.back { color: #fff; text-decoration: none; font-size: 14px; }
.layer { display: none; }
.layer.show { display: block; }
.prose { font-size: 18px; max-width: 68ch; }
.prose p { margin: 0 0 16px; }
.intro-line { font-size: 18px; max-width: 68ch; margin: 0 0 20px; color: var(--ink); line-height: 1.55; }
.intro-line p { margin: 0; }
.intro-line .kort-line,
.intro-line .b1-line,
.intro-line .programma-line { color: var(--ink); font-size: 18px; line-height: 1.55; }
.plans { grid-template-columns: 1fr; margin-top: 20px; }
.plan { cursor: default; }
.plan .kort-line,
.plan .b1-line,
.plan .programma-line { margin: 0; color: var(--ink); font-size: 18px; line-height: 1.55; }
.punten { margin: 0; padding-left: 1.15em; max-width: 72ch; }
.punten li { margin: 0 0 14px; }
.punten p { margin: 0; }
.punten .kort-line,
.punten .b1-line,
.punten .programma-line { color: var(--ink); font-size: 18px; line-height: 1.55; }
.blok { margin-top: 36px; }
body[data-depth="programma"] .kort-line,
body[data-depth="programma"] .b1-line { display: none; }
body[data-depth="kort"] .b1-line { display: none; }
body[data-depth="kort"] .has-kort .programma-line,
body[data-depth="kort"] .programma-line.programma-only { display: none; }
body[data-depth="kort"] .programma-only { display: none; }
body[data-depth="begrijpelijk"] .kort-line,
body[data-depth="begrijpelijk"] .programma-line { display: none; }
body[data-depth="begrijpelijk"] .programma-only { display: none; }
a.plan { cursor: pointer; text-decoration: none; color: inherit; }
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #ffe4d4;
  color: var(--orange-deep);
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.original {
  background: var(--paper-2);
  border-left: 3px solid var(--orange);
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 15px;
}
.facts { grid-template-columns: repeat(3, 1fr); margin: 24px 0; }
.fact {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
}
.fact b { display: block; font-family: var(--sans); font-size: 34px; color: var(--orange); font-weight: 700; }
.achieved { margin-top: 36px; }
.villages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
}
.villages span {
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.section-spotlight { padding-top: 0; }

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  width: 100%;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #173046;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.spotlight img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}
.spotlight-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 36px;
}
.spotlight-copy .kicker { color: #ffd0b8; }
.spotlight-copy .kicker:before { background: var(--orange); }
.spotlight-copy strong {
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.03em;
  line-height: 1.05;
  font-weight: 700;
}
.spotlight-lede {
  max-width: 42ch;
  color: #dce4e9;
  font-size: 17px;
  line-height: 1.45;
}
.spotlight-cta {
  display: inline-flex;
  margin-top: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 999px;
}
.spotlight:hover .spotlight-cta,
.spotlight:focus-visible .spotlight-cta { filter: brightness(1.06); }
.spotlight:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.plan-visual {
  display: inline-flex;
  margin-top: 14px;
  font: inherit;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
}
.plan-visual:hover { filter: brightness(1.06); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hetkanwel {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(7, 25, 40, .72);
  display: grid;
  place-items: center;
  padding: 20px;
}
.hetkanwel[hidden] { display: none !important; }
.hetkanwel-panel {
  position: relative;
  width: min(1480px, 100%);
  height: min(860px, calc(100dvh - 40px));
  background: #173046;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}
.hetkanwel-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #173046;
}
.hetkanwel-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  min-height: 44px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
}
.hetkanwel-close:hover { background: var(--paper-2); }
body.hetkanwel-open { overflow: hidden; }

.search {
  position: fixed;
  inset: 0;
  background: rgba(12,18,32,.55);
  z-index: 60;
  display: grid;
  place-items: start center;
  padding: 12vh 20px 20px;
}
.search[hidden] { display: none !important; }
.search-panel {
  width: min(720px, 100%);
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.search-bar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}
.search-bar input {
  flex: 1;
  font: inherit;
  font-size: 18px;
  border: 0;
  outline: none;
}
.search-bar button {
  font: inherit;
  border: 0;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}
.search-results { max-height: 62vh; overflow: auto; padding: 8px 8px 12px; }
.search-group { padding: 4px 0 8px; }
.search-group h3 {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: 0;
  padding: 10px 12px 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.search-group h3 span {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  color: var(--muted);
}
.search-more {
  display: block;
  width: calc(100% - 24px);
  margin: 4px 12px 0;
  padding: 10px 0 6px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
p.search-more {
  cursor: default;
  color: var(--muted);
  width: auto;
}
.search-group h3:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  margin-right: 8px;
  vertical-align: middle;
  background: var(--orange);
}
.search-results a {
  display: block;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}
.search-results a:hover { background: var(--paper); }
.search-results small { color: var(--muted); }

.glossary { grid-template-columns: 1fr 1fr; }
.term h3 { margin: 0 0 8px; font-size: 22px; }
.term p { margin: 0; color: var(--muted); }
.tip {
  border-bottom: 1.5px dotted var(--orange);
  cursor: help;
}

.cand-preview,
.cand-grid {
  display: grid;
  gap: 16px;
}
.cand-preview { grid-template-columns: repeat(4, 1fr); }
.cand-grid { grid-template-columns: repeat(5, 1fr); }
.cand-grid .cand-lead,
.cand-preview .cand-lead {
  grid-column: span 2;
  position: relative;
  isolation: isolate;
  align-self: stretch;
  height: 100%;
  background: var(--navy);
}
.cand-lead .cand-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  z-index: 0;
  object-position: 20% 32%;
}
.cand-lead::before { content: none; }
.cand-lead .cand-copy {
  position: absolute;
  inset: auto 0 0 38%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 56px 20px 20px;
  background: linear-gradient(to top, rgba(6, 14, 42, .92) 0%, rgba(6, 14, 42, .78) 52%, transparent);
  color: #fff;
}
.cand-lead h3,
.cand-lead .cand-place,
.cand-lead .cand-role {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}
.cand-lead .cand-li { color: #fff; }
.cand {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-margin-top: calc(var(--top-h, 62px) + 12px);
}
.cand-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: var(--navy);
}
img.cand-photo {
  filter: grayscale(1) contrast(1.22) brightness(0.96);
  transition: filter .35s ease;
}
@media (hover: hover) {
  .cand:hover img.cand-photo { filter: none; }
}
.cand:focus-within img.cand-photo { filter: none; }
.cand-photo-fallback {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: .04em;
}
.cand-copy { padding: 14px 16px 18px; }
.cand-nr {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
}
.cand h3 {
  margin: 4px 0 4px;
  font-size: 18px;
  color: var(--navy);
}
.cand-lead h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  color: #fff;
}
.cand-lead .cand-nr { font-size: 15px; }
.cand-lead .cand-place, .cand-lead .cand-role {
  margin: 0;
  font-size: 14px;
  color: #fff;
}
.cand-lead .cand-role { font-size: 16px; font-weight: 500; }
.cand-place, .cand-role {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.cand-role { color: var(--navy); font-weight: 500; margin-top: 4px; }
.cand-li {
  display: inline-flex;
  margin-top: 10px;
  color: #0a66c2;
  width: 22px;
  height: 22px;
}
.cand-li svg { display: block; width: 100%; height: 100%; }
.cand-li:hover { color: var(--navy); }
.cand-rest .cand-li {
  margin-top: 0;
  margin-left: 8px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.cand-rest {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.cand-rest li {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  min-width: 0;
}
.cand-rest .cand-nr { min-width: 1.6em; }
.cand-rest li > span:last-child {
  flex: 1;
  min-width: 0;
  overflow-wrap: break-word;
}

.contact-form {
  max-width: 640px;
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--navy);
  outline-offset: 1px;
  border-color: var(--navy);
}
.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.contact-form .btn[disabled] { opacity: .55; cursor: wait; }
.contact-status { margin: 0; font-size: 15px; }
.contact-status.is-ok { color: var(--navy); }
.contact-status.is-err { color: var(--orange-deep); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.news-grid-home {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 20px;
}
.news-year { margin-bottom: 28px; }
.news-year h2 { margin: 0 0 10px; font-size: 20px; }
.news-more { margin: 4px 0 0; }
.news-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 0;
}
.news-card:hover { box-shadow: var(--shadow); }
.news-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy);
}
.news-card-img-empty { background: var(--blue-lightest); }
.news-card-copy { padding: 8px 10px 10px; }
.news-card time {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 4px;
}
.news-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
}
.news-kicker {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
}
.news-article { padding-top: 28px; }
.news-highlight {
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
}
.news-highlight img {
  display: block;
  width: 100%;
  max-height: min(520px, 70vh);
  object-fit: cover;
}
.news-body {
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.6;
}
.news-body.is-loading { color: var(--muted); }
.news-body p { margin: 0 0 16px; }
.news-body p:last-child { margin-bottom: 0; }
.news-body blockquote {
  margin: 8px 2.2em 24px;
}
.news-body blockquote p { margin: 0; }
.news-body img {
  max-width: 100%;
  height: auto;
  margin: 8px 0 20px;
  border-radius: 8px;
}
.news-body img.alignleft,
.news-body img.alignright {
  display: block;
  max-width: min(225px, 42%);
}
.news-body img.alignleft {
  float: left;
  margin: 4px 20px 12px 0;
}
.news-body img.alignright {
  float: right;
  margin: 4px 0 12px 20px;
}
.news-body img.aligncenter {
  display: block;
  margin: 8px auto 20px;
}
.news-body p:has(img.alignleft),
.news-body p:has(img.alignright) {
  margin: 0;
}
.news-body::after {
  content: "";
  display: table;
  clear: both;
}
.news-facts {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 28px;
  row-gap: 4px;
  margin: 8px 0 20px;
}
.news-facts dt {
  margin: 0;
  font-weight: 600;
}
.news-facts dd {
  margin: 0;
}
.news-media {
  margin: 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.news-media video {
  display: block;
  width: 100%;
  max-height: 70vh;
}
.news-media:has(iframe) {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.news-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.foot {
  padding: 28px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.foot a { color: inherit; }

@media (min-width: 861px) {
  .proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    row-gap: 4px;
    max-width: 920px;
  }
  .proof li + li { margin-top: 0; }
}

@media (max-width: 860px) {
  .hero-grid, .lenses, .chapters, .plans, .facts, .glossary, .summary, .wins, .contact-row { grid-template-columns: 1fr; }
  .cand-preview, .cand-grid, .cand-rest { grid-template-columns: 1fr 1fr; }
  .news-grid, .news-grid-home { grid-template-columns: repeat(3, 1fr); }
  .cand-grid .cand-lead,
  .cand-preview .cand-lead {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
  .cand-lead .cand-photo { object-position: center 22%; }
  .cand-lead .cand-copy {
    inset: auto 0 0 0;
    justify-content: flex-end;
    padding: 52px 16px 16px;
    background: linear-gradient(to top, rgba(6, 14, 42, .92) 0%, rgba(6, 14, 42, .72) 42%, transparent);
  }
  .cand-lead h3 { font-size: clamp(20px, 5.6vw, 26px); }
  .cand-lead .cand-role { font-size: 15px; }
  .cand h3 { overflow-wrap: break-word; }
  .top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
    gap: 4px 12px;
  }
  .brand { grid-area: brand; }
  .top-nav {
    grid-area: nav;
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2px 4px;
  }
  .top-actions { grid-area: actions; }
  .hero { padding: 36px 0 12px; }
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
  .top {
    padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left));
    gap: 8px;
  }
  .top-nav a, .top-nav button, .nav-contact {
    padding: 8px 10px;
    font-size: 14px;
    min-height: 40px;
  }
  .dudok { display: none; }
  .brand-txt { display: none; }
  .brand-logo { height: 48px; }
  h1, h2, h3 { line-height: 1.18; letter-spacing: -.02em; }
  .hero h1 { font-size: clamp(30px, 8.4vw, 44px); max-width: none; margin: 10px 0 6px; line-height: 1.2; overflow-wrap: break-word; }
  .lede, .after-lede, .proof { font-size: 16px; }
  .proof-close { font-size: clamp(20px, 5.5vw, 28px); }
  .places { font-size: 14px; }
  .section { padding-block: 40px; }
  .section h2 { font-size: clamp(26px, 7vw, 36px); }
  .chapter-hero { padding: 28px 0 32px; }
  .chapter-hero h1 { font-size: clamp(30px, 9vw, 44px); max-width: none; line-height: 1.18; }
  .prose,
  .intro-line,
  .plan .kort-line,
  .plan .b1-line,
  .plan .programma-line { font-size: 17px; }
  .fact { padding: 16px 18px; }
  .fact b { font-size: 26px; }
  .summary a { padding: 16px; }
  .spotlight { grid-template-columns: 1fr; }
  .spotlight img { min-height: 180px; max-height: 220px; }
  .spotlight-copy { padding: 24px 22px 28px; }
  .hetkanwel { padding: 8px; }
  .hetkanwel-panel {
    height: calc(100dvh - 16px);
    border-radius: 12px;
  }
  .search { padding: calc(var(--top-h, 72px) + 8px) 12px 12px; }
  .search-bar input { font-size: 16px; }
  .foot {
    padding: 20px 16px 24px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 640px) {
  .top {
    gap: 2px 12px;
    padding: 8px max(16px, env(safe-area-inset-right)) 4px max(16px, env(safe-area-inset-left));
  }
  .brand { min-height: 36px; }
  .brand-logo { height: 44px; }
  .top-nav a, .top-nav button { padding: 6px 8px; min-height: 36px; font-size: 13px; }
  .nav-contact { padding: 8px 14px; min-height: 36px; }
  .depth { gap: 6px; }
  .depth span { display: block; width: 100%; margin: 0 0 4px; }
  .depth button { padding: 7px 11px; font-size: 14px; }
  .cand-preview, .cand-grid, .cand-rest { grid-template-columns: 1fr; }
  .news-grid, .news-grid-home { grid-template-columns: 1fr 1fr; }
  .cand-grid .cand-lead,
  .cand-preview .cand-lead {
    grid-column: auto;
    aspect-ratio: 1 / 1;
  }
  .cand-copy { padding: 12px 14px 14px; }
  .cand h3 { font-size: 16px; }
  .chapter h3, .lens h3, .plan h3 { font-size: 22px; }
  .places { font-size: 13px; }
}
