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

:root {
  --green:    #0f7a4e;
  --green-l:  #d1fae5;
  --blue:     #1d4ed8;
  --blue-l:   #dbeafe;
  --orange:   #c2410c;
  --orange-l: #ffedd5;
  --purple:   #6d28d9;
  --purple-l: #ede9fe;
  --ink:      #111827;
  --ink-2:    #374151;
  --muted:    #6b7280;
  --border:   #d1d5db;
  --bg:       #f9fafb;
  --white:    #ffffff;
  --radius:   6px;
  --radius-lg:10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  flex-shrink: 0;
}

.nav { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .15s;
}
.nav a:hover { color: var(--ink); }

/* Hamburger — verborgen op desktop, zichtbaar op mobiel */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
  transition: border-color .15s;
}
.nav-toggle:hover { border-color: var(--green); color: var(--green); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-open { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background-image: url('images/hero_bgi.webp');
  background-size: cover;
  background-position: center;
  background-color: #0a2818; /* fallback als afbeelding niet laadt */
  border-bottom: 1px solid #0a2818;
  padding: 72px 0 80px;
  overflow: hidden;
}

/* Gradient overlay voor leesbaarheid — donkerder links (tekst), lichter rechts (kaart) */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 30, 15, 0.82) 0%,
    rgba(5, 30, 15, 0.70) 45%,
    rgba(5, 30, 15, 0.35) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.35);
  color: #ffffff;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.75;
}

/* Search */
.search-wrap {
  position: relative;
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 580px;
  margin-bottom: 16px;
}

.search-field {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  color: var(--ink);
}
.search-input::placeholder { color: var(--muted); }
.search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15,122,78,.12);
}

.search-btn {
  padding: 12px 22px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.search-btn:hover { background: #0a5c3a; }

.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 80px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  list-style: none;
  display: none;
  z-index: 50;
}
.suggestions.open { display: block; }
.suggestions li a {
  display: block;
  padding: 10px 14px;
  font-size: .9rem;
  color: var(--ink);
  border-bottom: 1px solid var(--bg);
  transition: background .1s;
}
.suggestions li:last-child a { border-bottom: none; }
.suggestions li a:hover { background: var(--bg); }

.search-hint {
  font-size: .83rem;
  color: rgba(255,255,255,.65);
}
.search-hint a { color: #6ee7b7; font-weight: 500; }
.search-hint a:hover { text-decoration: underline; color: #ffffff; }

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.pill-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 310px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
}

.pill-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--bg);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}
.pill-card-header svg { color: var(--green); flex-shrink: 0; }

.pill-tags {
  display: flex;
  gap: 6px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--bg);
}

.pill-stats { padding: 4px 0 8px; }
.pill-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 20px;
  border-bottom: 1px solid var(--bg);
  gap: 12px;
}
.pill-stat:last-child { border-bottom: none; }
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.stat-val {
  font-size: .85rem;
  color: var(--ink-2);
  text-align: right;
}

/* ===== TAGS ===== */
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
  line-height: 1.5;
  letter-spacing: .02em;
}
.tag.green  { background: var(--green-l);  color: var(--green); }
.tag.blue   { background: var(--blue-l);   color: var(--blue); }
.tag.orange { background: var(--orange-l); color: var(--orange); }
.tag.purple { background: var(--purple-l); color: var(--purple); }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section--alt { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.02em;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 32px;
}

/* ===== CATEGORY GRID — horizontal cards ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
  cursor: pointer;
  min-width: 0;        /* laat 1fr echt werken in het grid */
  overflow: hidden;
}
.cat-card:hover {
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(15,122,78,.1);
}
.cat-card--more {
  background: var(--bg);
  border-style: dashed;
}

.cat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--bg);
  border-radius: var(--radius);
  color: var(--green);
  flex-shrink: 0;
}
.cat-card--more .cat-icon-wrap { color: var(--muted); }

.cat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cat-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cat-count { font-size: .78rem; color: var(--muted); }

/* ===== MED GRID ===== */
.med-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.med-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  transition: border-color .15s, box-shadow .15s;
}
.med-card:hover {
  border-left-color: var(--green);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}

/* Desktop: altijd zichtbaar; mobiel: verborgen via media query */
.med-card.is-hidden { display: flex; }

/* "Toon alle" knop — alleen zichtbaar op mobiel */
.med-show-more {
  display: none;
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  background: var(--bg);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  font-family: inherit;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.med-show-more:hover { color: var(--green); border-color: var(--green); }

.med-name { font-weight: 600; font-size: .97rem; color: var(--ink); }
.med-alt  { font-size: .8rem; color: var(--muted); }

/* ===== TRUST GRID ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.trust-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
}

.trust-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--green-l);
  border-radius: var(--radius);
  color: var(--green);
  margin-bottom: 14px;
}

.trust-card h3 {
  font-size: .97rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}
.trust-card p {
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.7;
}

/* ===== CATEGORY HERO (met achtergrondafbeelding) ===== */
.cat-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #0a2818;
  padding: 52px 0;
  overflow: hidden;
}
.cat-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(5,30,15,.88) 0%, rgba(5,30,15,.6) 100%);
  pointer-events: none;
}
.cat-hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color: #fff;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.cat-hero-text h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.cat-hero-text p {
  font-size: .97rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  max-width: 520px;
}
.cat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.cat-breadcrumb a { color: rgba(255,255,255,.75); transition: color .15s; }
.cat-breadcrumb a:hover { color: #fff; }
.cat-breadcrumb-sep { opacity: .45; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.logo--light { color: #f9fafb; }
.logo-mark--light { background: var(--green); }

.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { font-size: .875rem; color: #6b7280; margin-top: 6px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-links div { display: flex; flex-direction: column; gap: 10px; }
.footer-links strong { color: #f3f4f6; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.footer-links a { font-size: .875rem; color: #9ca3af; transition: color .15s; }
.footer-links a:hover { color: #f9fafb; }

.footer-bottom { padding: 20px 0; }
.footer-bottom p { font-size: .78rem; color: #4b5563; text-align: center; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--green); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep {
  color: var(--border);
  display: inline-block;
}

/* ===== PAGE HEADER (medicine / category pages) ===== */
.page-header {
  background: #f0fdf6;
  border-bottom: 1px solid #c6f0dc;
  padding: 40px 0 36px;
}
.page-header h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.page-header .generic-name {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Inter', system-ui, sans-serif;
}
.page-header p.page-desc {
  font-size: 1rem;
  color: var(--ink-2);
  margin-top: 8px;
  max-width: 620px;
  line-height: 1.7;
}

/* ===== QUICK FACTS BAR ===== */
.quick-facts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}
.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.fact-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.fact-value {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}

/* ===== CONTENT LAYOUT (2-col) ===== */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: start;
  padding: 48px 0;
}
.content-main { min-width: 0; }
.content-sidebar { min-width: 0; }

/* ===== SECTION NAV (sticky sidebar nav) ===== */
.section-nav {
  position: sticky;
  top: 74px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.section-nav-title {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}
.section-nav a {
  display: block;
  padding: 9px 16px;
  font-size: .87rem;
  color: var(--ink-2);
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.section-nav a:hover,
.section-nav a.active {
  color: var(--green);
  border-left-color: var(--green);
  background: #f0fdf6;
}

/* ===== INFO SECTIONS ===== */
.info-section {
  margin-bottom: 48px;
  scroll-margin-top: 80px;
}
.info-section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -.01em;
}
.info-section p {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}
.info-section ul, .info-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.info-section li {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 4px;
}

/* ===== SIDE EFFECTS LIST ===== */
.side-effects-list { list-style: none; padding: 0; }
.side-effects-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.side-effects-list li:last-child { border-bottom: none; }
.effect-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.effect-dot--common  { background: #9ca3af; }
.effect-dot--uncommon { background: var(--orange); }
.effect-dot--serious  { background: #dc2626; }

/* ===== WARNING BOX ===== */
.warning-box {
  display: flex;
  gap: 14px;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-left: 4px solid #dc2626;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 16px 0;
}
.warning-box svg { color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.warning-box-content p {
  font-size: .9rem;
  color: #7f1d1d;
  margin: 0;
  line-height: 1.65;
}
.warning-box-content strong { color: #7f1d1d; }

/* ===== INFO BOX ===== */
.info-box {
  display: flex;
  gap: 14px;
  background: var(--blue-l);
  border: 1px solid #93c5fd;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin: 16px 0;
}
.info-box svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.info-box-content p {
  font-size: .9rem;
  color: #1e3a8a;
  margin: 0;
  line-height: 1.65;
}
.info-box-content strong { color: #1e3a8a; }

/* ===== DOSAGE TABLE ===== */
.dosage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  margin: 16px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dosage-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--ink);
  padding: 10px 14px;
  text-align: left;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
}
.dosage-table td {
  padding: 10px 14px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--bg);
  vertical-align: top;
  line-height: 1.6;
}
.dosage-table tr:last-child td { border-bottom: none; }
.dosage-table tr:nth-child(even) td { background: #fafafa; }

/* ===== RELATED MEDICINES ===== */
.related-medicines {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.related-medicines h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

/* ===== FILTER BAR (medicijnen overview) ===== */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  padding: 7px 16px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  font-size: .83rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ===== ALPHA INDEX ===== */
.alpha-section { margin-bottom: 36px; }
.alpha-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  border-bottom: 2px solid var(--green-l);
  padding-bottom: 6px;
  margin-bottom: 14px;
}

/* ===== CATEGORY PAGE HEADER ===== */
.cat-page-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 40px 0 32px;
  background: #f0fdf6;
  border-bottom: 1px solid #c6f0dc;
}
.cat-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  color: var(--green);
  flex-shrink: 0;
}
.cat-page-text h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.cat-page-text p {
  font-size: .97rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== DISCLAIMER / STATIC PAGE ===== */
.static-page { padding: 56px 0; }
.static-page h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.static-page .intro {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.static-page h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 10px;
}
.static-page p, .static-page li {
  font-size: .95rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 10px;
}
.static-page ul { padding-left: 20px; }

/* ===== RESPONSIVE =====
   Volgorde: groot → klein (mobile-last)
   900px  tablet landscape
   768px  tablet portrait  + hamburger menu
   640px  grote telefoon
   480px  kleine telefoon
   ============================= */

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .content-sidebar { display: none; }
  .section-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px;
  }
  .section-nav-title { display: none; }
  .section-nav a {
    border-left: none;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    padding: 5px 14px;
    font-size: .82rem;
  }
  .section-nav a:hover,
  .section-nav a.active { border-color: var(--green); }
}

@media (max-width: 768px) {
  /* Hamburger: toon toggle, verberg nav */
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--green);
    padding: 8px 24px 16px;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
    z-index: 98;
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: block;
    padding: 11px 0;
    font-size: .97rem;
    color: var(--ink-2);
    border-bottom: 1px solid var(--bg);
  }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover { color: var(--green); }

  /* Overige aanpassingen op tablet */
  .hero h1 { font-size: 2.2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cat-hero-inner { flex-direction: column; align-items: flex-start; }
  .cat-hero-text h1 { font-size: 1.75rem; }
}

@media (max-width: 640px) {
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .quick-answer { grid-template-columns: 1fr 1fr; }
  .qa-item:last-child { grid-column: 1 / -1; }
  .dosage-table { font-size: .82rem; }
  .dosage-table th,
  .dosage-table td { padding: 8px 10px; }
  .page-header h1 { font-size: 1.6rem; }
  .cat-hero-text h1 { font-size: 1.5rem; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 0 56px; }
  .section { padding: 48px 0; }
  .search-wrap { flex-direction: column; }
  .search-btn { width: 100%; }
  .suggestions { right: 0; }
  .footer-links { grid-template-columns: 1fr; }

  /* Categorie: 2 kolommen met compactere kaartjes */
  .category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cat-card { padding: 12px 12px; gap: 10px; }
  .cat-icon-wrap { width: 32px; height: 32px; flex-shrink: 0; }
  .cat-icon-wrap svg { width: 16px; height: 16px; }
  .cat-name { font-size: .84rem; }
  .cat-count { font-size: .72rem; }

  /* Medicijn en trust grids: 1 kolom */
  .med-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }

  /* Mobiel: extra kaarten verbergen */
  .med-card.is-hidden { display: none; }
  .med-show-more { display: block; }
}

/* ===== OVER DE MAKER ===== */

/* Groene accentbalk bovenaan */
.maker-banner {
  height: 140px;
  background: linear-gradient(135deg, #0a3d22 0%, var(--green) 100%);
}

.maker-section {
  padding-bottom: 72px;
  margin-top: -72px; /* trekt kaart over de banner */
}

.maker-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

/* Foto kolom */
.maker-photo-wrap {
  position: relative;
  background: #e5e7eb;
  min-height: 260px;
}
.maker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.maker-img-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: #9ca3af;
  background: #f3f4f6;
  font-size: .75rem;
}

/* Bio kolom */
.maker-body {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.maker-badge {
  display: inline-block;
  background: var(--green-l);
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  width: fit-content;
}

.maker-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
}

.maker-role {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
  margin: 0;
}

.maker-bio {
  font-size: .93rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 4px 0 0;
}

.maker-quote {
  border-left: 3px solid var(--green);
  margin: 4px 0;
  padding: 8px 0 8px 16px;
  font-size: .88rem;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.6;
}

.maker-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: #0a66c2;
  color: #fff;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: background .15s;
}
.btn-linkedin:hover { background: #004182; }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  background: var(--bg);
  color: var(--ink-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  transition: border-color .15s, color .15s;
}
.btn-back:hover { border-color: var(--green); color: var(--green); }

/* Maker responsive */
@media (max-width: 600px) {
  .maker-card { grid-template-columns: 1fr; }
  .maker-photo-wrap { min-height: 220px; }
  .maker-body { padding: 24px 20px 20px; }
  .maker-name { font-size: 1.35rem; }
  .maker-section { margin-top: -56px; }
}
