.overzicht-header {
  padding: 40px 140px 0;
  position: relative;
}

.overzicht-header-videos {
  max-width: 1000px;
  margin: 0 auto;
  height: 194px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  position: relative;
}

.overzicht-video {
  width: 50%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  mix-blend-mode: exclusion;
}

.overzicht-video.links {
  transform: scale(1.32);
  transform-origin: center center;
}

.overzicht-titel {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: 'Knewave', sans-serif;
  font-size: 64px;
  color: var(--text);
  letter-spacing: -1.28px;
  line-height: 1.1;
  z-index: 1;
}

/* ── Artikel grid ── */
.overzicht-section {
  padding: 40px 140px 80px;
}

.artikel-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.artikel-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s ease, opacity 0.5s ease, translate 0.5s ease;
  opacity: 0;
  translate: 0 24px;
}

.artikel-card.card-visible {
  opacity: 1;
  translate: 0 0;
}

.artikel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.artikel-afbeelding {
  height: 139px;
  overflow: hidden;
  flex-shrink: 0;
}

.artikel-afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) brightness(0.85);
  transition: filter 0.3s ease;
}

.artikel-card:hover .artikel-afbeelding img {
  filter: saturate(0.7) brightness(0.9);
}

.artikel-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  padding-top: 64px;
  margin-top: -40px;
  background: linear-gradient(to bottom, transparent 0%, var(--card-bg) 45%);
  flex: 1;
  position: relative;
  transition: background 0.3s ease;
}

.artikel-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.artikel-tekst {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.artikel-titel {
  font-family: 'Knewave', sans-serif;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.48px;
  line-height: 1.45;
  height: 76px;
  overflow: hidden;
}

.artikel-intro {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-pijl {
  font-size: 18px;
  color: var(--text-body);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .overzicht-header {
    padding: 32px 40px 0;
  }

  .overzicht-section {
    padding: 32px 40px 60px;
  }

  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .overzicht-header {
    padding: 24px 24px 0;
  }

  .overzicht-titel {
    font-size: 48px;
  }

  .overzicht-section {
    padding: 24px 24px 48px;
  }

  .artikel-grid {
    grid-template-columns: 1fr;
  }
}
