/* ==========================================================================
   ZorgCISO — main stylesheet.
   Design tokens extracted from the live site's (Kubio) CSS. Section-block
   specific styles (cards, accordion visuals, logo tiles, …) are appended
   by the home/kennisbank tasks; this file is the shared foundation.
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------ */
:root {
  --c-blue-dark: #043494;
  --c-blue-hover: #06379A;
  --c-grey: #90A4AE;
  --c-aqua: #08DCFF;
  --c-offwhite: #FAFAFA;
  --c-ink: #212121;
  --c-navy: #02025E;
  --c-mint: #76FBC9;
  --c-periwinkle: #C7D0FF;
  --c-logo-tile: #ECECEC;
  --c-disabled: #C6C6C6;
  --c-accent-term: var(--c-navy);
  --font-body: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  --font-heading: "Poppins", Helvetica, Arial, sans-serif;
  --font-sub: "Kumbh Sans", Helvetica, Arial, sans-serif;
  --font-form: "Open Sans", Helvetica, Arial, sans-serif;
  --container-max: 1232px;
}

/* Derived layout tokens (project additions, not part of the extracted
   colour/font token set above). */
:root {
  --header-height: 100px;
}
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}

/* 2. Reset-lite ----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* 3. Typography ----------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-navy);
  background-color: #fff;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 1.2;
  color: var(--c-navy);
  margin: 0 0 0.5em;
}
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1.3;
  color: var(--c-navy);
  margin: 0 0 0.5em;
}
h4 {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 1.6em;
  color: var(--c-blue-dark);
  margin: 0 0 0.5em;
}
h5 {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.2em;
  color: var(--c-navy);
  margin: 0 0 0.5em;
}
h6,
.kicker {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--c-blue-dark);
  margin: 0 0 0.75em;
}
.lead {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5;
}
@media (max-width: 767px) {
  h1,
  h2 {
    font-size: 2em;
  }
}
/* Tablet step for large headings (Task 5 fix round 2, matches live design). */
@media (min-width: 768px) and (max-width: 1023px) {
  h1,
  h2 {
    font-size: 2.4em;
  }
}

a {
  color: var(--c-navy);
  text-decoration: underline;
}
a:hover {
  color: var(--c-blue-hover);
}
/* Links inside the stappenplan (accordion) section are mint. */
.section--stappenplan a {
  color: var(--c-mint);
}

/* 4. Section backgrounds & navy overrides -------------------------------- */
.section--navy {
  background-color: var(--c-navy);
}
.section--white {
  background-color: #fff;
}
.section--mint {
  background-color: var(--c-mint);
}
.section--periwinkle {
  background-color: var(--c-periwinkle);
}
/* On navy sections all text/headings override to off-white. */
.section--navy,
.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4,
.section--navy h5,
.section--navy h6,
.section--navy .kicker,
.section--navy .lead,
.section--navy p,
.section--navy li {
  color: var(--c-offwhite);
}

/* 5. Container ------------------------------------------------------------ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px; /* 30px grid gutter */
  padding-right: 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-max);
  }
}

/* 6. Section spacing -------------------------------------------------------
   Base: 100px desktop / 60px tablet (768-1023) / 30px mobile (<=767).
   The modifier classes below come AFTER the media queries on purpose:
   equal specificity, so source order lets them win at every width. */
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .section {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.section--hero {
  /* 150px section padding + compensation for the overlapping header. */
  padding-top: calc(var(--header-height) + 150px);
  padding-bottom: 150px;
}
.section--text-card {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section--team {
  padding-top: 96px;
  padding-bottom: 76px;
}
.section--cta-banner {
  padding-top: 90px;
  padding-bottom: 90px;
}
.section--footer-strip {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Page-title hero band (kennisbank / cookie-policy / 404 style): navy
   band under the overlapping header, holding only the page <h1>. */
.page-hero {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 60px;
}
.page-hero h1 {
  margin: 0;
}

/* 7. Buttons ---------------------------------------------------------------- */
.btn-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--c-offwhite);
  background-color: var(--c-navy);
  padding: 15px 30px;
  border-radius: 60px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-pill:hover {
  color: var(--c-offwhite);
  background-color: var(--c-blue-hover);
}

.btn-submit {
  display: inline-block;
  font-family: var(--font-form);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--c-offwhite);
  background-color: var(--c-navy);
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: var(--c-blue-hover);
}

.btn-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--c-navy);
  background: transparent;
  text-decoration: underline;
}
.btn-readmore:hover {
  color: var(--c-blue-dark);
}
.btn-readmore svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* Card shadow token (used by the section-block styles in later tasks). */
.card-shadow {
  box-shadow: 0 19px 18px rgba(0, 0, 0, 0.16);
}

/* 8. Header ------------------------------------------------------------------
   Navy bar that overlaps the hero (absolute), becomes fixed with a
   slide-down animation + shadow after scrolling past it (main.js adds
   .site-header--sticky). */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--c-navy);
}
.site-header--sticky {
  position: fixed;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  animation: header-slide-down 0.5s ease;
}
@keyframes header-slide-down {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo img {
  max-height: 58px;
  width: auto;
}
.site-header__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-offwhite);
}
@media (max-width: 767px) {
  .site-header__logo img {
    max-height: 24px;
  }
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-nav__item {
  position: relative;
}
.site-nav__link {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--c-offwhite);
  text-decoration: none;
  transition: color 0.3s ease;
}
/* Hover/current: mint text + 3px bottom border growing from the left. */
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--c-mint);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.site-nav__link:hover,
.site-nav__link.is-current {
  color: var(--c-mint);
}
.site-nav__link:hover::after,
.site-nav__link.is-current::after {
  transform: scaleX(1);
}

/* Dropdown (for possible future submenu items). */
.site-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.04);
  display: none;
}
.site-nav__item:hover > .site-nav__dropdown {
  display: block;
}
.site-nav__dropdown a {
  display: block;
  padding: 8px 20px;
  color: var(--c-navy);
  text-decoration: none;
}
.site-nav__dropdown a:hover {
  color: var(--c-blue-hover);
}

/* 9. Hamburger + offcanvas (mobile menu, 300px from the right) ---------- */
.menu-toggle {
  display: none;
  color: var(--c-offwhite);
}
.menu-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 1023px) {
  .site-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}
.offcanvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.offcanvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  width: 300px;
  max-width: 85vw;
  padding: 80px 30px 30px;
  background-color: var(--c-navy);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0s linear 0.3s;
}
.offcanvas-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.3s ease, visibility 0s linear 0s;
}
.offcanvas-menu__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.offcanvas-menu__link {
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--c-offwhite);
  text-decoration: none;
}
.offcanvas-menu__link:hover {
  color: var(--c-mint);
}

/* 10. Accordion behaviour (visual styling lives with the stappenplan
   block styles; these rules implement open/close + plus/minus swap).
   The body animates via the grid-rows 0fr→1fr trick: it is always
   rendered, but its single row collapses to zero height when closed
   (display:none can't transition). */
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0;
  transition: grid-template-rows 0.35s ease, padding-bottom 0.35s ease;
}
.accordion__body > .rich-text {
  overflow: hidden;
  min-height: 0;
}
/* Bottom spacing lives here (not on the clipped inner wrapper, where
   its padding would hold the closed box open) and animates in step
   with the row height. */
.js-accordion-item.is-open .accordion__body {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}
.js-accordion-item .accordion__icon--minus {
  display: none;
}
.js-accordion-item.is-open .accordion__icon--minus {
  display: inline-block;
}
.js-accordion-item.is-open .accordion__icon--plus {
  display: none;
}

/* 11. Footer (navy, three columns + bottom bar) --------------------------- */
.site-footer {
  padding-top: 60px;
  background-color: var(--c-navy);
  border-top: 3px solid var(--c-mint);
  color: var(--c-offwhite);
  font-size: 14px;
}
.site-footer p {
  margin: 0 0 10px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.site-footer__logo {
  max-height: 44px;
  width: auto;
}
.site-footer__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  color: var(--c-offwhite);
}
.site-footer__tagline {
  margin-top: 16px;
  max-width: 320px;
}
/* Column titles are h2 for the document outline but render as small
   mint kicker-style labels. */
.site-footer__col-title {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9em;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--c-mint);
  margin: 0 0 14px;
}
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__menu li {
  margin-bottom: 8px;
}
.site-footer a {
  color: var(--c-offwhite);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--c-mint);
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  border-top: 1px solid rgba(247, 247, 247, 0.15);
  padding: 18px 0;
  font-size: 12px;
}
.site-footer__bottom p {
  margin: 0;
  color: rgba(247, 247, 247, 0.7);
}
.site-footer__legal {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0;
  padding: 0;
}
.site-footer__legal a {
  color: rgba(247, 247, 247, 0.7);
}
.site-footer__legal a:hover {
  color: var(--c-mint);
}
@media (max-width: 767px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 12. Rich text content --------------------------------------------------- */
.rich-text img {
  border-radius: 6px;
}
.accent-term {
  color: var(--c-accent-term);
  font-weight: 700;
}

/* ==========================================================================
   HOME BLOCK: hero (Task 5)
   Composes the Task 3 foundation classes (.section, .section--navy,
   .section--hero) on the root element — section padding, navy
   background/text colour and h1 typography all come from the
   foundation, not from here. Only genuinely hero-specific rules remain:
   background-image layering, content centering, the bold subheading
   typography (distinct from .lead) and the bouncing scroll-down arrow.
   ========================================================================== */
.block-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
.block-hero__subheading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0;
}
/* Mint subheading: needs .section--navy scoping to out-rank the
   .section--navy p off-white cascade (higher specificity than a lone class). */
.section--navy .block-hero__subheading {
  color: var(--c-mint);
}
/* Hero heading is weight 600 per spec (foundation h1 default is 700). */
.block-hero h1 {
  font-weight: 600;
}
.block-hero__arrow {
  display: inline-block;
  margin-top: 60px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  animation: hero-arrow-bounce 1.6s ease-in-out infinite;
}
@keyframes hero-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

/* ==========================================================================
   HOME BLOCK: text_card (Task 5)
   Composes the Task 3 foundation classes (.section, .section--navy,
   .section--text-card) plus `.card-shadow` on the card — section
   padding, navy background and the shadow are all foundation, not
   duplicated here. The card is an off-white island nested inside the
   navy section, so its internal padding/radius (no foundation
   equivalent) and a colour "undo" for the .section--navy text-colour
   cascade are the only genuinely block-specific rules kept here.
   ========================================================================== */
.block-text-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block-text-card__card {
  background: var(--c-offwhite);
  border-radius: 30px;
  padding: 60px;
}
.block-text-card__card,
.block-text-card__card h2,
.block-text-card__card p,
.block-text-card__card li {
  color: var(--c-navy);
}
.block-text-card__card h3 {
  color: var(--c-ink);
}
.block-text-card__card h4 {
  color: var(--c-blue-dark);
}
.block-text-card__card .kicker {
  color: var(--c-blue-dark);
}
.block-text-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .block-text-card__card { padding: 40px 30px; }
}
@media (max-width: 767px) {
  .block-text-card__card { padding: 30px 20px; }
}

/* ==========================================================================
   HOME BLOCK: diensten (Task 6)
   Navy section: heading, one featured mint card (half width on
   desktop) and three centered off-white cards with smaller text.
   Composes the Task 3 foundation classes (.section, .section--navy)
   on the root and `.card-shadow` on the cards — section padding, navy
   background/text colour, h2/h3 typography (incl. responsive steps)
   and the card shadow all come from the foundation. Kept here: card
   internals/layout and the colour "undo" for the .section--navy text
   cascade on both card kinds (off-white and mint cards get navy text).
   ========================================================================== */
.block-diensten__heading {
  margin: 0 0 50px;
  text-align: center;
}
.block-diensten__featured {
  margin-bottom: 30px;
}
.diensten-card {
  border-radius: 30px;
  padding: 40px;
}
.diensten-card,
.diensten-card h2,
.diensten-card h3,
.diensten-card h4,
.diensten-card p,
.diensten-card li {
  color: var(--c-navy);
}
.diensten-card--featured {
  background: var(--c-mint);
  width: 50%;
  margin: 0 auto;
}
.diensten-card--small {
  background: var(--c-offwhite);
  font-size: 0.9em;
}
.block-diensten__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
/* Card title is weight 700 (foundation h3 default is 600). */
.diensten-card__title {
  font-weight: 700;
  margin: 0 0 16px;
}
/* Lists render with a bold ">" chevron instead of disc bullets (the
   original site typed these as literal "> " text; our content uses
   real <ul><li>, so the marker comes from CSS). */
.diensten-card__body ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.diensten-card__body li::before {
  content: ">";
  font-weight: 700;
  margin-right: 8px;
}
@media (max-width: 1023px) {
  .diensten-card { padding: 30px; }
}
@media (max-width: 767px) {
  .diensten-card--featured { width: 100%; }
  .block-diensten__cards { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOME BLOCK: accordion (Task 6)
   White section with optional pixel-pattern background; kicker,
   heading and collapsible items on the left half (desktop). Items
   render closed. Composes the Task 3 foundation classes (.section,
   .section--white, .section--stappenplan for the mint links, .kicker)
   on the markup — section padding, white background, h2/kicker
   typography (incl. responsive steps) come from the foundation, and
   the open/close mechanics (icon swap and body reveal driven by
   .is-open, toggled by main.js) already ship with the Task 3
   accordion rules. Kept here: the background-image layering, the
   left-column layout and the item visuals (title typography,
   dividers, padding).
   ========================================================================== */
.block-accordion {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block-accordion__col {
  max-width: 720px;
  margin: 0 auto;
}
.block-accordion__kicker {
  margin: 0 0 12px;
  text-align: center;
}
.block-accordion__heading {
  margin: 0 0 40px;
  text-align: center;
}
/* Soft card around the item list (white on the white section, so the
   depth comes from a large blurred navy-tinted shadow + hairline). */
.block-accordion__items {
  background: #fff;
  border: 1px solid rgba(2, 2, 94, 0.06);
  border-radius: 30px;
  padding: 10px 40px;
  box-shadow: 0 12px 40px rgba(2, 2, 94, 0.1);
}
.accordion__item {
  border-bottom: 1px solid rgba(2, 2, 94, 0.15);
}
.accordion__item:last-child {
  border-bottom: 0;
}
.accordion__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--c-navy);
}
.accordion__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.4;
}
.accordion__icon {
  flex-shrink: 0;
  color: var(--c-navy);
}
@media (max-width: 1023px) {
  .block-accordion__col { max-width: 100%; }
}
@media (max-width: 767px) {
  .block-accordion__items { padding: 4px 20px; }
}

/* ==========================================================================
   HOME BLOCK: contactpersonen (Task 7)
   Navy section: centered mint heading and two mint cards centered in
   the row. Each card is square-cornered with the photo bleeding to
   the card edges and centered name/role/social icons on the mint
   block below (matches the live design). Composes the Task 3
   foundation classes (.section, .section--navy) on the root and
   `.card-shadow` on the cards — section padding, navy background,
   h2 heading typography (incl. responsive steps) and the card shadow
   all come from the foundation. Kept here: the centered card row,
   card internals, social-icon layout and the colour "undo" for the
   .section--navy text cascade on the mint cards.
   ========================================================================== */
.block-contactpersonen__heading {
  margin: 0 0 50px;
  text-align: center;
}
/* Mint heading: needs .section--navy scoping to out-rank the
   .section--navy h2 off-white cascade. */
.section--navy .block-contactpersonen__heading {
  color: var(--c-mint);
}
.block-contactpersonen__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
/* Rounded and clipped (the photo bleeds to the edges); the transform
   transition smooths the js-tilt push/pull hover effect. */
.contactpersoon-card {
  background: var(--c-mint);
  flex: 0 1 350px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s ease-out;
  will-change: transform;
}
/* Mint card on navy: explicit colour-undo for all nestable elements. */
.contactpersoon-card,
.contactpersoon-card h2,
.contactpersoon-card h3,
.contactpersoon-card h4,
.contactpersoon-card h5,
.contactpersoon-card p,
.contactpersoon-card li {
  color: var(--c-navy);
}
.contactpersoon-card__photo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 28px;
}
/* The name is an h3 for heading-order a11y but keeps the old h5
   look (font-sub, 700, 1.2em; navy via the card colour-undo). */
.contactpersoon-card__name {
  margin: 0 0 8px;
  padding: 0 20px;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.6;
}
.contactpersoon-card__role {
  margin: 0 0 20px;
  padding: 0 20px;
}
.contactpersoon-card__social {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 20px 32px;
}
.contactpersoon-card__social-link {
  display: inline-flex;
  color: var(--c-navy);
}
.contactpersoon-card__social-link:hover {
  color: var(--c-blue-dark);
}

/* ==========================================================================
   HOME BLOCK: team_grid (Task 7)
   Navy section, no heading; 6 columns from 768px up (live md-2/lg-2
   columns), stacked on mobile. Photo + h3 name + h5 role. Composes
   the Task 3 foundation classes (.section, .section--navy,
   .section--team) on the root — the 96px/76px section padding, navy
   background and h3/h5 base typography/off-white colour all come
   from the foundation. Kept here: the 6-across grid, photo sizing
   and the name/role size deviations from the foundation defaults.
   ========================================================================== */
.block-team-grid__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
}
.team-card__photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.team-card__name {
  font-size: 1.1em;
  margin: 16px 0 4px;
}
/* The role is a <p> (not a heading) but keeps the old h5 font. */
.team-card__role {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.9em;
  line-height: 1.4;
  margin: 0;
}
/* Mint role: needs .section--navy scoping to out-rank the
   .section--navy h5 off-white cascade. */
.section--navy .team-card__role {
  color: var(--c-mint);
}
@media (max-width: 767px) {
  .block-team-grid__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HOME BLOCK: quote (Task 7)
   Navy section, centered: hospital outline icon (50px, off-white via
   currentColor), quote paragraph, h5 attribution. Composes the Task 3
   foundation classes (.section, .section--navy) on the root and
   `.lead` on the quote text — section padding, navy background,
   off-white text colour and the lead/h5 typography all come from the
   foundation. Kept here: centering, icon sizing and the quote-text
   measure.
   ========================================================================== */
.block-quote {
  text-align: center;
}
.block-quote__icon {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 30px;
}
.block-quote__text {
  max-width: 820px;
  margin: 0 auto 24px;
}
/* The attribution is a <p> (not a heading) but keeps the old h5
   look (font-sub, 700, 1.2em). */
.block-quote__attribution {
  margin: 0;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.2em;
}
/* Mint attribution: needs .section--navy scoping to out-rank the
   .section--navy h5 off-white cascade. */
.section--navy .block-quote__attribution {
  color: var(--c-mint);
}

/* ==========================================================================
   HOME BLOCK: cta_banner (Task 8)
   Periwinkle band with an optional pixel background image (inline
   style on the section root) and a centered off-white rounded card:
   heading + body on the left, pill button on the right. Composes the
   Task 3 foundation classes (.section, .section--periwinkle,
   .section--cta-banner) on the root and `.lead` on the body text —
   the periwinkle background, the 90px vertical section padding and
   the body typography all come from the foundation. Kept here: the
   background-image layering, the card (flex row, off-white, 30px
   radius) and the h3 heading deviations (700/2em).
   ========================================================================== */
.block-cta-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.block-cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
  background: var(--c-offwhite);
  border-radius: 30px;
  padding: 60px;
}
/* Cap the text column so the button lands in the card's right half. */
.block-cta-banner__text {
  flex: 0 1 480px;
}
.block-cta-banner__heading {
  font-weight: 700;
  font-size: 2em;
  line-height: 1.2;
  margin: 0 0 16px;
}
.block-cta-banner__body {
  margin: 0;
}
@media (max-width: 767px) {
  .block-cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }
  .block-cta-banner__heading { font-size: 1.6em; }
}

/* ==========================================================================
   HOME BLOCK: opdrachtgevers (Task 8)
   White section: h2 heading (in the container) + two full-bleed logo
   marquee rows that auto-scroll in opposite directions and cannot be
   moved by hand (transform animation inside overflow:hidden — there
   is no scroll container). Each track holds its logo set 4x; the
   keyframes translate by -25% (exactly one set, incl. its padding-gap)
   for a seamless loop. Logos render small and unboxed (no tile
   background) so the strip stays subtle; plain images, never links —
   live parity. Composes the Task 3 foundation classes (.section,
   .section--white) on the root.
   ========================================================================== */
.block-opdrachtgevers__heading {
  margin: 0 0 50px;
}
.block-opdrachtgevers__marquee {
  overflow: hidden;
}
.block-opdrachtgevers__marquee--reverse {
  margin-top: 30px;
}
.block-opdrachtgevers__track {
  display: flex;
  width: max-content;
  animation: opdrachtgevers-marquee 45s linear infinite;
}
.block-opdrachtgevers__marquee--reverse .block-opdrachtgevers__track {
  animation-direction: reverse;
  /* Start 40% into the 45s cycle (negative delay = no wait), so the
     rows are offset by 40% of a logo set and show different logos. */
  animation-delay: -18s;
}
/* The 60px inter-set gap lives inside each set (gap + padding-right),
   not on the track: a track-level flex gap would break the exact
   one-set-per--25% translation. */
.block-opdrachtgevers__set {
  display: flex;
  flex: 0 0 auto;
  gap: 60px;
  padding-right: 60px;
}
@keyframes opdrachtgevers-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}
.block-opdrachtgevers__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
}
.block-opdrachtgevers__logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
@media (max-width: 767px) {
  .block-opdrachtgevers__tile { width: 150px; height: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .block-opdrachtgevers__track { animation: none; }
}

/* ==========================================================================
   HOME BLOCK: generic rich_text and image (Task 8)
   Plain content sections for editor use outside the fixed layout.
   Both compose the Task 3 foundation class (.section) on the root —
   section padding (incl. responsive steps) comes from the
   foundation. Kept here: the centered, rounded image.
   ========================================================================== */
.block-image__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 6px;
}

/* ==========================================================================
   CONTACT: ContactPage (/contact/) + HOME BLOCK: contact (Task 9)
   Two-column navy section (copy left, form right) and the shared
   .contact-form styles. Composes the Task 3 foundation classes
   (.section, .section--navy, .kicker, .lead, .btn-submit) — navy
   background, section padding (incl. responsive steps) and the
   h1/h2/kicker/lead typography (incl. responsive steps) all come
   from the foundation. Kept here: the two-column grid, the
   placeholder-only form controls (labels stay in the DOM but are
   visually hidden — live parity), the submit colour override (the
   live Lead Form Builder plugin styling, not the theme) and the
   white success card with its navy-cascade colour undo
   (shared-context amendment 4).
   ========================================================================== */
.block-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .block-contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-form {
  font-family: var(--font-form);
}
.contact-form__field {
  position: relative;
  margin-bottom: 17px;
}
/* Required fields get a red asterisk pinned in the input's top-right
   corner: the labels are visually hidden (placeholder-only design),
   so the label is no place for a visible marker. Screen readers get
   "(verplicht)" appended to the hidden label instead. */
.contact-form__field--required::after {
  content: "*";
  position: absolute;
  top: 12px;
  right: 14px;
  color: #e5484d;
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}
/* Placeholder-only fields (live parity): visually hidden, not display:none,
   so the labels stay available to screen readers. */
.contact-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="url"],
.contact-form textarea {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  color: var(--c-navy);
  font: 400 16px/1.5 var(--font-form);
  padding: 10px 14px;
}
.contact-form ::placeholder {
  color: var(--c-navy);
  opacity: 1;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form__errors {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  color: var(--c-mint);
  font-size: 14px;
}
/* Submit colours match the live Lead Form Builder plugin styling (not the
   theme): mint with navy text, blue with off-white text on hover. Font,
   padding, 6px radius and cursor come from the foundation .btn-submit. */
.contact-form .btn-submit {
  background-color: var(--c-mint);
  color: var(--c-navy);
  margin-top: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.contact-form .btn-submit:hover {
  background-color: var(--c-navy);
  color: var(--c-offwhite);
}
/* White card on a navy section: undo the .section--navy off-white cascade
   for every nestable rich-text element (shared-context amendment 4). */
.contact-form__success,
.contact-form__success h2,
.contact-form__success h3,
.contact-form__success h4,
.contact-form__success p,
.contact-form__success li,
.contact-form__success .kicker {
  color: var(--c-navy);
}
.contact-form__success {
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 24px;
  font-family: var(--font-form);
  max-width: 640px;
}

/* ==========================================================================
   COOKIE CONSENT (Task 10)
   WPConsent-equivalent banner, "Cookies beheren" preferences modal and
   the floating settings button (templates/includes/cookie_banner.html,
   driven by static/js/consent.js). Navy bar, periwinkle accept/deny
   buttons and white manage button per the live site.
   ========================================================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background-color: var(--c-navy);
  color: #fff;
  font-size: 16px;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner__message {
  margin: 0;
}
.cookie-banner__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-btn {
  border: 0;
  border-radius: 4px;
  padding: 10px 18px;
  font: 500 14px/1 var(--font-body);
  cursor: pointer;
}
.cookie-btn--accept,
.cookie-btn--deny,
.cookie-btn--save {
  background-color: var(--c-periwinkle);
  color: var(--c-navy);
}
.cookie-btn--manage {
  background-color: #fff;
  color: var(--c-navy);
}
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 900001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
}
.cookie-modal[hidden] {
  display: none;
}
.cookie-modal__content {
  width: 100%;
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px;
  border-radius: 6px;
  background-color: #fff;
  color: var(--c-navy);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-modal__header h2 {
  margin: 0;
  font: 700 1.4em var(--font-heading);
  color: var(--c-navy);
}
.cookie-modal__close {
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--c-navy);
  cursor: pointer;
}
.cookie-modal__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(2, 2, 94, 0.15);
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
}
.cookie-toggle input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background-color: var(--c-disabled);
  transition: background-color 0.2s ease;
  pointer-events: none;
}
.cookie-toggle__slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle__slider {
  background-color: var(--c-navy);
}
.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-settings-button {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 899999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background-color: var(--c-navy);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.cookie-settings-button[hidden] {
  display: none;
}
@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   KENNISBANK: article cards, article detail, archive list (Task 11)

   Card include (templates/includes/artikel_card.html), the /kennisbank/
   index list and the /kennisartikel/<slug>/ detail page. The section roots
   (.artikel-list, .artikel) compose the foundation .section class for
   spacing; the hero band, accent terms and read-more button reuse the
   existing .page-hero, .accent-term and .btn-readmore foundation rules
   (Task 3) — only the genuinely kennisbank-specific rules live here.
   ========================================================================== */
.artikel-list__empty {
  text-align: center;
}

/* Compact horizontal list card: small thumbnail left, title + short
   excerpt in the middle, date pill top-right, author bottom-left and
   read-more bottom-right. */
.artikel-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 30px;
  align-items: stretch;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 19px 18px rgba(0, 0, 0, 0.16);
  padding: 30px;
}

.artikel-card + .artikel-card {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .artikel-card {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

/* Left column: uncropped 16:9 thumbnail on top, author pill pinned
   bottom-left (level with the read-more bottom-right), everything
   left-aligned. */
.artikel-card__side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.artikel-card__side .artikel-card__meta {
  margin: 0;
  margin-top: auto;
}

.artikel-card__thumb {
  display: block;
  width: 100%;
}

.artikel-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

/* Content is a flex column; the bottom row anchors via margin-top. */
.artikel-card__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.artikel-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.artikel-card__date {
  flex: none;
  padding: 4px 14px;
  border: 1px solid var(--c-navy);
  border-radius: 60px;
  font-size: 14px;
  white-space: nowrap;
}


.artikel-card__title-link {
  text-decoration: none;
}

/* The title is an h2 for heading-order a11y (archive pages have an
   h1 above the cards) but keeps the old h5 look. */
.artikel-card__title {
  margin: 0 0 12px;
  color: var(--c-navy);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.6;
}

.pill {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 14px;
  background: var(--c-mint);
  border-radius: 4px;
  color: var(--c-navy);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}

/* Keep the card compact: the excerpt clamps to two lines. */
.artikel-card__excerpt {
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artikel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px;
}

/* Tag pills (card, detail page + search sidebar): white, navy text,
   navy border. */
.artikel-card__tags a,
.artikel__tags a,
.zoek-tag {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid var(--c-navy);
  border-radius: 60px;
  color: var(--c-navy);
  font-size: 16px;
  text-decoration: none;
}
.artikel-card__tags a:hover,
.artikel__tags a:hover,
.zoek-tag:hover {
  background: var(--c-navy);
  color: var(--c-offwhite);
}

.artikel-card__meta,
.artikel__meta {
  margin: 0 0 16px;
  font-size: 16px;
}

/* Author pill: navy with mint text (the user icon follows via
   currentColor). Also styles the unlinked <span> variant used when
   the author has no author_slug. */
.artikel-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--c-navy);
  border-radius: 60px;
  color: var(--c-mint);
  text-decoration: none;
}
a.artikel-author:hover {
  background: var(--c-blue-hover);
  color: var(--c-mint);
}

.icon--user svg,
.icon--arrow-right svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: -2px;
}

/* Blog pages read on a warm floralwhite background. */
.artikel {
  background-color: floralwhite;
}

.artikel__container {
  max-width: 960px;
}

/* Inline images in the article body: centered, nicely rounded. */
.artikel__body img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
}

.artikel__body h2,
.artikel__body h3 {
  font-family: var(--font-heading);
  color: var(--c-navy);
}

.artikel__divider {
  border: 0;
  border-top: 1px solid var(--c-disabled);
  margin: 24px 0;
}

.artikel__tags-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.artikel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* Tag-pill link styling is shared with .artikel-card__tags a (see the
   kennisbank card include section above). */

/* .artikel-pagination__btn is used by the search page (Vorige /
   Volgende); the article detail page itself has no pagination. */
.artikel-pagination__btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--c-navy);
  border-radius: 60px;
  color: var(--c-offwhite);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: none;
}

.artikel-pagination__btn:hover {
  background: var(--c-blue-hover);
}

/* ==========================================================================
   HOME BLOCK: kennisbank_teaser (Task 12)
   Periwinkle section teasing the newest live kennisbank articles as
   light cards (live parity: 16:9 thumbnail + h5 title link + read-more
   only). Composes the Task 3 foundation classes (.section,
   .section--periwinkle) on the root, `.lead` on the intro and
   `.card-shadow` on the cards — section padding, periwinkle background,
   h2 heading typography (incl. responsive steps), lead typography, h5
   title styling (blue, font-sub) and the card shadow all come from the
   foundation. `.section--periwinkle` does not cascade a text colour
   (only `.section--navy` does), so the white teaser-card needs no
   colour-undo: body text is navy and the h5 blue by default. Kept
   here: heading/lead margins, the 2-column card grid and the
   teaser-card internals.
   ========================================================================== */
.block-kennisbank-teaser__heading {
  margin: 0 0 16px;
}

.block-kennisbank-teaser__lead {
  margin: 0 0 40px;
}

.block-kennisbank-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Card count decides the desktop layout (modifier set in the
   template): 3 per row by default, exactly two side by side 50/50,
   and a single article as one prominent centered card. */
@media (min-width: 1024px) {
  .block-kennisbank-teaser__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .block-kennisbank-teaser__grid--pair {
    grid-template-columns: repeat(2, 1fr);
  }
  .block-kennisbank-teaser__grid--single {
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
  }
}

/* Light teaser card: thumbnail + title + read-more only (live parity). */
.teaser-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
}

.teaser-card__figure {
  width: 100%;
}

.teaser-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}

.teaser-card__title-link {
  text-decoration: none;
}

/* The title is an h3 for heading-order a11y but keeps the old h5
   look (font-sub, 700, 1.2em, blue). */
.teaser-card__title {
  margin: 0;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--c-navy);
}

/* Read-more on teaser and artikel cards: text-only, black and bigger
   than the 12px foundation .btn-readmore, anchored bottom-right in
   the card. Hover restated: this rule is later in the file and would
   otherwise tie-break over .btn-readmore:hover. */
.teaser-card .btn-readmore,
.artikel-card .btn-readmore {
  margin-top: auto;
  align-self: flex-end;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}
.teaser-card .btn-readmore:hover,
.artikel-card .btn-readmore:hover {
  color: var(--c-blue-dark);
}
.teaser-card .btn-readmore svg,
.artikel-card .btn-readmore svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   KENNISBANK: zoekpagina (/zoeken/, /tag/<slug>/, /author/<slug>/)
   White section: filter bar (author text search, sort, per-page) and
   the artikel-card list on the left, tag sidebar on the right. Tag
   pills reuse the shared tag-pill rule via .zoek-tag; a selected tag
   keeps the navy hover state permanently.
   ========================================================================== */
.zoek__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}
.zoek__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px;
  margin: 0 0 20px;
}
.zoek__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.zoek__field--grow {
  flex: 1 1 220px;
}
.zoek__field label {
  font-family: var(--font-sub);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.zoek__field input[type="text"],
.zoek__field select {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(2, 2, 94, 0.25);
  border-radius: 6px;
  color: var(--c-navy);
  font: 400 16px/1.5 var(--font-form);
}
.zoek__count {
  margin: 0 0 24px;
}
.zoek__sidebar {
  border: 1px solid rgba(2, 2, 94, 0.1);
  border-radius: 20px;
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + 20px);
}
.zoek__sidebar-title {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin: 0 0 16px;
}
.zoek__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
/* Selected tag: the hover state, made permanent. */
.zoek-tag--selected {
  background: var(--c-navy);
  color: var(--c-offwhite);
}
.zoek__pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.zoek__page {
  padding: 10px 16px;
  border: 1px solid rgba(2, 2, 94, 0.25);
  border-radius: 6px;
  color: var(--c-navy);
  text-decoration: none;
}
.zoek__page--current {
  background: var(--c-navy);
  border-color: var(--c-navy);
  color: var(--c-offwhite);
}
@media (max-width: 1023px) {
  .zoek__layout {
    grid-template-columns: 1fr;
  }
  .zoek__sidebar {
    position: static;
  }
}
