/* ═══════════════════════════════════════════════════
   InterventionAssistant — Stylesheet
   Thema: licht, Nunito, accordion, dropdown nav
   ═══════════════════════════════════════════════════ */

:root {
  --blue:         #1e6db5;
  --blue-light:   #ddeaf7;
  --teal:         #138a8a;
  --teal-light:   #d4eeee;
  --red:          #b53a2f;
  --red-light:    #f5dedd;
  --purple:       #6040a0;
  --purple-light: #ece8f7;
  --orange:       #b36000;
  --green:        #1a7a3e;
  --text:         #1a1a2a;
  --muted:        #5a6378;
  --border:       #cdd3de;
  --bg:           #e8eaef;
  --card:         #f2f4f8;
  --white:        #f8f9fc;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ══════════════════════════════════════
   NAV
   ══════════════════════════════════════ */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  display: flex;
  align-items: center;
  padding: 0 1.75rem;
  height: 58px;
  position: sticky;
  top: 0;
  z-index: 200;
  gap: 0.15rem;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue);
  text-decoration: none;
  margin-right: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--teal); }

/* ── Dropdown knop ── */
.nav-item { position: relative; }

.nav-btn {
  background: none;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.nav-btn:hover { background: var(--blue-light); color: var(--blue); }
.nav-btn.open   { background: var(--blue-light); color: var(--blue); }

.chevron { font-size: 0.58rem; transition: transform 0.2s; display: inline-block; }
.nav-btn.open .chevron { transform: rotate(180deg); }

/* ── Dropdown menu ── */
.dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  min-width: 230px;
  z-index: 300;
  overflow: hidden;
  display: none;
}
.dropdown.open { display: block; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.58rem 1rem;
  font-size: 0.83rem;
  color: var(--text);
  cursor: pointer;
  border-bottom: 1px solid #eef0f4;
  transition: background 0.1s;
  text-decoration: none;
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--blue-light); color: var(--blue); }

.dropdown-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dropdown-dot.vasc    { background: var(--blue); }
.dropdown-dot.nonvasc { background: var(--teal); }
.dropdown-dot.mat     { background: var(--purple); }

.dropdown-badge {
  margin-left: auto;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  background: var(--red-light);
  color: var(--red);
}

/* ── Zoekbalk in nav ── */
.nav-search-wrap {
  margin-left: auto;
  position: relative;
  flex-shrink: 0;
}

.nav-search-input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  font-size: 0.78rem;
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  width: 190px;
  outline: none;
  transition: border-color 0.15s, width 0.2s;
}
.nav-search-input:focus { border-color: var(--blue); width: 250px; }
.nav-search-input::placeholder { color: var(--muted); }

/* ── Zoekresultaten ── */
.search-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  z-index: 400;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.search-results.open { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #eef0f4;
  text-decoration: none;
  transition: background 0.1s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--blue-light); }

.search-result-name { font-size: 0.845rem; color: var(--text); font-weight: 600; }
.search-result-cat  { font-size: 0.7rem; color: var(--muted); margin-top: 0.1rem; }

.search-result-tag {
  margin-left: auto;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  flex-shrink: 0;
}
.search-result-tag.vasc    { background: var(--blue-light);   color: var(--blue); }
.search-result-tag.nonvasc { background: var(--teal-light);   color: var(--teal); }
.search-result-tag.urgent  { background: var(--red-light);    color: var(--red);  }

.search-no-result {
  padding: 1rem;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
  background: linear-gradient(120deg, #1a5c9e 0%, #154f8a 100%);
  padding: 2.75rem 2rem 2.25rem;
  text-align: center;
  color: white;
}
.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.hero h1 span { color: #7de8e8; }
.hero p { font-size: 0.88rem; opacity: 0.82; margin-bottom: 1.5rem; line-height: 1.6; }

.hero-search {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 25px;
  overflow: visible;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
}
.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.72rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text);
  outline: none;
  font-family: 'Nunito Sans', sans-serif;
  border-radius: 25px 0 0 25px;
  min-width: 0;
}
.hero-search input::placeholder { color: var(--muted); }
.hero-search button {
  background: var(--teal);
  border: none;
  color: white;
  padding: 0 1.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  border-radius: 0 25px 25px 0;
  flex-shrink: 0;
}

.hero-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: none;
  z-index: 400;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: left;
}
.hero-results.open { display: block; }

/* ══════════════════════════════════════
   MAIN / GRID
   ══════════════════════════════════════ */
.main { max-width: 880px; margin: 0 auto; padding: 2rem; }

.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Procedure kaart ── */
.proc-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.18s, transform 0.15s;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.proc-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-1px); }

.proc-card-stripe { height: 4px; }
.proc-card-stripe.vasc   { background: var(--blue); }
.proc-card-stripe.nonvasc{ background: var(--teal); }
.proc-card-stripe.thrombo{ background: var(--red);  }
.proc-card-stripe.onco   { background: var(--purple); }

.proc-card-head {
  padding: 0.9rem 1.1rem 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.proc-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.proc-card-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text);
}
.proc-card-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.15rem; }

.proc-list { border-top: 1px solid #eaecf2; margin-top: 0.5rem; }

.proc-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid #f0f2f6;
  transition: background 0.1s, color 0.1s;
  cursor: pointer;
  text-decoration: none;
}
.proc-list-item:last-child { border-bottom: none; }
.proc-list-item:hover { background: var(--blue-light); color: var(--blue); }

.proc-list-arr { font-size: 0.8rem; color: var(--border); }
.proc-list-item:hover .proc-list-arr { color: var(--blue); }

.proc-list-urgent {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  background: var(--red-light);
  color: var(--red);
}

/* ══════════════════════════════════════
   PROCEDURE PAGINA — HEADER
   ══════════════════════════════════════ */
.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border); }

.proc-header {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.proc-header-bar {
  width: 5px;
  border-radius: 3px;
  align-self: stretch;
  min-height: 48px;
  flex-shrink: 0;
}
.proc-header-bar.vasc    { background: var(--blue); }
.proc-header-bar.nonvasc { background: var(--teal); }
.proc-header-bar.thrombo { background: var(--red);  }

.proc-header h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.proc-header p { font-size: 0.84rem; color: var(--muted); }

.proc-meta { display: flex; gap: 0.5rem; margin-top: 0.6rem; flex-wrap: wrap; }
.meta-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.meta-pill.vasc    { background: var(--blue-light);   color: var(--blue); }
.meta-pill.nonvasc { background: var(--teal-light);   color: var(--teal); }
.meta-pill.thrombo { background: var(--red-light);    color: var(--red);  }

/* ══════════════════════════════════════
   ACCORDION
   ══════════════════════════════════════ */
.accordion { margin-bottom: 0.55rem; }

.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
  gap: 0.75rem;
}
.accordion.open .acc-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
.acc-header:hover { background: #edf0f6; }

.acc-title-wrap { display: flex; align-items: center; gap: 0.65rem; }

.acc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.acc-dot.blue   { background: var(--blue);   }
.acc-dot.teal   { background: var(--teal);   }
.acc-dot.red    { background: var(--red);    }
.acc-dot.purple { background: var(--purple); }
.acc-dot.orange { background: var(--orange); }
.acc-dot.green  { background: var(--green);  }

.acc-title {
  font-family: 'Nunito', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.acc-chevron {
  font-size: 0.68rem;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion.open .acc-chevron { transform: rotate(180deg); }

.acc-body {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: none;
}
.accordion.open .acc-body { display: block; }

.acc-inner { padding: 1rem 1.1rem; }

.acc-inner-split {
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 1.5rem;
  align-items: start;
}

.acc-sublabel {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* ══════════════════════════════════════
   LIJSTEN
   ══════════════════════════════════════ */
ul.clean { list-style: none; padding: 0; }
ul.clean li {
  font-size: 0.875rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid #edf0f5;
  line-height: 1.5;
  color: var(--text);
}
ul.clean li:last-child { border-bottom: none; }
ul.clean li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.7rem;
  top: 0.48rem;
  font-weight: 700;
}
ul.clean li strong { font-weight: 600; }

ol.steps { list-style: none; padding: 0; }
ol.steps li {
  display: flex;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #edf0f5;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text);
}
ol.steps li:last-child { border-bottom: none; }

.sn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: 'Nunito', sans-serif;
}
.sn.teal { background: var(--teal); color: white; }
.sn.blue { background: var(--blue); color: white; }
.sn.red  { background: var(--red);  color: white; }

/* ══════════════════════════════════════
   TABELLEN
   ══════════════════════════════════════ */
table.mat { width: 100%; border-collapse: collapse; font-size: 0.845rem; }
table.mat th {
  text-align: left;
  padding: 0.5rem 0.85rem;
  background: var(--card);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  border-bottom: 2px solid var(--border);
}
table.mat td {
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid #edf0f5;
  vertical-align: top;
  color: var(--text);
}
table.mat tr:last-child td { border-bottom: none; }
table.mat tr:hover td { background: var(--blue-light); }
.mat-cat td {
  background: var(--card);
  font-size: 0.63rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  padding: 0.5rem 0.85rem 0.15rem;
}

/* ══════════════════════════════════════
   NOTITIES
   ══════════════════════════════════════ */
.note {
  border-left: 3px solid;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  border-radius: 0 5px 5px 0;
  color: var(--text);
}
.note.orange { border-color: var(--orange); background: #fff8ee; }
.note.red    { border-color: var(--red);    background: #fff2f2; }
.note.green  { border-color: var(--green);  background: #f2fbf5; }
.note strong { font-weight: 600; }

/* ══════════════════════════════════════
   STANDAARDVERSLAG
   ══════════════════════════════════════ */
.verslag-wrap { position: relative; }
.verslag {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  line-height: 1.85;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.1rem 1.1rem 1.1rem 1.1rem;
  white-space: pre-wrap;
  color: var(--text);
}
.copy-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: background 0.15s;
}
.copy-btn:hover  { background: #1558a0; }
.copy-btn.copied { background: var(--green); }

/* ══════════════════════════════════════
   MATERIAALPAGINA LINKS
   ══════════════════════════════════════ */
a.mat-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(30,109,181,0.3);
  transition: color 0.15s, border-color 0.15s;
}
a.mat-link:hover { color: var(--teal); border-color: var(--teal); }

/* ══════════════════════════════════════
   BRONNEN
   ══════════════════════════════════════ */
.bronnen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}
.bronnen-lijst { list-style: none; padding: 0; }
.bronnen-lijst li {
  padding: 0.3rem 0;
  border-bottom: 1px solid #edf0f5;
  font-size: 0.84rem;
  color: var(--text);
}
.bronnen-lijst li:last-child { border-bottom: none; }
.bronnen-lijst a { color: var(--blue); text-decoration: none; font-weight: 500; }
.bronnen-lijst a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 1rem; height: 52px; }
  .nav-search-wrap { display: none; }

  .main { padding: 1rem; }
  .proc-grid { grid-template-columns: 1fr; }

  .acc-inner-split { grid-template-columns: 1fr; padding: 0.85rem; }
  .acc-inner { padding: 0.85rem; }
  .bronnen-grid { grid-template-columns: 1fr; }

  .proc-header { padding: 1rem 1.1rem; }
  .proc-header h1 { font-size: 1.2rem; }

  table.mat th:nth-child(3),
  table.mat td:nth-child(3) { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 2rem 1rem 1.75rem; }
  .hero h1 { font-size: 1.6rem; }
  .proc-card-head { padding: 0.75rem 0.9rem 0.4rem; }
  .proc-list-item { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
}

/* ══════════════════════════════════════
   HAMBURGER & MOBIEL MENU
   ══════════════════════════════════════ */

/* Desktop: nav-links zichtbaar, hamburger verborgen */
.nav-links { display: flex; gap: 0.15rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Hamburger animatie naar X */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobiel menu — uitklapbaar onder nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  z-index: 199;
  max-height: calc(100vh - 58px);
  overflow-y: auto;
}

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

.mob-search-wrap {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.mob-search-input {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0.45rem 1rem;
  font-size: 0.84rem;
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  outline: none;
}

.mob-search-input:focus { border-color: var(--blue); }

.mob-group-label {
  padding: 0.6rem 1rem 0.2rem;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.mob-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid #eef0f4;
  cursor: pointer;
  transition: background 0.1s;
}

.mob-item:hover { background: var(--blue-light); color: var(--blue); }
.mob-item:last-child { border-bottom: none; }

/* Mobiel: verberg desktop links, toon hamburger */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-search-wrap { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  nav {
    padding: 0 1rem;
    justify-content: space-between;
  }
}

/* ══════════════════════════════════════
   AFBEELDINGEN & LIGHTBOX
   ══════════════════════════════════════ */

.foto-link {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: 4px;
  padding: 0.05rem 0.45rem;
  margin-left: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  transition: background 0.12s;
  white-space: nowrap;
}
.foto-link:hover { background: var(--blue-mid); }

.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  padding: 1rem 1.1rem;
}
.foto-item { cursor: pointer; }
.foto-item img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  display: block;
  transition: opacity 0.15s;
  background: var(--card);
}
.foto-item img:hover { opacity: 0.85; }
.foto-caption {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.3rem;
  line-height: 1.4;
}
.foto-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 6px;
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
  padding: 0.5rem;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 860px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.lightbox-cap {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: -2rem;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
}
.lightbox-placeholder {
  background: var(--card);
  border-radius: 8px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════
   CONTRA-INDICATIES — rode x-jes
   ══════════════════════════════════════ */
ul.contra { list-style: none; padding: 0; }
ul.contra li {
  font-size: 0.875rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid #edf0f5;
  line-height: 1.5;
  color: var(--text);
}
ul.contra li:last-child { border-bottom: none; }
ul.contra li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.7rem;
  top: 0.48rem;
  font-weight: 700;
}

/* ══════════════════════════════════════
   NAZORG / BULLET LIJSTEN — gewone bolletjes
   ══════════════════════════════════════ */
ul.bullet { list-style: none; padding: 0; }
ul.bullet li {
  font-size: 0.875rem;
  padding: 0.35rem 0 0.35rem 1.1rem;
  position: relative;
  border-bottom: 1px solid #edf0f5;
  line-height: 1.5;
  color: var(--text);
}
ul.bullet li:last-child { border-bottom: none; }
ul.bullet li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--muted);
  font-size: 0.9rem;
  top: 0.3rem;
}
ul.bullet li strong { font-weight: 600; }
