:root {
  --ink: #101d2b;
  --blue: #123d78;
  --blue-dark: #08254d;
  --blue-soft: #dce8f2;
  --yellow: #f5cf38;
  --paper: #f7f4ec;
  --white: #fffefa;
  --line: #aab4bd;
  --muted: #5a6570;
  --serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--serif); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: min(1320px, calc(100% - 24px)); margin-inline: auto; }

.utility { background: var(--blue-dark); color: #dfe8f3; font-family: var(--sans); font-size: 11px; letter-spacing: 0; text-transform: uppercase; }
.utility .shell { min-height: 30px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.masthead { min-height: 112px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--ink); }
.brand { display: inline-flex; width: max-content; flex-direction: column; font-family: var(--serif); font-weight: 700; line-height: .78; }
.brand span:first-child { color: var(--blue); font-size: 42px; }
.brand span:last-child { margin-left: 22px; padding: 7px 8px 5px; background: var(--yellow); color: var(--ink); font-size: 16px; text-transform: lowercase; }
.masthead > p { margin: 0; text-align: center; color: var(--blue); font-size: 16px; line-height: 1.25; font-style: italic; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--ink); background: transparent; color: var(--ink); display: grid; place-items: center; cursor: pointer; }
.search-open { justify-self: end; }
.search-open span { width: 15px; height: 15px; border: 2px solid currentColor; border-radius: 50%; position: relative; }
.search-open span::after { content: ""; width: 7px; height: 2px; background: currentColor; position: absolute; right: -6px; bottom: -3px; transform: rotate(45deg); }
.nav { border-bottom: 3px solid var(--blue); background: var(--white); font-family: var(--sans); }
.nav-inner { display: flex; overflow-x: auto; scrollbar-width: thin; }
.nav a { flex: 0 0 auto; padding: 13px 24px 12px 0; margin-right: 24px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.nav a.active, .nav a:hover { color: var(--blue); box-shadow: inset 0 -5px 0 var(--yellow); }

.edition { min-height: 71px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--ink); font-family: var(--sans); }
.edition span { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.edition span:last-child { text-align: right; }
.edition h1 { margin: 0; font-size: 20px; font-weight: 400; font-style: italic; }
.lead-grid { display: grid; grid-template-columns: minmax(0, 1.85fr) minmax(300px, .9fr); gap: 28px; padding-block: 28px 36px; }
.lead-story { display: grid; grid-template-rows: auto 1fr; min-width: 0; }
.lead-photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--blue-soft); }
.lead-photo::after { content: "Hoofddossier"; position: absolute; left: 0; bottom: 0; padding: 8px 12px; background: var(--yellow); font: 700 10px var(--sans); text-transform: uppercase; }
.lead-photo img, .teaser-image img, .article-figure img { width: 100%; height: 100%; object-fit: cover; }
.lead-copy { padding: 20px 0 0; }
.kicker { color: var(--blue); font: 700 11px/1.3 var(--sans); text-transform: uppercase; }
.lead-copy h2 { max-width: 760px; margin: 7px 0 8px; font-size: clamp(34px, 4.2vw, 62px); line-height: .99; font-weight: 700; }
.lead-copy h2 a:hover, .teaser h3 a:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: .18em; text-underline-offset: .1em; }
.lead-copy > p { max-width: 720px; margin: 0 0 15px; font-size: 18px; color: #354251; }
.byline { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font: 11px var(--sans); text-transform: uppercase; }
.byline > * + *::before { content: "•"; margin-right: 16px; color: var(--yellow); }
.side-stories { border-left: 1px solid var(--ink); padding-left: 20px; min-width: 0; }
.column-label { margin-bottom: 15px; padding: 9px 10px; background: var(--blue); color: white; font: 700 11px var(--sans); text-transform: uppercase; }
.teaser { min-width: 0; }
.teaser-image { display: block; overflow: hidden; background: var(--blue-soft); aspect-ratio: 3 / 2; }
.teaser-image img { transition: transform .35s ease; }
.teaser:hover .teaser-image img { transform: scale(1.025); }
.teaser h3 { margin: 5px 0 5px; font-size: 24px; line-height: 1.05; }
.teaser p { margin: 0 0 10px; color: #44505c; font-size: 15px; }
.compact + .compact { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.compact h3 { font-size: 23px; }
.compact p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

.briefing { border-block: 1px solid var(--ink); background: var(--yellow); }
.briefing-grid { min-height: 220px; display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 56px; align-items: center; }
.section-no { font: 700 11px var(--sans); }
.eyebrow { margin: 2px 0 10px; font: 700 11px var(--sans); text-transform: uppercase; }
.briefing h2 { margin: 0; font-size: 35px; line-height: 1.02; }
.briefing-grid > p { max-width: 430px; font-size: 18px; }
.text-link { align-self: end; margin-bottom: 33px; border-bottom: 2px solid var(--ink); font: 700 12px var(--sans); text-transform: uppercase; }
.text-link span { margin-left: 10px; }
.latest { padding-block: 60px 72px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: end; padding-bottom: 18px; border-bottom: 1px solid var(--ink); }
.section-heading h2 { margin: 0; font-size: 42px; line-height: 1; }
.latest-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-top: 28px; }
.latest-card { display: grid; grid-template-columns: 1.15fr 1fr; gap: 18px; align-items: start; }
.latest-card h3 { font-size: 27px; }
.latest-card .teaser-copy { padding-top: 5px; }
.latest-card p { font-size: 14px; }
.latest-card .byline { display: block; }
.latest-card .byline > * { display: block; margin-bottom: 4px; }
.latest-card .byline > *::before { display: none; }
.dossiers { padding-block: 52px 65px; background: var(--blue-dark); color: white; }
.section-heading.inverse { border-color: #8294aa; }
.section-heading.inverse .eyebrow, .section-heading.inverse .section-no { color: var(--yellow); }
.dossier-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #8294aa; border-right: 0; margin-top: 28px; }
.dossier-grid a { min-height: 245px; padding: 24px; border-right: 1px solid #8294aa; display: flex; flex-direction: column; }
.dossier-grid a:hover { background: #11366a; }
.dossier-grid span { color: var(--yellow); font: 700 11px var(--sans); }
.dossier-grid h3 { margin: 28px 0 10px; font-size: 28px; line-height: 1.05; }
.dossier-grid p { margin: 0; color: #d9e2ed; font-size: 15px; }
.dossier-grid strong { margin-top: auto; color: var(--yellow); font: 700 11px var(--sans); text-transform: uppercase; }

.article-header { max-width: 920px; padding-block: 58px 30px; text-align: center; }
.article-header h1 { max-width: 900px; margin: 10px auto 16px; font-size: clamp(40px, 6vw, 72px); line-height: .98; }
.article-header > p { max-width: 740px; margin: 0 auto 20px; color: #405063; font-size: 20px; }
.article-header .byline { justify-content: center; }
.article-figure { margin-bottom: 40px; }
.article-figure img { aspect-ratio: 16 / 8.2; }
.article-figure figcaption { padding-top: 7px; color: var(--muted); font: 11px var(--sans); }
.article-layout { display: grid; grid-template-columns: 190px minmax(0, 680px); justify-content: center; gap: 58px; align-items: start; padding-bottom: 70px; }
.article-layout > aside { position: sticky; top: 18px; padding-top: 10px; border-top: 4px solid var(--yellow); font-family: var(--sans); }
.article-layout > aside span, .article-layout > aside p { display: block; margin: 0 0 8px; color: var(--muted); font-size: 10px; text-transform: uppercase; }
.article-layout > aside a { color: var(--blue); font-size: 13px; font-weight: 700; }
.article-body { min-width: 0; font-size: 18px; }
.article-body p { margin: 0 0 1.15em; }
.article-body .lead { font-size: 23px; line-height: 1.45; }
.article-body h2 { margin: 2em 0 .55em; padding-top: .35em; border-top: 1px solid var(--ink); font-size: 34px; line-height: 1.1; }
.article-body h3 { margin: 1.55em 0 .45em; color: var(--blue); font-size: 25px; line-height: 1.15; }
.article-body h4 { margin: 1.4em 0 .45em; font: 700 13px var(--sans); text-transform: uppercase; }
.article-body ul, .article-body ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article-body li { margin-bottom: .45em; padding-left: .3em; }
.article-body li::marker { color: var(--blue); font-weight: 700; }
.read-next { padding-block: 55px 70px; border-top: 1px solid var(--ink); background: var(--white); }
.read-next h2 { margin: 2px 0 0; font-size: 38px; }

.category-header { display: grid; grid-template-columns: 170px minmax(0, 1fr); column-gap: 40px; padding-block: 56px 34px; border-bottom: 4px solid var(--blue); }
.category-header .section-no { grid-row: 1 / 3; padding-top: 15px; color: var(--blue); text-transform: uppercase; }
.category-header h1 { margin: 0; font-size: clamp(40px, 6vw, 74px); line-height: 1; }
.category-header p { max-width: 680px; margin: 13px 0 0; font-size: 19px; }
.category-list { padding-block: 12px 72px; }
.category-row { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding-block: 30px; border-bottom: 1px solid var(--line); }
.row-no { color: var(--blue); font: 700 11px var(--sans); }
.category-teaser { display: grid; grid-template-columns: minmax(270px, .8fr) 1.2fr; gap: 30px; }
.category-teaser h3 { font-size: 34px; }
.category-more { padding-block: 50px 65px; background: var(--yellow); }
.category-more h2 { margin: 0 0 25px; font-size: 35px; }
.dossier-links { display: grid; grid-template-columns: repeat(2, 1fr); border-block: 1px solid var(--ink); }
.dossier-links a { display: flex; justify-content: space-between; padding: 18px 5px; font: 700 14px var(--sans); }
.dossier-links a + a { border-left: 1px solid var(--ink); padding-left: 20px; }

.site-footer { padding-block: 46px; background: #071a34; color: #dbe5ef; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; }
.footer-brand span:first-child { color: white; }
.footer-grid p { max-width: 440px; color: #aebed0; font-size: 14px; }
.footer-grid h2 { margin: 0 0 14px; color: var(--yellow); font: 700 11px var(--sans); text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin-bottom: 10px; font: 700 13px var(--sans); }
.footer-grid a:hover { color: var(--yellow); }

.search-dialog { width: min(680px, calc(100% - 30px)); max-height: min(720px, calc(100vh - 30px)); border: 0; padding: 25px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 80px #00152f66; }
.search-dialog::backdrop { background: #071a34dd; }
.search-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 4px solid var(--yellow); padding-bottom: 13px; }
.search-head h2 { margin: 0; font-size: 30px; }
.search-close { font: 28px/1 var(--sans); }
.search-dialog label { display: block; margin: 22px 0 5px; font: 700 11px var(--sans); text-transform: uppercase; }
.search-dialog input { width: 100%; border: 1px solid var(--ink); border-radius: 0; padding: 13px; background: white; font-size: 18px; }
.search-results { margin-top: 20px; }
.search-result { display: block; padding: 14px 2px; border-top: 1px solid var(--line); }
.search-result span { color: var(--blue); font: 700 10px var(--sans); text-transform: uppercase; }
.search-result strong { display: block; margin: 3px 0; font-size: 20px; line-height: 1.1; }
.search-result small { color: var(--muted); font-family: var(--sans); }

@media (max-width: 900px) {
  .lead-grid { grid-template-columns: 1fr; }
  .side-stories { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; border: 0; padding: 0; }
  .column-label { grid-column: 1 / -1; margin: 0; }
  .compact + .compact { margin: 0; padding: 0; border: 0; }
  .briefing-grid { grid-template-columns: 1fr 1fr; gap: 30px; padding-block: 30px; }
  .text-link { grid-column: 2; margin: 0; justify-self: start; }
  .latest-card { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 150px minmax(0, 1fr); gap: 35px; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 24px, 1180px); }
  .utility .shell { min-height: 26px; }
  .utility span { display: none; }
  .utility .shell { justify-content: flex-end; }
  .masthead { min-height: 88px; grid-template-columns: 1fr auto; }
  .masthead > p { display: none; }
  .brand span:first-child { font-size: 34px; }
  .brand span:last-child { margin-left: 16px; font-size: 13px; }
  .nav a { margin-right: 17px; padding: 11px 0 10px; font-size: 10px; }
  .edition { grid-template-columns: 1fr auto; min-height: 56px; }
  .edition h1 { grid-row: 1; font-size: 18px; }
  .edition span:first-child { display: none; }
  .edition span:last-child { font-size: 9px; }
  .lead-grid { gap: 22px; padding-block: 18px 28px; }
  .lead-photo { aspect-ratio: 4 / 3; }
  .lead-copy h2 { font-size: 38px; }
  .lead-copy > p { font-size: 16px; }
  .side-stories { grid-template-columns: 1fr; }
  .compact { display: grid; grid-template-columns: 125px 1fr; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .compact + .compact { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .compact h3 { font-size: 20px; }
  .compact p, .compact .byline { display: none; }
  .briefing-grid { grid-template-columns: 1fr; gap: 12px; min-height: 0; }
  .briefing h2 { font-size: 31px; }
  .briefing-grid > p { margin: 4px 0; font-size: 16px; }
  .text-link { grid-column: auto; margin-top: 8px; }
  .latest { padding-block: 40px; }
  .section-heading { grid-template-columns: 1fr; gap: 8px; }
  .section-heading h2 { font-size: 34px; }
  .latest-grid { grid-template-columns: 1fr; }
  .latest-card { display: grid; grid-template-columns: 135px 1fr; gap: 12px; }
  .latest-card h3 { font-size: 21px; }
  .latest-card p, .latest-card .byline { display: none; }
  .dossier-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .dossier-grid a { min-height: 180px; border-bottom: 1px solid #8294aa; }
  .dossier-grid h3 { margin-top: 15px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .article-header { padding-block: 40px 20px; text-align: left; }
  .article-header h1 { font-size: 43px; margin-left: 0; }
  .article-header > p { font-size: 18px; }
  .article-header .byline { justify-content: flex-start; }
  .article-figure { width: 100%; margin-bottom: 25px; }
  .article-figure img { aspect-ratio: 4 / 3; }
  .article-figure figcaption { padding-inline: 12px; }
  .article-layout { display: block; }
  .article-layout > aside { position: static; margin-bottom: 22px; }
  .article-body { font-size: 17px; }
  .article-body .lead { font-size: 21px; }
  .article-body h2 { font-size: 30px; }
  .article-body h3 { font-size: 23px; }
  .category-header { display: block; padding-block: 38px 25px; }
  .category-header h1 { margin-top: 8px; font-size: 45px; }
  .category-row { grid-template-columns: 34px 1fr; gap: 8px; }
  .category-teaser { grid-template-columns: 1fr; gap: 14px; }
  .category-teaser h3 { font-size: 28px; }
  .dossier-links { grid-template-columns: 1fr; }
  .dossier-links a + a { border-left: 0; border-top: 1px solid var(--ink); padding-left: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
