/* ─── Rapport als dashboard ─────────────────── */
.rp__report { max-width: 1160px; }
.rd__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; padding-bottom: 28px; }
.rd__head > div { max-width: 800px; }
.rd__head .rpt__label { display: block; margin-bottom: 14px; }
.rd__head h1 { font-family: var(--font-display); font-weight: 300; font-size: clamp(28px, 2.9vw, 42px); line-height: 1.12; letter-spacing: -.025em; color: var(--navy); }
.rd__sub { margin-top: 14px; font-size: 15.5px; line-height: 1.55; color: var(--grey); max-width: 62ch; }

.rd__kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 8px; }
.rd__kpi { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px; border-radius: 18px; background: #fff; border: 1px solid rgba(16,26,48,.08); }
.rd__kpi b { font-family: "Newsreader", Georgia, serif; font-weight: 300; font-size: clamp(30px, 2.8vw, 42px); line-height: 1; letter-spacing: -.02em; color: var(--navy); font-variant-numeric: tabular-nums; }
.rd__kpi b small { font-family: var(--font-sans); font-size: 13px; font-weight: 400; color: var(--grey); letter-spacing: 0; }
.rd__hint { font-size: 12.5px; color: var(--grey); }
.rd__kpi--navy { background: var(--navy); border-color: var(--navy); }
.rd__kpi--navy .rpt__label { color: var(--gold); } .rd__kpi--navy b { color: var(--ivory); } .rd__kpi--navy .rd__hint { color: rgba(244,239,231,.65); }

.rd__row { display: grid; gap: 14px; margin-top: 14px; }
.rd__row--2-1 { grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); }
.rd__row--1-1 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.rd__card { padding: 24px 26px; border-radius: 18px; background: #fff; border: 1px solid rgba(16,26,48,.08); min-width: 0; }
.rd__card-head { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.rd__card-head h2 { font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -.015em; color: var(--navy); }
.rd__card-head p { margin-top: 4px; font-size: 13px; line-height: 1.5; color: var(--grey); }
.rd__card .rpt__facts { margin-top: 8px; }
.rd__card .rpt__maandag { font-size: 17px; }
.rd__card.rpt__mt ol { padding-left: 1.3em; display: flex; flex-direction: column; gap: 10px; font-size: 15px; line-height: 1.5; color: var(--navy); }
.rd__card.rpt__mt li::marker { color: var(--gold-deep); font-weight: 500; }

/* grafieken */
.ch { position: relative; }
.ch svg { width: 100%; height: auto; display: block; overflow: visible; }
.ch--small svg { max-width: 360px; }
.ch-tick { font: 11px var(--font-sans); fill: #8B8478; }
.ch-cat { font: 500 12.5px var(--font-sans); fill: var(--navy); }
.ch-val { font: 500 11.5px var(--font-sans); fill: var(--navy); font-variant-numeric: tabular-nums; }
.ch-val--gold { fill: var(--gold-deep); }
.ch-label { font: 500 12px var(--font-sans); fill: var(--navy); }
.ch-label--gold { fill: var(--gold-deep); }
.ch-bar { transition: opacity .2s; } .ch svg:hover .ch-bar { opacity: .85; } .ch-bar:hover { opacity: 1 !important; }
.ch-draw { stroke-dasharray: 1; stroke-dashoffset: 1; transition: stroke-dashoffset 1.6s var(--ease-out); }
.ch-draw.is-in { stroke-dashoffset: 0; }
.ch-legend { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; font-size: 12px; color: var(--grey); }
.ch-legend li { display: inline-flex; align-items: center; gap: 8px; }
.ch-legend i { width: 14px; height: 4px; border-radius: 2px; display: inline-block; }
.ch-legend i.dash { height: 0; border-top: 2px dashed; border-radius: 0; }
.ch-tip { position: absolute; z-index: 3; pointer-events: none; opacity: 0; transition: opacity .15s; background: var(--navy); color: var(--ivory); border-radius: 10px; padding: 10px 12px; font-size: 12px; line-height: 1.5; box-shadow: 0 10px 30px -12px rgba(16,26,48,.5); }
.ch-tip b { display: block; color: var(--gold); font-weight: 500; margin-bottom: 2px; } .ch-tip span { display: block; }

/* knelpunten, compact */
.rd__knel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.rd__k-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.rd__k-top .rpt__num { font-size: 28px; }
.rd__k h3 { font-family: var(--font-display); font-weight: 500; font-size: 17px; line-height: 1.3; letter-spacing: -.015em; color: var(--navy); margin-bottom: 8px; }
.rd__k-text { font-size: 14px; line-height: 1.55; color: #2A2F3E; }
.rd__k-how { margin-top: 12px; font-size: 13px; line-height: 1.5; color: var(--navy); }
.rd__k-how span { display: inline-block; margin-right: 8px; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.rp__report .rpt__plan { margin-top: 14px; }
.rp__report .rpt__cta { margin-top: 40px; }

@media (max-width: 980px) { .rd__kpis { grid-template-columns: 1fr 1fr; } .rd__row--2-1, .rd__row--1-1, .rd__knel { grid-template-columns: 1fr; } .rd__head { flex-direction: column; } }

/* pdf */
body.is-print .rd__kpis { grid-template-columns: repeat(4, 1fr) !important; }
body.is-print .rd__row--2-1 { grid-template-columns: 2fr 1fr !important; }
body.is-print .rd__row--1-1 { grid-template-columns: 1fr 1fr !important; }
body.is-print .rd__knel { grid-template-columns: repeat(3, 1fr) !important; }
body.is-print .rd__card, body.is-print .rd__kpi { break-inside: avoid; }
body.is-print .ch-draw { stroke-dashoffset: 0; transition: none; }
body.is-print .rd__kpi--navy { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
