/* ── Kenniscentrum gedeelde stijlen ── */
.kc-article-hero {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0 2.5rem;
}
.kc-breadcrumb {
  font-size: 0.76rem;
  color: var(--ink-4);
  margin-bottom: 0.85rem;
}
.kc-breadcrumb a { color: var(--ink-4); text-decoration: none; }
.kc-breadcrumb a:hover { color: var(--teal); }
.kc-article-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  font-size: 0.77rem;
  color: var(--ink-4);
  margin-bottom: 0.85rem;
}
.kc-cat-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-pale);
  border: 1px solid var(--border-hot);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
}
.kc-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
.kc-intro {
  font-size: 0.97rem;
  color: var(--ink-3);
  max-width: 600px;
  line-height: 1.72;
  margin-bottom: 1.2rem;
}
.kc-author {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  font-size: 0.8rem;
  color: var(--ink-3);
}
.kc-author img {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--border-hot);
}
.kc-author strong { color: var(--ink-2); }

/* Artikel layout */
.kc-article-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.kc-article-body h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin: 2.25rem 0 0.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.kc-article-body h2:first-child {
  margin-top: 0; padding-top: 0; border-top: none;
}
.kc-article-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-2);
  margin: 1.35rem 0 0.45rem;
}
.kc-article-body p {
  line-height: 1.82;
  color: var(--ink-2);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}
.kc-article-body ul,
.kc-article-body ol {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
.kc-article-body li {
  line-height: 1.75;
  color: var(--ink-2);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.kc-article-body strong { color: var(--ink); }

/* Callout-blokken */
.kc-highlight {
  background: var(--teal-pale);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 0.95rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.87rem;
  color: var(--ink-2);
  line-height: 1.7;
}
.kc-highlight strong { color: var(--teal); }

/* Vergelijkingstabel */
.kc-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.83rem;
  margin: 1.5rem 0;
}
.kc-comparison-table th {
  background: var(--teal);
  color: #fff;
  padding: 0.55rem 0.8rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.77rem;
  letter-spacing: 0.04em;
}
.kc-comparison-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.kc-comparison-table th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.kc-comparison-table td {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
  vertical-align: top;
  line-height: 1.55;
}
.kc-comparison-table tr:nth-child(even) td { background: var(--bg-2); }

/* Expert-citaat */
.kc-expert-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-2);
  border-radius: var(--r-lg);
  padding: 1.2rem;
  margin: 1.75rem 0;
}
.kc-expert-block img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  flex-shrink: 0;
  border: 2px solid var(--border-hot);
}
.kc-expert-block blockquote {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.7;
  font-style: italic;
}
.kc-expert-block cite {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.74rem;
  color: var(--ink-4);
  font-weight: 600;
}

/* Navigatie-footer artikel */
.kc-article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.kc-back-link {
  font-size: 0.82rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
}

/* Sidebar */
.kc-sidebar { position: sticky; top: 5.5rem; }
.kc-cta-box {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 1.3rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
.kc-cta-box p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.8rem;
  line-height: 1.55;
}
.kc-cta-btn {
  background: #fff !important;
  color: var(--teal) !important;
  border-color: transparent !important;
  width: 100%;
  justify-content: center;
}
.kc-matchmaker-link {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.kc-sidebar-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.2rem;
  margin-bottom: 1.25rem;
}
.kc-sidebar-box h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 0.7rem;
}
.kc-sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.kc-sidebar-box ul li {
  border-bottom: 1px solid var(--border);
  padding: 0.38rem 0;
}
.kc-sidebar-box ul li:last-child { border-bottom: none; }
.kc-sidebar-box ul li a {
  font-size: 0.81rem;
  color: var(--ink-2);
  text-decoration: none;
  line-height: 1.5;
}
.kc-sidebar-box ul li a:hover { color: var(--teal); }

/* Prijstabel (voor budget-artikels) */
.kc-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  margin: 1.5rem 0;
}
.kc-price-table th {
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 0.8rem;
  text-align: left;
  font-size: 0.77rem;
}
.kc-price-table td {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
  vertical-align: middle;
}
.kc-price-table tr:nth-child(even) td { background: var(--bg-2); }
.kc-price-table .price-cell {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 860px) {
  .kc-article-layout { grid-template-columns: 1fr; }
  .kc-sidebar { position: static; }
}

/* ── Mobiele inhoudsopgave + vroege CTA-kopie (zie huwelijksmuziek-gids.html) ──
   Op desktop: TOC verborgen (de permanente zijbalk oriënteert al), de vroege
   CTA-kopie verborgen (de zijbalk-CTA blijft de enige, zoals voorheen).
   Op mobiel: TOC zichtbaar, vroege CTA-kopie zichtbaar, de originele
   zijbalk-CTA verborgen zodat er nergens dubbel getoond wordt. ── */
.kc-mobile-toc { display: none; }
.kc-cta-mobile-early { display: none; }
@media (max-width: 860px) {
  .kc-mobile-toc {
    display: flex; flex-direction: column; gap: 0.5rem;
    background: var(--bg-2, #f7f5f0); border-radius: 10px;
    padding: 1rem 1.25rem; margin: 0 0 1.75rem;
  }
  .kc-mobile-toc-label {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-4, #8a8a85); margin: 0 0 0.3rem;
  }
  .kc-mobile-toc a { font-size: 0.85rem; color: var(--teal, #2e6e66); text-decoration: none; }
  .kc-mobile-toc a:hover { text-decoration: underline; }
  .kc-cta-mobile-early { display: block; margin: 0 0 2rem; }
  .kc-cta-sidebar-original { display: none; }
}
@media (max-width: 640px) {
  .kc-article-hero { padding: 3.5rem 0 1.75rem; }
  .kc-breadcrumb { visibility: hidden; }
  .kc-comparison-table, .kc-price-table { font-size: 0.78rem; }
  .kc-comparison-table th,
  .kc-comparison-table td,
  .kc-price-table th,
  .kc-price-table td { padding: 0.4rem 0.55rem; }
  .kc-article-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Fase 2: kernantwoord, artikelfoto, praktijkadvies, tabel-scroll ── */
.kc-key-answer {
  background: var(--teal-pale, #eef6f5);
  border: 1px solid var(--border-hot, #cfe3e0);
  border-left: 3px solid var(--teal, #2e6e66);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 0 0 1.75rem;
}
.kc-key-answer-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal, #2e6e66);
  margin: 0 0 0.4rem;
}
.kc-key-answer p { margin: 0 0 0.5rem; font-size: 0.95rem; line-height: 1.7; }
.kc-key-answer .kc-key-answer-cta { margin: 0.35rem 0 0; }
.kc-key-answer .kc-key-answer-cta a {
  font-size: 0.82rem; font-weight: 600; color: var(--teal, #2e6e66); text-decoration: none;
}
.kc-key-answer .kc-key-answer-cta a:hover { text-decoration: underline; }

.kc-article-img { margin: 0 0 2rem; }
.kc-article-img img {
  width: 100%; height: auto; display: block;
  border-radius: 12px;
}
.kc-article-img figcaption {
  font-size: 0.78rem; color: var(--ink-3, #8a8a85); margin-top: 0.5rem;
}

.kc-praktijk {
  background: #fff;
  border: 1px solid var(--border, #e6e2da);
  border-left: 3px solid var(--teal, #2e6e66);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  margin: 2rem 0;
}
.kc-praktijk-head {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.6rem;
}
.kc-praktijk-head img {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
}
.kc-praktijk-head span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--teal, #2e6e66);
}
.kc-praktijk p { margin: 0; font-size: 0.92rem; line-height: 1.75; }

.kc-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.kc-table-scroll > table { margin: 0; min-width: 480px; }

/* ── Refactor overzichtspagina: kaartcomponenten (voorheen inline styles) ── */
.kc-card-head { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.6rem; }
.kc-card-icon { display: inline-flex; line-height: 1; }
.kc-card-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin: 0; color: var(--ink); }
.kc-card-desc { font-size: 0.8rem; color: var(--ink-3); margin-bottom: 0.75rem; line-height: 1.6; }
.kc-idx-list { list-style: none; padding: 0; margin: 0; }
.kc-idx-list li { margin: 0; }
.kc-idx-link {
  display: flex; align-items: flex-start; gap: 0.5rem;
  text-decoration: none; color: var(--ink-2);
  font-size: 0.84rem; line-height: 1.5;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.kc-idx-link:hover { color: var(--teal); }
.kc-idx-list li:last-of-type .kc-idx-link { border-bottom: none; }
.kc-idx-tag {
  flex-shrink: 0; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: var(--teal-pale);
  border: 1px solid var(--border-hot); border-radius: 999px;
  padding: 0.15rem 0.45rem; margin-top: 0.15rem; white-space: nowrap;
}
.kc-idx-link--start { color: var(--ink); font-weight: 600; font-size: 0.86rem; }
.kc-idx-tag--start { color: #fff; background: var(--teal); border-color: var(--teal); }
.kc-lang-switch {
  display: flex; gap: 0.4rem; margin-top: 0.75rem;
}
.kc-lang-opt {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink-4); text-decoration: none;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.2rem 0.6rem;
}
.kc-lang-opt--active {
  color: #fff; background: var(--teal); border-color: var(--teal);
}
