/* ============ Shared kennisbank article styles ============ */
:root {
  --navy: #0F1948;
  --navy-deep: #0F1948;
  --navy-soft: #0F1948;
  --ink: #0F1948;
  --ink-2: #0F1948;
  --ink-3: #8A92AE;
  --ink-mute: #8A92AE;
  --bg: #FFFFFF;
  --bg-alt: #DFEAFA;
  --bg-card: #F4F8FE;
  --line: #DFEAFA;
  --line-strong: #8A92AE;
  --line-dark: rgba(255,255,255,0.12);
  --line-dark-strong: rgba(255,255,255,0.22);
  --text-on-dark: #FFFFFF;
  --text-on-dark-dim: #DFEAFA;
  --accent: #0F1948;
  --accent-2: #6D94E2;
  --accent-soft: #DFEAFA;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
  html { background: #0F1948; } /* overscroll-navy */
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .wrap-narrow { padding: 0 20px; }
}

.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute);
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); box-shadow: 0 10px 24px -10px var(--accent); }
.btn-on-dark-primary { background: #fff; color: var(--navy); }
.btn-on-dark-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(255,255,255,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--ink-3); }
.btn .arrow { display: inline-block; transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ NAV ============ */
.nav-pill-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 50;
  pointer-events: none;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px -12px rgba(8, 16, 38, 0.4);
  transition: box-shadow .25s ease;
}
.nav-pill-wrap.scrolled { box-shadow: 0 12px 30px -14px rgba(8, 16, 38, 0.5); }
.nav-pill {
  pointer-events: auto;
  padding: 14px 28px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  transition: padding .25s ease;
}
.nav-pill-wrap.scrolled .nav-pill {
  padding: 9px 32px;
}
.nav-pill .logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-pill .logo-img { height: 42px; width: auto; display: block; transition: height .25s ease; }
.nav-pill-wrap.scrolled .logo-img { height: 34px; }
.nav-pill .nav-links {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 500;
}
.nav-pill .nav-links > a,
.nav-pill .nav-links > .has-drop > a {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.82);
  padding: 8px 11px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  cursor: pointer;
}
.nav-pill .nav-links a:hover,
.nav-pill .nav-links .has-drop:hover > a {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-pill .nav-links > a.active,
.nav-pill .nav-links .has-drop.active > a {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.nav-pill .nav-links svg.chev { width: 11px; height: 11px; opacity: 0.75; transition: transform .2s; }
.nav-pill .nav-links .has-drop:hover svg.chev { transform: rotate(180deg); }
@media (max-width: 980px) { .nav-pill .nav-links { display: none; } }

.nav-pill .has-drop { position: relative; }
.nav-pill .nav-drop {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  min-width: 280px;
  box-shadow: 0 18px 40px -14px rgba(8,16,38,.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 100;
}
.nav-pill .has-drop:hover .nav-drop,
.nav-pill .has-drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-pill .nav-drop a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  transition: background .15s, color .15s;
}
.nav-pill .nav-drop a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-pill .nav-drop a small {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-mute);
  line-height: 1.4;
}
.nav-pill .nav-drop a:hover small { color: var(--ink-3); }

.nav-pill .nav-right {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-pill .lang-switch {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 3px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.nav-pill .lang-switch button {
  background: transparent; border: 0; color: rgba(255,255,255,0.6);
  padding: 4px 10px; border-radius: 6px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.nav-pill .lang-switch button.active {
  background: #fff; color: var(--ink);
}
.nav-pill .lang-switch button:not(.active):hover { color: #fff; }
.nav-pill .nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-2);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px; font-weight: 600;
  transition: filter .15s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.nav-pill .nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px var(--accent-2);
}
.nav-pill .nav-cta svg { width: 14px; height: 14px; }
@media (max-width: 560px) {
  .nav-pill .nav-cta span.cta-label { display: none; }
  .nav-pill .nav-cta { padding: 10px 12px; }
  .nav-pill .lang-switch { display: none; }
  .nav-pill { padding: 12px 18px; }
  .nav-pill-wrap.scrolled .nav-pill { padding: 8px 18px; }
}

/* ============ Article hero ============ */
.article-hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 88% 18%, rgba(109,148,226,0.18), transparent 60%),
    radial-gradient(700px 400px at 8% 84%, rgba(109,148,226,0.10), transparent 60%);
  pointer-events: none;
}
.article-hero .wrap-narrow { position: relative; z-index: 1; }

.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: var(--text-on-dark-dim);
  margin-bottom: 28px;
}
.crumbs a {
  color: var(--text-on-dark-dim);
  transition: color .15s;
}
.crumbs a:hover { color: #fff; }
.crumbs .sep { opacity: 0.5; }
.crumbs .here { color: var(--accent-2); font-weight: 600; }

.article-tag {
  display: inline-block;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-2);
  padding: 6px 12px; border: 1px solid rgba(109,148,226,0.4);
  border-radius: 100px;
  background: rgba(109,148,226,0.08);
  margin-bottom: 22px;
}

.article-hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 22px;
  text-wrap: balance;
}
.article-hero h1 .accent { color: #fff; }

.article-hero .lede {
  font-size: 19px; line-height: 1.55;
  color: var(--text-on-dark-dim);
  margin: 0 0 32px;
  max-width: 640px;
  text-wrap: pretty;
}

.article-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 12.5px;
  color: var(--text-on-dark-dim);
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600;
  flex-wrap: wrap;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-on-dark-dim); }

/* ============ Article body ============ */
.article-body {
  padding: 72px 0 80px;
  background: #fff;
}
.article-body .wrap-narrow > * + * { margin-top: 1.1em; }

.article-body p {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--ink-2);
  text-wrap: pretty;
  margin: 0;
}
.article-body p.lead-para {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 8px;
}
.article-body h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.22;
  color: var(--ink);
  margin: 48px 0 12px;
  text-wrap: balance;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.3;
  color: var(--ink);
  margin: 32px 0 8px;
}
.article-body ul, .article-body ol {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  padding-left: 22px;
  margin: 0;
}
.article-body li { margin: 8px 0; padding-left: 4px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body a:not(.btn) {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-2);
  transition: background .15s, border-color .15s;
}
.article-body a:not(.btn):hover {
  background: var(--accent-soft);
  border-bottom-color: var(--accent);
}

.article-body blockquote {
  margin: 36px 0;
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 3px solid var(--accent-2);
  border-radius: 0 12px 12px 0;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
  text-wrap: pretty;
}
.article-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

.article-body .callout {
  margin: 36px 0;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.article-body .callout h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 10px;
}
.article-body .callout p { font-size: 16px; line-height: 1.6; }

.article-body figure {
  margin: 40px 0;
}
.article-body figure .figure-art {
  background: linear-gradient(135deg, #0F1948 0%, #0F1948 60%, #0F1948 100%);
  border-radius: 14px;
  padding: 48px 32px;
  position: relative; overflow: hidden;
}
.article-body figure .figure-art::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(380px 240px at 80% 25%, rgba(109,148,226,0.28), transparent 60%),
    radial-gradient(280px 220px at 20% 80%, rgba(109,148,226,0.14), transparent 60%);
}
.article-body figure svg { display: block; margin: 0 auto; max-width: 100%; height: auto; position: relative; z-index: 1; }
.article-body figure figcaption {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
  text-align: center;
}

.article-body .key-points {
  margin: 36px 0;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.article-body .key-points h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px;
}
.article-body .key-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-body .key-points li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
}
.article-body .key-points li::before {
  content: '';
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent-2);
  border-bottom: 2px solid var(--accent-2);
  transform: rotate(-45deg);
}

/* ============ Author / share ============ */
.article-foot {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.author-chip {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--ink-3);
}
.author-chip .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #0F1948 0%, #6D94E2 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px;
}
.author-chip .meta strong { display: block; color: var(--ink); font-size: 14px; font-weight: 600; }
.share-row {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
}
.share-row .lbl { margin-right: 4px; }
.share-row a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--ink-3);
  transition: background .15s, color .15s, border-color .15s;
}
.share-row a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.share-row a svg { width: 14px; height: 14px; }

/* ============ Related ============ */
.related {
  background: #F5F8FC;
  padding: 72px 0 80px;
  border-top: 1px solid var(--line);
}
.related .section-head { margin-bottom: 32px; }
.related .section-head h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 8px 0 0;
  color: var(--ink);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.post-card:hover {
  box-shadow: 0 18px 40px -18px rgba(15,25,72,.18);
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.post-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.post-card__media-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.post-card__media-art svg { width: 56%; height: auto; max-width: 200px; opacity: 0.94; }
.media--analytics { background: linear-gradient(135deg, #0F1948 0%, #0F1948 100%); }
.media--analytics::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(380px 240px at 75% 25%, rgba(109,148,226,0.28), transparent 60%);
}
.media--iot { background: linear-gradient(135deg, #0F1948 0%, #1A3D7C 100%); }
.media--iot::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(380px 240px at 25% 75%, rgba(109,148,226,0.22), transparent 60%);
}
.media--succes { background: linear-gradient(135deg, #0F1948 0%, #0F1948 50%, #0F1948 100%); }
.media--succes::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(400px 240px at 70% 30%, rgba(109,148,226,0.3), transparent 60%),
    radial-gradient(280px 200px at 20% 80%, rgba(255,255,255,0.06), transparent 60%);
}
.post-card__tag {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.post-card__tag--succes {
  background: rgba(255,255,255,0.95);
  color: var(--navy-deep);
  border-color: transparent;
}
.post-card__body {
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1;
  gap: 10px;
}
.post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}
.post-card__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-mute); }
.post-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 1.28;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.post-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--accent);
  font-weight: 600; font-size: 13px;
}
.post-card__cta .arrow { transition: transform .15s ease; display: inline-block; }
.post-card:hover .post-card__cta .arrow { transform: translateX(4px); }

/* ============ CTA block ============ */
.cta-block {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 90% 20%, rgba(109,148,226,0.18), transparent 60%),
    radial-gradient(500px 320px at 5% 80%, rgba(109,148,226,0.10), transparent 60%);
  pointer-events: none;
}
.cta-block .wrap { position: relative; z-index: 1; }
.cta-block .cta-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 860px) { .cta-block .cta-grid { grid-template-columns: 1fr; gap: 32px; } }
.cta-block h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 12px 0 14px;
  text-wrap: balance;
}
.cta-block p {
  color: var(--text-on-dark-dim);
  font-size: 16px; line-height: 1.6;
  margin: 0;
  max-width: 540px;
}
.cta-block .cta-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
@media (max-width: 860px) { .cta-block .cta-actions { align-items: stretch; } }

/* ============ Footer ============ */
footer.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-dark-dim);
  padding: 72px 0 40px;
  font-size: 13px;
}
.foot-grid { display: flex; flex-wrap: wrap; justify-content: center; text-align: center; gap: 40px 72px; margin-bottom: 56px; }
.foot-grid .foot-col { flex: 0 1 220px; min-width: 180px; }
.foot-grid .foot-logo { justify-content: center; }
.foot-grid .foot-col a { padding: 6px 0; }
@media (max-width: 480px) { .foot-grid { gap: 32px; } }
.foot-col h5 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin: 0 0 16px; font-weight: 700; }
.foot-col p { color: var(--text-on-dark-dim); line-height: 1.6; margin: 0; }
.foot-col a { display: block; color: var(--text-on-dark-dim); padding: 11px 0; line-height: 1.5; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line-dark);
  font-size: 12px; color: var(--ink-mute);
  flex-wrap: wrap; gap: 12px;
}
.foot-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; margin-bottom: 16px; }

/* ============ Reading progress bar ============ */
.read-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  z-index: 100;
  transition: width .12s linear;
}

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ FAQ ============ */
.article-body .faq{margin-top:56px}
.article-body .faq h2{margin-top:0}
.faq-list{display:flex;flex-direction:column;gap:10px;margin-top:20px}
.faq-item{border:1px solid var(--line);border-radius:12px;background:var(--bg-card);padding:0}
.faq-item summary{cursor:pointer;list-style:none;padding:18px 22px;font-size:16.5px;font-weight:600;color:var(--ink);display:flex;align-items:center;justify-content:space-between;gap:16px}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:'';width:9px;height:9px;border-right:2px solid var(--accent-2);border-bottom:2px solid var(--accent-2);transform:rotate(45deg);flex-shrink:0;transition:transform .2s}
.faq-item[open] summary::after{transform:rotate(-135deg)}
.faq-item > p{padding:0 22px 20px;font-size:16px;line-height:1.65;margin:0;color:var(--ink-2)}

/* ============ Article hero photo ============ */
.article-photo{margin:0;background:#fff;padding:56px 0 0}
.article-photo .frame{position:relative;aspect-ratio:16/9;border-radius:16px;overflow:hidden;background:var(--bg-card);border:1px solid var(--line)}
.article-photo image-slot{position:absolute;inset:0;width:100%;height:100%;display:block}
.article-photo figcaption{margin:12px 0 0;font-size:13px;line-height:1.5;color:var(--ink-3)}
@media(max-width:720px){.article-photo{padding-top:40px}}

.author-chip .av{position:relative;overflow:hidden}
.author-chip .av image-slot{position:absolute;inset:0;width:100%;height:100%;display:block}

.post-card__media image-slot{position:absolute;inset:0;width:100%;height:100%;display:block;z-index:1}

/* --om-hide-empty-slots: een nog niet gevulde foto laat geen leeg kader achter */
.article-photo:has(image-slot:not([data-filled])){display:none}
.post-card__media image-slot:not([data-filled]){display:none}

/* Collapse empty photo frames on article pages: no upload possible here,
   so an unfilled slot would only render a dead grey box. */
.article-photo:has(image-slot:not([data-filled])) { display: none; }
.related-card__media:has(image-slot:not([data-filled])) image-slot { display: none; }

.share-row a.is-copied { background: var(--navy-deep); border-color: var(--navy-deep); color: #fff; }
.share-row a.is-copied svg { stroke: #fff; fill: none; }

/* Bronnen, boven de FAQ */
.sources{margin:0;padding:8px 0 0}
.sources h2{font-size:26px;margin:0 0 14px}
.sources ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.sources li{font-size:15px;line-height:1.5;padding-left:18px;position:relative}
.sources li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--accent-2)}
.sources a{text-decoration:underline;text-underline-offset:2px}

.nav-pill .nav-drop a.active{background:var(--accent-soft);color:var(--accent)}
.nav-pill .nav-drop a.active small{color:var(--accent);opacity:.75}
