/* ============================================================
   Lokale SEO Artikel – lokale-seo.css
   ============================================================ */

/* ── Hero Centered ── */
.hero-centered .hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-centered .hero-content { text-align: center; }
.hero-centered .hero-badge { justify-content: center; }
.hero-centered .hero-actions { justify-content: center; }

/* ── Artikel info bar (in hero) ── */
.kb-article-info {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.kb-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ── Artikel Layout ── */
.kb-article-section {
  padding: 80px 0 96px;
  background: var(--white);
}
.kb-article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* ── Artikel Content ── */
.kb-article-content {
  min-width: 0;
}
.kb-article-content h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--gray-800);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.kb-article-content h2:first-child { margin-top: 0; }
.kb-article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-800);
  margin: 32px 0 12px;
}
.kb-article-content p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}
.kb-article-content strong { color: var(--gray-800); }
.kb-article-content a { color: var(--blue); text-decoration: underline; }

/* ── Info box ── */
.kb-info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 32px 0;
}
.kb-info-box p {
  margin: 0;
  color: var(--blue-dark);
  font-weight: 500;
  font-size: 15px;
}

/* ── Definitie box ── */
.kb-definition {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 0 0 32px;
}
.kb-definition-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 8px;
}
.kb-definition p {
  font-size: 17px;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* ── Checklist ── */
.kb-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.kb-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}
.kb-checklist li:last-child { border-bottom: none; }
.kb-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Tags ── */
.kb-article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.kb-tag {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

/* ── Sidebar ── */
.kb-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kb-toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.kb-toc-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.kb-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kb-toc-list li a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
}
.kb-toc-list li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.kb-sidebar-cta {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.kb-sidebar-cta h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.kb-sidebar-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 20px;
}
.kb-sidebar-cta .btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.kb-sidebar-related {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.kb-sidebar-related h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-600);
  margin-bottom: 16px;
}
.kb-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kb-related-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.4;
}
.kb-related-list li:last-child a { border-bottom: none; }
.kb-related-list li a:hover { color: var(--blue); }
.kb-related-list li a svg { flex-shrink: 0; color: var(--blue); }

/* ── Gerelateerde artikelen sectie ── */
.kb-related-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.kb-related-header {
  text-align: center;
  margin-bottom: 48px;
}
.kb-related-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-800);
}
.kb-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.kb-related-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kb-related-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.kb-related-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
}
.kb-related-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.4;
  margin: 0;
}
.kb-related-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.kb-related-card-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

/* ── CTA Band ── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 80px 0;
}
.cta-band-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band-inner h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .kb-article-layout { grid-template-columns: 1fr; }
  .kb-sidebar { position: static; }
  .kb-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .kb-article-section { padding: 48px 0 64px; }
  .kb-article-content h2 { font-size: 22px; }
  .kb-article-content h3 { font-size: 18px; }
  .kb-related-grid { grid-template-columns: 1fr; }
  .kb-article-info { gap: 16px; }
  .cta-band-inner h2 { font-size: 28px; }
}

/* Mobile: uniforme vlak-padding */
@media (max-width: 480px) {
  .kb-definition,
  .kb-info-box,
  .kb-toc,
  .kb-sidebar-cta,
  .kb-sidebar-related,
  .kb-related-card { padding: 24px 20px; }
}
