/* ══════════════════════════════════════════
   HartAI – Blog Styles
══════════════════════════════════════════ */

/* overflow-x: hidden op body/html breekt position:sticky — fix met clip */
html, body { overflow-x: clip; }

/* ── BLOG NAV ── */
.nav__link--cta {
  background: var(--turquoise); color: #fff !important;
  padding: 9px 18px; border-radius: var(--radius-sm);
  font-weight: 600; margin-left: 8px;
  transition: background var(--transition);
}
.nav__link--cta:hover { background: var(--turq-dark) !important; color: #fff !important; }

/* ── BREADCRUMB ── */
.breadcrumb { padding-top: 68px; background: var(--white); }
.breadcrumb__inner {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 14px 0; font-size: .8rem; color: var(--text-muted);
}
.breadcrumb__link { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumb__link:hover { color: var(--navy); }
.breadcrumb__sep { color: var(--gray-light); font-size: .7rem; }
.breadcrumb__current { color: var(--navy); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }

/* ── ARTICLE HEADER ── */
.article-header {
  max-width: 760px; margin: 0 auto;
  padding: 36px 24px 0; text-align: center;
}
.article-category {
  display: inline-block;
  background: rgba(27,77,255,.12); color: var(--turquoise);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
  margin-bottom: 20px;
}
.article-header h1 { margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.article-subtitle {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  max-width: 620px; margin: 0 auto 28px;
}
.article-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; font-size: .83rem; color: var(--text-muted);
  padding-bottom: 32px; border-bottom: 1px solid var(--gray-light);
}
.article-meta__author {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy);
}
.article-meta__avatar {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gray-light);
}
.article-meta__dot { color: var(--gray-light); }
.article-meta__share {
  display: inline-flex; align-items: center; gap: 5px;
  background: none; border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm); padding: 5px 12px;
  font-size: .8rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.article-meta__share:hover { border-color: var(--navy); color: var(--navy); }

/* ── HERO IMAGE ── */
.article-hero { max-width: 900px; margin: 40px auto 0; padding: 0 24px; }
.article-hero img {
  width: 100%; border-radius: var(--radius-lg);
  aspect-ratio: 16/9; object-fit: cover;
}
.article-hero figcaption {
  text-align: center; font-size: .78rem; color: var(--text-muted); margin-top: 10px;
}

/* ── ARTICLE LAYOUT ── */
.article-layout {
  max-width: 1200px; margin: 0 auto;
  padding: 52px 24px 80px;
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: 48px;
  /* geen align-items: start — kolommen strekken tot volle hoogte */
}

/* Wrapper kolommen voor sticky werking */
.toc-col { }
.sidebar-col { }

/* ── TOC ── */
.toc { position: sticky; top: 88px; }
.toc__title {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px;
}
.toc__list { display: flex; flex-direction: column; }
.toc__item {
  display: block; padding: 7px 12px;
  font-size: .83rem; color: var(--text-muted);
  border-left: 2px solid transparent; text-decoration: none;
  transition: all var(--transition); line-height: 1.4;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.toc__item:hover { color: var(--navy); border-left-color: var(--gray-light); background: var(--light-gray); }
.toc__item.active {
  color: var(--turquoise); border-left-color: var(--turquoise);
  background: rgba(27,77,255,.07); font-weight: 500;
}

/* ── ARTICLE CONTENT ── */
.article-content { min-width: 0; }
.article-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin: 48px 0 14px; padding-top: 8px;
}
.article-content h3 { font-size: 1.1rem; margin: 28px 0 8px; }
.article-content p { font-size: .97rem; color: var(--text); line-height: 1.78; margin-bottom: 16px; }
.article-content ul { padding-left: 0; margin-bottom: 16px; list-style: none; }
.article-content ul li {
  font-size: .97rem; color: var(--text); line-height: 1.7; margin-bottom: 6px;
  padding-left: 18px; position: relative;
}
.article-content ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--turquoise);
}
.article-content strong { color: var(--navy); font-weight: 600; }

/* ── RIGHT SIDEBAR ── */
.article-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 16px; align-self: start; }

.sidebar-author {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.sidebar-author__avatar {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 14px; display: block; border: 3px solid var(--gray-light);
}
.sidebar-author__name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.sidebar-author__role { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.sidebar-author__bio {
  font-size: .8rem; color: var(--text-muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.sidebar-share {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 20px;
}
.sidebar-share__title {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.sidebar-share__list { display: flex; flex-direction: column; gap: 4px; }
.sidebar-share__btn {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: .84rem; color: var(--text-muted); font-weight: 500;
  text-decoration: none; border: none; background: none; cursor: pointer;
  width: 100%; transition: all var(--transition);
}
.sidebar-share__btn:hover { background: var(--light-gray); color: var(--navy); }
.sidebar-share__btn svg { flex-shrink: 0; opacity: .7; }

/* ── INTRO STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.stat-box {
  border-radius: var(--radius-lg); padding: 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.stat-box--turquoise { background: rgba(27,77,255,.1); }
.stat-box--gray      { background: var(--light-gray); }
.stat-box--orange    { background: rgba(237,137,54,.1); }
.stat-box__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.stat-box--turquoise .stat-box__icon { color: var(--turquoise); }
.stat-box--gray      .stat-box__icon { color: var(--gray); }
.stat-box--orange    .stat-box__icon { color: #ED8936; }
.stat-box__value { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-box__label { font-size: .78rem; color: var(--text-muted); line-height: 1.4; }

/* ── PROCESS LIST ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; margin: 20px 0; }
.process-item { padding: 8px 0; border-bottom: 1px solid var(--gray-light); }
.process-item__cat { font-size: .72rem; font-weight: 700; color: var(--turquoise); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.process-item__label { font-size: .9rem; color: var(--text); }

/* ── TABLE ── */
.blog-table-wrap {
  overflow-x: auto; margin: 28px 0;
  border-radius: var(--radius); border: 1px solid var(--gray-light);
}
.blog-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.blog-table th {
  background: var(--navy); color: #fff;
  font-size: .8rem; font-weight: 600; padding: 12px 16px; text-align: left;
}
.blog-table th:first-child { border-radius: var(--radius) 0 0 0; }
.blog-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.blog-table td { padding: 11px 16px; font-size: .88rem; color: var(--text); border-bottom: 1px solid var(--gray-light); }
.blog-table tr:last-child td { border-bottom: none; }
.blog-table tr.total-row td { font-weight: 700; color: var(--navy); background: rgba(27,77,255,.09); }

/* ── INLINE CTA ── */
.inline-cta {
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 30px; margin: 40px 0;
  border-left: 4px solid var(--turquoise);
}
.inline-cta__tag {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--turquoise); margin-bottom: 8px;
}
.inline-cta h3 { font-size: 1.25rem; margin-bottom: 6px; }
.inline-cta > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 18px; }
.inline-cta__form { display: flex; gap: 10px; flex-wrap: wrap; }
.inline-cta__input {
  flex: 1; min-width: 200px; padding: 11px 16px;
  border: 1px solid var(--gray-light); border-radius: var(--radius);
  font-size: .9rem; color: var(--text); background: #fff;
}
.inline-cta__input:focus { outline: none; border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(27,77,255,.15); }
.inline-cta__note { font-size: .73rem; color: var(--text-muted); margin-top: 8px; }

/* ── 4-CARD BLOCK ── */
.feature-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0; }
.feature-card {
  background: var(--white); border: 1.5px solid var(--turquoise);
  border-radius: var(--radius-lg); padding: 24px;
}
.feature-card__icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(27,77,255,.12); display: flex; align-items: center;
  justify-content: center; margin-bottom: 10px;
  color: var(--turquoise);
}
.feature-card h4 { font-size: .95rem; margin-bottom: 4px; }
.feature-card p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* ── COST HIGHLIGHT ── */
.cost-highlight {
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 28px; text-align: center; margin: 28px 0;
}
.cost-highlight__calc { font-size: .9rem; color: var(--text-muted); margin-bottom: 8px; }
.cost-highlight__amount { font-size: 2.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.cost-highlight__label { font-size: .82rem; color: var(--text-muted); margin-top: 6px; }

/* ── TWO-COLUMN LIST ── */
.two-col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.checklist-col h4 { font-size: .95rem; margin-bottom: 10px; }
.checklist-col ul { list-style: none; padding: 0; }
.checklist-col ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .88rem; color: var(--text); padding: 4px 0;
}
.checklist-col ul li::before {
  content: '✓'; color: var(--turquoise); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* ── SUMMARY BOX ── */
.summary-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg); padding: 36px; margin: 40px 0;
}
.summary-box h3 { color: #fff; margin-bottom: 20px; }
.summary-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.summary-item:last-child { margin-bottom: 0; }
.summary-item__check {
  width: 20px; height: 20px; border-radius: 50%; background: var(--turquoise);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.summary-item p { color: rgba(255,255,255,.8); font-size: .9rem; margin: 0; line-height: 1.6; }

/* ── SCORECARD CTA (bottom of article) ── */
.scorecard-cta {
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 36px; text-align: center; margin: 40px 0;
}
.scorecard-cta h3 { font-size: 1.35rem; margin-bottom: 10px; }
.scorecard-cta p { max-width: 500px; margin: 0 auto 24px; }

/* ── TOPICS / TAGS ── */
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0; }
.article-tag {
  background: var(--light-gray); color: var(--text-muted);
  font-size: .78rem; font-weight: 500; padding: 5px 12px; border-radius: 20px;
  text-decoration: none; transition: all var(--transition);
}
.article-tag:hover { background: var(--navy); color: #fff; }

/* ── AUTHOR BIO ── */
.author-bio {
  background: var(--light-gray); border-radius: var(--radius-lg);
  padding: 28px; display: flex; gap: 20px; align-items: flex-start;
  margin: 32px 0;
}
.author-bio__avatar { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio__name { font-size: 1rem; font-weight: 700; color: var(--navy); }
.author-bio__role { font-size: .78rem; color: var(--text-muted); margin-bottom: 8px; }
.author-bio__bio { font-size: .87rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.author-bio__link { font-size: .82rem; color: var(--turquoise); font-weight: 500; text-decoration: none; }
.author-bio__link:hover { text-decoration: underline; }

/* ── SHARE BAR ── */
.share-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 20px 0; border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light); margin: 28px 0;
}
.share-bar__label { font-size: .84rem; font-weight: 600; color: var(--navy); margin-right: 4px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-sm);
  font-size: .8rem; font-weight: 500; text-decoration: none;
  border: 1px solid var(--gray-light); color: var(--text-muted);
  transition: all var(--transition); cursor: pointer; background: none;
}
.share-btn:hover { border-color: var(--navy); color: var(--navy); }
.share-btn--copy { }

/* ── NEXT STEP CTA ── */
.next-step-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl); padding: 48px; text-align: center; margin: 48px 0;
}
.next-step-cta__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 12px;
}
.next-step-cta h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 12px; }
.next-step-cta p { color: rgba(255,255,255,.7); font-size: .95rem; max-width: 480px; margin: 0 auto 28px; }
.next-step-cta__note { font-size: .78rem; color: rgba(255,255,255,.4); margin-top: 12px; }

/* ── RELATED POSTS ── */
.related-posts { padding: 64px 0 80px; background: var(--light-gray); }
.related-posts__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.related-posts__header h2 { margin: 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.post-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  text-decoration: none; display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.post-card__img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.post-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img-wrap img { transform: scale(1.04); }
.post-card__category {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,.92); color: var(--turquoise);
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; backdrop-filter: blur(4px);
}
.post-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-card__title { font-size: .97rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
.post-card__excerpt {
  font-size: .82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.post-card__meta { display: flex; align-items: center; gap: 8px; font-size: .77rem; color: var(--text-muted); }
.post-card__meta-avatar { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.post-card__meta-name { font-weight: 500; color: var(--navy); }
.post-card__meta-dot { color: var(--gray-light); }

/* ── TOC ARTIKEL SWITCHER ── */
.toc-divider { border: none; border-top: 1px solid var(--gray-light); margin: 20px 0; }

.toc-articles__title {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px;
}
.toc-article {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius);
  text-decoration: none; transition: all var(--transition);
  margin-bottom: 4px;
}
.toc-article:hover { background: var(--light-gray); }
.toc-article.current { background: rgba(27,77,255,.07); cursor: default; pointer-events: none; }
.toc-article__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gray-light);
  flex-shrink: 0; margin-top: 5px; transition: background var(--transition);
}
.toc-article.current .toc-article__dot { background: var(--turquoise); }
.toc-article__info { flex: 1; min-width: 0; }
.toc-article__name {
  font-size: .82rem; color: var(--navy); font-weight: 500; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.toc-article.current .toc-article__name { color: var(--turquoise); }
.toc-article__meta { font-size: .72rem; color: var(--text-muted); margin-top: 2px; }

/* ── NEXT ARTICLE STRIP ── */
.next-article {
  margin: 48px 0 0;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none; display: block;
}
.next-article:hover { border-color: var(--turquoise); box-shadow: var(--shadow); }
.next-article__label {
  background: var(--light-gray);
  padding: 10px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}
.next-article__label span { color: var(--turquoise); }
.next-article__body {
  display: flex; align-items: center; gap: 20px; padding: 20px;
}
.next-article__img {
  width: 100px; height: 70px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0;
}
.next-article__cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--turquoise); margin-bottom: 4px;
}
.next-article__title {
  font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 6px;
}
.next-article__time { font-size: .78rem; color: var(--text-muted); }
.next-article__arrow {
  margin-left: auto; color: var(--turquoise); flex-shrink: 0;
}

/* ── BLOG INDEX ── */
.blog-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 0 80px; text-align: center;
}
.blog-hero h1 { color: #fff; margin-bottom: 16px; }
.blog-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

.blog-categories { padding: 32px 0 0; }
.blog-categories__list { display: flex; gap: 10px; flex-wrap: wrap; }
.blog-cat-btn {
  padding: 8px 18px; border-radius: 20px; font-size: .84rem; font-weight: 500;
  border: 1.5px solid var(--gray-light); color: var(--text-muted);
  background: none; cursor: pointer; transition: all var(--transition);
}
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.blog-grid-section { padding: 48px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .article-layout { grid-template-columns: 220px 1fr 240px; gap: 32px; }
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .toc-col { order: -1; }
  .toc {
    position: static; background: var(--light-gray);
    border-radius: var(--radius); padding: 20px; margin-bottom: 36px;
  }
  .sidebar-col { order: 1; }
  .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 40px; }
  .sidebar-author, .sidebar-share { flex: 1; min-width: 200px; }
  .related-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .feature-cards { grid-template-columns: 1fr; }
  .two-col-lists { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .article-header { padding: 24px 16px 0; }
  .article-hero { padding: 0 16px; }
  .article-layout { padding: 32px 16px 60px; }
  .related-grid, .blog-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .inline-cta__form { flex-direction: column; }
  .next-step-cta { padding: 32px 20px; }
  .author-bio { flex-direction: column; }
  .share-bar { gap: 8px; }
  .process-grid { grid-template-columns: 1fr; }
}

/* Hub-and-spoke: links from articles back to /ai-voor-mkb/ pillar */
.toc-hub-link {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #e8f7f8;
  border: 1px solid #c8edef;
  border-radius: 8px;
  padding: 9px 12px;
  text-decoration: none;
  color: #1B365D;
  font-size: .79rem;
  font-weight: 600;
  margin-bottom: 14px;
  transition: background .15s;
}
.toc-hub-link:hover { background: #d0f0f2; }
.hub-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f0fbfb;
  border: 1px solid #c8edef;
  border-left: 3px solid #1B4DFF;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 24px;
  font-size: .87rem;
  color: #374151;
  line-height: 1.5;
}
.hub-callout svg { flex-shrink: 0; margin-top: 2px; color: #1B4DFF; }
.hub-callout a { color: #1B365D; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hub-callout a:hover { color: #1B4DFF; }

/* FAQ accordion */
.faq-block { margin: 40px 0; }
.faq-block h2 { font-size: 1.35rem; font-weight: 700; color: #1B365D; margin-bottom: 16px; }
.faq-item { border: 1px solid #e0e6ef; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 14px 18px; font-weight: 600; font-size: .93rem; color: #1B365D; cursor: pointer; background: #fff; user-select: none; gap: 12px; }
.faq-question:hover { background: #f8fafc; }
.faq-answer { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; background: #fafcfe; font-size: .88rem; color: #444; line-height: 1.65; }
.faq-item.open .faq-answer { padding: 4px 18px 16px; max-height: 600px; }
.faq-chevron { transition: transform .25s; flex-shrink: 0; color: #1B4DFF; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ================= MEDIUM-STIJL LEESERVARING (HartAI) ================= */
body{background:#F8F7F3;color:#10151B}
.breadcrumb{background:transparent;border:none}
.breadcrumb .container,.breadcrumb__inner{max-width:728px;margin:0 auto;padding:20px 24px 0;font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:.04em;color:#8a929c}
.breadcrumb a{color:#8a929c}
/* TOC-sidebar weg voor schone single-column read */
.article-layout .toc-col,.toc{display:none!important}
/* kop */
.article-header{max-width:728px;margin:0 auto;padding:40px 24px 0;text-align:left}
.article-category{font-family:'IBM Plex Mono',monospace;font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:#1B4DFF}
.article-header h1{font-family:'Schibsted Grotesk',sans-serif;font-size:clamp(31px,5.4vw,49px);line-height:1.08;letter-spacing:-0.03em;font-weight:800;margin:18px 0 0;color:#10151B}
.article-subtitle{font-size:20px;line-height:1.55;color:#525c68;margin:20px 0 0;font-weight:400}
.article-meta{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:26px 0 0;padding:18px 0;border-top:1px solid #E4E1D8;border-bottom:1px solid #E4E1D8;font-size:14px;color:#6b7480}
.article-meta__author{display:flex;align-items:center;gap:10px;font-weight:600;color:#10151B}
.article-meta__avatar{width:38px;height:38px;border-radius:50%;object-fit:cover}
.article-meta__dot{color:#c3c8cf}
.article-meta__share{margin-left:auto;display:inline-flex;align-items:center;gap:6px;background:none;border:1px solid #E4E1D8;border-radius:100px;padding:7px 14px;font-size:13px;color:#10151B;cursor:pointer;font-family:'Schibsted Grotesk',sans-serif;transition:border-color .2s}
.article-meta__share:hover{border-color:#10151B}
/* hero */
.article-hero{max-width:860px;margin:34px auto;padding:0 24px}
.article-hero img{width:100%;border-radius:14px;display:block}
.article-hero figcaption{font-size:13px;color:#9aa1ab;margin-top:11px;text-align:center}
/* leeskolom */
.article-layout{display:block!important;max-width:728px;margin:0 auto;padding:0;grid-template-columns:none!important}
.article-content{max-width:728px;margin:0 auto;padding:8px 24px 0;font-family:'Schibsted Grotesk',sans-serif;font-size:19px;line-height:1.78;color:#232b35}
.article-content p{margin:0 0 26px;font-size:19px;line-height:1.78}
.article-content h2{font-family:'Schibsted Grotesk',sans-serif;font-size:28px;line-height:1.22;letter-spacing:-0.02em;font-weight:700;margin:54px 0 16px;color:#10151B;scroll-margin-top:90px}
.article-content h3{font-family:'Schibsted Grotesk',sans-serif;font-size:21px;font-weight:700;margin:38px 0 12px;color:#10151B}
.article-content a{color:#1B4DFF;text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:1px}
.article-content ul,.article-content ol{margin:0 0 26px;padding-left:22px}
.article-content li{margin:0 0 11px;font-size:19px;line-height:1.7}
.article-content blockquote{margin:36px 0;padding:4px 0 4px 26px;border-left:3px solid #1B4DFF;font-size:23px;line-height:1.5;font-weight:500;color:#10151B;font-style:normal}
.article-content blockquote p{font-size:23px;margin:0}
.article-content img{max-width:100%;border-radius:10px;margin:30px 0}
.article-content strong{font-weight:700;color:#10151B}
.article-content hr{border:none;border-top:1px solid #E4E1D8;margin:44px 0}
/* verfijnde stat-boxen */
.stats-row{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:14px;margin:0 0 34px}
.stat-box{background:#fff;border:1px solid #E9E6DD;border-radius:14px;padding:20px;box-shadow:none}
.stat-box__icon{color:#1B4DFF}
.stat-box__icon svg{width:20px;height:20px}
.stat-box__value,.stat-box strong{color:#10151B}
/* tabellen */
.blog-table-wrap{overflow-x:auto;margin:30px 0;border:1px solid #E9E6DD;border-radius:12px}
.blog-table{width:100%;border-collapse:collapse;font-size:15.5px}
.blog-table th{background:#F1EFE8;text-align:left;padding:13px 16px;font-weight:700;color:#10151B}
.blog-table td{padding:13px 16px;border-top:1px solid #ECEAE2;color:#3a434e}

/* ============ CONVERSIE-ELEMENTEN ============ */
/* leesvoortgang */
.readprog{position:fixed;top:0;left:0;height:3px;width:0;background:#1B4DFF;z-index:1100;transition:width .12s ease-out}
/* inline-CTA midden in artikel */
.inline-cta{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;margin:44px 0;padding:24px 26px;background:#10151B;border-radius:16px}
.inline-cta__txt{display:flex;flex-direction:column;gap:3px}
.inline-cta__txt strong{color:#fff;font-size:18px;font-weight:700;font-family:'Schibsted Grotesk',sans-serif}
.inline-cta__txt span{color:#a7afba;font-size:14.5px}
.inline-cta__btn{flex:0 0 auto;background:#1B4DFF;color:#fff;padding:13px 22px;border-radius:7px;font-weight:600;text-decoration:none;white-space:nowrap;font-family:'Schibsted Grotesk',sans-serif;transition:transform .2s}
.inline-cta__btn:hover{transform:translateY(-1px)}
/* eind-CTA */
.post-cta{max-width:728px;margin:62px auto 0;padding:46px 32px;background:linear-gradient(140deg,#0A1422,#16263f);border-radius:20px;text-align:center}
.post-cta__eyebrow{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:#6E93FF}
.post-cta__title{font-family:'Schibsted Grotesk',sans-serif;font-size:28px;line-height:1.15;font-weight:800;letter-spacing:-0.02em;color:#fff;margin:14px 0 0}
.post-cta__sub{color:#bcc5d2;font-size:16px;line-height:1.6;margin:14px auto 26px;max-width:48ch}
.post-cta__btn{display:inline-block;background:#fff;color:#10151B;padding:15px 30px;border-radius:8px;font-weight:700;text-decoration:none;font-family:'Schibsted Grotesk',sans-serif;transition:transform .2s,box-shadow .2s}
.post-cta__btn:hover{transform:translateY(-2px);box-shadow:0 18px 40px -16px rgba(0,0,0,.6)}
/* auteursblok */
.post-author{max-width:728px;margin:40px auto 0;padding:28px 24px 0;border-top:1px solid #E4E1D8}
.post-author__name{font-family:'Schibsted Grotesk',sans-serif;font-weight:700;color:#10151B;font-size:16px}
.post-author__bio{color:#525c68;font-size:15.5px;line-height:1.6;margin:7px 0 9px;max-width:60ch}
.post-author__links a{color:#1B4DFF;font-weight:600;font-size:14px;text-decoration:none;margin-right:14px}
/* verwante artikelen */
.post-related{max-width:728px;margin:50px auto 0;padding:0 24px}
.post-related__h{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:.1em;text-transform:uppercase;color:#1B4DFF;margin:0 0 14px}
.post-related a{display:block;padding:17px 0;border-bottom:1px solid #E4E1D8;color:#10151B;font-family:'Schibsted Grotesk',sans-serif;font-weight:600;font-size:17.5px;text-decoration:none;transition:color .2s}
.post-related a:first-of-type{border-top:1px solid #E4E1D8}
.post-related a:hover{color:#1B4DFF}
/* sticky leesbalk */
.readbar{position:fixed;left:0;right:0;bottom:0;z-index:1050;display:flex;align-items:center;justify-content:space-between;gap:14px;padding:12px 18px;background:rgba(16,21,27,.97);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);transform:translateY(120%);transition:transform .4s cubic-bezier(.16,1,.3,1)}
.readbar.show{transform:none}
.readbar__t{color:#fff;font-weight:600;font-size:14.5px;font-family:'Schibsted Grotesk',sans-serif}
.readbar__b{flex:0 0 auto;background:#1B4DFF;color:#fff;padding:11px 18px;border-radius:6px;font-weight:600;font-size:14px;text-decoration:none;white-space:nowrap;font-family:'Schibsted Grotesk',sans-serif}
@media(min-width:920px){.readbar{left:auto;right:24px;bottom:24px;max-width:350px;border-radius:14px;box-shadow:0 24px 50px -20px rgba(0,0,0,.55)}}
@media(max-width:560px){.article-header h1{font-size:30px}.article-content,.article-content p,.article-content li{font-size:18px}.post-cta{padding:36px 22px;border-radius:16px}.post-cta__title{font-size:23px}.inline-cta{padding:20px}}

/* ================= BLOG-OVERZICHT (index) ================= */
.blog-hero{max-width:1180px;margin:0 auto;padding:74px 32px 6px;text-align:center}
.blog-hero h1{font-family:'Schibsted Grotesk',sans-serif;font-size:clamp(34px,5.6vw,56px);line-height:1.05;letter-spacing:-0.035em;font-weight:800;color:#10151B;margin:0 auto;max-width:17ch}
.blog-hero p{font-size:19px;line-height:1.55;color:#525c68;margin:20px auto 0;max-width:60ch}
.blog-categories{max-width:1180px;margin:0 auto}
.blog-categories__list{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;padding:36px 32px 0}
.blog-cat-btn{font-family:'IBM Plex Mono',monospace;font-size:12.5px;letter-spacing:.03em;font-weight:500;color:#525c68;background:#fff;border:1px solid #E4E1D8;border-radius:100px;padding:9px 18px;cursor:pointer;transition:all .2s}
.blog-cat-btn:hover{border-color:#10151B;color:#10151B}
.blog-cat-btn.active{background:#10151B;border-color:#10151B;color:#fff}
.blog-grid-section{max-width:1180px;margin:0 auto;padding:44px 32px 84px}
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:30px}
.post-card{display:flex;flex-direction:column;background:#fff;border:1px solid #EAE7DE;border-radius:18px;overflow:hidden;text-decoration:none;transition:transform .35s cubic-bezier(.16,1,.3,1),box-shadow .35s,border-color .35s}
.post-card:hover{transform:translateY(-4px);box-shadow:0 28px 50px -28px rgba(16,21,27,.3);border-color:#dcd8cd}
.post-card__img-wrap{position:relative;aspect-ratio:16/10;overflow:hidden}
.post-card__img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.post-card:hover .post-card__img-wrap img{transform:scale(1.04)}
.post-card__category{position:absolute;top:14px;left:14px;font-family:'IBM Plex Mono',monospace;font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:#10151B;background:rgba(247,246,242,.92);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);padding:6px 11px;border-radius:6px}
.post-card__body{display:flex;flex-direction:column;flex:1;padding:22px 22px 24px}
.post-card__title{font-family:'Schibsted Grotesk',sans-serif;font-size:21px;line-height:1.25;letter-spacing:-0.02em;font-weight:700;color:#10151B;margin:0}
.post-card__excerpt{font-size:15px;line-height:1.6;color:#5a6470;margin:11px 0 0}
.post-card__meta{display:flex;align-items:center;gap:8px;margin-top:auto;padding-top:18px;font-size:13px;color:#8a929c}
.post-card__meta-avatar{width:26px;height:26px;border-radius:50%;object-fit:cover}
.post-card__meta-name{font-weight:600;color:#10151B}
.post-card__meta-dot{color:#c3c8cf}
.blog-cta-strip{max-width:1180px;margin:0 auto 84px;padding:0 32px}
.blog-cta-strip__in{background:linear-gradient(140deg,#0A1422,#16263f);border-radius:20px;padding:46px 32px;text-align:center}
.blog-cta-strip__in h3{font-family:'Schibsted Grotesk',sans-serif;font-size:28px;font-weight:800;letter-spacing:-0.02em;color:#fff;margin:0}
.blog-cta-strip__in p{color:#bcc5d2;font-size:16px;margin:12px auto 24px;max-width:48ch}
.blog-cta-strip__in a{display:inline-block;background:#fff;color:#10151B;padding:15px 30px;border-radius:8px;font-weight:700;text-decoration:none;font-family:'Schibsted Grotesk',sans-serif}
@media(max-width:560px){.blog-grid{grid-template-columns:1fr;gap:22px}.blog-hero{padding:52px 22px 6px}.blog-categories__list{padding:28px 22px 0;justify-content:flex-start}.blog-grid-section{padding:32px 22px 60px}.blog-cta-strip{padding:0 22px}}

/* fix: blog-hero geen navy-balk */
.blog-hero{background:transparent!important;border:none!important;box-shadow:none!important}
.blog-hero::before,.blog-hero::after{display:none!important}
