/*
Theme Name: KTW Magazine
Theme URI: https://ktwmagazine.com
Author: KTW Magazine
Author URI: https://ktwmagazine.com
Description: Eerlijk over Disneyland Parijs — onafhankelijk, betrouwbaar, Nederlandstalig.
Version: 2.0.6
License: GNU General Public License v2 or later
Text Domain: ktw-magazine
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Kleuren */
  --navy:        #263674;
  --navy-dark:   #1c2a5c;
  --navy-deeper: #11203f;
  --blue-soft:   #4d87c0;
  --accent:      #feb533;
  --green:       #1f9d6b;
  --green-live:  #34d27b;
  --amber:       #e0991f;
  --red:         #d8483f;

  /* Achtergronden */
  --bg-paper:  #FAF7F0;
  --bg-white:  #ffffff;
  --bg-cool:   #f2f0ea;

  /* Randen & dividers */
  --border:    #ece7da;
  --border-md: #e3ddd0;

  /* Tekst */
  --text-ink:  #2b2b33;
  --text-body: #3a3a40;
  --text-muted:#55534c;
  --text-meta: #8a8578;
  --text-faint:#a59a82;

  /* Fonts */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1240px;
  --gap:   28px;

  /* Schaduwen */
  --shadow-sm: 0 1px 4px rgba(38,54,116,.06);
  --shadow-md: 0 4px 16px rgba(38,54,116,.10);
  --shadow-lg: 0 8px 32px rgba(38,54,116,.13);

  /* Straal */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 14px;

  /* Aliassen voor template-compatibiliteit */
  --font-serif:    'Playfair Display', Georgia, serif;
  --color-primary: #263674;
  --color-accent:  #feb533;
  --color-bg-light:#f5f4ef;
  --container-max: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--blue-soft); }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  color: var(--navy);
  line-height: 1.1;
  font-weight: 700;
}

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LIVE TICKER
   ============================================================ */
.ktw-ticker {
  background: var(--navy-deeper);
  color: #cdd6ea;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 30px;
  font: 500 11.5px/1 var(--mono);
  overflow: hidden;
  white-space: nowrap;
  height: 34px;
}

.ktw-ticker__live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  flex: none;
  padding-right: 18px;
  margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.ktw-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-live);
  animation: ktwpulse 2s infinite;
}

@keyframes ktwpulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.ktw-ticker__items {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: tickerScroll 30s linear infinite;
}

.ktw-ticker__sep { opacity: .3; }

.ktw-ticker__highlight { color: var(--accent); font-weight: 700; }
.ktw-ticker__green     { color: var(--green-live); font-weight: 700; }

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

/* ============================================================
   HEADER / NAVIGATIE
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.site-header__bar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
  text-decoration: none;
}

.site-header__logo {
  height: 45px !important;
  width: auto !important;
  max-height: 45px !important;
  max-width: 180px !important;
}

/* WordPress custom logo — forceer klein formaat */
.custom-logo,
img.custom-logo,
.site-header .custom-logo,
.custom-logo-link img,
.site-header .custom-logo-link img,
.wp-custom-logo .custom-logo,
a.custom-logo-link img {
  height: 45px !important;
  width: auto !important;
  max-height: 45px !important;
  max-width: 180px !important;
  display: block !important;
  object-fit: contain !important;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.site-header__tagline {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 14px;
  font: 600 9px/1.45 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  max-width: 160px;
}

/* Navigatie */
.site-nav {
  display: flex;
  gap: 2px;
  list-style: none;
}

.site-nav a {
  display: block;
  padding: 8px 13px;
  font: 600 13.5px/1 var(--sans);
  color: #aebbd9;
  border-radius: 7px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav .current-menu-item a,
.site-nav .current_page_item a {
  color: #fff;
  background: rgba(255,255,255,.08);
}

/* CTA knop */
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.btn-tickets {
  background: var(--accent);
  color: var(--navy);
  font: 700 12.5px/1 var(--sans);
  padding: 10px 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .15s, transform .1s;
  white-space: nowrap;
}

.btn-tickets:hover {
  background: #ffc44d;
  color: var(--navy);
  transform: translateY(-1px);
}

.header-search-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aebbd9;
  font-size: 16px;
  cursor: pointer;
  background: none;
  transition: background .15s;
}

.header-search-btn:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: .2s;
}

/* ============================================================
   HOMEPAGE — HERO SPLIT (Hoofdverhaal + Live Widget)
   ============================================================ */
.home-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 30px 28px;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: var(--gap);
}

/* Hoofdverhaal kaart */
.featured-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.featured-card__image {
  position: relative;
  height: 320px;
  background: #cfd9ec;
  overflow: hidden;
}

.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font: 700 10px/1 var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 7px;
}

.featured-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, transparent, rgba(20,32,63,.93));
}

.featured-card__cat {
  font: 700 10px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.featured-card__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 10px;
}

.featured-card__byline {
  font: 500 12px/1 var(--mono);
  color: #cdd6ea;
}

/* Secundaire artikelen (4-kolom) */
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.secondary-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: box-shadow .2s;
  text-decoration: none;
}

.secondary-card:hover { box-shadow: var(--shadow-md); }

.secondary-card__thumb {
  height: 100px;
  background: #dae2f1;
  overflow: hidden;
}

.secondary-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-card__body {
  padding: 13px 14px 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.secondary-card__cat {
  font: 700 9px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 7px;
}

.secondary-card__cat--nieuws { color: var(--red); }
.secondary-card__cat--hotels { color: var(--red); }
.secondary-card__cat--gids   { color: var(--green); }
.secondary-card__cat--eten   { color: var(--amber); }
.secondary-card__cat--tips   { color: var(--blue-soft); }

.secondary-card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 7px;
}

.secondary-card__excerpt {
  font-size: 12px;
  color: var(--text-meta);
  line-height: 1.45;
  margin-top: auto;
}

/* ============================================================
   LIVE PARK WIDGET (homepage sidebar)
   ============================================================ */
.park-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.park-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.park-widget__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
}

.park-widget__live {
  font: 600 10px/1 var(--mono);
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 5px;
}

.park-widget__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: ktwpulse 2s infinite;
}

/* Drukte-index kaart */
.drukte-card {
  background: #eafaf2;
  border: 1px solid #c4ead7;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.drukte-card.drukte--matig {
  background: #fdf3e2;
  border-color: #f0d89a;
}

.drukte-card.drukte--druk {
  background: #fbeeee;
  border-color: #e8bebe;
}

.drukte-card__label {
  font: 600 10px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.drukte--laag  .drukte-card__label { color: var(--green); }
.drukte--matig .drukte-card__label { color: var(--amber); }
.drukte--druk  .drukte-card__label { color: var(--red); }

.drukte-card__level {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 6px;
}

.drukte-card__value {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 27px;
}

.drukte--laag  .drukte-card__value { color: var(--green); }
.drukte--matig .drukte-card__value { color: var(--amber); }
.drukte--druk  .drukte-card__value { color: var(--red); }

.drukte-card__sub {
  font: 500 12px/1 var(--mono);
  color: #7a9c8c;
}

/* Wachttijden lijst */
.wachttijden-label {
  font: 600 10px/1 var(--mono);
  color: var(--text-meta);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.wt-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 16px;
}

.wt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.wt-row__name { color: #3a3a44; font-weight: 500; }

.wt-badge {
  font: 700 12px/1 var(--mono);
  padding: 4px 9px;
  border-radius: 6px;
}

.wt-badge--low    { color: var(--green); background: #eafaf2; }
.wt-badge--mid    { color: var(--amber); background: #fdf3e2; }
.wt-badge--high   { color: var(--red);   background: #fbeeee; }
.wt-badge--closed { color: var(--text-meta); background: #f0ebe0; }

.park-widget__cta {
  margin-top: auto;
  background: var(--navy);
  color: #fff;
  font: 700 12px/1 var(--sans);
  padding: 12px;
  border-radius: 9px;
  text-align: center;
  transition: background .15s;
  display: block;
  margin-top: 18px;
}

.park-widget__cta:hover { background: var(--navy-deeper); color: #fff; }

/* Wachttijd fout */
.wt-error {
  font-size: 12px;
  color: var(--text-meta);
  text-align: center;
  padding: 16px 0;
}

/* ============================================================
   AFFILIATE STRIP
   ============================================================ */
.affiliate-strip {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 30px 28px;
}

.affiliate-strip__inner {
  background: linear-gradient(120deg, var(--navy), #34478a);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.affiliate-strip__label {
  font: 700 10px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 9px;
}

.affiliate-strip__text {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  line-height: 1.18;
  max-width: 560px;
}

.btn-primary {
  background: var(--accent);
  color: var(--navy);
  font: 700 13px/1 var(--sans);
  padding: 13px 22px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover { background: #ffc44d; transform: translateY(-1px); color: var(--navy); }

/* ============================================================
   TOOLS SECTIE
   ============================================================ */
.tools-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 30px;
}

.tools-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.tools-section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}

.tools-section__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
}

.tools-section__more {
  font: 600 12px/1 var(--mono);
  color: var(--blue-soft);
  transition: color .15s;
}

.tools-section__more:hover { color: var(--navy); }

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

.tool-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  background: var(--bg-paper);
  transition: box-shadow .2s;
  display: block;
  text-decoration: none;
}

.tool-card:hover { box-shadow: var(--shadow-md); }

.tool-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 13px;
}

.tool-card__icon--budget   { background: #eef2fb; color: var(--blue-soft); }
.tool-card__icon--shuttle  { background: #fbeeee; color: var(--red); }
.tool-card__icon--kalender { background: #eafaf2; color: var(--green); }
.tool-card__icon--hotel    { background: #fdf3e2; color: var(--amber); }

.tool-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 5px;
  font-family: var(--sans);
}

.tool-card__desc {
  font-size: 12px;
  color: var(--text-meta);
  line-height: 1.5;
  margin-bottom: 12px;
}

.tool-card__link {
  font: 600 11.5px/1 var(--mono);
  color: var(--blue-soft);
}

.tool-card:hover .tool-card__link { color: var(--navy); }

/* ============================================================
   ARTIKEL GRID (homepage + archief)
   ============================================================ */
.articles-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 30px 48px;
}

.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

.articles-header__title {
  font: 700 11px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
}

.articles-header__more {
  font: 600 12px/1 var(--mono);
  color: var(--blue-soft);
}

.articles-header__more:hover { color: var(--navy); }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Artikel kaart */
.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
}

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.article-card__thumb {
  height: 180px;
  background: linear-gradient(135deg, #dae2f1, #c8d4ee);
  overflow: hidden;
}

.article-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.article-card:hover .article-card__thumb img { transform: scale(1.03); }

.article-card__body {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.article-card__cat {
  font: 700 9px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.article-card__cat--nieuws { color: var(--red); }
.article-card__cat--hotels { color: var(--red); }
.article-card__cat--gids   { color: var(--green); }
.article-card__cat--eten   { color: var(--amber); }
.article-card__cat--tips   { color: var(--blue-soft); }

.article-card__date {
  font: 500 11px/1 var(--mono);
  color: var(--text-meta);
}

.article-card__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 10px;
}

.article-card__excerpt {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.article-card__read {
  font: 600 12px/1 var(--mono);
  color: var(--blue-soft);
  margin-top: auto;
}

.article-card:hover .article-card__read { color: var(--navy); }

/* ============================================================
   ADVERTENTIEBLOKKEN
   ============================================================ */
.ad-leaderboard {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 30px;
  text-align: center;
}

.ad-label {
  font: 600 9px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.ad-slot {
  background: #f5f2ea;
  border: 1px dashed var(--border-md);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font: 500 11px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ad-slot--728x90  { width: 100%; max-width: 728px; height: 90px; margin: 0 auto; }
.ad-slot--970x90  { width: 100%; max-width: 970px; height: 90px; margin: 0 auto; }
.ad-slot--300x250 { width: 300px; height: 250px; }

/* Sticky ad balk */
.ad-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(250,247,240,.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ad-sticky__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border-md);
  border-radius: 6px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  color: var(--text-meta);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
}

.ad-sticky__close:hover { background: var(--border); }

/* ============================================================
   ARCHIEF PAGINA
   ============================================================ */
.archive-hero {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 36px 30px 32px;
}

.archive-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.archive-hero__breadcrumb {
  font: 500 11.5px/1 var(--mono);
  color: var(--text-meta);
  margin-bottom: 16px;
}

.archive-hero__breadcrumb a { color: var(--blue-soft); }

.archive-hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 42px);
  color: var(--navy);
  margin-bottom: 10px;
}

.archive-hero__desc {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

.archive-grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 30px 56px;
}

/* ============================================================
   ARTIKEL (single.php)
   ============================================================ */
.single-hero {
  height: 420px;
  position: relative;
  background: #cfd9ec;
  overflow: hidden;
}

.single-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,42,92,.15), rgba(28,42,92,.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.single-hero__cat {
  font: 700 10px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.single-hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  color: #fff;
  max-width: 720px;
  margin-bottom: 14px;
}

.single-hero__byline {
  font: 500 12px/1 var(--mono);
  color: #cdd6ea;
}

/* Artikel layout */
.single-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 30px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.single-content {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--text-body);
}

.single-content h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  margin: 32px 0 14px;
}

.single-content h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin: 24px 0 10px;
}

.single-content p { margin-bottom: 1.2em; }

.single-content blockquote {
  margin: 28px 0;
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  color: var(--navy);
}

.single-content ul, .single-content ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}

.single-content li { margin-bottom: .5em; }

.single-content img {
  border-radius: 10px;
  margin: 20px 0;
}

.single-content a { color: var(--blue-soft); text-decoration: underline; }

/* Byline rij */
.byline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 28px;
}

.byline-row__author {
  display: flex;
  align-items: center;
  gap: 11px;
}

.byline-row__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex: none;
  font-family: var(--sans);
}

.byline-row__name {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  font-family: var(--sans);
}

.byline-row__meta {
  font: 500 11px/1 var(--mono);
  color: var(--text-meta);
}

/* Inline affiliate blok */
.inline-affiliate {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 20px 22px;
  margin: 24px 0;
}

.inline-affiliate__label {
  font: 700 9px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b08a2e;
  margin-bottom: 9px;
}

.inline-affiliate__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 7px;
}

.inline-affiliate__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Mid-artikel tool CTA */
.mid-article-cta {
  background: var(--navy);
  border-radius: 14px;
  padding: 26px;
  margin: 28px 0;
  text-align: center;
}

.mid-article-cta__label {
  font: 700 9px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.mid-article-cta__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.mid-article-cta__desc {
  font-size: 13px;
  color: #cdd6ea;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Sticky sidebar */
.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.single-sidebar .sticky-inner {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-affiliate,
.sidebar-tool,
.sidebar-related {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}

.sidebar-affiliate__label {
  font: 700 9px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b08a2e;
  margin-bottom: 10px;
}

.sidebar-affiliate__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 5px;
}

.sidebar-affiliate__price {
  font: 600 11px/1 var(--mono);
  color: var(--green);
  margin-bottom: 13px;
}

.sidebar-tool {
  background: var(--navy);
}

.sidebar-tool__label {
  font: 700 9px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.sidebar-tool__title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--sans);
}

.sidebar-tool__desc {
  font-size: 12px;
  color: #cdd6ea;
  line-height: 1.55;
  margin-bottom: 12px;
}

.sidebar-related__label {
  font: 700 9px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-meta);
  margin-bottom: 12px;
}

.related-link {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  color: var(--navy);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.related-link:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.related-link:hover { color: var(--blue-soft); }

/* ============================================================
   PAGINERING
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  font: 600 13px/1 var(--sans);
  color: var(--navy);
  background: var(--bg-white);
  transition: .15s;
  text-decoration: none;
}

.pagination .current,
.pagination .page-numbers:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deeper);
  color: #8a99c2;
  padding: 48px 30px 28px;
  margin-top: 60px;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}

.site-footer__brand-name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.site-footer__brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #8a99c2;
  max-width: 260px;
  margin-bottom: 0;
}

.site-footer__col-title {
  font: 700 10px/1 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.site-footer__links a {
  font-size: 13.5px;
  color: #8a99c2;
  transition: color .15s;
}

.site-footer__links a:hover { color: #fff; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: 500 12px/1 var(--mono);
  color: #5a6890;
}

.site-footer__disclaimer {
  font-size: 11px;
  color: #4a5577;
  line-height: 1.5;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS (herbruikbaar)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font: 700 13px/1 var(--sans);
  padding: 11px 20px;
  border-radius: 9px;
  transition: .15s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover { background: var(--navy-dark); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,.08); color: #fff; }

/* ============================================================
   LOGO TEKST FALLBACK
   ============================================================ */
.ktw-logo-text {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 31px;
  color: #fff;
  letter-spacing: -.5px;
}
.ktw-logo-accent { color: var(--accent); }

/* ============================================================
   PAGE HERO (pagina's)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #34478a 100%);
  padding: 52px 30px 44px;
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero__title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.1;
}

.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   NOT FOUND / 404
   ============================================================ */
.not-found-wrap {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 30px;
  text-align: center;
}

.not-found-wrap h1 {
  font-size: 80px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .home-hero { grid-template-columns: 1fr; }
  .park-widget { display: none; }
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid   { grid-template-columns: repeat(2, 1fr); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { display: none; }
  .affiliate-strip__inner { flex-direction: column; text-align: center; }
}

/* ---- NAV HAMBURGER (≤900px) — nav past niet meer op smallere tablets ---- */
@media (max-width: 900px) {
  .site-header__tagline { display: none; }
  .site-nav { display: none; }
  .nav-toggle { display: flex; }

  #primary-nav.is-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255,255,255,.08);
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }

  #primary-nav.is-open .site-nav li { width: 100%; }
  #primary-nav.is-open .site-nav a {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.05);
  }
}

/* ---- TABLET (768px) ---- */
@media (max-width: 768px) {
  .site-header__inner { padding: 10px 20px; gap: 16px; }
  .btn-tickets { padding: 9px 14px; font-size: 12px; }
  .article-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .tools-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hotels-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-section { padding: 44px 20px 38px; }
  .ad-leaderboard { padding: 16px 20px; }
  .wt-filter-bar { gap: 8px; }
  .wt-filter-btn { font-size: 12px; padding: 7px 13px; }
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card__title { font-size: 22px; }
}

@media (max-width: 640px) {
  :root { --gap: 18px; }

  .ktw-ticker { display: none; }
  .site-header__inner { padding: 10px 16px; }

  .home-hero { padding: 20px 16px; }
  .secondary-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }

  .articles-section,
  .archive-grid-wrap,
  .tools-section,
  .affiliate-strip { padding-left: 16px; padding-right: 16px; }

  .single-hero { height: 280px; }
  .single-hero__overlay { padding: 24px; }
  .single-layout { padding: 24px 16px 40px; }

  .site-footer { padding: 36px 16px 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .ad-sticky { padding: 8px 16px; }

  /* Hero-sectie mobile padding */
  .page-hero-section { padding: 36px 16px 30px !important; }
  .page-hero-inner { padding: 0 !important; }

  /* Banner overflow voorkomen op smal scherm */
  .ad-leaderboard { padding: 14px 8px !important; overflow-x: hidden; }
  .ad-leaderboard img { max-width: 100% !important; height: auto !important; }

  /* Contact grid */
  .contact-grid { grid-template-columns: 1fr !important; }
  .contact-section { padding: 36px 16px !important; }

  /* Hotels grid */
  .hotels-grid { grid-template-columns: 1fr !important; }
  .hotels-overview { paddin

/* Advertenties centreren - KTW */
html body img[src*="tradedoubler"]{display:inline-block !important;margin-left:auto !important;margin-right:auto !important;max-width:100% !important;height:auto !important;float:none !important;}
