/* ============================================================
   BLOG OVERZICHT — "Editorial Premium" (home.php + archive.php)
   nile-900 doorlopend, gold eyebrow, nile-800 kaarten met hairline.
   ============================================================ */

/* ── PAGE HERO BLOG (gecentreerd, donker) ── */
.blog-page-hero {
  position: relative;
  padding: clamp(140px, 16vw, 200px) var(--pad) clamp(56px, 8vw, 96px);
  background: var(--nile-900);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-page-hero::after {
  content: '';
  position: absolute;
  left: var(--pad); right: var(--pad); bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,.5), transparent);
}
.blog-page-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  display: flex;
  justify-content: center;
}
.blog-page-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 760px;
}
.blog-page-hero .eyebrow { justify-content: center; }
.blog-page-hero .heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--n-0);
  margin: 0;
}
.blog-page-hero .subheading {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,.8);
  margin: 0;
}

/* ── BLOG OVERZICHT SECTIE ── */
.blog-overview {
  padding: clamp(72px, 10vw, 130px) var(--pad);
  background: var(--nile-900);
}
.blog-overview .section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* ── SECTIE TITEL ── */
.blog-section-title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 620px;
}
.blog-section-title .section-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--n-0);
  margin: 6px 0 0;
}
.blog-section-title .section-subheading {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--nile-300);
  margin: 0;
}

/* ── LAYOUT: sidebar + content ── */
.blog-layout { display: flex; gap: 64px; align-items: flex-start; }

/* ── CATEGORIES SIDEBAR ── */
.blog-categories { position: sticky; top: 110px; flex-shrink: 0; width: 230px; }
.blog-categories-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--n-0);
  margin: 0 0 20px;
}
.blog-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.blog-cat-list li a {
  display: block;
  padding: 11px 16px;
  border-radius: var(--r-md);
  color: var(--nile-300);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s;
}
.blog-cat-list li a:hover { background: rgba(255,255,255,.04); color: var(--n-0); }
.blog-cat-list li.active a {
  background: var(--teal-700);
  color: var(--n-0);
  font-weight: 600;
}

/* ── POSTS KOLOM ── */
.blog-posts-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 56px; }

/* ── GEDEELDE KAART BASIS ── */
.blog-featured-card,
.blog-card {
  background: var(--nile-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.blog-featured-card:hover,
.blog-card:hover { transform: translateY(-4px); border-color: rgba(59,198,177,.35); }

.blog-featured-card .card-img,
.blog-featured-card .card-img-placeholder {
  width: 100%; aspect-ratio: 976 / 450; object-fit: cover; display: block;
}
.blog-featured-card .card-img-placeholder { background: var(--nile-700); }

.blog-featured-card .card-body,
.blog-card .card-body { padding: 26px; display: flex; flex-direction: column; gap: 22px; }

/* ── KLEINE CARDS GRID ── */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-body { flex: 1; justify-content: space-between; }
.blog-card .card-img,
.blog-card .card-img-placeholder {
  width: 100%; aspect-ratio: 472 / 266; object-fit: cover; display: block;
}
.blog-card .card-img-placeholder { background: var(--nile-700); }

/* ── INFO ROW ── */
.card-info { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* TAG — gold pill */
.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 160, 23, 0.14);
  border: 1px solid rgba(212, 160, 23, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gold-300);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.blog-tag:hover { background: rgba(212, 160, 23, 0.25); }

.blog-read-time, .blog-date {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--nile-300);
  white-space: nowrap;
}

/* ── KAART TEKST ── */
.card-content { display: flex; flex-direction: column; gap: 10px; }
.card-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--n-0);
  text-decoration: none;
  display: block;
  transition: color 0.15s;
}
.card-heading:hover { color: var(--teal-300); }
.blog-card .card-heading { font-size: 24px; line-height: 1.2; }
.card-excerpt { font-size: 16px; font-weight: 300; line-height: 1.55; color: var(--nile-300); margin: 0; }

/* ── LEES MEER LINK ── */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-300);
  text-decoration: none;
  line-height: 1.5;
  transition: gap 0.15s;
}
.card-link:hover { gap: 12px; }
.card-link .ico { width: 16px; height: 16px; }

/* ── PAGINATIE ── */
.blog-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--r-md);
  background: var(--nile-800);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--n-0);
  text-decoration: none;
  font-size: 15px;
  transition: background 0.15s, border-color 0.15s;
}
.blog-pagination .page-numbers .ico { width: 16px; height: 16px; }
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .blog-layout { flex-direction: column; gap: 40px; }
  .blog-categories { position: static; width: 100%; }
  .blog-cat-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .blog-cat-list li a { border: 1px solid rgba(255,255,255,.1); }
}
@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-card .card-heading { font-size: 26px; }
}
