/* ══════════════════════════════════════════
   ARTIKEL — Shared article page styles
   McKinsey Quarterly / FT longread level
═══════════════════════════════════════════ */

/* ── ARTICLE HEADER ── */
.art-header {
  background: var(--ink);
  padding: 96px 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.art-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 48px;
  animation: fadeUp 0.6s ease both 0.05s;
}
.art-breadcrumb a {
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s;
}
.art-breadcrumb a:hover { color: var(--gold); }
.art-breadcrumb-sep { color: rgba(201,168,76,0.3); }

.art-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both 0.1s;
}
.art-edition-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.art-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.art-cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 0;
}
.art-cat.strategy   { color: #d4a85a; border-bottom: 1px solid #d4a85a; }
.art-cat.governance { color: #7bafd4; border-bottom: 1px solid #7bafd4; }
.art-cat.regulering { color: #d47b8e; border-bottom: 1px solid #d47b8e; }
.art-cat.risico     { color: #d49b6e; border-bottom: 1px solid #d49b6e; }
.art-cat.leadership { color: #8ed49e; border-bottom: 1px solid #8ed49e; }

.art-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 860px;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both 0.18s;
}

.art-deck {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.35;
  max-width: 680px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease both 0.28s;
}

.art-header-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 0.5px solid rgba(201,168,76,0.12);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  animation: fadeUp 0.7s ease both 0.35s;
}
.art-header-meta-dot { color: rgba(201,168,76,0.25); }

/* Future article banner */
.art-future-banner {
  background: rgba(255,255,255,0.03);
  border: 0.5px dashed rgba(255,255,255,0.15);
  padding: 14px 24px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.art-future-banner::before {
  content: '◉';
  color: var(--muted-2);
  font-size: 10px;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}


/* ── ARTICLE BODY ── */
.art-body-wrap {
  background: var(--ink-2);
  padding: 80px 0 120px;
}

.art-body-inner {
  display: grid;
  grid-template-columns: 680px 1fr;
  gap: 80px;
  align-items: start;
}

/* Main text column */
.art-text {
  font-size: 17px;
  color: var(--surface-2);
  line-height: 1.9;
}

.art-text p {
  margin-bottom: 28px;
}

.art-text p:first-of-type {
  font-size: 19px;
  color: var(--white);
  line-height: 1.75;
}

.art-text h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 52px 0 20px;
  letter-spacing: -0.01em;
}
.art-text h2::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}

.art-text h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--surface-2);
  line-height: 1.3;
  margin: 40px 0 16px;
}

.art-text strong {
  color: var(--white);
  font-weight: 500;
}

/* Pull quote — the bestuurlijk kernpunt */
.art-pullquote {
  margin: 48px 0;
  padding: 32px 36px;
  border-left: 2px solid var(--gold);
  background: rgba(201,168,76,0.04);
}
.art-pullquote-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.art-pullquote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

/* Numbered list — board actions */
.art-actions {
  margin: 36px 0;
  counter-reset: action;
}
.art-action {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(201,168,76,0.07);
  counter-increment: action;
  align-items: start;
}
.art-action:first-child { border-top: 0.5px solid rgba(201,168,76,0.07); }
.art-action::before {
  content: counter(action, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--gold);
  font-weight: 300;
  padding-top: 2px;
}
.art-action p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.art-action strong {
  color: var(--surface-2);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Data callout */
.art-callout {
  margin: 40px 0;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.06);
}
.art-callout-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.art-callout-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Sticky sidebar */
.art-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.art-sidebar-box {
  border: 0.5px solid rgba(201,168,76,0.15);
  padding: 28px;
}
.art-sidebar-box-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.art-sidebar-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.art-sidebar-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.art-sidebar-box ul li {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: 10px;
}
.art-sidebar-box ul li::before {
  content: '—';
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}


/* ── ARTICLE FOOTER / NAVIGATION ── */
.art-nav {
  background: var(--ink);
  border-top: 0.5px solid rgba(201,168,76,0.12);
  padding: 48px 0;
}
.art-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.art-nav-prev, .art-nav-next {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.art-nav-prev:hover, .art-nav-next:hover { opacity: 0.75; }
.art-nav-dir {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.art-nav-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  color: var(--surface-2);
  line-height: 1.3;
}
.art-nav-next { text-align: right; }
.art-nav-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}
.art-nav-back-icon {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.art-nav-back-label {
  font-size: 11px;
  color: var(--muted-2);
}

/* ── ARTICLE CTA ── */
.art-cta {
  background: var(--ink-2);
  padding: 80px 0;
  text-align: center;
  border-top: 0.5px solid rgba(201,168,76,0.12);
}
.art-cta-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.art-cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.art-cta-title em { font-style: italic; color: var(--gold); }
.art-cta-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 36px;
}
.art-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .art-body-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .art-sidebar { position: static; }
}
@media (max-width: 768px) {
  .art-title { font-size: 36px; }
  .art-nav-inner { grid-template-columns: 1fr 1fr; }
  .art-nav-back { display: none; }
  .art-header-meta { flex-wrap: wrap; gap: 12px; }
  .art-pullquote p { font-size: 18px; }
  .art-cta-actions { flex-direction: column; }
}
