/* ==========================================================================
   Colliewijzer, systeem vch- : de VACHT van de collie.
   Alles heet naar de dubbele vacht : kraag, dek, onderlaag, pluim, lok,
   streng, kam, vlok, klit, zoom. Palet : bloeiende heide (heidepapier,
   heidediep, varen). Geen externe letters, geen script, geen animatie :
   overgangen van 150 ms, automatische donkere modus, afdrukblad.
   ========================================================================== */

:root {
  /* Heide in bloei : roze papier, diepe paarse inkt, varengroen als merk. */
  --vch-heidepapier: #f8e9f4;
  --vch-blad: #fdf7fb;
  --vch-was: #f0ddec;
  --vch-heidediep: #4d1b4e;
  --vch-heidehelder: #7a3f7c;
  --vch-varen: #4f6a2f;
  --vch-inkt: #241d26;
  --vch-inktzacht: #6a5a6c;
  --vch-draad: #e4d2e2;
  --vch-schaduw: rgba(77, 27, 78, 0.12);

  /* Letters : slab voor de koppen, humanistische schreefloze voor het lezen. */
  --vch-letter-kop: Superclarendon, "Bookman Old Style", Rockwell, "Roboto Slab", serif;
  --vch-letter-lees: Seravek, Candara, Corbel, "Noto Sans", system-ui, sans-serif;
  --vch-letter-cijfer: ui-monospace, "SF Mono", Menlo, "DejaVu Sans Mono", monospace;

  --vch-veldbreedte: 74rem;
  --vch-leesbreedte: 36rem;
  --vch-railbreedte: 14rem;
  --vch-ronding: 12px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --vch-heidepapier: #17121a;
    --vch-blad: #201a23;
    --vch-was: #1c161f;
    --vch-heidediep: #d3a9d6;
    --vch-heidehelder: #e0c0e2;
    --vch-varen: #a9c184;
    --vch-inkt: #f2e9f0;
    --vch-inktzacht: #b4a5b6;
    --vch-draad: #3a2f3d;
    --vch-schaduw: rgba(0, 0, 0, 0.5);
  }
}

/* ---------- fundament ---------- */

* { box-sizing: border-box; }

html {
  font-size: clamp(16px, 0.42vw + 14.8px, 19px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--vch-heidepapier);
  color: var(--vch-inkt);
  font-family: var(--vch-letter-lees);
  line-height: 1.66;
}

::selection { background: #4d1b4e; color: #f8e9f4; }

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

a {
  color: var(--vch-heidehelder);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 150ms ease, background-color 150ms ease, text-decoration-color 150ms ease;
}
a:hover { color: var(--vch-heidediep); text-decoration-color: var(--vch-varen); }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--vch-varen);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--vch-letter-kop);
  font-weight: 600;
  letter-spacing: -0.008em;
}

.vch-oversla {
  position: absolute;
  left: -100vw;
  top: 0;
  z-index: 60;
  background: var(--vch-heidediep);
  color: #f8e9f4;
  padding: 0.65rem 1.1rem;
  font-family: var(--vch-letter-lees);
  border-radius: 0 0 var(--vch-ronding) 0;
}
.vch-oversla:focus { left: 0; }

.vch-veld {
  max-width: var(--vch-veldbreedte);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.6rem);
}

/* ---------- kraag : de kop van de bladzijde ---------- */

.vch-kraag {
  background: var(--vch-blad);
  border-bottom: 3px solid var(--vch-heidediep);
}
.vch-kraag__rij {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.6rem;
  padding-block: 0.7rem;
}
.vch-merk {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--vch-heidediep);
  line-height: 1.18;
}
.vch-merk b {
  font-family: var(--vch-letter-kop);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.vch-merk span {
  font-size: 0.76rem;
  color: var(--vch-inktzacht);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.vch-gids { margin-left: auto; min-width: 0; }
.vch-gids ul {
  display: flex;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.vch-gids a {
  display: block;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.87rem;
  color: var(--vch-inkt);
  text-decoration: none;
  white-space: nowrap;
}
.vch-gids a:hover { background: var(--vch-was); color: var(--vch-heidediep); }

@media (max-width: 900px) {
  .vch-gids {
    margin-left: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .vch-gids ul { flex-wrap: nowrap; padding-bottom: 0.25rem; }
}

/* ---------- pluim : de fotoband van de voorpagina ---------- */

.vch-pluim {
  position: relative;
  isolation: isolate;
  height: clamp(296px, 26vw, 380px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.vch-pluim__foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
/* Sluier in HARDE kleur, nooit var() : een bleke variabele wast de foto grijs. */
.vch-pluim__sluier {
  position: absolute;
  inset: 0;
  background: linear-gradient(102deg, rgba(77, 27, 78, 0.92) 0%, rgba(77, 27, 78, 0.80) 52%, rgba(58, 20, 64, 0.66) 100%);
  z-index: -1;
}
.vch-pluim__inhoud {
  width: 100%;
  padding-block: clamp(1.2rem, 3vw, 2.2rem);
  color: #fbeef7;
}
.vch-pluim__aanhef {
  margin: 0 0 0.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: #d8c48f;
}
.vch-pluim h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4.4vw, 3.05rem);
  line-height: 1.06;
  color: #ffffff;
  max-width: 22ch;
}
.vch-pluim__inzet {
  margin: 0.65rem 0 0;
  max-width: 48ch;
  font-size: clamp(0.95rem, 1.1vw, 1.06rem);
  color: #f3e2ef;
}
.vch-pluim__werkwoorden {
  margin: 0.75rem 0 0;
  font-family: var(--vch-letter-cijfer);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #e3cfa4;
}

@media (max-width: 640px) {
  .vch-pluim { height: 316px; }
  .vch-pluim__inzet { display: none; }
}

/* ---------- aplat : de volle band die een blok aankondigt ---------- */

.vch-aplat {
  background: var(--vch-heidediep);
  color: #f8e9f4;
  border-radius: var(--vch-ronding);
  padding: 0.7rem clamp(0.9rem, 2.4vw, 1.4rem);
  display: flex;
  align-items: baseline;
  gap: 0.6rem 1.3rem;
  flex-wrap: wrap;
  margin-bottom: clamp(0.85rem, 1.8vw, 1.2rem);
}
.vch-aplat__cijfer {
  font-family: var(--vch-letter-cijfer);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1;
  color: #b7d18c;
  font-weight: 700;
}
.vch-aplat h2 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  color: #ffffff;
}
.vch-aplat__notitie {
  margin: 0;
  margin-left: auto;
  max-width: 38ch;
  font-size: 0.82rem;
  color: #e6cfe6;
}
@media (max-width: 780px) {
  .vch-aplat__notitie { margin-left: 0; }
}

/* ---------- dek en onderlaag : de twee lagen van de bladzijde ---------- */

.vch-dek { padding-block: clamp(1.4rem, 3vw, 2.1rem); }
.vch-onderlaag {
  padding-block: clamp(1.7rem, 4.4vw, 3rem);
  background: var(--vch-was);
}

/* ---------- streng : het raster van de zeven rubrieken ---------- */

.vch-streng {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}
.vch-streng__tegel {
  background: var(--vch-blad);
  border-radius: var(--vch-ronding);
  overflow: hidden;
  box-shadow: 0 1px 2px var(--vch-schaduw);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.vch-streng__tegel:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--vch-schaduw);
}
.vch-streng__tegel:nth-child(1) { grid-column: span 2; }
.vch-streng__tegel:nth-child(6) { grid-column: span 2; }
.vch-streng__tegel:nth-child(7) { grid-column: span 4; }
.vch-streng__beeld { display: block; }
.vch-streng__beeld img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.vch-streng__tegel:nth-child(1) .vch-streng__beeld img,
.vch-streng__tegel:nth-child(6) .vch-streng__beeld img { aspect-ratio: 3 / 1; }
.vch-streng__tegel:nth-child(7) .vch-streng__beeld img { aspect-ratio: 7 / 1; }
.vch-streng__tegel:nth-child(7) .vch-streng__romp { flex-direction: row; align-items: baseline; gap: 0.9rem; flex-wrap: wrap; }
.vch-streng__tegel:nth-child(7) .vch-streng__inzet { margin-left: auto; max-width: 46ch; }
.vch-streng__romp {
  padding: 0.75rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.vch-cijfer {
  font-family: var(--vch-letter-cijfer);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--vch-varen);
  letter-spacing: 0.08em;
}
.vch-streng__tegel h3 { margin: 0; font-size: 1.06rem; line-height: 1.26; }
.vch-streng__tegel h3 a { color: var(--vch-inkt); text-decoration: none; }
.vch-streng__tegel h3 a:hover { color: var(--vch-heidediep); text-decoration: underline; }
.vch-streng__inzet {
  margin: 0;
  font-size: 0.85rem;
  color: var(--vch-inktzacht);
}

@media (max-width: 1000px) {
  .vch-streng { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vch-streng__tegel:nth-child(1),
  .vch-streng__tegel:nth-child(6),
  .vch-streng__tegel:nth-child(7) { grid-column: span 2; }
  .vch-streng__tegel:nth-child(1) .vch-streng__beeld img,
  .vch-streng__tegel:nth-child(6) .vch-streng__beeld img,
  .vch-streng__tegel:nth-child(7) .vch-streng__beeld img { aspect-ratio: 3 / 1; }
  .vch-streng__tegel:nth-child(7) .vch-streng__romp { flex-direction: column; }
  .vch-streng__tegel:nth-child(7) .vch-streng__inzet { margin-left: 0; }
}
@media (max-width: 520px) {
  .vch-streng__tegel h3 { font-size: 0.98rem; }
}

/* ---------- lokken : het raster van de gedateerde vignetten ---------- */

.vch-lokken {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
.vch-lok {
  background: var(--vch-blad);
  border-radius: var(--vch-ronding);
  overflow: hidden;
  box-shadow: 0 1px 2px var(--vch-schaduw);
  display: flex;
  flex-direction: column;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.vch-lok:hover { transform: translateY(-2px); box-shadow: 0 6px 16px var(--vch-schaduw); }
.vch-lok__beeld img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
.vch-lok__romp { padding: 0.75rem 0.95rem 1.05rem; }
.vch-lok__datum {
  margin: 0 0 0.25rem;
  font-family: var(--vch-letter-cijfer);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--vch-varen);
}
.vch-lok h3 { margin: 0; font-size: 1.02rem; line-height: 1.3; }
.vch-lok h3 a { color: var(--vch-inkt); text-decoration: none; }
.vch-lok h3 a:hover { color: var(--vch-heidediep); text-decoration: underline; }
.vch-lok__inzet { margin: 0.35rem 0 0; font-size: 0.85rem; color: var(--vch-inktzacht); }

@media (max-width: 980px) { .vch-lokken { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .vch-lokken { grid-template-columns: minmax(0, 1fr); } }

/* ---------- bronnen : de twee vaste hulpmiddelen ---------- */

.vch-bronnen {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
.vch-bronnen li {
  background: var(--vch-blad);
  border-radius: var(--vch-ronding);
  padding: 1.1rem 1.2rem 1.25rem;
  box-shadow: 0 1px 2px var(--vch-schaduw);
}
.vch-bronnen h3 { margin: 0 0 0.35rem; font-size: 1.14rem; }
.vch-bronnen p { margin: 0; font-size: 0.9rem; color: var(--vch-inktzacht); }
.vch-bronnen__merk {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: var(--vch-was);
  color: var(--vch-heidediep);
  font-family: var(--vch-letter-cijfer);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 720px) { .vch-bronnen { grid-template-columns: minmax(0, 1fr); } }

/* ---------- colofonzin ---------- */

.vch-colofonzin {
  margin: clamp(1.2rem, 3vw, 2rem) 0 0;
  max-width: 62ch;
  font-size: 0.92rem;
  color: var(--vch-inktzacht);
  border-left: 3px solid var(--vch-heidediep);
  padding-left: 0.95rem;
}

/* ---------- spoor : het kruimelpad ---------- */

.breadcrumb.vch-spoor { padding-block: 0.85rem 0.2rem; }
.vch-spoor ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.79rem;
  font-family: var(--vch-letter-cijfer);
  letter-spacing: 0.04em;
}
.vch-spoor li { color: var(--vch-inktzacht); }
.vch-spoor li + li::before { content: "/"; color: var(--vch-varen); margin-right: 0.42rem; }
.vch-spoor a { color: var(--vch-inktzacht); text-decoration: none; }
.vch-spoor a:hover { color: var(--vch-heidediep); text-decoration: underline; }
.vch-spoor [aria-current="page"] { color: var(--vch-heidediep); }

/* ---------- kop : de kop van een artikel ---------- */

.vch-kop { padding-top: clamp(0.8rem, 2.4vw, 1.6rem); }
.vch-kop__aanhef {
  margin: 0 0 0.4rem;
  font-size: 0.74rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--vch-varen);
  font-weight: 600;
}
.vch-kop h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3.6vw, 2.65rem);
  line-height: 1.1;
  color: var(--vch-heidediep);
  max-width: 24ch;
}
.vch-kop__inzet {
  margin: 0.7rem 0 0;
  max-width: 52ch;
  font-size: 1.06rem;
  color: var(--vch-inktzacht);
}
.vch-merken {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0.6rem 0 0;
  border-top: 1px solid var(--vch-draad);
  font-family: var(--vch-letter-cijfer);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vch-inktzacht);
}
.vch-merken a { color: var(--vch-inktzacht); text-decoration: none; }
.vch-merken a:hover { color: var(--vch-heidediep); text-decoration: underline; }

.vch-plaat { margin: clamp(1rem, 2.6vw, 1.6rem) 0 0; }
.vch-plaat img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  border-radius: var(--vch-ronding);
}

/* ---------- lezing : rail links, leeskolom rechts ---------- */

.vch-lezing {
  /* Bewust smaller dan het veld: het paar rail plus leeskolom staat rechts, maar
     zweeft niet los aan de rand van een breed veld. */
  max-width: 62rem;
  display: grid;
  grid-template-columns: var(--vch-railbreedte) minmax(0, var(--vch-leesbreedte));
  gap: clamp(1.4rem, 4vw, 3.6rem);
  justify-content: end;
  align-items: start;
  padding-block: clamp(1.2rem, 3vw, 2.2rem) clamp(1.8rem, 4vw, 3rem);
}
.vch-rail {
  position: sticky;
  top: 1.1rem;
  font-size: 0.83rem;
}
.vch-rail__titel {
  margin: 0 0 0.5rem;
  font-family: var(--vch-letter-cijfer);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vch-varen);
}
.vch-rail ol { list-style: none; margin: 0 0 1rem; padding: 0; }
.vch-rail li { margin-bottom: 0.42rem; line-height: 1.35; }
.vch-rail a { color: var(--vch-inktzacht); text-decoration: none; }
.vch-rail a:hover { color: var(--vch-heidediep); text-decoration: underline; }
.vch-rail__voet {
  margin: 0;
  padding-top: 0.7rem;
  border-top: 1px solid var(--vch-draad);
  font-size: 0.78rem;
  color: var(--vch-inktzacht);
}
.vch-rail summary { display: none; }

.vch-baan { min-width: 0; }
.vch-baan p { margin: 0 0 1.05rem; }
.vch-baan h2 {
  margin: 1.9rem 0 0.65rem;
  font-size: 1.36rem;
  line-height: 1.24;
  color: var(--vch-heidediep);
  scroll-margin-top: 1rem;
}
.vch-baan h3 { margin: 1.35rem 0 0.5rem; font-size: 1.08rem; color: var(--vch-inkt); }
.vch-baan ul, .vch-baan ol { margin: 0 0 1.05rem; padding-left: 1.25rem; }
.vch-baan li { margin-bottom: 0.35rem; }
.vch-inleiding { font-size: 1.08rem; }

@media (max-width: 900px) {
  .vch-lezing {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }
  .vch-rail {
    position: static;
    background: var(--vch-blad);
    border-radius: var(--vch-ronding);
    padding: 0.75rem 0.95rem;
    box-shadow: 0 1px 2px var(--vch-schaduw);
  }
  .vch-rail summary {
    display: list-item;
    cursor: pointer;
    font-family: var(--vch-letter-cijfer);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vch-varen);
  }
  .vch-rail__titel { display: none; }
}

/* ---------- kam : de tabel met regelmatige tanden ---------- */

.vch-kam__blad {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 1.3rem;
}
/* Op een breed scherm mag een tabel naar LINKS uitbreken, de goot van het rail in.
   Dat is de winst van de asymmetrie: de leeskolom blijft 36rem, de gegevens niet. */
@media (min-width: 901px) {
  .vch-kam__blad {
    margin-left: calc(-1 * (var(--vch-railbreedte) + clamp(1.4rem, 4vw, 3.6rem)));
    width: calc(100% + var(--vch-railbreedte) + clamp(1.4rem, 4vw, 3.6rem));
  }
}
.vch-kam {
  border-collapse: collapse;
  width: 100%;
  min-width: 32rem;
  font-size: 0.88rem;
  background: var(--vch-blad);
}
.vch-kam caption {
  caption-side: bottom;
  padding-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--vch-inktzacht);
  text-align: left;
}
.vch-kam th {
  background: var(--vch-was);
  border-bottom: 3px solid var(--vch-heidediep);
  padding: 0.5rem 0.65rem;
  text-align: left;
  font-family: var(--vch-letter-cijfer);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--vch-heidediep);
  white-space: nowrap;
}
.vch-kam td {
  border-bottom: 1px solid var(--vch-draad);
  padding: 0.5rem 0.65rem;
  vertical-align: top;
}
.vch-kam tbody tr:nth-child(even) { background: var(--vch-was); }

/* ---------- vlok : de aftreklijst ---------- */

.vch-vlok { list-style: none; margin: 0 0 1.3rem; padding: 0; }
.vch-vlok li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.vch-vlok li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--vch-varen);
}

/* ---------- klit : de knopen die vaak misgaan ---------- */

.vch-klit {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0.85rem 1rem 0.95rem;
  background: var(--vch-blad);
  border-radius: var(--vch-ronding);
  box-shadow: 0 1px 2px var(--vch-schaduw);
}
.vch-klit li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.94rem;
}
.vch-klit li:last-child { margin-bottom: 0; }
.vch-klit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.85rem;
  height: 3px;
  background: var(--vch-heidediep);
}

/* ---------- knoop : de beslissende slotalinea ---------- */

.vch-knoop {
  margin: 1.5rem 0;
  padding: 0.95rem 1.1rem;
  background: var(--vch-was);
  border-left: 4px solid var(--vch-varen);
  border-radius: 0 var(--vch-ronding) var(--vch-ronding) 0;
}
.vch-knoop p { margin: 0; font-size: 0.98rem; }
.vch-knoop strong { color: var(--vch-heidediep); }

/* ---------- waarschuwing op de gezondheidsbladzijden ---------- */

.vch-waarschuwing {
  margin: 0 0 1.3rem;
  padding: 0.7rem 0.95rem;
  border: 2px solid var(--vch-heidediep);
  border-radius: var(--vch-ronding);
  font-size: 0.87rem;
  color: var(--vch-heidediep);
  background: var(--vch-blad);
}

/* ---------- verder : de doorverwijzingen ---------- */

.vch-verder {
  margin-top: 1.9rem;
  padding-top: 1rem;
  border-top: 3px solid var(--vch-heidediep);
}
.vch-verder h2 {
  margin: 0 0 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vch-varen);
  font-family: var(--vch-letter-lees);
}
.vch-verder ul { list-style: none; margin: 0; padding: 0; }
.vch-verder li { margin-bottom: 0.55rem; font-size: 0.94rem; color: var(--vch-inktzacht); }

/* ---------- vlecht : de lijst van een rubriekbladzijde ---------- */

.vch-vlecht {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
@media (max-width: 980px) { .vch-vlecht { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .vch-vlecht { grid-template-columns: minmax(0, 1fr); } }

.vch-overloop {
  margin: 1.6rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--vch-blad);
  border-radius: var(--vch-ronding);
  font-size: 0.93rem;
  box-shadow: 0 1px 2px var(--vch-schaduw);
}

/* ---------- pluk : de losse notitie van het carnet ---------- */

.vch-pluk {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}
.vch-pluk li {
  padding: 0.9rem 0 1rem;
  border-bottom: 1px solid var(--vch-draad);
}
.vch-pluk li:first-child { border-top: 1px solid var(--vch-draad); }
.vch-pluk__datum {
  margin: 0 0 0.25rem;
  font-family: var(--vch-letter-cijfer);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--vch-varen);
}
.vch-pluk h3 { margin: 0 0 0.3rem; font-size: 1.04rem; }
.vch-pluk p { margin: 0; font-size: 0.94rem; }

/* ---------- zoom : de voet, de omslag van de bladzijde ---------- */

.vch-zoom {
  background: #3a1440;
  color: #ecd9e9;
  margin-top: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(1.6rem, 3.6vw, 2.6rem) 1.2rem;
}
.vch-zoom a { color: #e7c9e6; text-decoration-color: rgba(183, 209, 140, 0.6); }
.vch-zoom a:hover { color: #ffffff; text-decoration-color: #b7d18c; }
.vch-zoom__raster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.4rem 2rem;
}
.vch-zoom h2 {
  margin: 0 0 0.55rem;
  font-family: var(--vch-letter-lees);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7d18c;
}
.vch-zoom ul { list-style: none; margin: 0; padding: 0; }
.vch-zoom li { margin-bottom: 0.4rem; font-size: 0.88rem; }
.vch-zoom__voet {
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(236, 217, 233, 0.22);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  align-items: center;
  font-size: 0.8rem;
  color: #d3b8d1;
}
.vch-zoom__zegel {
  width: 1.6rem;
  height: 1.6rem;
  flex: none;
}

/* ---------- afdrukblad ---------- */

@media print {
  .vch-kraag, .vch-gids, .vch-zoom, .vch-rail, .vch-verder, .vch-oversla { display: none !important; }
  body { background: #ffffff; color: #000000; }
  .vch-lezing { display: block; }
  .vch-baan { max-width: none; }
  a { color: #000000; text-decoration: underline; }
}
