/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1a5cb8;
  --blue-dark:  #154a99;
  --blue-light: #e8f1fb;
  --green:      #059669;
  --green-light:#ecfdf5;
  --orange:     #1a5cb8;
  --orange-light:#e8f1fb;
  --oranje:     #1a5cb8;
  --oranje-dark:#154a99;
  --oranje-light:#e8f1fb;
  --red:        #dc2626;
  --red-light:  #fef2f2;
  --purple:     #7c3aed;
  --purple-light:#f5f3ff;
  --gray-50:    #f9fafb;
  --gray-100:   #f3f4f6;
  --gray-200:   #e5e7eb;
  --gray-400:   #9ca3af;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --gray-800:   #1f2937;
  --gray-900:   #111827;
  --white:      #ffffff;
  --font:       'Inter', system-ui, sans-serif;
  --radius:     10px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 12px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.12);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.logo-light { color: var(--white); }
.logo-img { height: 130px; width: auto; display: block; max-width: 360px; object-fit: contain; }
.logo-img-light { filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
  flex: 1;
}

.nav-link {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-600, #4b5563);
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  background: var(--blue-light);
  color: var(--blue);
}

/* ===== NAV DROPDOWN ===== */
.nav-item { position: relative; }
.nav-item > .nav-link { display: flex; align-items: center; gap: 4px; }
.nav-item > .nav-link::after { content: '▾'; font-size: .7rem; opacity: .6; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 6px;
  background: transparent;
  min-width: 160px;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  display: block;
  position: absolute;
  inset: 6px 0 0 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: -1;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: .875rem;
  color: var(--gray-700);
  font-weight: 500;
  transition: background .12s, color .12s;
}
.nav-dropdown a:hover { background: var(--blue-light); color: var(--blue); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.search-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--gray-500);
  transition: background .15s;
}
.search-btn:hover { background: var(--gray-100); }
.search-btn svg { width: 18px; height: 18px; }

.btn-subscribe {
  padding: 8px 16px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .15s;
  white-space: nowrap;
}
.btn-subscribe:hover { background: var(--blue-dark); }

/* ===== BREAKING TICKER ===== */
.breaking-bar {
  background: linear-gradient(90deg, var(--oranje-dark) 0%, var(--oranje) 50%, var(--oranje-dark) 100%);
  color: var(--white);
  padding: 8px 0;
  overflow: hidden;
}

.breaking-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.breaking-label {
  background: rgba(0,0,0,.18);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-wrap { overflow: hidden; flex: 1; }

.ticker {
  display: inline-flex;
  white-space: nowrap;
  font-size: .875rem;
  animation: ticker 180s linear infinite;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MAIN LAYOUT ===== */
.main-layout { padding: 32px 20px; }

/* ===== FEATURED ===== */
.featured-section { margin-bottom: 40px; }

.featured-slider { position: relative; }

.featured-card {
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.featured-card.active {
  display: grid;
  animation: featuredFade .4s ease;
}
.featured-card:hover { box-shadow: var(--shadow-lg); }

@keyframes featuredFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.featured-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.featured-dots { display: flex; gap: 8px; }

.featured-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300, #d1d5db);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .15s;
}
.featured-dot.active {
  background: var(--primary, #1a5cb8);
  transform: scale(1.3);
}

.featured-prev,
.featured-next {
  background: none;
  border: 1px solid var(--gray-300, #d1d5db);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700, #374151);
  transition: background .15s, border-color .15s;
}
.featured-prev:hover,
.featured-next:hover {
  background: var(--gray-100, #f3f4f6);
  border-color: var(--gray-400, #9ca3af);
}

.featured-image {
  position: relative;
  height: 380px;
}

.featured-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.featured-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--gray-900);
}

.featured-excerpt {
  color: var(--gray-500);
  font-size: .95rem;
  line-height: 1.7;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: var(--gray-500);
}

.author-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  font-weight: 700;
}

.btn-read-more {
  padding: 10px 20px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .15s;
}
.btn-read-more:hover { background: var(--blue-dark); }

/* ===== ARTICLE META ===== */
.article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-400);
}

.category-tag {
  color: var(--blue);
  font-weight: 600;
}

.meta-dot { color: var(--gray-300, #d1d5db); }

/* ===== CATEGORY BADGES ===== */
.category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 600;
}

.badge-primary { background: var(--blue); color: var(--white); }
.badge-blue    { background: var(--blue); color: var(--white); }
.badge-green   { background: var(--green); color: var(--white); }
.badge-orange  { background: var(--orange); color: var(--white); }
.badge-red     { background: var(--red); color: var(--white); }

/* ===== CONTENT + SIDEBAR ===== */
.content-sidebar-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* ===== CATEGORY FILTERS ===== */
.category-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  transition: all .15s;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ===== NEWS GRID ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card-image-link {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image-link img { transition: transform .3s; }
.news-card:hover .card-image-link img { transform: scale(1.04); }

.card-content { padding: 18px; }

.card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 8px 0;
  color: var(--gray-900);
}
.card-title a:hover { color: var(--blue); }

.card-excerpt {
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.read-time { font-size: .78rem; color: var(--gray-400); }

.card-read-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
}
.card-read-link:hover { text-decoration: underline; }

/* ===== LOAD MORE ===== */
.load-more-wrap { text-align: center; margin-top: 32px; }

.btn-load-more {
  padding: 12px 32px;
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .15s;
}
.btn-load-more:hover { background: var(--blue); color: var(--white); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}

/* TRENDING */
.trending-list { display: flex; flex-direction: column; gap: 14px; }

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trending-num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-200);
  min-width: 28px;
  line-height: 1;
}

.trending-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-800);
  line-height: 1.4;
  display: block;
}
.trending-link:hover { color: var(--blue); }

.trending-meta { font-size: .75rem; color: var(--gray-400); margin-top: 2px; display: block; }

/* NEWSLETTER */
.newsletter-widget { background: linear-gradient(135deg, var(--blue) 0%, #3b7dd8 100%); color: var(--white); text-align: center; }
.newsletter-widget .widget-title { color: var(--white); border-color: rgba(255,255,255,.4); }
.newsletter-widget p { font-size: .875rem; opacity: .9; margin-bottom: 14px; }

.newsletter-icon { font-size: 2rem; margin-bottom: 8px; }

.newsletter-form { display: flex; flex-direction: column; gap: 8px; }

.newsletter-input {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  font-size: .875rem;
  font-family: var(--font);
  outline: none;
  color: var(--gray-800);
}

.btn-newsletter {
  padding: 10px;
  background: var(--white);
  color: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  font-size: .875rem;
  transition: opacity .15s;
}
.btn-newsletter:hover { opacity: .9; }

.newsletter-sub { font-size: .75rem; opacity: .7; margin-top: 8px; display: block; }

/* CATEGORIES WIDGET */
.category-list { display: flex; flex-direction: column; gap: 2px; }

.category-list a {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: .875rem;
  color: var(--gray-700);
  transition: background .15s;
}
.category-list a:hover { background: var(--blue-light); color: var(--blue); }
.category-list span { color: var(--gray-400); font-size: .8rem; }

/* AD WIDGET */
.ad-slide img { width: 100%; border-radius: 8px; display: block; }
.ad-video-wrap { position: relative; padding-top: 56.25%; border-radius: 8px; overflow: hidden; }
.ad-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.ad-label { font-size: .78rem; color: var(--gray-500); margin-top: 6px; text-align: center; }
.ad-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.ad-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; padding: 0; transition: background .2s; }
.ad-dot.active { background: var(--blue); }

/* LANG TOGGLE */
.lang-toggle { display: flex; gap: 2px; align-items: center; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 1.25rem; padding: 4px 5px; border-radius: 6px; opacity: .45; transition: opacity .15s, transform .15s; line-height: 1; }
.lang-btn:hover { opacity: .8; transform: scale(1.1); }
.lang-btn.active { opacity: 1; }

/* FLIGHT STATS */
.flightinfo-widget .widget-title { display: block; }

.flight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.stat-item {
  text-align: center;
  background: var(--gray-50);
  border-radius: 8px;
  padding: 10px 6px;
}

.stat-value { display: block; font-size: 1.3rem; font-weight: 800; color: var(--blue); }
.stat-label { font-size: .7rem; color: var(--gray-500); margin-top: 2px; display: block; }

.widget-link { font-size: .8rem; font-weight: 600; color: var(--blue); }
.widget-link:hover { text-decoration: underline; }

/* ===== DOSSIERS ===== */
.dossiers-section { margin-top: 40px; }

.section-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.dossiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dossier-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.dossier-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.dossier-card h3 { font-size: .95rem; font-weight: 700; }
.dossier-card p  { font-size: .8rem; opacity: .8; }
.dossier-icon    { font-size: 1.8rem; }

.dossier-blue   { background: var(--blue-light); color: var(--blue-dark); }
.dossier-green  { background: var(--green-light); color: var(--green); }
.dossier-orange { background: var(--orange-light); color: var(--orange); }
.dossier-purple { background: var(--purple-light); color: var(--purple); }

/* ===== HUIS ADVERTENTIE ===== */
.house-ad-widget { padding: 0; overflow: hidden; }

.house-ad-link {
  display: block;
  padding: 24px 20px;
  background: repeating-linear-gradient(
    45deg,
    var(--gray-50),
    var(--gray-50) 6px,
    var(--white) 6px,
    var(--white) 12px
  );
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.house-ad-link:hover {
  border-color: var(--oranje);
  background: var(--oranje-light);
}

.house-ad-label {
  font-size: .68rem;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.house-ad-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-800);
  margin-bottom: 8px;
}
.house-ad-sub {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 14px;
}
.house-ad-cta {
  display: inline-block;
  padding: 7px 16px;
  background: var(--oranje);
  color: var(--white);
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 700;
}
.house-ad-link:hover .house-ad-cta { background: var(--oranje-dark); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 48px 20px 32px;
}

.footer-brand { max-width: 280px; }
.footer-brand .logo { margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { font-size: .875rem; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: .875rem;
  color: var(--gray-400);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 16px 20px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
}

.social-links { display: flex; gap: 16px; }

.social-links a {
  color: var(--gray-400);
  font-weight: 700;
  font-size: .9rem;
  transition: color .15s;
}
.social-links a:hover { color: var(--white); }

/* ===== WK ORANJE THEME ===== */
.wk-bar {
  background: linear-gradient(90deg, var(--oranje-dark) 0%, var(--oranje) 50%, var(--oranje-dark) 100%);
  color: var(--white);
  padding: 9px 0;
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.wk-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.wk-flag { font-size: 1.1rem; line-height: 1; }
.wk-tag {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  padding: 2px 10px;
  border-radius: 4px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

/* Oranje accenten */
.btn-subscribe           { background: var(--oranje); }
.btn-subscribe:hover     { background: var(--oranje-dark); }

.filter-btn.active       { background: var(--oranje); border-color: var(--oranje); color: var(--white); }
.filter-btn:hover        { background: var(--oranje); border-color: var(--oranje); color: var(--white); }

.badge-primary           { background: var(--oranje); }

.widget-title            { border-color: var(--oranje); }

.btn-load-more           { border-color: var(--oranje); color: var(--oranje); }
.btn-load-more:hover     { background: var(--oranje); color: var(--white); border-color: var(--oranje); }

/* ===== MOBILE MENU ===== */
.menu-toggle { display: none; }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.38);
  z-index: 97;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .dossiers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Header */
  .header-inner { justify-content: space-between; gap: 10px; padding: 0 16px; height: 64px; }
  .logo-img { height: 44px; max-width: 220px; }
  .logo { margin-left: 20px; }
  .btn-subscribe { display: none; }

  /* Hamburger button */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .15s;
  }
  .menu-toggle:hover { background: var(--gray-100); }
  .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: transform .22s ease, opacity .22s ease;
    transform-origin: center;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Mobile nav drawer */
  .main-nav {
    display: block;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    overflow-y: auto;
    z-index: 98;
    padding: 4px 0 32px;
    border-top: 1px solid var(--gray-100);
    transform: translateX(-100%);
    transition: transform .26s cubic-bezier(.4,0,.2,1);
    box-shadow: var(--shadow-lg);
  }
  .main-nav.nav-open { transform: translateX(0); }

  .main-nav .nav-link {
    display: block;
    padding: 14px 20px;
    font-size: .975rem;
    font-weight: 500;
    border-radius: 0;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav .nav-link:hover,
  .main-nav .nav-link.active { background: var(--blue-light); color: var(--blue); }

  .main-nav .nav-item { position: static; }
  .main-nav .nav-item > .nav-link::after { display: none; }

  .main-nav .nav-dropdown {
    display: block;
    position: static;
    padding: 0;
    min-width: 0;
    background: transparent;
    box-shadow: none;
  }
  .main-nav .nav-dropdown::before { display: none; }
  .main-nav .nav-dropdown a {
    padding: 11px 20px 11px 36px;
    font-size: .875rem;
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav .nav-dropdown a:hover { background: var(--blue-light); color: var(--blue); }

  /* Layout */
  .container { padding: 0 20px; }
  .main-layout { padding: 20px 16px; }

  /* Featured */
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { height: 220px; }
  .featured-content { padding: 20px 20px 24px; gap: 12px; }
  .featured-title { font-size: 1.25rem; }
  .featured-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .featured-excerpt { font-size: .875rem; }
  .featured-section { margin-bottom: 28px; }

  /* Grid-kinderen: voorkom blowout door auto min-width */
  .content-sidebar-wrap > * { min-width: 0; }

  /* Category filters: horizontal scroll, no wrap */
  .category-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 4px;
    margin-bottom: 20px;
  }
  .category-filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* News grid */
  .news-grid { grid-template-columns: 1fr; gap: 14px; }
  .news-card:hover { transform: none; }
  .card-image-link { height: 180px; }
  .card-content { padding: 14px; }

  /* Sidebar */
  .sidebar { grid-template-columns: 1fr; }

  /* Dossiers */
  .dossiers-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dossier-card { padding: 18px 14px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 16px 24px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 12px; }
  .breaking-label { display: none; }
  .dossiers-grid { grid-template-columns: 1fr; }
  .flight-stats { grid-template-columns: repeat(3, 1fr); }
  .featured-image { height: 195px; }
  .card-image-link { height: 160px; }
  .footer-bottom .container { flex-direction: column; gap: 10px; text-align: center; }
  .section-title { font-size: 1.1rem; }
}
