/* ══════════════════════════════════════════
   WZP STYLESHEET — opgeschoond
   ══════════════════════════════════════════ */

/* ── VARIABELEN ── */
:root {
  --forest: #2D5016;
  --moss:   #4A7C2F;
  --sage:   #7FAF5E;
  --fern1:   #B8D4A0;
  --fern:   #B8D4A0;
  --fire:   #B7292D;
  --cream:  #F5F0E8;
  --bark:   #8B6F47;
  --earth:  #5C4A32;
  --sky:    #E8F0F5;
  --water:  #4A8FA8;
  --gold:   #FFC107;
  --white:  #FEFEFE;
  --black:  #000000;
  --text:   #1A1A1A;
  --muted:  #4A4A4A;
  --border: #D8CFC0;
  --error:  #B7292D;
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {font-family: 'Source Sans 3', sans-serif; background: var(--cream); color: var(--text); min-height: 100vh; padding-top: 64px; max-width: 100%;}
body, html {overflow-x: clip !important; overflow-y: visible !important;}

a { text-decoration-color: var(--forest); }
a:hover { color: var(--sage); }

/* ── NAV ── */
nav {background: var(--forest); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; position: fixed; top: 0; left: 0; right: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.25); overflow: visible;}

.nav-logo {display: flex; align-items: center; gap: 0.65rem; text-decoration: none; min-width: 0; flex-shrink: 1;}
.nav-logo-img {height: 40px; width: 40px; border-radius: 9px; object-fit: cover; flex-shrink: 0;}
.nav-logo-text {font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--cream); letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.nav-logo-accent { color: #A8D68A; }
.nav-links { display: flex; gap: 2rem; list-style: none;}
.nav-links a { color: var(--white) !important; text-decoration: none; font-size: 0.9rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s;}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--earth) !important;
  padding: 0.4rem 1.1rem;
  margin-top: 10px;
  border-radius: 20px;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-cta:hover { color: var(--white) !important; }

.nav-links .nav-cta {
  color: var(--earth) !important;
}
.nav-search-btn {display: inline-flex !important; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; color: var(--white) !important; font-size: 0.95rem; transition: background 0.2s; text-decoration: none !important;}
.nav-search-btn:hover { background: rgba(255,255,255,0.15) !important; color: var(--white) !important;}

/* ── DROPDOWN ── */
.nav-links li { position: relative; }
.nav-links li::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 10px;}

.nav-links li > a .nav-arrow { display: inline-block; margin-left: 0.25rem; font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; vertical-align: middle;}
.nav-links li:hover > a .nav-arrow { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--forest); border-radius: 0 0 12px 12px; box-shadow: 0 8px 32px rgba(45,80,22,0.35); min-width: 210px; z-index: 1100; padding: 0.75rem 0 0.5rem; list-style: none; border-top: 3px solid var(--sage);}
.nav-dropdown::before { content: ''; position: absolute; top: -9px; left: 50%; transform: translateX(-50%); border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 8px solid var(--sage);}
.nav-links li:hover .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1.1rem;
  color: var(--white) !important;
  font-size: 1.0rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: var(--moss);
  color: var(--white) !important;
}

.nav-dropdown li a .dd-icon {
  font-size: 1rem;
  flex-shrink: 0;
  width: 1.3rem;
  text-align: center;
}

.nav-dropdown .dd-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 0.3rem 0.8rem;
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1200;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fern);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, background 0.2s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  overflow-y: auto;
  z-index: 1150;
  padding: 1rem 0 2rem;
}

.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }

.mobile-menu > ul > li > a,
.mobile-menu > ul > li > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.5rem;
  color: var(--white) !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: background 0.15s, color 0.15s;
}

.mobile-menu > ul > li > a:hover,
.mobile-menu > ul > li > button:hover {
  background: var(--moss);
  color: var(--white);
}

.mobile-menu .mobile-arrow {
  font-size: 0.65rem;
  opacity: 0.7;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.mobile-menu > ul > li.mobile-open > button .mobile-arrow { transform: rotate(180deg); }

.mobile-submenu {
  display: none;
  background: rgba(0,0,0,0.2);
  padding: 0.25rem 0;
}

.mobile-submenu.open { display: block; }

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.5rem 0.65rem 2.2rem;
  color: var(--white) !important;
  text-decoration: none;
  font-size: 1.0rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-submenu li a:hover { background: var(--moss); color: var(--white) !important; }
.mobile-submenu .dd-icon { font-size: 1rem; flex-shrink: 0; width: 1.3rem; text-align: center; }
.mobile-submenu .dd-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 0.2rem 0; }

.mobile-menu .mobile-cta {
  background: var(--gold) !important;
  color: var(--earth) !important;
  font-weight: 600 !important;
  margin: 1rem 1.5rem 0;
  border-radius: 24px;
  justify-content: center;
  letter-spacing: 0.03em;
  width: 80%;
}

.mobile-menu .mobile-cta:hover { background: #d4a017 !important; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 60%, var(--sage) 100%);
  padding: 2rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(184,212,160,0.15) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-inner {
  max-width: min(1400px, 92vw);
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
  padding-right: 0;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.page-header-sub {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--white); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

.header-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.header-badge {
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.badge-maand { background: var(--gold); color: var(--earth); }
.badge-serie { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
/* ── HERO (homepage) ── */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.40) 100%);
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: rgba(255,255,255,0.92);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  max-width: 680px;
}

.hero-content .slogan { display: block; }

.hero-content p {
  color: rgba(255,255,255,1);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: min(1400px, 92vw);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.hero-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: var(--moss);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: background 0.2s;
  white-space: nowrap;
}

.hero-search-btn:hover { background: var(--forest); color: var(--white);}

.header-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  margin-bottom: -0.75rem;
}

.header-usp {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ── LAYOUT ── */
.main-container {
  max-width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.main-container-index {
  max-width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  align-items: start;
}

.zoek-layout {
  max-width: min(1400px, 92vw);
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.zoek-filter-col {
  width: 320px;
  flex-shrink: 0;
  position: sticky;
  top: 74px;
  max-height: calc(100vh - 84px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.zoek-filter-col .filter-panel { border-radius: 0 0 16px 16px; }

.content-area { min-width: 0; overflow: visible; }
.results-area { flex: 1; min-width: 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s;
  margin-top: 1rem;
}

.btn,
.btn:link,
.btn:visited,
.btn:hover,
.btn:active { color: var(--white); }

.btn-primary { background: var(--moss); color: var(--white); }
.btn-primary:hover,
.btn-primary:active,
.btn-primary:visited { background: var(--forest); color: var(--white); }

.btn-outline,
.btn-outline:link,
.btn-outline:visited { background: var(--white); color: var(--moss); border-color: var(--moss); }
.btn-outline:hover { background: var(--fern); color: var(--forest); }

.btn-gold {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--black);
  padding: 0.7rem;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.btn-gold:hover { opacity: 0.88; color: var(--white); }

.btn-submit {
  display: block;
  width: 244px;
  padding: 14px;
  background: var(--moss);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .2s, transform .1s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(74,124,47,.3);
  margin-top: 10px;
}

.btn-submit:hover {
  background: var(--forest);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,80,22,.35);
}

.btn-submit:active { transform: translateY(0); }

.search-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--moss);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.search-btn:hover { background: var(--forest); transform: translateY(-1px); }
.search-btn:active { transform: translateY(0); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--moss);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 1.4rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--forest); }

/* ── CONTENT CARD ── */
.content-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(45,80,22,0.08);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: visible;
}

.content-card-header {
  background: var(--forest);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-card-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 700;
}

.content-card-header .card-date {
  font-size: 0.75rem;
  color: var(--fern);
  font-weight: 300;
  white-space: nowrap;
}

.content-card-body {
  padding: 1.5rem;
  overflow: visible !important;
}

.content-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.content-card-body a:not([class]),
.content-card-body a:not([class]):visited,
.content-card-body .description-text a,
.content-card-body .description-text a:visited,
.description-text a,
.description-text a:visited {
    color: var(--moss);
    text-decoration: underline !important;
    font-weight: 600;
}

.content-card-body a:not([class]):hover,
.description-text a:hover {
    color: var(--forest);
}

/* ── ARTIKEL GRID ── */
.artikel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.artikel-mini {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(45,80,22,0.07);
  text-decoration: none !important;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.artikel-mini:hover {
  box-shadow: 0 6px 24px rgba(45,80,22,0.14);
  transform: translateY(-2px);
}

.artikel-mini-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.artikel-mini-img img {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

.artikel-mini-body { padding: 10px; }
.artikel-mini-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--forest); line-height: 1.3; margin-bottom: 0.4rem; text-decoration: none !important; }
.artikel-mini-date  { font-size: 0.9rem; color: var(--forest); margin-bottom: 0.5rem; text-decoration: none !important; }
.artikel-mini-text  { font-size: 1.0rem; color: var(--text); line-height: 1.5; text-decoration: none !important; }
.artikel-mini a     {text-decoration-color: var(--forest); }
.artikel-mini a:hover { text-decoration-color: var(--moss); }

.artikel-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.1rem; }
.artikel-badge  { background: var(--sky); color: var(--water); border: 1.5px solid var(--border); padding: 0.3rem 0.85rem; border-radius: 20px; font-size: 0.82rem; font-weight: 600; }

.badge-thema { background: var(--sky); color: var(--water); }
.badge-nieuw { background: var(--fern); color: var(--forest); }
.badge-tip   { background: var(--gold); color: var(--earth); }

.toon-meer-wrap { text-align: center; margin-bottom: 1rem; }

/* ── DESCRIPTION ── */
.description-text {
  font-size: 1.0rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 400;
}

.description-text p + p { margin-top: 1rem; }
.description-text strong { font-weight: 600; color: var(--earth); }

.alert-box {
  background: #FFF8EC;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 1.25rem;
}

/* ── TABS ── */
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
  -webkit-overflow-scrolling: touch;
	overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.tab-nav::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.tab-btn {
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-btn.active { color: var(--forest); border-bottom-color: var(--moss); }
.tab-btn:hover  { color: var(--moss); }
.tab-panel      { display: none; }
.tab-panel.active { display: block; }

#tab-mijn a { text-decoration: none; }
#tab-mijn a:hover { text-decoration-color: var(--moss); }

/* ── SIDEBAR ── */
.side-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(45,80,22,0.08);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.side-card-header { background: var(--forest); padding: 0.9rem 1.2rem; }
.side-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); }
.side-card-body { padding: 1.2rem; }

.cta-box {
  background: var(--forest);
  border-radius: 12px;
  padding: 1.3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 0.6rem; }

.cta-box ul {
  list-style: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.9;
}

.cta-box ul li::before { content: "✓ "; font-weight: 700; color: var(--white); margin-right: 10px; }

.action-list { list-style: none; }

#tab-mijn a:not([class]) {
    text-decoration: none !important;
}

#tab-horeca a:not([class]) {
    text-decoration: none !important;
}
.action-list li + li { border-top: 1px solid var(--border); }
.action-list li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0;
  font-size: 0.88rem;
  color: var(--moss);
  text-decoration: none !important;
  font-weight: 600;
  transition: color 0.2s;
}

.action-list li a:hover { color: var(--forest); text-decoration: none !important; }

.partners-grid { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.partner-item  { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-decoration: none !important; }
.partner-item img  { height: 48px; object-fit: contain; }
.partner-item span { font-size: 0.8rem; color: var(--muted); text-decoration: none !important; }

/* ── META TABEL ── */
.meta-table { width: 100%; border-collapse: collapse; table-layout: fixed;}
.meta-table tr + tr td { border-top: 1px solid var(--border); }
.meta-table td { padding: 0.6rem 0; font-size: 0.85rem; vertical-align: top; line-height: 1.3rem;}   /* was: 1.4 (unitless) */
.meta-table td:first-child {color: var(--muted); font-weight: 600; width: 40%; text-transform: uppercase;letter-spacing: 0.05em; padding-right: 0.5rem;}
.meta-table td:last-child { color: var(--text); font-weight: 400; }
.meta-table td span[style*="color"] { display: inline-flex; align-items: center; gap: 4px; }

.meta-table td:first-child span.label-scale {
    display: inline-block;
    transform: scale(0.82);
    transform-origin: left top;
}
/* ── NIEUWSBRIEF ── */
.newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; }

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74,124,47,.12);
  background: var(--white);
}

.newsletter-privacy { font-size: 0.95rem; color: var(--moss); }
.newsletter-privacy a { color: var(--moss); text-decoration: none; }

/* ── WALK CARDS ── */
.walk-grid { display: grid; gap: 1rem; margin-bottom: 20px; }
  
.walk-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(45,80,22,0.07);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr); 
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
  animation: fadeUp 0.35s ease both;
  height: 150px; /* vaste hoogte: alle walk-cards even hoog */
}

.walk-card:hover { box-shadow: 0 6px 24px rgba(45,80,22,0.18); transform: translateY(-2px); border-color: var(--sage); }
.walk-card:nth-child(2) { animation-delay: 0.05s; }
.walk-card:nth-child(3) { animation-delay: 0.1s; }
.walk-card:nth-child(4) { animation-delay: 0.15s; }
.walk-card:nth-child(5) { animation-delay: 0.2s; }
.walk-card:nth-child(6) { animation-delay: 0.25s; }

a.walk-card,
.walk-card a { text-decoration: none; color: inherit; }

.walk-card-img {
  background: var(--white);
  position: relative;
  overflow: hidden;
  height: 100%;         /* vult de vaste kaarthoogte */
  width: auto;          /* breedte wordt berekend */
  aspect-ratio: 1 / 1;  /* dus width = height: altijd vierkant, en elke kaart even breed omdat elke kaart even hoog is */
}
.walk-card-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  background: var(--white);
  overflow: hidden;
}

.walk-card-img-inner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.walk-card-body1 {
  padding: 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.3rem; 
  min-width: 0;
  overflow: hidden; /* voorkomt dat te lange inhoud de vaste kaarthoogte opduwt */
}

.walk-card-body {
  padding: 0.9rem 1.1rem;
  padding-bottom: 2.6rem; /* ruimte reserveren voor de vast gepositioneerde badge-rij */
  position: relative;      /* nodig als referentiepunt voor .walk-card-bottom */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.3rem;
  min-width: 0;
  overflow: hidden;
}

.walk-card-series { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bark); margin-bottom: 0.25rem;   white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;}
.walk-card-title  {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.25;
  margin-bottom: 0.3rem;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.walk-card-location {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.walk-card-bottom1 {display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: nowrap;}
.walk-card-bottom {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.9rem;   /* zelfde als de horizontale padding van walk-card-body, voor consistente uitlijning */
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  margin-top: 0; /* niet meer nodig, positionering gebeurt nu via top/bottom */
}
.badge-more {
  background: var(--fern);
  color: var(--forest);
  cursor: default;
}
.walk-badge { padding: 0.2rem 0.6rem; border-radius: 20px; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; gap: 0.25rem; white-space: nowrap; flex-shrink: 0;}

.badge-ov  { background: #EEF5EE; color: var(--text); }
.badge-dog { background: #EEF5EE; color: var(--text); }
.badge-gps  { background: #EEF5EE; color: var(--text); }
.badge-km  { background: #EEF5EE; color: var(--text); }
.badge-rond { background: #EEF5EE; color: var(--text); }
.badge-lijn  { background: #EEF5EE; color: var(--text); }

/* ── WALK NAV ── */
.walk-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; gap: 0.5rem; flex-wrap: wrap; overflow: hidden; }
.walk-nav-spacer { flex: 1; }

.walk-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 9px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--moss);
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
  max-width: 37%;
  min-width: 0;
  overflow: hidden;
}

.walk-nav-btn:hover { background: var(--fern); border-color: var(--sage); color: var(--forest); }
.walk-nav-btn .nav-label { font-size: 0.8rem; font-weight: 400; color: var(--text); display: block; line-height: 1.2; }
.walk-nav-btn .nav-title { font-size: 0.9rem; display: block; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.walk-nav-btn-inner { overflow: hidden; }

/* ── WALK IMAGE ── */
.walk-image-wrap { border-radius: 16px; overflow: hidden; margin-bottom: 1.6rem; box-shadow: 0 4px 24px rgba(45,80,22,0.15); position: relative; }
.walk-image-wrap img { width: 100%; max-width: 100%; height: 340px; object-fit: cover; display: block; }
.walk-image-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.5rem; background: linear-gradient(transparent, rgba(20,40,10,0.7)); display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tag-pill { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; backdrop-filter: blur(4px); }

#verlengform {scroll-margin-top: 300px;}

/* ── SLIDESHOW ── */
.walk-media-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.6rem;
}

.slideshow-col {
  flex: 1 1 65%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.slideshow-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(45,80,22,0.15);
  height: 280px;
  max-width: 100%;
  background: var(--white);
  margin-bottom: 0;   /* geen eigen marge meer nodig, .slideshow-col regelt de gap */
}

.slide-tags-bar {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.95rem;
  column-gap: 0.5rem;
  width: 100%;
  margin-bottom: 1.25rem;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;              
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--white);
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: zoom-in;
  max-width: 100%;
  
  transform: scale(1.15) translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  
  /*transform: scale(1.15);*/              /* de "zoom" */
  transform-origin: center top;        /* zoomt vanuit de bovenkant */
}
.slide.active { opacity: 1; }

.slide-caption {
  position: absolute;
  bottom: 50px;
  left: 12%;
  right: 12%;
  text-align: center;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  letter-spacing: 0.03em;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 0.4rem 1.1rem;
  backdrop-filter: blur(4px);
}
.slide-caption:empty { background: none; border: none; padding: 0; backdrop-filter: none; }

.slide-tags { position: absolute; bottom: 0; left: 0; right: 0; width: 100% !important; padding: 0.75rem 1rem; background: linear-gradient(transparent, rgba(20,40,10,0.65)); display: flex; gap: 0.5rem; flex-wrap: wrap; }

.slide-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.22); border: none; color: #fff; font-size: 2rem; line-height: 1; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background 0.2s; z-index: 10; }
.slide-btn:hover { background: rgba(255,255,255,0.4); }
.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }

.slide-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: #fff; transform: scale(1.25); }

.slide-counter { position: absolute; top: 0.75rem; right: 0.85rem; background: rgba(0,0,0,0.4); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 20px; backdrop-filter: blur(4px); z-index: 10; }

.slide-badge-topleft { position: absolute; top: 14px; left: 14px; z-index: 10; background: #2e7d32; color: #fff; font-size: 0.78rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 999px; box-shadow: 0 2px 6px rgba(0,0,0,0.25); pointer-events: none; }

.slide-tags-bar .tag-pill { background: var(--forest); border: 1px solid var(--sage); color: var(--fern); }
.slide-tags-bar a { text-decoration: none; }
.slide-tags-bar a:hover .tag-pill { background: var(--moss); color: var(--white); }

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Niet-hero slides: het echte werk doet nog steeds background-image via JS,
   deze <img> bestaat alleen voor crawlers/toegankelijkheid */
.slide:not(.active) .slide-img,
.slide-img:not(.slide-img-hero) {
  opacity: 0;
  pointer-events: none;
}

.slide-img-hero {
  z-index: 1;
}

/* Voorkom dubbele weergave: als background-image geladen is via JS, verberg de hero-img erachter */
.slide.active[data-bg] .slide-img-hero {
  opacity: 0; /* background-image neemt het zichtbaar over zodra geladen */
}

/* ── LIGHTBOX ── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.7); align-items: center; justify-content: center; animation: fadeUp 0.2s ease both; }
#lightbox.open { display: flex; }
#lightbox-img { max-width: 95vw; max-height: 92vh; object-fit: contain; border-radius: 6px; box-shadow: 0 8px 48px rgba(0,0,0,0.6); display: block; }
#lightbox-caption {position: absolute; bottom: 3.0rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1.15rem; font-weight: 400; text-shadow: 0 1px 4px rgba(0,0,0,0.8); white-space: normal; text-align: center; max-width: 80%; pointer-events: none; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 0.4rem 1.1rem; backdrop-filter: blur(4px);}
#lightbox-caption:empty {background: none; border: none; padding: 0; backdrop-filter: none;}

#lightbox-close:hover { opacity: 1; }
#lightbox-prev, #lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 2.4rem; line-height: 1; width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background 0.2s; z-index: 10; }
#lightbox-prev:hover, #lightbox-next:hover { background: rgba(255,255,255,0.32); }
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-counter {position: absolute; top: 3rem; left: 50%; transform: translateX(-50%); color: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.3); border-radius: 20px; padding: 0.25rem 0.7rem; backdrop-filter: blur(4px);}

/* ── MAP ── */
#mapView { display: none; width: 100%; height: 520px; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 16px rgba(45,80,22,0.12); margin-bottom: 1.5rem; z-index: 1; }
#mapView.active { display: block; }

#mapLoadingOverlay { display: none; pointer-events: none; position: absolute; inset: 0; z-index: 500; background: rgba(245,240,232,0.82); backdrop-filter: blur(3px); border-radius: 14px; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; pointer-events: none; }
#mapLoadingOverlay.active { display: flex; }

.map-loading-spinner { width: 40px; height: 40px; border: 4px solid var(--fern); border-top-color: var(--forest); border-radius: 50%; animation: map-spin 0.75s linear infinite; }
.map-loading-text { font-family: 'Source Sans 3', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--forest); letter-spacing: 0.02em; }

.wzp-marker { width: 18px; height: 18px; background: var(--moss); border: 2.5px solid #fff; border-radius: 50%; box-shadow: 0 1px 5px rgba(0,0,0,0.35); transition: transform 0.15s; }
.wzp-marker:hover { transform: scale(1.3); }

.wzp-cluster { display: flex; align-items: center; justify-content: center; background: var(--forest); border: 3px solid #fff; border-radius: 50%; width: 100%; height: 100%; box-shadow: 0 2px 8px rgba(45,80,22,0.45); color: #fff; font-family: 'Source Sans 3', sans-serif; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.wzp-cluster:hover { background: var(--moss); transform: scale(1.1); }

.leaflet-popup-content-wrapper { border-radius: 10px; box-shadow: 0 4px 20px rgba(45,80,22,0.18); font-family: 'Source Sans 3', sans-serif; }
.map-popup-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; color: #2D5016; margin-bottom: 0.25rem; display: block; }
.map-popup-meta  { font-size: 0.82rem; color: #6B6B6B; margin-bottom: 0.4rem; }
.map-popup-link  { display: inline-block; font-size: 0.8rem; font-weight: 600; color: #4A7C2F; text-decoration: none; }
.map-popup-link:hover { color: #2D5016; }

/* ── FILTER PANEL ── */
.filter-panel {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(45,80,22,0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(100vh - 120px);
}

.filter-panel-wrap {
  position: sticky;
  top: 74px;
  max-height: calc(100vh - 84px);
  max-width: calc(100vw - 30px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(45,80,22,0.1);
  background: var(--white);
}

.filter-header { background: var(--forest); padding: 1.2rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-radius: 16px 16px 0 0; }
.filter-header h2 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; }
.filter-reset { font-size: 0.85rem; color: var(--fern); cursor: pointer; text-decoration: underline; background: none; border: none; font-family: inherit; }
.filter-reset:hover { color: var(--white); }

.filter-body { overscroll-behavior: contain; padding: 0.5rem; flex: 1; min-height: 0; border-radius: 0 0 16px 16px; overflow-y: scroll; }
.filter-group { margin-bottom: 1.6rem; }
.filter-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--moss); margin-bottom: 0.5rem; margin-top: 0.7rem; display: block; }

.view-tabs { display: flex; background: var(--cream); border-radius: 10px; padding: 4px; margin-bottom: 1.5rem; }
.view-tab { flex: 1; padding: 0.5rem; border: none; background: none; border-radius: 7px; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 0.4rem; transition: all 0.2s; }
.view-tab.active { background: var(--white); color: var(--forest); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.pill { padding: .35rem .85rem; border-radius: 99px; border: 1.5px solid var(--border); font-size: .8rem; font-weight: 500; cursor: pointer; background: var(--cream); color: var(--text); transition: all .15s; user-select: none; }
.pill:hover { border-color: var(--moss); color: var(--moss); }
.pill.active { background: var(--moss); border-color: var(--moss); color: #fff; }

.province-grid,
.series-pills,
.provincies-pills,
.themas-pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.series-pill,
.provincies-pill,
.themas-pill { padding: 0.3rem 0.8rem; border-radius: 20px; border: 2px solid var(--border); background: var(--cream); font-family: inherit; font-size: 0.78rem; font-weight: 600; cursor: pointer; color: var(--muted); transition: all 0.15s; }

.series-pill:hover,
.provincies-pill:hover,
.themas-pill:hover { border-color: var(--sage); color: var(--forest); }

.series-pill.active,
.provincies-pill.active,
.themas-pill.active { background: var(--moss); border-color: var(--moss); color: var(--white); }

.icon-filters { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.icon-filter { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.5rem; border-radius: 9px; border: 2px solid var(--border); cursor: pointer; transition: all 0.15s; background: var(--cream); font-size: 0.8rem; color: var(--muted); font-family: inherit; font-weight: 600; width: 134px;}
.icon-filter2:hover  { border-color: var(--sage); background: var(--fern); color: var(--forest); }
.icon-filter.active { border-color: var(--forest); background: var(--forest); color: var(--white); }
.icon-filter .fi { font-size: 1rem;}

.distance-row { display: flex; align-items: center; gap: 0.75rem; }
.distance-input { width: 60px; padding: 0.4rem 0.5rem; border: 2px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.9rem; color: var(--text); background: var(--cream); text-align: center; }
.distance-input:focus { outline: none; border-color: var(--moss); }
.distance-sep { color: var(--muted); font-size: 0.85rem; }

.dog-options { display: flex; flex-direction: column; gap: 0.35rem; }
.dog-option { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; font-size: 0.85rem; color: var(--text); padding: 0.3rem 0; }
.dog-option input[type="radio"] { accent-color: var(--moss); }

.keyword-input { width: 100%; padding: 0.55rem 0.8rem; border: 2px solid var(--border); border-radius: 9px; font-family: inherit; font-size: 0.9rem; background: var(--cream); color: var(--text); transition: border-color 0.2s; }
.keyword-input:focus { outline: none; border-color: var(--moss); }

.results-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; flex-wrap: wrap; gap: 0.75rem; }
.results-count { font-size: 0.9rem; color: var(--muted); }
.results-count strong { color: var(--forest); }

.sort-select { padding: 0.4rem 0.8rem; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.85rem; background: var(--cream); color: var(--text); cursor: pointer; transition: border-color .2s, box-shadow .2s, background .2s; outline: none; }
.sort-select:focus,
.sort-select.is-active-selection {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(74,124,47,.12);
    background: var(--white);
}
.field .sort-select { width: 244px; height: 44px; }
.field .sort-select.select-smal { width: 90px; height: 44px; }

.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.active-filter-tag { display: flex; align-items: center; gap: 0.35rem; background: var(--forest); color: var(--white); padding: 0.25rem 0.7rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.active-filter-tag button { background: none; border: none; color: var(--fern); cursor: pointer; font-size: 0.9rem; line-height: 1; padding: 0; }

#loadMoreSentinel { height: 60px; display: flex; align-items: center; justify-content: center; visibility: hidden; }
#loadMoreSentinel.loading { visibility: visible; }

.advanced-toggle { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--moss); cursor: pointer; background: none; border: none; font-family: inherit; font-weight: 600; margin-top: 0.75rem; padding: 0; }
.advanced-toggle:hover { color: var(--forest); }
.advanced-section { display: none; margin-top: 1rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.advanced-section.open { display: block; }

/* ── KIJK OOK BIJ ── */
#kijk-ook-bij-btn1 { position: fixed; top: 80px; right: 40px; z-index: 9999; background: var(--moss); color: #fff; border: none; border-radius: 999px; padding: 0.45rem 1rem; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); display: flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
#kijk-ook-bij-btn1:hover { background: var(--forest); }

#kijk-ook-bij-btn {float: right; margin-top: -40px; z-index: 9999; background: var(--moss); color: #fff; border: none; border-radius: 999px; padding: 0.45rem 1rem; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); display: flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }
#kijk-ook-bij-btn:hover { background: var(--forest); }


#kijk-ook-bij-popup { display: none; position: fixed; top: 124px; right: 80px; z-index: 9998; background: var(--cream); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,.18); min-width: 240px; padding: 0; overflow: hidden; }
#kijk-ook-bij-popup.open { display: block; }
#kijk-ook-bij-popup .popup-header { background: var(--moss); color: #fff; padding: 0.7rem 1rem; font-weight: 700; font-size: 0.9rem; }
#kijk-ook-bij-popup ul { list-style: none; margin: 0; padding: 0.5rem 0; }
#kijk-ook-bij-popup ul li a { display: block; padding: 0.45rem 1rem; color: var(--text); text-decoration: none; font-size: 0.88rem; transition: background 0.15s; }
#kijk-ook-bij-popup ul li a:hover { background: var(--fern); }

/* ── TESTRAPPORT ── */
#testrapport { position: fixed; top: 120px; right: 40px; z-index: 9999; background: var(--fire); color: #fff; border: none; border-radius: 999px; padding: 0.45rem 1rem; font-family: inherit; font-size: 0.85rem; font-weight: 600; cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.25); display: flex; align-items: center; gap: 0.4rem; transition: background 0.2s; }

/* ── TOGGLE SWITCH ── */
.toggle-switch { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1rem; cursor: pointer; font-size: 1rem; font-weight: 600; color: var(--text); }
.toggle-switch input[type="checkbox"] { display: none; }
.toggle-track { width: 44px; height: 24px; background: var(--border); border-radius: 999px; position: relative; flex-shrink: 0; transition: background 0.2s; }
.toggle-track::after { content: ''; position: absolute; width: 18px; height: 18px; background: var(--white); border-radius: 50%; top: 3px; left: 3px; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.toggle-switch input:checked + .toggle-track { background: var(--moss); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(20px); }

/* ── FORMULIER VELDEN ── */
.section-title { font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin: 24px 0 12px; padding-bottom: 6px; border-bottom: 1px solid var(--border); }
.section-title:first-child { margin-top: 0; }

.row-2 { display: flex; flex-direction: row; gap: 14px; flex-wrap: wrap; }

.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: .95rem; font-weight: 800; color: var(--text); display: flex; gap: 3px; }
.field label .req { color: var(--error); }
.field .hint { font-size: .95rem; color: var(--muted); margin-top: 2px; }

.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field textarea {
  width: 244px !important;
  height: 44px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0 12px;
  font-family: 'Poppins', sans-serif;
  font-size: .85rem;
  color: var(--text);
  outline: none;
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.field input:focus,
.field textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,47,.12); background: var(--white); outline: none; }

.field textarea { width: min(488px, 100%) !important; height: auto !important; padding: 10px 12px !important; resize: vertical; box-sizing: border-box; }

.field input[type="date"] { width: 160px; height: 44px; border: 1.5px solid var(--border); border-radius: 8px; padding: 0 10px; font-family: 'Poppins', sans-serif; font-size: .85rem; color: var(--text); outline: none; background: var(--cream); color-scheme: light; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input[type="date"]::-webkit-datetime-edit-fields-wrapper { visibility: hidden; }
.field input[type="date"]:focus::-webkit-datetime-edit-fields-wrapper,
.field input[type="date"]:not([value=""])::-webkit-datetime-edit-fields-wrapper { visibility: visible; }
.field input[type="date"]:focus,
.field input[type="date"]:not([value=""]) { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,47,.12); background: var(--white); }

.field email.invalid,
.field input.invalid,
.field select.invalid,
.field textarea.invalid { border-color: var(--error) !important; background: #fff5f5 !important; box-shadow: 0 0 0 3px rgba(183,41,45,.10) !important; }

.field-error { font-size: .8rem; color: var(--error); font-weight: 600; margin-top: 3px; display: none; }
.field-error.visible { display: block; }

.pw-wrap { position: relative; width: 244px !important; }
.pw-wrap input { padding-right: 40px; }
.toggle-pw { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--sage); display: flex; align-items: center; padding: 0; transition: color .2s; }
.toggle-pw:hover { color: var(--forest); }
.toggle-pw svg { width: 17px; height: 17px; }

.required-note { font-size: .95rem; color: var(--muted); margin-bottom: 20px; }
.required-note span { color: var(--error); }

/* ── BETAALWIJZE ── */
.payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }

.pay-option { display: flex; flex-direction: column; align-items: center; gap: 6px; border: 1.5px solid var(--border); border-radius: 10px; padding: 14px 8px 10px; cursor: pointer; transition: border-color .2s, background .2s, box-shadow .2s; position: relative; background: var(--white); }
.pay-option:hover { border-color: var(--sage); background: #f4faf4; }
.pay-option.selected { border-color: var(--moss); background: #ecf6e8; box-shadow: 0 0 0 3px rgba(74,124,47,.12); }
.pay-option.selected[data-method="ideal"]      { border-color: #cc0066; background: #fff0f7; box-shadow: 0 0 0 3px rgba(204,0,102,.1); }
.pay-option.selected[data-method="bancontact"] { border-color: #005498; background: #eef4fb; box-shadow: 0 0 0 3px rgba(0,84,152,.1); }
.pay-option.selected[data-method="overmaken"]  { border-color: var(--forest); background: #ecf6e8; box-shadow: 0 0 0 3px rgba(45,80,22,.12); }

.pay-option::after { content: ''; position: absolute; top: 7px; right: 7px; width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); transition: background .2s, border-color .2s; }
.pay-option.selected::after { content: '✓'; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: var(--white); border-color: transparent; }
.pay-option.selected[data-method="ideal"]::after      { background: #cc0066; }
.pay-option.selected[data-method="bancontact"]::after { background: #005498; }
.pay-option.selected[data-method="overmaken"]::after  { background: var(--forest); }
.pay-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.pay-icon     { width: 60px; height: 40px; object-fit: contain; border-radius: 4px; }
.pay-label    { font-size: .72rem; font-weight: 600; color: var(--text); text-align: center; line-height: 1.2; }
.pay-sublabel { font-size: .65rem; color: var(--muted); text-align: center; }

.check-row { display: flex; align-items: flex-start; gap: 9px; font-size: .95rem; color: var(--text); margin-bottom: 10px; line-height: 1.4; }
.check-row input[type="checkbox"] { margin-top: 2px; width: 15px; height: 15px; accent-color: var(--moss); flex-shrink: 0; cursor: pointer; }
.check-row a { color: var(--moss); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--fern); transition: color .2s; }
.check-row a:hover { color: var(--forest); }

/* ── KORTINGSCODE ── */
.kortingscode { display: flex; gap: 6px; margin-top: 4px; }
.kortingscode input { flex: 1; height: 40px; border: 1px solid var(--border); border-radius: 7px; text-indent: 10px; font-family: 'Poppins', sans-serif; font-size: .82rem; color: var(--text); outline: none; transition: border-color .2s; background: var(--white); }
.kortingscode input:focus { border-color: var(--moss); }
.kortingscode button { padding: 0 14px; background: var(--moss); color: #fff; border: none; border-radius: 7px; font-family: 'Poppins', sans-serif; font-size: .82rem; font-weight: 600; cursor: pointer; }

/* ── CARDS (abonnementen) ── */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 24px; }

.card { border: 2px solid #d4e4d4; border-radius: 12px; padding: 24px 20px 20px; display: flex; flex-direction: column; gap: 0; position: relative; transition: border-color .2s, box-shadow .2s; }
.card:hover { border-color: var(--moss); box-shadow: 0 4px 18px rgba(45,80,22,.12); }
.card.featured { border-color: var(--moss); background: #f4faf4; }

.ribbon { position: absolute; top: 0; right: 0; width: 90px; height: 90px; overflow: hidden; border-radius: 0 12px 0 0; pointer-events: none; }
.ribbon span { position: absolute; display: block; width: 128px; background: #c0392b; color: #fff; font-size: .6rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; text-align: center; padding: 5px 0; top: 22px; right: -28px; transform: rotate(45deg); box-shadow: 0 2px 6px rgba(0,0,0,.2); }

.card-title { font-size: 1.1rem; font-weight: 700; color: #39505D; margin-bottom: 6px; }
.card-price { font-size: 1.6rem; font-weight: 700; color: var(--moss); line-height: 1.1; margin-bottom: 4px; }
.card-price span { font-size: .85rem; font-weight: 500; color: #6b8c7a; }

.divider { border: none; border-top: 1px solid #d4e4d4; margin: 14px 0; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; flex-grow: 1; }
.feature-list li { font-size: .95rem; color: var(--text); display: flex; align-items: flex-start; gap: 7px; line-height: 1.35; }
.feature-list li::before { content: '✓'; color: var(--moss); font-weight: 900; flex-shrink: 0; margin-top: 1px; }

/* ── MIJNWZP ── */
.mijnwzp-container { max-width: 1100px; margin: 2rem auto; padding: 0 2rem 3rem; }

.mijnwzp-intro { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.mijnwzp-intro p { font-size: .95rem; color: var(--muted); max-width: 640px; }
.mijnwzp-uitlogknop { white-space: nowrap; background: var(--error) !important; }

.mijnwzp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

.mijnwzp-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(45,80,22,0.06); transition: box-shadow 0.2s; }
.mijnwzp-card:hover { box-shadow: 0 4px 20px rgba(45,80,22,0.12); }
.mijnwzp-card--wide { grid-column: 1 / -1; }

.mijnwzp-card-header { background: linear-gradient(135deg, var(--forest), var(--moss)); padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.mijnwzp-card-icon { font-size: 1.3rem; }
.mijnwzp-card-header h2 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); font-weight: 700; margin: 0; }

.mijnwzp-card-body { padding: 1.1rem 1.25rem; flex: 1; font-size: .9rem; color: var(--text); }
.mijnwzp-card-body p { color: var(--muted); font-size: 1rem; line-height: 1.5; }
.mijnwzp-card-footer { padding: .9rem 1.25rem; border-top: 1px solid var(--border); display: flex; gap: .6rem; flex-wrap: wrap; }

.mijnwzp-row { font-size: 1rem; display: flex; justify-content: space-between; align-items: baseline; padding: .35rem 0; border-bottom: 1px solid var(--border); gap: 1rem; }
.mijnwzp-row:last-child { border-bottom: none; }
.mijnwzp-label { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); white-space: nowrap; }

.mijnwzp-list { list-style: none; padding: 0; margin: 0; }
.mijnwzp-list li { display: flex; align-items: center; gap: .75rem; padding: .45rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.mijnwzp-list li:last-child { border-bottom: none; }
.mijnwzp-list-actions { display: flex; gap: .5rem; flex-shrink: 0; }
.mijnwzp-list-actions a { color: var(--muted); text-decoration: none; font-size: .9rem; transition: color .2s; }
.mijnwzp-list-actions a:hover { color: var(--forest); }
.mijnwzp-list-link { color: var(--moss); text-decoration: none; font-weight: 600; transition: color .2s; font-size: 1.0rem;}
.mijnwzp-list-link:hover { color: var(--forest); }
.mijnwzp-datum { font-size: .8rem; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
.mijnwzp-empty { color: var(--muted) !important; font-style: italic; }

.mijnwzp-fotos { display: flex; flex-wrap: wrap; gap: .6rem; }
.mijnwzp-fotos img { width: 90px; height: 75px; object-fit: cover; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,.15); }

.berichten-link {
  color: var(--sage);
  text-decoration: underline !important;
  font-weight: 600;
  transition: color 0.2s;
}

.berichten-link:hover {
  color: var(--forest);
}
/* ── ARTIKEL INTRO ── */
.artikel-header { background: linear-gradient(135deg, var(--forest) 0%, var(--moss) 60%, var(--sage) 100%); position: relative; overflow: hidden; }

.artikel-intro { display: block; overflow: visible; position: relative; }
.artikel-intro::after { content: ''; display: table; clear: both; }
.artikel-intro-foto {margin: 0 0 1rem 0rem; position: relative;}
.artikel-intro-foto img { width: 100%; height: 160px; object-fit: cover; object-position: center 40%; border-radius: 10px; display: block; }
.artikel-intro-text { display: block; }
.artikel-intro-foto a {cursor: pointer; display: block;}

li.vinkje::before {
  content: "✓ ";
  font-weight: 700;
  color: var(--sage);
  margin-right: 10px;
}
.archief-cta { background: linear-gradient(135deg, var(--forest), var(--moss)); border-radius: 14px; padding: 1.4rem 1.6rem; margin-top: 0.5rem; }
.archief-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.archief-cta h3 { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.archief-cta p  { color: var(--fern); font-size: 0.88rem; font-weight: 300; }

/* ── CTA BOX FOTO ── */
.cta-box-foto { margin: 0 -1.3rem -1.3rem -1.3rem; overflow: hidden; border-radius: 0 0 12px 12px; position: relative; }
.cta-box-foto::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 140px; background: linear-gradient(to bottom, rgba(45,80,22,1) 0%, rgba(74,124,47,0.7) 30%, rgba(74,124,47,0.3) 65%, rgba(74,124,47,0) 100%); z-index: 1; }
.cta-box-foto img { width: 100%; height: 240px; object-fit: cover; object-position: center 20%; display: block; }

/* ── LIST ── */
.list ul { list-style: none; font-size: 0.95rem; font-weight: 300; color: var(--black); margin-bottom: 1rem; line-height: 1.9; }
.list ul li::before { content: "✓ "; font-weight: 700; color: var(--black); margin-right: 10px; }

/* ── WANDELING KAART ── */
.wandeling_kaart {position: relative; float: none; margin-top: 50px; flex: 0 0 180px; width: 180px; z-index: 1;}
.wandeling_kaart_nl { margin: 0; padding: 0; width: 150px; height: 177px; display: block; background-size: contain !important; background-position: center !important; background-repeat: no-repeat !important; position: relative; }
.wandeling_marker { width: 40px; height: 40px; position: absolute; left: 50%; top: 50%; margin-left: -20px; background: rgba(183,41,45,0.2); display: flex; justify-content: center; align-items: center; border-radius: 50%; }
.wandeling_marker > span { width: 10px; height: 10px; background: rgba(183,41,45,1); display: block; border-radius: 50%; }

/* ── MODAL ── */
.bannermodal { display: none; position: fixed; z-index: 1000; padding-top: 80px; top: 0; width: 100%; height: 100%; overflow: auto; background: rgba(0,0,0,0.28); }

.bannermodaldiv { position: relative; margin: auto; display: block; margin-top: -60px; width: 80%; max-width: 700px; height: auto; font-family: 'Source Sans 3', sans-serif; background-color: var(--cream); color: var(--text); filter: drop-shadow(0px 0px 33px rgba(0,0,0,0.77)); border-radius: 25px; overflow: hidden; padding-bottom: 0; }

.bannermodaldiv .modalimage { margin: 0; padding: 0; display: none; width: 100%; max-width: 700px; border-radius: 0 0 25px 25px; cursor: pointer; }
.bannermodaldiv .modalimagesolo { width: 100%; margin: 0; padding: 0; border-radius: 25px; margin-bottom: -10px; }

.modalimagesolo { margin: 0; padding: 0; display: none; width: 100%; max-width: 700px; border-radius: 0 0 25px 25px; cursor: pointer; }
.modalimage1 { margin: auto; display: none; width: 80%; max-width: 700px; border-radius: 25px; box-shadow: 10px 10px 5px -2px #888; cursor: pointer; }

.close { position: absolute; top: 8px; right: 16px; color: rgba(255,255,255,0.75); font-size: 32px; font-weight: bold; line-height: 1; transition: 0.3s; z-index: 50; }
.close:hover, .close:focus { color: var(--white); text-decoration: none; cursor: pointer; }

.modal h2 { color: var(--forest); }

.textmodaldiv { padding: 0; margin: 0; display: none; }
.textmodaldiv .modal-form-header { background: var(--forest); padding: 1.1rem 1.5rem 0.9rem; }
.textmodaldiv .modal-form-header h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 0; }
.textmodaldiv .modal-form-subtitle { background: var(--fern); color: var(--forest); font-size: 0.88rem; font-weight: 600; padding: 0.5rem 1.5rem; }
.textmodaldiv .modal-form-body { padding: 1.4rem 1.5rem 1.5rem; }
.textmodaldiv .modal-form-body h2  { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--forest); margin: 0; }
.textmodaldiv .form-row { display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1rem; }
.textmodaldiv .form-label { font-size: 0.75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.textmodaldiv .input2,
.textmodaldiv input[type="text"],
.textmodaldiv input[type="email"] { width: 100%; padding: 0.6rem 0.9rem; border: 1.5px solid var(--border); border-radius: 9px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; outline: none; box-sizing: border-box; }

.textmodaldiv .input2:focus,
.textmodaldiv input[type="text"]:focus,
.textmodaldiv input[type="email"]:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,47,0.12); background: var(--white); }

.textmodaldiv .textarea2,
.textmodaldiv textarea { width: 100%; padding: 0.6rem 0.9rem; border: 1.5px solid var(--border); border-radius: 9px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--text); background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; outline: none; resize: vertical; min-height: 110px; box-sizing: border-box; }

.textmodaldiv .textarea2:focus,
.textmodaldiv textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(74,124,47,0.12); background: var(--white); }

.textmodaldiv label.error { font-size: 0.78rem; color: #c0392b; font-weight: 600; display: block; margin-top: 0.2rem; }

.textmodaldiv .knop { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; background: var(--moss); color: var(--white); padding: 0.65rem 1.6rem; border-radius: 9px; font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: background 0.2s; margin-top: 0.25rem; }
.textmodaldiv .knop:hover { background: var(--forest); }

.textmodaldiv .form-required-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.9rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }
.textmodaldiv .responsive { display: block; width: 100% !important; }

.textmodaldiv input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--moss); cursor: pointer; flex-shrink: 0; margin: 0; }

.textmodaldiv #accountform,
.textmodaldiv #voorwaardenform { display: flex; flex-direction: column; gap: 0.6rem; margin: 0.9rem 0; }

.textmodaldiv #accountform > div,
.textmodaldiv #voorwaardenform > div { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--text); line-height: 1.5; }

.textmodaldiv #accountform label,
.textmodaldiv #voorwaardenform label { display: inline; font-size: 0.88rem; font-weight: 400; color: var(--text); cursor: pointer; }

.textmodaldiv #accountform a,
.textmodaldiv #voorwaardenform a { color: var(--moss); font-weight: 600; text-decoration: none; display: inline !important; }

.textmodaldiv #accountform a:hover,
.textmodaldiv #voorwaardenform a:hover { text-decoration: underline; }

#koopmelding, #koopmelding a { display: inline !important; }

/* ── ABO CONTAINER ── */
.abo-container { text-decoration: none; position: relative; width: 279px; height: auto; overflow: hidden; margin: 0; padding: 0; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; z-index: 70; }
.abo-container > .schuinebanner { position: absolute; top: 75px; right: -25px; background-color: rgba(192,42,51,0.7); color: white; padding: 0; text-decoration: none; width: 170px; text-align: center; font-size: 0.65rem; font-weight: bold; transform: rotate(45deg); transform-origin: top right; white-space: nowrap; box-shadow: 0 4px 6px rgba(0,0,0,0.3); z-index: 80; padding-left: 25px; }

/* ── LOGOTT ── */
.logott { position: absolute; width: 110px; top: -12px; right: 25px; z-index: 10; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3)); }

/* ── MISC ── */
.punt { margin-top: 10px; margin-left: 20px; }
.kop  { color: var(--moss); }
.link { align-items: center; gap: 0.6rem; padding: 0.65rem 0; font-size: 0.95rem; color: var(--moss); text-decoration: underline; font-weight: 600; transition: color 0.2s; }

.responsive { display: inline-block; margin: 0 10px 10px 0; padding: 0; min-width: 80px; text-align: left; vertical-align: top; }

.download-row {display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: -1.5em; margin-bottom: 1.5rem; }

.section-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1rem; }
.section-link   { font-size: 0.8rem; color: var(--moss); text-decoration: none; font-weight: 600; }
.section-link:hover { color: var(--forest); }
.section-divider { border: none; border-top: 2px solid var(--border); margin: 2rem 0; }

.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 2px solid var(--border); background: var(--white); font-family: inherit; font-size: 0.85rem; cursor: pointer; color: var(--text); transition: all 0.15s; }
.page-btn:hover  { border-color: var(--moss); color: var(--moss); }
.page-btn.active { background: var(--forest); border-color: var(--forest); color: var(--white); }

.social-row { display: flex; gap: 0.6rem; margin-top: 0.5rem; flex-wrap: wrap; }
.social-row a { text-decoration: none; }
.social-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.85rem; border-radius: 20px; font-size: 0.78rem; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border); color: var(--muted); background: var(--cream); transition: all 0.15s; }
.social-btn:hover { border-color: var(--sage); color: var(--forest); background: var(--fern); text-decoration: none; }
.social-btn img { width: 25px; }

.nearby-placeholder { background: var(--sky); border-radius: 10px; padding: 2rem; text-align: center; color: var(--muted); font-size: 0.88rem; }

/* ── REACTIES ── */
.reaction { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.reaction:last-child { border-bottom: none; padding-bottom: 0; }
.reaction-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; flex-wrap: wrap; gap: 0.3rem; }
.reaction-author { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.reaction-date   { font-size: 0.78rem; color: var(--muted); }
.reaction-title  { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.3rem; color: var(--text); }
.reaction-text   { font-size: 0.9rem; line-height: 1.6; color: var(--muted); font-weight: 300; }

.reactie-inhoud.is-clamped {
  max-height: 6.6em;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.reactie-inhoud.is-expanded {
  max-height: none;
  -webkit-mask-image: none;
          mask-image: none;
}

.reaction-expand {
  background: none;
  border: none;
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 0.35rem;
  font-family: inherit;
  display: block;
}

.reaction-expand:hover {
  text-decoration: underline;
}

/* ── HORECA ── */
.horeca-card { background: var(--sky); border-radius: 10px; padding: 1rem 1.2rem; display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 5px; }
.horeca-icon    { font-size: 1.8rem; flex-shrink: 0; }
.horeca-name    { font-weight: 600; font-size: 1rem; color: var(--forest); margin-bottom: 0.2rem; }
.horeca-address { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ── KALENDER ── */
.kalender-filter-card { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; overflow: visible; position: relative; }
.kalender-filter-card h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--moss); margin-bottom: 1rem; }

.filter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.5rem; margin-bottom: 1.2rem; }
.filter-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--text); }
.filter-item input[type="checkbox"] { accent-color: var(--moss); width: 16px; height: 16px; cursor: pointer; }

.filter-datum-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-end; margin-bottom: 1.2rem; }
.filter-datum-group { display: flex; flex-direction: column; gap: 0.3rem; }
.filter-datum-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.filter-datum-group input[type="text"] { border: 1px solid var(--border); border-radius: 8px; padding: 0.45rem 0.75rem; font-size: 0.9rem; width: 140px; background: #fff; color: var(--text); }
.filter-datum-group input[type="text"]:focus { outline: none; border-color: var(--moss); }

.kalender-resultaten { margin-top: 1rem; }
.kalender-resultaat-count { font-size: 0.9rem; font-weight: 600; color: var(--moss); margin-bottom: 1.2rem; }
.kalender-item { border-bottom: 1px solid var(--border); padding: 1.1rem 0; }
.kalender-item:last-child { border-bottom: none; }
.kalender-item-datum { font-size: 0.82rem; font-weight: 700; color: var(--moss); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.3rem; }
.kalender-item-titel { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.kalender-item-titel a { color: inherit; text-decoration: none; }
.kalender-item-titel a:hover { color: var(--moss); text-decoration: underline; }
.kalender-item-omschrijving { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.6rem; line-height: 1.5; }
.kalender-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; font-size: 0.82rem; color: var(--muted); }
.kalender-meta span strong { color: var(--text); }

.aanmelden-link { float: right; font-size: 0.85rem; }

.kalender-info-card { background: var(--cream); border: 1px solid var(--border); border-radius: 12px; padding: 1.2rem; margin-bottom: 1.2rem; }
.kalender-info-card h3 { font-size: 1rem; font-weight: 700; color: var(--moss); margin-bottom: 0.75rem; }
.kalender-info-card p  { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

/* ── DOWNLOAD FORMULIER ── */
.wf-wrap { width: 100%; }
.wf-downloadmelding { min-height: 1.2em; margin-top: 8px; margin-bottom: 12px; font-size: .99rem; color: var(--forest); font-weight: 700;}
.wf-section-label { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #6b8c7a; margin: 14px 0 7px; }

.wf-checks,
.wf-radios { display: flex; flex-wrap: wrap; gap: 8px 14px; }

.wf-check,
.wf-radio { display: inline-flex; align-items: center; gap: 7px; font-size: .99rem; color: var(--text); cursor: pointer; user-select: none; white-space: nowrap; }

.wf-check input[type="checkbox"],
.wf-radio  input[type="radio"]  { position: absolute; opacity: 0; width: 0; height: 0; }

/* ── WF-CHECK-BOX: vinkje i.p.v. groen blokje ── */
.wf-check-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border: 1.5px solid #a0b8a8;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  transition: border-color .15s;
}

.wf-check input[type="checkbox"]:checked + .wf-check-box {
  background: transparent;
  border-color: var(--moss);
}

.wf-check input[type="checkbox"]:checked + .wf-check-box::after {
  content: '✓';
  color: var(--moss);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.wf-check:hover .wf-check-box { border-color: var(--moss); }

.wf-radio-dot { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; border: 1.5px solid #a0b8a8; border-radius: 50%; background: #fff; flex-shrink: 0; transition: border-color .15s; }
.wf-radio input[type="radio"]:checked + .wf-radio-dot { border-color: var(--moss); }
.wf-radio input[type="radio"]:checked + .wf-radio-dot::after { content: ''; display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--moss); }
.wf-radio:hover .wf-radio-dot { border-color: var(--moss); }

/* ── DATEPICKER ── */
.ui-datepicker { z-index: 9999 !important; background: #fff !important; border: 1px solid var(--border) !important; border-radius: 10px !important; box-shadow: 0 6px 24px rgba(0,0,0,.15) !important; padding: 0.75rem !important; font-family: 'Source Sans 3', sans-serif !important; font-size: 0.88rem !important; }
.ui-datepicker-header { background: var(--moss) !important; color: #fff !important; border-radius: 7px 7px 0 0 !important; border: none !important; padding: 0.4rem !important; position: relative !important; }
.ui-datepicker-title { color: #fff !important; font-weight: 600 !important; text-align: center !important; line-height: 2rem !important; padding: 0 2rem !important; }
.ui-datepicker-prev,
.ui-datepicker-next { position: absolute !important; top: 50% !important; transform: translateY(-50%) !important; width: 24px !important; height: 24px !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; }
.ui-datepicker-prev { left: 6px !important; }
.ui-datepicker-next { right: 6px !important; }
.ui-datepicker-prev span,
.ui-datepicker-next span { display: none !important; }
.ui-datepicker-prev::after { content: '‹' !important; color: #fff !important; font-size: 1.4rem !important; line-height: 1 !important; }
.ui-datepicker-next::after { content: '›' !important; color: #fff !important; font-size: 1.4rem !important; line-height: 1 !important; }
.ui-datepicker table { width: 100% !important; }
.ui-datepicker th { color: var(--muted) !important; font-weight: 600 !important; font-size: 0.8rem !important; padding: 0.3rem !important; }
.ui-datepicker td a,
.ui-datepicker td span { text-align: center !important; border-radius: 5px !important; padding: 0.25rem !important; display: block !important; color: var(--text) !important; text-decoration: none !important; }
.ui-datepicker td a:hover { background: var(--cream) !important; }
.ui-datepicker td.ui-datepicker-today a { background: var(--cream) !important; font-weight: 700 !important; }
.ui-datepicker td.ui-datepicker-current-day a,
.ui-state-active { background: var(--moss) !important; color: #fff !important; }
.ui-datepicker td.ui-state-disabled span { color: #ccc !important; }

/* ── FOOTER ──
   Optie C: koppen blijven wit; links en copyright-tekst
   verhoogd naar wit-met-lage-dekking i.p.v. --fern,
   voor beter contrast t.o.v. --forest achtergrond.
   Onderlinge hover blijft duidelijk herkenbaar via opacity 1 + underline. ── */
footer { background: var(--forest); color: rgba(255,255,255,0.85); padding: 3rem 2rem 2rem; margin-top: 4rem; }

.footer-inner { max-width: min(1400px, 92vw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin-bottom: 2rem; }

.footer-col h4 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer-col ul { list-style: none; }
.footer-col ul li + li { margin-top: 0.35rem; }
.footer-col ul li a { color: rgba(255,255,255,0.85) !important; text-decoration: none !important; font-size: 0.95rem; transition: color 0.2s, text-decoration 0.2s; }
.footer-col ul li a:hover { color: var(--white) !important; text-decoration: underline !important; }

.footer-bottom { max-width: min(1400px, 92vw); margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.95rem; color: rgba(255,255,255,0.75); opacity: 1; }
.footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.95rem; color: rgba(255,255,255,0.85) !important; text-decoration: none !important; opacity: 1; }
.footer-links a:hover { color: var(--white) !important; opacity: 1; text-decoration: underline !important; }

/* ── ANIMATIES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes map-spin {
  to { transform: rotate(360deg); }
}

.content-card, .side-card, .cta-box { animation: fadeUp 0.35s ease both; }
.artikelfotodiv {float: right; display: inline-block; overflow-x: hidden; overflow-y: hidden; margin: 0; padding: 0; padding-right: 5px; margin-left: 20px; padding-left: 0px; padding-top: 35px;}
.artikelfoto {margin-left: 0px; margin-bottom: 15px; cursor: pointer; border-radius:10px; -webkit-border-radius:10px; -moz-border-radius:10px; -ms-border-radius:10px; -o-border-radius:10px;}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* Hamburger zichtbaar */
@media (max-width: 1260px) {
  nav .nav-links { display: none; }
  .nav-hamburger { display: flex !important; }
  .walk-media-row {flex-direction: column;}
  .slideshow-wrap {flex: 1 1 auto; width: 100%; height: 220px;}
  .slideshow-col { width: 100%; }

  .badge-pos-4 {display: none;}
	.wandeling_kaart {margin-top: 0 !important;}
}

/* Voor tonen tabs bij wandeling omschrijving -> icoon */
@media (max-width: 950px) {

  .tab-btn[onclick*="omschrijving"] { font-size: 0; }
  .tab-btn[onclick*="omschrijving"]::before { content: "📝"; font-size: 1.2rem; }
  .tab-btn[onclick*="reacties"] { font-size: 0; }
  .tab-btn[onclick*="reacties"]::before { content: "💬"; font-size: 1.2rem; }
  .tab-btn[onclick*="horeca"] { font-size: 0; }
  .tab-btn[onclick*="horeca"]::before { content: "☕"; font-size: 1.2rem; }
  .tab-btn[onclick*="mijn"] { font-size: 0; }
  .tab-btn[onclick*="mijn"]::before { content: "👤"; font-size: 1.2rem; }
}

@media (max-width: 1100px)
{
	.badge-pos-3, .badge-pos-4 {display: none;}
}

@media (max-width: 970px)
{
	.badge-pos-2, .badge-pos-3, .badge-pos-4 {display: none;}
}

/* Tablet */
@media (max-width: 820px) {
  .main-container,
  .main-container-index {
    grid-template-columns: 1fr;
    padding: 1rem;
    max-width: 100vw;
    overflow-x: hidden;
  }


  .badge-pos-2, .badge-pos-3, .badge-pos-4 {display: none;}

  .zoek-layout { flex-direction: column; padding: 1rem; }
  .zoek-filter-col { width: 100%; position: static; max-height: none; overflow-y: visible; }

  .filter-panel-wrap { position: static; width: 100%; max-height: none; overflow: visible; background: none; border-radius: 0; padding: 0; box-shadow: none; z-index: auto; }
  .filter-body { overflow-y: visible; max-height: none; }

  .page-header { padding: 1.25rem 1rem 1rem; }
  .page-header h1 { font-size: 2rem; }
  .page-header-inner { padding-left: 0; }

  .hero { height: 420px; }
  .hero-content h1 { font-size: 2rem; margin-bottom: 2rem;}
  .hero-content .slogan { display: none; }

  .walk-image-wrap img { height: 220px; }
  .slideshow-wrap { height: 220px; }

  .slide-caption {
    bottom: 35px;
    left: 10px;
    right: 10px;
    max-width: min(calc(100% - 20px), 260px);  /* was: calc(100% - 20px) zonder bovengrens */
    font-size: 0.78rem;                         /* iets kleiner dan de 0.8rem hierboven */
    padding: 0.35rem 0.85rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
	 max-height: calc(1.3em * 3 - 6px);
  }
  .walk-card { grid-template-columns: auto minmax(0, 1fr); }
  .walk-nav-btn { max-width: calc(50% - 0.2rem); font-size: 0.78rem; padding: 0.4rem 0.6rem; white-space: normal; }
  .walk-nav-btn .nav-title { white-space: normal; }
  .walk-nav .back-link { font-size: 0.78rem; flex-shrink: 1; min-width: 0; white-space: nowrap; }

  .content-card-body { padding: 1rem; }
  .side-card-body    { padding: 0.9rem; }

  #mapView { height: 360px; }

  #kijk-ook-bij-btn    { right: 12px; top: 74px; }
  #kijk-ook-bij-popup  { right: 12px; top: 120px; }
  .breadcrumb { padding-right: 60px; }

  .cta-box-foto img    { height: 320px; object-position: center 15%; }
  .cta-box-foto::before { height: 120px; }

  .mijnwzp-container { padding: 0 1rem 2rem; }
  .mijnwzp-card--wide { grid-column: 1 / -1; }
  .mijnwzp-intro { flex-direction: column; align-items: flex-start; }

  footer { padding: 2rem 1rem 1.5rem; }

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

/* Klein mobiel */
@media (max-width: 660px) {
  .wandeling_kaart { margin-right: 0 !important;}
	.artikelfotodiv {margin: 0; padding: 0; text-align: left; width: 100%; display: inline-block; overflow: auto; margin: 0; padding: 0; float: left; margin-left: 0px; padding-left: 0; margin-bottom: 30px;}
	.artikelfoto {height: auto; padding: 0; margin: 0; width: 95%; margin-bottom: 0px; margin-left: 0px; padding-left: 0;}	

	#badgeicon {display: none;}
}

@media (max-width: 600px) {
  nav { padding: 0 1rem; }
  .hero { height: 360px; }
  .hero-content h1 { font-size: 1.6rem; }

  .artikel-intro-foto {
    float: none;
    margin: 0 0 1rem 0;
    text-align: center;
    position: relative;
  }

  .logott {
    position: absolute;
    top: -12px;
    right: 20px;
  }

  .cta-box-foto img    { height: 260px; object-position: center 15%; }
  .cta-box-foto::before { height: 100px; }

  .filter-grid { grid-template-columns: 1fr; }
  .filter-datum-row { flex-direction: column; align-items: flex-start; }
  .filter-datum-row .btn { align-self: flex-start; }
  .aanmelden-link { float: none; display: block; margin-bottom: 1rem; }

    #custom-melding-box {
        top: 76px;
        right: 10px;
        left: 20px;
        width: auto;
        max-width: none;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
  nav { padding: 0 1rem; }
  .page-header h1 { font-size: 1.6rem; }

  .walk-nav-btn { font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .tab-btn { padding: 0.55rem 0.85rem; font-size: 0.82rem; }
  .btn { font-size: 0.82rem; padding: 0.5rem 0.9rem; }
  .walk-card { grid-template-columns: auto minmax(0, 1fr); }

  .row-2 { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr; }

  #kijk-ook-bij-btn { right: 8px; top: 72px; font-size: 0.78rem; padding: 0.4rem 0.8rem; }
}

@media only screen and (max-width: 700px) {
  .bannermodaldiv { width: 90%; margin-top: 40px; }
  .bannermodal { padding-top: 20px; }
  .modalimage { width: 90%; }
}

@media only screen and (max-width: 1668px) {
  .bannermodaldiv { width: 90%; margin-top: 0; }
}

.video {
  width: Calc(2*300px);
  height: Calc(2*168px);
}

/* ── COLLAPSIBLE CONTENT-CARD ── */
.content-card-header.collapsible-header {
  border-radius: 16px;
  transition: border-radius 0.01s 0.35s;
}

.content-card-header.collapsible-header {
  border-radius: 16px 16px 0 0;
  transition: border-radius 0s;
}

.collapsible-arrow {
  color: var(--fern);
  font-size: 0.7rem;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.collapsible-header[aria-expanded="true"] .collapsible-arrow {
  transform: rotate(180deg);
}

.collapsible-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.collapsible-content.open {
  max-height: 800px;
}

/* Sticky resultatenknop — alleen zichtbaar op mobile */
#mobileResultsBtn {
    display: none;
}

@media (max-width: 768px) {
    #mobileResultsBtn {
        display: flex;
        position: fixed;
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--moss, #e8a000);
        color: #fff;
        border: none;
        border-radius: 2rem;
        padding: 0.85rem 1.6rem;
        font-size: 1rem;
        font-weight: 600;
        font-family: inherit;
        box-shadow: 0 4px 16px rgba(0,0,0,0.18);
        cursor: pointer;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        transition: background 0.2s, opacity 0.2s;
    }

    #mobileResultsBtn:active {
        background: var(--moss, #3a7d44);
    }

    /* Knop even pulsen na een filterwijziging */
    #mobileResultsBtn.updated {
        animation: btn-pulse 0.4s ease;
    }

    @keyframes btn-pulse {
        0%   { transform: translateX(-50%) scale(1); }
        50%  { transform: translateX(-50%) scale(1.07); }
        100% { transform: translateX(-50%) scale(1); }
    }
}

#mobileMapBtn {
    display: none;
}

@media (max-width: 768px) {
    #mobileMapBtn {
        display: flex;
        position: fixed;
        bottom: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background: var(--moss, #4a7c59);
        color: #fff;
        border: none;
        border-radius: 2rem;
        padding: 0.85rem 1.6rem;
        font-size: 1rem;
        font-weight: 600;
        font-family: inherit;
        box-shadow: 0 4px 16px rgba(0,0,0,0.18);
        cursor: pointer;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
}
/* -- WALK CARD RIBBON -- */
.walk-card-img { position: relative; }

.walk-card-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  width: 130px;
  text-align: center;
  background: var(--fire);
  color: #fff;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.6rem 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  z-index: 5;
  pointer-events: none;
}

.wzp-marker-groen {
  background-color: #2e7d32;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(46,125,50,0.4);
}
.wzp-marker-rood {
  background-color: #c62828;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px rgba(198,40,40,0.4);
}

.map-legend {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  display: none; /* pas zichtbaar zodra kaart actief is, zie hieronder */
}

#mapView.active .map-legend {
  display: block;
}

.map-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.map-legend-item + .map-legend-item {
  margin-top: 4px;
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 10px;
}

.content-card-body .check-row a,
.content-card-body .check-row a:visited,
.textmodaldiv .check-row a,
.textmodaldiv .check-row a:visited {
    text-decoration: none !important;
    border-bottom: 1px solid var(--fern);
}

.content-card-body .check-row a:hover,
.textmodaldiv .check-row a:hover {
    color: var(--forest);
    border-bottom-color: var(--moss);
}

.link:hover,
.link:visited:hover {
  color: var(--forest);      /* donkergroen bij hover */
  text-decoration: none;     /* blijft niet onderstreept */
}

/* -- Hogere foto boven artikelen bij breed scherm -- */

@media (min-width: 992px) {
  .artikel-intro-foto img {
    height: 220px;
  }
}

@media (min-width: 1400px) {
  .artikel-intro-foto img {
    height: 260px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .icon-filter:hover {
    border-color: var(--sage);
    background: var(--fern);
    color: var(--forest);
  }
}

.knop {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
.knop.bezig {
	pointer-events: none;
	opacity: 0.75;
}
.knop-spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: knop-spin 0.7s linear infinite;
}
.knop.bezig .knop-spinner {
	display: inline-block;
}

.knop {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;

	/* ── zelfde uiterlijk als .btn-submit ── */
	width: 244px;
	padding: 14px;
	background: var(--moss);
	color: var(--white);
	border: none;
	border-radius: 10px;
	font-family: 'Poppins', sans-serif;
	font-size: .95rem;
	font-weight: 700;
	letter-spacing: .02em;
	transition: background .2s, transform .1s, box-shadow .2s;
	box-shadow: 0 4px 14px rgba(74,124,47,.3);
	margin-top: 10px;
}

.knop:hover {
	background: var(--forest);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(45,80,22,.35);
}

.knop:active { transform: translateY(0); }

.knop.bezig {
	pointer-events: none;
	opacity: 0.75;
}

@keyframes knop-spin {
	to { transform: rotate(360deg); }
}

.wf-downloadmelding {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 0.3s ease, max-height 0.3s ease;
	margin-top: 10px;
	color: #2e7d32;
	font-size: 14px;
}
.wf-downloadmelding.zichtbaar {
	opacity: 1;
	max-height: 60px;
}

#custom-melding-box {
    display: none;
    position: fixed;
    top: 76px; /* 64px navhoogte + 12px marge */
    right: 20px;
    background-color: rgba(183, 41, 32, 0.8);
    color: #fff;
    padding: 15px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 350px;
    width: 90%;
    font-family: 'Source Sans 3', sans-serif;
}
#custom-melding-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-right: 20px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}
#custom-melding-box .melding-close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.4rem;
    line-height: 1;
    color: #fff;
}
