@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Vollkorn:wght@400;500;700&display=swap");

:root {
  --brand-purple: #ceb2f7;
  --brand-blue: #a9c7fb;
  --brand-orange: #f6c69a;
  --brand-yellow: var(--brand-orange);
  --brand-green: #9edfc9;
  --brand-dark: #090d26;
  --brand-light: #f3f7f8;

  --bg: var(--brand-light);
  --ink: var(--brand-dark);
  --muted: #3d4669;
  --card: #ffffff;
  --accent: var(--brand-blue);
  --line: #d8e4ea;
  --shadow: 0 14px 34px rgba(9, 13, 38, 0.12);
  --shadow-soft: 0 8px 18px rgba(9, 13, 38, 0.08);
  --radius: 18px;
  --content-max: 1200px;
  --page-pad: 40px;

  --domain-1: var(--brand-blue);
  --domain-2: var(--brand-green);
  --domain-3: var(--brand-purple);
  --domain-4: var(--brand-orange);
  --domain-5: #fbb7b8;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

strong,
b {
  font-weight: 400;
}

.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;
}

body {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #f9fbfd;
  min-height: 100vh;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

html {
  scrollbar-gutter: stable;
}

.app-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 0 10px;
  background: transparent;
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 0 auto;
  width: 100%;
}

.home-hero {
  align-items: center;
  text-align: center;
}

.home-hero .brand {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.home-hero h1 {
  margin: 0;
}

.site-nav {
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}

.nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px var(--page-pad);
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-dark);
  text-decoration: none;
}

.nav-brand img {
  width: auto;
  height: 40px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  width: 34px;
  height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: 0;
  line-height: 0;
  font-family: inherit;
  cursor: pointer;
}

.nav-hamburger span {
  display: none;
}

.nav-hamburger::before {
  content: "";
  width: 22px;
  height: 22px;
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E");
}

.nav-link {
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #000;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: #000;
  border: 1px solid #000;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  display: none;
  z-index: 30;
  max-height: 360px;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.65) #000;
}

.nav-dropdown-menu::-webkit-scrollbar {
  width: 10px;
}

.nav-dropdown-menu::-webkit-scrollbar-track {
  background: #000;
}

.nav-dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  border: 2px solid #000;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-caret {
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transform: translateY(2px);
}

.nav-dropdown.is-open .nav-caret {
  transform: translateY(2px) rotate(180deg);
}

.nav-dropdown-item {
  display: block;
  padding: 8px 10px;
  border-radius: 0;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 15px;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown-item-active {
  background: rgba(255, 255, 255, 0.18);
}

.nav-type-menu {
  overflow: visible;
  max-height: none;
}

.nav-submenu {
  position: relative;
}

.nav-submenu-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  white-space: nowrap;
}

.nav-submenu-caret {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid currentColor;
  flex: 0 0 auto;
}

.nav-submenu-panel {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 260px;
  max-height: 360px;
  background: #000;
  border: 1px solid #000;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  display: none;
  z-index: 35;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.65) #000;
}

.nav-submenu:hover .nav-submenu-panel,
.nav-submenu.is-open .nav-submenu-panel,
.nav-submenu:focus-within .nav-submenu-panel {
  display: grid;
  gap: 4px;
}

.nav-submenu-panel::-webkit-scrollbar {
  width: 10px;
}

.nav-submenu-panel::-webkit-scrollbar-track {
  background: #000;
}

.nav-submenu-panel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  border: 2px solid #000;
}

.nav-dropdown-note {
  color: #fff;
}

.header-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: none;
  width: 100%;
}

.brand-bar {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  width: 100%;
  margin-bottom: 12px;
}

.domains-card {
  border: 1px solid #e8eef2;
  border-radius: 18px;
  padding: 12px;
  background: #ffffff;
  box-shadow: none;
  width: 100%;
}

.content-card {
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 8px auto 0;
  padding: 20px var(--page-pad);
  border: 1px solid #e8eef2;
  border-radius: 18px;
  background: #f9fbfd;
  width: 100%;
}

.over-content-card {
  background: #fff;
  margin-top: 0;
}

.over-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.over-text {
  min-width: 0;
  font-size: 15px;
  line-height: 1.6;
}

.type-hero .over-title {
  margin: 0 0 10px;
  text-align: left;
  justify-self: start;
  font-size: 24px;
  font-weight: 700;
}

.over-text p {
  margin: 0 0 18px;
}

.over-text p:last-of-type {
  margin-bottom: 12px;
}

.over-image-slot {
  border-radius: 14px;
  min-height: 100%;
  overflow: hidden;
}

.over-image-slot picture {
  display: block;
  width: 100%;
  height: 100%;
}

.over-side-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-banner-link {
  display: block;
  width: 50%;
  margin-top: 20px;
}

.over-banner {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.over-website-hero .over-title,
.over-website-hero .over-content-card {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUpSoft 0.95s ease forwards;
}

.over-website-hero .over-title {
  animation-delay: 0.08s;
}

.over-website-hero .over-content-card {
  animation-delay: 0.24s;
}

.over-kerndoelen-list {
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 32px;
}

.over-kerndoelen-card {
  background: #fff;
  margin-top: 0;
  border: 1px solid #dce3e8;
}

.page-over .over-content-card,
.page-contact .over-content-card,
.page-over-kerndoelen .over-kerndoelen-card,
.page-aan-de-slag .over-kerndoelen-card,
.page-aan-de-slag .over-cp-card,
.page-over-kerndoelen .over-pdf-card,
.page-over-kerndoelen .over-kerndoelen-image-slot,
.page-aan-de-slag .over-kerndoelen-image-slot {
  border: 0;
}

.over-kerndoelen-hero .over-kerndoelen-card {
  opacity: 0;
  transform: translateY(18px);
  animation: overKerndoelenFadeUp 1s ease forwards;
}

.over-kerndoelen-hero .over-kerndoelen-card:nth-child(1) {
  animation-delay: 0.1s;
}

.over-kerndoelen-hero .over-kerndoelen-card:nth-child(2) {
  animation-delay: 0.22s;
}

.over-kerndoelen-hero .over-kerndoelen-card:nth-child(3) {
  animation-delay: 0.34s;
}

.over-kerndoelen-hero .over-kerndoelen-card:nth-child(4) {
  animation-delay: 0.46s;
}

@keyframes overKerndoelenFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.over-kerndoelen-card-pdf {
  margin-top: 24px;
}

.over-kerndoelen-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.over-kerndoelen-layout-reverse .over-kerndoelen-text {
  order: 2;
}

.over-kerndoelen-layout-reverse .over-kerndoelen-image-slot {
  order: 1;
}

.over-kerndoelen-text {
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
}

.over-kerndoelen-card-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.over-kerndoelen-text p {
  margin: 0;
  font-size: 15px;
}

.page-over .over-text,
.page-over .over-text p,
.page-contact .over-text,
.page-contact .over-text p,
.page-aan-de-slag .over-kerndoelen-text,
.page-aan-de-slag .over-kerndoelen-text p,
.page-over-kerndoelen .over-kerndoelen-text,
.page-over-kerndoelen .over-kerndoelen-text p {
  font-size: 15px;
}

.page-aan-de-slag .over-kerndoelen-text p,
.page-aan-de-slag .over-kerndoelen-text li,
.page-aan-de-slag .over-cp-text,
.page-over .over-text p,
.page-contact .over-text p,
.page-over-kerndoelen .over-kerndoelen-text p {
  color: #4b5563;
}

.aan-de-slag-support-list li strong {
  font-weight: 500;
}

.over-kerndoelen-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.over-kerndoelen-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.over-kerndoelen-cta:focus-visible {
  outline: 2px solid color-mix(in srgb, #0f172a 35%, #ffffff);
  outline-offset: 2px;
}

.over-kerndoelen-cta-blue {
  background: #9fc3fa;
}

.over-kerndoelen-cta-green {
  background: #8de0c8;
}

.over-kerndoelen-cta-orange {
  background: #faca8e;
}

.over-kerndoelen-image-slot {
  width: 100%;
  min-height: 240px;
  border: 1px solid #dce3e8;
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.over-kerndoelen-image-slot picture {
  width: 100%;
  height: 100%;
  display: block;
}

.over-kerndoelen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.over-cp-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.over-cp-card {
  background: #fff;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  padding: 16px 10px 10px;
}

.over-kerndoelen-hero .over-cp-card {
  opacity: 0;
  transform: translateY(18px);
  animation: overKerndoelenFadeUp 1s ease forwards;
}

.over-kerndoelen-hero .over-cp-card:nth-child(1) {
  animation-delay: 0.58s;
}

.over-kerndoelen-hero .over-cp-card:nth-child(2) {
  animation-delay: 0.7s;
}

.over-kerndoelen-hero .over-cp-card:nth-child(3) {
  animation-delay: 0.82s;
}

.over-cp-trigger {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.over-cp-trigger:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
  border-radius: 10px;
}

.over-cp-image {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
}

.over-cp-text {
  margin: 14px 16px 6px;
  font-size: 14px;
  line-height: 1.5;
}

.aan-de-slag-offer-card {
  padding: 12px 12px 14px;
  border: 1px solid #dce3e8;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.over-kerndoelen-hero .aan-de-slag-offer-card {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.aan-de-slag-offer-card:hover {
  transform: translateY(-5px);
  border-color: #8de0c8 !important;
  box-shadow: 0 0 0 1px #8de0c8, 0 20px 30px rgba(9, 13, 38, 0.14);
}

.aan-de-slag-offer-title {
  margin: 12px 16px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  min-height: calc(1.35em * 2);
}

.aan-de-slag-offer-card .over-cp-text {
  margin-top: 10px;
  margin-bottom: 0;
}

.aan-de-slag-offer-card .over-cp-image {
  border-radius: 0;
}

.aan-de-slag-offer-card .over-kerndoelen-cta {
  margin-left: 16px;
}

.cp-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.cp-modal[hidden] {
  display: none;
}

.cp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 33, 0.72);
}

.cp-modal-panel {
  position: relative;
  width: min(1200px, calc(100% - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  border-radius: 16px;
  background: #fff;
  overflow: auto;
  padding: 12px;
}

.cp-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.cp-modal-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.over-pdf-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.over-pdf-card {
  display: block;
  border: 1px solid #dce3e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.over-pdf-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--brand-blue) 45%, #ffffff);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
}

.over-pdf-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.over-pdf-card picture {
  display: block;
}

.over-pdf-image {
  display: block;
  width: 100%;
  height: auto;
}

.intro-offer-card {
  gap: 24px;
}

.intro-offer-hero-card {
  padding-top: 28px;
  padding-bottom: 34px;
  background: #fff;
  border: 0;
}

.page-introductie-kerndoelen .intro-offer-hero-title,
.page-introductie-kerndoelen .intro-offer-detail-title,
.page-introductie-kerndoelen .intro-offer-step h3,
.page-introductie-kerndoelen .intro-offer-cta-card .over-kerndoelen-card-title {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.02em;
  color: #111827;
}

.intro-page-header {
  margin-bottom: 4px;
}

.intro-offer-hero-layout {
  align-items: start;
  gap: 42px;
}

.intro-offer-hero-text {
  padding-top: 18px;
}

.intro-offer-hero-title {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: 27px;
  line-height: 1.14;
  font-weight: 600;
}

.intro-offer-hero-text p:not(.intro-offer-kicker) {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.82;
  font-weight: 400;
  color: #6b7280;
}

.intro-offer-kicker {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.3;
  color: #5f6b85;
  font-weight: 500;
}

.intro-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.intro-offer-image-slot {
  min-height: 320px;
}

.intro-offer-hero-image-wrap {
  position: relative;
  min-height: 360px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.intro-offer-hero-image-wrap::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -16px;
  width: 150px;
  height: 148px;
  border-radius: 18px;
  background: #b58cf0;
  z-index: 0;
}

.intro-offer-hero-image {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(9, 13, 38, 0.12);
}

.intro-offer-cover {
  object-fit: contain;
}

.intro-offer-cta-outline {
  background: #fff;
  color: #8cb0ef;
  border: 2px solid #a9c4f7;
}

.intro-offer-meta-section {
  margin-top: 8px;
  margin-left: -34px;
  margin-right: -34px;
  padding: 34px 34px 22px;
  border-radius: 18px;
  background: #eff4f7;
}

.intro-offer-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.intro-offer-meta-item {
  display: grid;
  grid-template-rows: auto minmax(40px, auto) 1fr;
  gap: 10px;
  padding: 24px 26px;
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(9, 13, 38, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.intro-offer-meta-item strong {
  font-size: 16px;
  line-height: 1.35;
  color: var(--brand-dark);
}

.intro-offer-detail-card p,
.intro-offer-detail-card li {
  font-size: 15px;
  line-height: 1.8;
  color: #6b7280;
}

.intro-offer-detail-card > p {
  margin: 0;
}

.intro-offer-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(9, 13, 38, 0.12);
}

.intro-offer-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.intro-offer-detail-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
}

.intro-offer-detail-icon-peach {
  color: #f6c27e;
}

.intro-offer-detail-icon-mint {
  color: #7edfc8;
}

.intro-offer-detail-icon-lilac {
  color: #b58cf0;
}

.intro-offer-detail-title {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}

.intro-offer-meta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b7280;
}

.intro-offer-list {
  margin: 0;
  padding-left: 24px;
  color: #4b5563;
}

.intro-offer-list li + li {
  margin-top: 8px;
}

.intro-offer-list-numbered {
  padding-left: 22px;
}

.intro-offer-steps-card {
  padding-top: 34px;
  background: #fff;
  border: 0;
}

.intro-offer-steps-text > p {
  color: #6b7280;
}

.intro-offer-steps-intro {
  margin: 0 0 34px;
  font-size: 16px;
}

.intro-offer-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 40px;
}

.intro-offer-gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.intro-offer-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 22px;
}

.intro-offer-step {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.intro-offer-step-number {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #ffc978;
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 201, 120, 0.32);
  font-size: 20px;
  font-weight: 600;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.intro-offer-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 10px;
  color: #e3e8ef;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.intro-offer-step:hover {
  transform: translateY(-5px);
}

.intro-offer-step:hover .intro-offer-step-number {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 32px rgba(255, 201, 120, 0.4);
}

.intro-offer-step h3 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.intro-offer-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: #6b7280;
}

.intro-offer-cta-card {
  background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 48%, #f9fbfd 100%);
}

.intro-offer-form-section {
  padding-top: 0;
  scroll-margin-top: 120px;
}

.intro-offer-form-shell {
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 8px auto 0;
  width: 100%;
}

.intro-offer-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.intro-offer-form-panel {
  margin: 0;
  background: #fff;
  border: 0;
}

.intro-offer-form-column-left {
  min-width: 0;
}

.intro-offer-form-column-right {
  min-width: 0;
}

.intro-offer-form-intro {
  color: #6b7280;
}

.intro-offer-form-embed {
  margin-top: 24px;
  min-height: 560px;
}

.intro-offer-contact-card {
  display: grid;
  gap: 22px;
  padding: 10px 8px 0 0;
}

.intro-offer-contact-banner {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.intro-offer-contact-copy {
  margin: 0;
  max-width: 360px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
}

.intro-offer-contact-copy a {
  color: #4f7fda;
}

.intro-offer-contact-list {
  display: grid;
  gap: 14px;
}

.intro-offer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  color: #334155;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
}

.intro-offer-contact-item:hover {
  color: #1d4ed8;
}

.intro-offer-contact-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #86d9c7;
  flex: 0 0 44px;
}

.intro-offer-contact-item:nth-child(2) .intro-offer-contact-icon {
  background: #9fbdf4;
}

.intro-offer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

h1,
h2 {
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 400;
}

h1 {
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

.section-title {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.15;
  color: var(--brand-dark);
  font-weight: 400;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title-row .section-title {
  margin: 0;
}

.section-title-hint {
  font-size: 11px;
  color: #4a4a4a;
  font-weight: 400;
}

.goal-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.goal-view-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #1f2f46;
}

.goal-view-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.goal-switch-control {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 24px;
  align-items: center;
}

.goal-switch-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.goal-switch-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #9fc3fa;
  border: 1px solid #86addf;
  transition: background 0.18s ease;
  cursor: pointer;
}

.goal-switch-slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.28);
  transition: transform 0.18s ease;
}

.goal-switch-control input:checked + .goal-switch-slider {
  background: #dbe4ec;
  border-color: #b8c6d4;
}

.goal-switch-control input:checked + .goal-switch-slider::before {
  transform: translateX(22px);
}

.goal-switch-control input:focus-visible + .goal-switch-slider {
  outline: 2px solid #1d4f91;
  outline-offset: 2px;
}

.domains-card.domains-card-placeholder .section-title,
.domains-card.domains-card-placeholder .domains {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .section-title-row {
    flex-wrap: wrap;
  }

  .goal-view-switch {
    margin-left: 0;
  }
}

.vak-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 6px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

.lede {
  margin: 0;
  color: var(--muted);
}

.lede:empty {
  display: none;
}

.back-link {
  background: var(--accent);
  border-radius: 999px;
  padding: 8px 13px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 400;
}

.pill {
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.counts {
  font-size: 14px;
  color: var(--muted);
}

.controls {
  display: grid;
  gap: 10px;
  padding: 14px 0 0;
}

.control-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.stats-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.type-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.type-filter .toggle {
  width: auto;
  height: 36px;
  padding: 0 14px;
}

.filter-card {
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 8px auto 0;
  padding: 12px var(--page-pad);
  border: 1px solid #e8eef2;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-card .filter-toggle {
  background: transparent;
  border: 2px solid var(--brand-blue);
  color: var(--brand-dark);
}

.filter-card .filter-toggle.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--brand-dark);
}

.goal-type-summary {
  font-size: 13px;
  color: var(--muted);
}

.search {
  display: grid;
  gap: 6px;
  flex: 1 1 240px;
  font-size: 14px;
  color: var(--muted);
}

.search-inline {
  flex: 1 1 360px;
}

.search-inline span {
  display: none;
}

.search input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
}

button.ghost {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
}

.domains {
  background: #ffffff;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow: hidden;
}

.domain-tile {
  min-width: 0;
  background: var(--card);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: none;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  text-align: left;
  --badge-accent: var(--domain-color, var(--accent));
}

.domain-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--domain-color, var(--accent));
  border-radius: 14px 14px 0 0;
}

.domain-tile.active {
  border-color: var(--brand-dark);
}

.domain-title {
  font-weight: 400;
  font-size: 15px;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brand-dark);
}

.domain-count {
  font-size: 12px;
  color: var(--muted);
  padding-left: 48px;
  margin-top: auto;
}

.subjects {
  padding: 20px var(--page-pad);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: var(--content-max);
  margin: 0 auto;
}

.type-hero {
  max-width: var(--content-max);
  margin: 18px auto 0;
  padding: 0 var(--page-pad);
  display: grid;
  gap: 18px;
  align-content: start;
}

.over-hero {
  margin-top: 28px;
}

body.home-mode .type-hero {
  align-content: center;
  min-height: calc(100vh - 210px);
}

.home-subtitle {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.education-types {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  max-width: 700px;
  margin: 0 auto;
}

.education-type-card {
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 18px;
  min-height: 150px;
  text-align: left;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.education-type-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(56px, 22%, 92px);
  background: var(--subject-color, var(--accent));
  border-radius: 0;
  z-index: 0;
}

.education-type-card > * {
  position: relative;
  z-index: 1;
}

.education-type-card.active {
  border-color: var(--brand-dark);
}

.education-type-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--subject-color, var(--accent)) 48%, #ffffff);
  box-shadow: 0 20px 30px rgba(9, 13, 38, 0.14);
}

.education-type-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--brand-dark);
}

.education-type-card p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.search-hero {
  max-width: var(--content-max);
  margin: 18px auto 0;
  padding: 0 var(--page-pad) 10px;
  display: grid;
  gap: 14px;
  position: relative;
}

.search-hero .home-title {
  font-size: 16px;
  font-weight: 600;
}

.type-hero[hidden] + .search-hero {
  margin-top: clamp(84px, 10vw, 112px);
}

.type-hero[hidden] + .search-hero + .subjects {
  margin-top: 24px;
}

#subjects-area .search-global {
  width: min(450px, calc(100vw - 32px));
  max-width: none;
  margin: 0 auto;
}

#subjects-area .search-global input {
  width: 100%;
  margin: 0 auto;
}

.home-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  color: var(--brand-dark);
  text-align: center;
}

.home-main-title {
  font-size: 19px;
  font-weight: 600;
}

.search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - (2 * var(--page-pad))));
  z-index: 20;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

.search-result-count {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.search-result-list {
  display: grid;
  gap: 8px;
  max-height: 420px;
  overflow: auto;
}

.search-result {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e8eef2;
  text-decoration: none;
  color: var(--ink);
  background: #f9fbfd;
}

.search-result:hover {
  border-color: var(--accent);
}

.search-result-title {
  font-size: 14px;
}

.search-result-meta {
  font-size: 12px;
  color: var(--muted);
}

.search-empty {
  font-size: 13px;
  color: var(--muted);
}

.type-empty {
  max-width: var(--content-max);
  margin: 8px auto 0;
  padding: 20px var(--page-pad);
}

.type-hero,
.search-hero,
.subjects,
.type-empty {
  transition: opacity 0.36s ease, transform 0.36s ease;
}

body.view-switching .type-hero {
  opacity: 0;
  transform: translateY(-20px) scale(0.985);
}

body.view-switching .search-hero,
body.view-switching .subjects,
body.view-switching .type-empty {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
}

body.view-entered .search-hero,
body.view-entered .subjects,
body.view-entered .type-empty {
  animation: view-fade-in 0.44s ease both;
}

@keyframes view-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.type-empty-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e8eef2;
  padding: 20px;
  display: grid;
  gap: 10px;
}

.type-empty-card h2 {
  margin: 0;
  font-size: 22px;
}

.type-empty-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.subject-card {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, filter 0.22s ease;
  will-change: transform;
}

.subject-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(56px, 22%, 92px);
  background: color-mix(in srgb, var(--subject-color, var(--accent)) 30%, #ffffff);
  border-radius: 0;
  z-index: 0;
}

.subject-card > * {
  position: relative;
  z-index: 1;
}

.subject-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  border-color: color-mix(in srgb, var(--subject-color, var(--accent)) 48%, #ffffff);
}

body.page-leaving .subject-card {
  opacity: 0.38;
  transform: scale(0.985);
  filter: saturate(0.8);
}

body.page-leaving .subject-card.is-leaving {
  opacity: 1;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 36px rgba(15, 23, 42, 0.18);
  filter: saturate(1);
}

.subject-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: var(--brand-dark);
}

.subject-card:visited,
.subject-card:hover,
.subject-card:active {
  color: var(--ink);
}

a.subject-card:link h2,
a.subject-card:visited h2,
a.subject-card:hover h2,
a.subject-card:active h2 {
  color: var(--brand-dark);
}

.domain-title .code-title-text {
  color: var(--brand-dark);
}

.subject-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.kerndoelen {
  padding: 0;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  margin: 0;
  align-items: start;
}

.kerndoelen.limit-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 820px) {
  .kerndoelen,
  .kerndoelen.limit-two {
    grid-template-columns: 1fr;
  }
}

.kerndoel-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid #e7edf2;
  border-top: 4px solid var(--kerndoel-accent, var(--accent));
  padding: 16px;
  display: grid;
  gap: 8px;
  align-content: start;
  --accent: var(--kerndoel-accent, var(--accent));
  --badge-accent: var(--kerndoel-accent, var(--accent));
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  will-change: transform;
  min-width: 0;
}

.kerndoel-card:only-child {
  font-size: 15px;
  font-weight: 400;
}

.kerndoel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  border-color: color-mix(in srgb, var(--kerndoel-accent, var(--accent)) 48%, #ffffff);
}

.kerndoel-head {
  display: block;
}

.kerndoel-actions {
  display: none;
  grid-template-columns: repeat(2, 120px);
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  min-height: 40px;
  margin-top: 10px;
  margin-bottom: 12px;
  padding-left: 52px;
}

.kerndoel-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-items: flex-start;
}

.kerndoel-mini-label {
  margin-top: 8px;
  margin-left: 52px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--kerndoel-accent, var(--accent)) 44%, #ffffff);
  background: color-mix(in srgb, var(--kerndoel-accent, var(--accent)) 10%, #ffffff);
  color: color-mix(in srgb, var(--kerndoel-accent, var(--accent)) 70%, #1f2937);
  font-size: 11px;
  line-height: 1.2;
}


.kerndoel-desc {
  color: var(--muted);
  font-size: 14px;
}

.toggle {
  border: 1px solid transparent;
  background: var(--accent);
  color: var(--brand-dark);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  width: 120px;
  height: 40px;
  padding: 0 10px;
  font-family: inherit;
  flex: 0 0 auto;
  white-space: nowrap;
  text-shadow: none;
}

.toggle.active {
  background: var(--brand-dark);
  color: #fff;
}

.kerndoel-actions .toggle {
  background: transparent;
  border: 2px solid var(--kerndoel-accent, var(--accent));
  color: var(--kerndoel-accent, var(--accent));
}

.kerndoel-actions .toggle.active {
  background: var(--kerndoel-accent, var(--accent));
  border-color: var(--kerndoel-accent, var(--accent));
  color: #fff;
}

.leerdoelen-heading {
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #000;
  margin-top: 14px;
}

.kerndoel-card.is-open .leerdoelen-heading {
  margin-top: 14px;
}

.leerdoelen-subheading {
  margin: 8px 2px -2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.kerndoel-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
}

.kerndoel-modal[hidden] {
  display: none;
}

.kerndoel-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
}

.kerndoel-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e7edf2;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  width: min(860px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.kerndoel-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.kerndoel-modal-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.kerndoel-modal-close {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  flex: 0 0 auto;
}

.kerndoel-modal-actions {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f0f4f8;
  border: 1px solid #e3e8ee;
  width: fit-content;
  margin-top: 10px;
}

.kerndoel-modal-content {
  display: grid;
  gap: 12px;
}

.kerndoel-modal-content > .kerndoel-desc {
  margin-bottom: 16px;
}

.kerndoel-modal-domain-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--kerndoel-accent, var(--accent));
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.kerndoel-modal-actions .switch-tab {
  width: auto;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--brand-dark);
}

.kerndoel-modal-actions .switch-tab.active {
  background: #fff;
  border-color: #d6dee6;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

body.modal-open {
  overflow: hidden;
}

.leerdoelen {
  display: grid;
  gap: 10px;
}

.leerdoel {
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent, var(--line)) 42%, #ffffff);
  padding: 10px 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
  --badge-accent: var(--accent, var(--brand-blue));
}

.leerdoel:hover {
  border-color: color-mix(in srgb, var(--accent, var(--line)) 60%, #ffffff);
}

.leerdoel.leerdoel-aanvulling {
  background: #fff;
}

.leerdoel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 28px;
  background: color-mix(in srgb, var(--accent, var(--line)) 16%, #ffffff);
  z-index: 0;
}

.leerdoel::before {
  content: none;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
  background: var(--accent);
  z-index: 2;
}

.leerdoel > * {
  position: relative;
  z-index: 1;
}

.leerdoel-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.leerdoel-details {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  padding-left: 52px;
}

.code-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  background: var(--badge-accent, var(--accent));
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 auto;
}

.code-title-text {
  flex: 1 1 auto;
}

.kerndoel-modal-title .code-title-text {
  padding-top: 8px;
}

.goal-type-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 8px;
  margin-bottom: 8px;
  border: 1px solid transparent;
}

.goal-type-aanbods {
  background: color-mix(in srgb, var(--brand-orange) 28%, #ffffff);
  border-color: var(--brand-orange);
  color: #7f4a00;
}

.goal-type-beheersings {
  background: color-mix(in srgb, var(--brand-blue) 24%, #ffffff);
  border-color: var(--brand-blue);
  color: #14407d;
}

.goal-type-ervarings {
  background: color-mix(in srgb, var(--brand-green) 24%, #ffffff);
  border-color: var(--brand-green);
  color: #0d5b46;
}

.reflection {
  padding: 20px var(--page-pad);
  max-width: var(--content-max);
  margin: 0 auto;
}

.vak-footer {
  max-width: var(--content-max);
  margin: 96px auto 24px;
  padding: 0 var(--page-pad) 20px;
}

.vak-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vak-footer-column {
  background: #fff;
  border: 2px solid var(--footer-accent, #e8eef2);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.vak-footer-column:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
  border-color: color-mix(in srgb, var(--footer-accent, var(--brand-blue)) 82%, #ffffff);
}

.vak-footer-grid > .vak-footer-column:nth-child(1) {
  --footer-accent: var(--brand-purple);
}

.vak-footer-grid > .vak-footer-column:nth-child(2) {
  --footer-accent: var(--brand-green);
}

.vak-footer-grid > .vak-footer-column:nth-child(3) {
  --footer-accent: var(--brand-orange);
}

.vak-footer-column-link {
  text-decoration: none;
  color: inherit;
}

.vak-footer-column-link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}

.vak-footer-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  color: var(--brand-dark);
}

.vak-footer-text {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.vak-footer-image-placeholder {
  border: 1px dashed #9db2c1;
  border-radius: 12px;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  background: #f9fbfd;
}

.vak-footer-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.vak-footer-legal {
  margin: 20px 0 0;
  font-size: 14px;
  color: #4a5568;
  text-align: left;
}

.site-copyright {
  width: 100%;
  max-width: var(--content-max);
  margin: auto auto 24px;
  padding: 0 var(--page-pad);
  font-size: 14px;
  color: #4a5568;
  text-align: center;
}

.page-aan-de-slag .site-copyright {
  margin-top: 40px;
}

.page-over-kerndoelen .site-copyright {
  margin-top: 40px;
}

.ontwerp-page {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--page-pad) 56px;
  display: grid;
  gap: 22px;
}

body.ontwerp-plan-mode .ontwerp-page {
  max-width: 1680px;
}

.ontwerp-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.ontwerp-eyebrow {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.ontwerp-hero h1,
.ontwerp-section-head h2,
.ontwerp-form-card h2,
.ontwerp-source-head h2,
.ontwerp-plan-head h2 {
  margin: 0;
  color: var(--brand-dark);
  font-family: "Poppins", "Helvetica Neue", sans-serif;
}

.ontwerp-hero h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.ontwerp-subtitle {
  max-width: 660px;
  margin: 8px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.ontwerp-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid #dde6ee;
  border-radius: 999px;
  background: #fff;
}

.ontwerp-step {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #5d6b7d;
  padding: 9px 14px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.ontwerp-step.is-active {
  background: var(--brand-dark);
  color: #fff;
}

.ontwerp-panel {
  display: grid;
  gap: 22px;
  width: 100%;
  margin: 0 auto;
  padding: 14px;
  background: #f9fbfd;
}

.ontwerp-plan-panel {
  max-width: min(100%, 1560px);
}

.ontwerp-panel[hidden] {
  display: none;
}

.ontwerp-setup {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.5fr);
  gap: 18px;
}

.ontwerp-card {
  border: 1px solid #e8eef2;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
}

.ontwerp-form-card {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.ontwerp-form-card h2,
.ontwerp-source-head h2,
.ontwerp-section-head h2,
.ontwerp-plan-head h2 {
  font-size: 18px;
  font-weight: 600;
}

.ontwerp-field {
  display: grid;
  gap: 7px;
  color: #46556a;
  font-size: 13px;
}

.ontwerp-field input,
.ontwerp-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8e4ea;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  color: var(--brand-dark);
  font: inherit;
}

.ontwerp-type-switch {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.ontwerp-type-option {
  min-height: 42px;
  border: 1px solid #d8e4ea;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-dark);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

.ontwerp-type-option:nth-child(1).is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.ontwerp-type-option:nth-child(2).is-active {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.ontwerp-type-option:nth-child(3).is-active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
}

.ontwerp-type-option:nth-child(4).is-active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.ontwerp-goal-area {
  display: grid;
  gap: 16px;
}

.ontwerp-section-head,
.ontwerp-plan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.ontwerp-section-head p,
.ontwerp-source-head p,
.ontwerp-plan-head p {
  margin: 6px 0 0;
  color: #5d6b7d;
  font-size: 14px;
}

.ontwerp-card-help {
  max-width: 720px;
}

.ontwerp-card-help-action {
  font-weight: 600;
  white-space: nowrap;
}

#selection-summary {
  font-weight: 600;
}

.ontwerp-primary,
.ontwerp-secondary,
.ontwerp-back {
  min-height: 42px;
  border-radius: 999px;
  padding: 0 16px;
  font: inherit;
  cursor: pointer;
}

.ontwerp-primary {
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
  color: var(--brand-dark);
}

.ontwerp-primary:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.ontwerp-secondary,
.ontwerp-back {
  border: 1px solid #d8e4ea;
  background: #fff;
  color: var(--brand-dark);
}

.ontwerp-back {
  min-height: 34px;
  margin-bottom: 10px;
  padding: 0 12px;
  font-size: 13px;
}

.ontwerp-domain-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ontwerp-domain-chip {
  min-height: 116px;
}

.ontwerp-goal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 18px;
  align-items: start;
}

.ontwerp-goal-card {
  position: relative;
  min-width: 0;
  min-height: 520px;
  aspect-ratio: 105 / 148;
  perspective: 1500px;
  isolation: isolate;
  cursor: pointer;
}

.ontwerp-goal-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.52s cubic-bezier(0.2, 0.72, 0.28, 1);
}

.ontwerp-goal-card.is-flipped .ontwerp-goal-card-inner {
  transform: rotateY(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .ontwerp-goal-card:not(.is-front-pinned):hover .ontwerp-goal-card-inner {
    transform: rotateY(180deg);
  }
}

.ontwerp-goal-card.is-front-pinned .ontwerp-goal-card-inner {
  transform: rotateY(0deg);
}

.ontwerp-goal-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 2px solid var(--goal-color, var(--brand-blue));
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.ontwerp-goal-card-face.is-back {
  transform: rotateY(180deg);
}

.ontwerp-goal-card.is-selected::after {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: 4;
  border: 3px solid color-mix(in srgb, var(--goal-color, var(--brand-blue)) 78%, #090d26);
  border-radius: 25px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--goal-color, var(--brand-blue)) 24%, transparent);
  pointer-events: none;
}

.ontwerp-paper-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 52px;
  padding: 8px 16px 8px 72px;
  background: var(--goal-color, var(--brand-blue));
  color: var(--brand-dark);
}

.ontwerp-paper-card-code {
  position: absolute;
  left: 20px;
  bottom: -17px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--goal-color, var(--brand-blue));
  color: #fff;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.ontwerp-paper-card-context {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ontwerp-paper-card-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 38px 20px 58px;
  color: #25211c;
  scrollbar-color: color-mix(in srgb, var(--goal-color, var(--brand-blue)) 62%, #ffffff) transparent;
  scrollbar-width: thin;
}

.ontwerp-paper-card-back-content {
  padding-top: 38px;
}

.ontwerp-paper-card-label,
.ontwerp-paper-card-domain,
.ontwerp-paper-card-detail-heading,
.ontwerp-paper-card-empty,
.ontwerp-paper-card-footer span {
  margin: 0;
}

.ontwerp-paper-card-label {
  font-size: 12px;
  font-weight: 700;
}

.ontwerp-paper-card-domain {
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.35;
}

.ontwerp-paper-card-goal-label {
  margin-top: 30px;
}

.ontwerp-paper-card-title,
.ontwerp-paper-card-examples-heading {
  margin: 6px 0 0;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  color: #25211c;
}

.ontwerp-paper-card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.36;
}

.ontwerp-paper-card-detail-heading {
  margin-top: 26px;
  font-size: 14px;
  font-weight: 700;
}

.ontwerp-paper-card-examples-heading {
  color: color-mix(in srgb, var(--goal-color, var(--brand-blue)) 88%, #2c3545);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.ontwerp-paper-card-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.42;
}

.ontwerp-paper-card-list li::marker {
  color: #39352f;
  font-size: 1.15em;
}

.ontwerp-paper-card-list .ontwerp-paper-card-subheading {
  margin-top: 4px;
  color: #5b6470;
  font-weight: 700;
  list-style: none;
}

.ontwerp-paper-card-empty {
  margin-top: 14px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.ontwerp-paper-card-footer {
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  min-height: 22px;
  color: #6f6a63;
  font-size: 9px;
  pointer-events: none;
}

.ontwerp-paper-card-footer img {
  width: 92px;
  max-height: 24px;
  object-fit: contain;
  object-position: left bottom;
}

.ontwerp-paper-card-footer span {
  max-width: 55%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ontwerp-goal-card.is-dense .ontwerp-paper-card-content {
  padding-right: 17px;
  padding-left: 17px;
}

.ontwerp-goal-card.is-dense .ontwerp-paper-card-title {
  font-size: 16px;
}

.ontwerp-goal-card.is-dense .ontwerp-paper-card-list {
  gap: 5px;
  font-size: 12px;
  line-height: 1.34;
}

.ontwerp-goal-card.is-very-dense .ontwerp-paper-card-content {
  padding-right: 14px;
  padding-left: 14px;
}

.ontwerp-goal-card.is-very-dense .ontwerp-paper-card-title {
  font-size: 15px;
}

.ontwerp-goal-card.is-very-dense .ontwerp-paper-card-list {
  gap: 4px;
  padding-left: 17px;
  font-size: 11px;
  line-height: 1.28;
}

.ontwerp-goal-card-select {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  border-radius: 20px;
  background: transparent;
  color: transparent;
  pointer-events: none;
}

.ontwerp-goal-card-select:focus-visible {
  outline: 4px solid color-mix(in srgb, var(--goal-color, var(--brand-blue)) 78%, #090d26);
  outline-offset: 5px;
}

.ontwerp-goal-card-selected,
.ontwerp-goal-card-flip {
  position: absolute;
  z-index: 6;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ontwerp-goal-card-selected {
  top: 62px;
  right: 14px;
  padding: 7px 10px;
  background: #090d26;
  color: #fff;
  box-shadow: 0 5px 12px rgba(9, 13, 38, 0.2);
  pointer-events: none;
}

.ontwerp-goal-card-selected[hidden] {
  display: none;
}

.ontwerp-goal-card-flip {
  right: 14px;
  bottom: 34px;
  min-height: 34px;
  border: 1px solid color-mix(in srgb, var(--goal-color, var(--brand-blue)) 64%, #ffffff);
  background: rgba(255, 255, 255, 0.94);
  padding: 0 12px;
  color: #354155;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

.ontwerp-goal-card-flip:focus-visible {
  outline: 3px solid #090d26;
  outline-offset: 3px;
}

.ontwerp-empty {
  grid-column: 1 / -1;
  border: 1px dashed #b9c8d6;
  border-radius: 16px;
  background: #fff;
  padding: 18px;
  color: #5d6b7d;
  font-size: 14px;
}

.ontwerp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ontwerp-planner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.ontwerp-source-panel {
  order: 2;
  overflow: visible;
  border: 1px solid #e1e9ef;
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  padding: 16px;
}

.ontwerp-source-head {
  margin-bottom: 14px;
}

.ontwerp-source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ontwerp-source-group {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 2px solid var(--goal-color, var(--brand-blue));
  border-radius: 18px;
  background: #fff;
  padding: 0 12px 12px;
  --badge-accent: var(--goal-color, var(--brand-blue));
}

.ontwerp-source-group > .ontwerp-paper-card-header {
  min-height: 46px;
  margin: 0 -12px 20px;
}

.ontwerp-source-group > .ontwerp-paper-card-header .ontwerp-paper-card-code {
  bottom: -15px;
  width: 46px;
  height: 46px;
  font-size: 14px;
}

.ontwerp-source-goal {
  display: grid;
  gap: 5px;
  color: var(--brand-dark);
}

.ontwerp-source-domain {
  color: #667085;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ontwerp-source-goal h3 {
  margin: 0;
  font-family: "Poppins", "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.ontwerp-source-detail-heading {
  margin: 4px 0 0;
  color: #46556a;
  font-size: 12px;
  font-weight: 700;
}

.ontwerp-draggable-list {
  display: grid;
  gap: 8px;
}

.ontwerp-plan-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--goal-color, var(--brand-blue)) 42%, #ffffff);
  border-left: 4px solid var(--goal-color, var(--brand-blue));
  border-radius: 12px;
  background: #fff;
  padding: 10px 34px 10px 10px;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  cursor: grab;
}

.ontwerp-plan-card.is-source {
  box-shadow: none;
  padding-right: 10px;
  cursor: grab;
}

.ontwerp-plan-card.is-source.is-used {
  background: #f5f8fc;
  opacity: 0.56;
}

.ontwerp-plan-card.is-source.is-used:hover,
.ontwerp-plan-card.is-source.is-used:focus-visible {
  opacity: 0.82;
}

.ontwerp-plan-card.is-dragging {
  opacity: 0.45;
}

.ontwerp-plan-card-goal {
  color: #516177;
  font-size: 11px;
  line-height: 1.35;
}

.ontwerp-plan-card-text {
  color: var(--brand-dark);
  font-size: 13px;
  line-height: 1.45;
}

.ontwerp-plan-card-status {
  justify-self: flex-start;
  border-radius: 999px;
  background: color-mix(in srgb, var(--goal-color, var(--brand-blue)) 18%, #ffffff);
  color: #516177;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 8px;
}

.ontwerp-place-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  margin-top: 4px;
}

.ontwerp-place-select,
.ontwerp-place-button {
  min-height: 34px;
  border-radius: 9px;
  font: inherit;
  font-size: 12px;
}

.ontwerp-place-select {
  min-width: 0;
  border: 1px solid #d5e0e8;
  background: #fff;
  padding: 5px 8px;
  color: var(--brand-dark);
}

.ontwerp-place-button {
  border: 1px solid color-mix(in srgb, var(--goal-color, var(--brand-blue)) 68%, #ffffff);
  background: color-mix(in srgb, var(--goal-color, var(--brand-blue)) 20%, #ffffff);
  padding: 0 10px;
  color: var(--brand-dark);
  font-weight: 700;
  cursor: pointer;
}

.ontwerp-place-select:focus-visible,
.ontwerp-place-button:focus-visible,
.ontwerp-remove-card:focus-visible {
  outline: 2px solid var(--brand-dark);
  outline-offset: 2px;
}

.ontwerp-remove-card {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #eef3f6;
  color: #58687a;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}

.ontwerp-timeline-wrap {
  order: 1;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.ontwerp-timeline {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(143px, 1fr);
  gap: 14px;
  min-width: min-content;
}

.ontwerp-week-column {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dce6ed;
  border-radius: 14px;
  background: #f7fafc;
}

.ontwerp-week-column.is-end .ontwerp-week-header {
  background: var(--brand-green);
  color: var(--brand-dark);
}

.ontwerp-week-header {
  min-height: 44px;
  display: grid;
  place-items: center;
  background: var(--brand-blue);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 600;
}

.ontwerp-week-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 360px;
  padding: 10px;
}

.ontwerp-week-body.is-over {
  outline: 2px dashed var(--brand-blue);
  outline-offset: -5px;
  background: #eef6ff;
}

.ontwerp-week-empty {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px dashed #c8d5df;
  border-radius: 12px;
  color: #7b8795;
  font-size: 13px;
}

@media (max-width: 900px) {
  .ontwerp-goal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ontwerp-goal-card {
    min-height: 540px;
  }

  .ontwerp-source-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {

  .ontwerp-domain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ontwerp-page {
    padding: 22px 16px 42px;
  }

  .ontwerp-hero,
  .ontwerp-section-head,
  .ontwerp-plan-head {
    align-items: stretch;
    flex-direction: column;
  }

  .ontwerp-stepper,
  .ontwerp-actions {
    width: 100%;
  }

  .ontwerp-step {
    flex: 1;
  }

  .ontwerp-setup,
  .ontwerp-domain-list,
  .ontwerp-goal-grid {
    grid-template-columns: 1fr;
  }

  .ontwerp-goal-card {
    width: min(100%, 410px);
    min-height: 530px;
    margin: 0 auto;
  }

  .ontwerp-type-switch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ontwerp-goal-card-flip {
    min-height: 44px;
    padding: 0 15px;
  }

  .ontwerp-timeline {
    grid-auto-columns: minmax(230px, 82vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ontwerp-goal-card-inner {
    transition: none;
  }
}

@media print {
  .page-ontwerp .site-nav,
  .page-ontwerp .ontwerp-stepper,
  .page-ontwerp .ontwerp-source-panel,
  .page-ontwerp .ontwerp-actions,
  .page-ontwerp .ontwerp-back,
  .page-ontwerp .site-copyright {
    display: none !important;
  }

  .ontwerp-page {
    max-width: none;
    padding: 0;
  }

  .ontwerp-panel:not(.is-active) {
    display: none !important;
  }

  .ontwerp-planner {
    display: block;
  }

  .ontwerp-timeline {
    grid-auto-flow: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ontwerp-week-column {
    break-inside: avoid;
    min-height: 0;
  }
}


.reflection-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.cta-button {
  align-self: flex-start;
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
}

.nav-link-active {
  color: #9fc3fa;
  text-decoration: none;
}

.video-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--page-pad) 50px;
}

.video-page-header h1 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
}

.video-page-header p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
}

.video-grid {
  margin-top: 26px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  text-align: left;
  color: var(--brand-dark);
  -webkit-text-fill-color: var(--brand-dark);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.video-page-animated .video-page-header {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUpSoft 0.9s ease forwards;
  animation-delay: 0.1s;
}

.video-page-animated .video-card {
  opacity: 0;
  animation: fadeInSoft 0.9s ease forwards;
  animation-delay: var(--enter-delay, 0s);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 48%, #ffffff);
  box-shadow: 0 20px 30px rgba(9, 13, 38, 0.14);
}

.video-card-title {
  font-size: 16px;
  margin: 14px 0 8px;
  color: var(--brand-dark);
  -webkit-text-fill-color: var(--brand-dark);
}

.video-card-description {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.video-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(12, 40, 88, 0.92), rgba(37, 90, 172, 0.85)),
    radial-gradient(circle at 74% 30%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  display: grid;
  place-items: center;
}

.video-preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-page {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 28px var(--page-pad) 50px;
}

.materials-grid {
  margin-top: 26px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.materials-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 16px;
  background: #fff;
  padding: 12px;
  text-align: left;
  color: var(--brand-dark);
  text-decoration: none;
  -webkit-text-fill-color: var(--brand-dark);
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.materials-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 48%, #ffffff);
  box-shadow: 0 20px 30px rgba(9, 13, 38, 0.14);
}

.materials-card:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 3px;
}

.materials-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  background: #f3f7f8;
}

.materials-card-image-contain {
  object-fit: contain;
  padding: 6px;
  background: #fff;
}

.materials-card-image-toolbox {
  padding: 0;
}

.materials-card-title {
  margin: 14px 0 4px;
  font-size: 16px;
  line-height: 1.35;
  color: var(--brand-dark);
  -webkit-text-fill-color: var(--brand-dark);
}

.material-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 12px;
}

.material-modal[hidden] {
  display: none;
}

.material-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 33, 0.72);
}

.material-modal-panel {
  position: relative;
  display: flex;
  align-items: center;
  width: min(1080px, 100%);
  min-height: min(720px, calc(100vh - 24px));
  max-height: calc(100vh - 24px);
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  overflow: auto;
  box-shadow: 0 24px 60px rgba(9, 13, 38, 0.24);
}

.material-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.material-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  min-height: 100%;
}

.material-modal-stacked .material-modal-layout {
  grid-template-columns: 1fr;
  min-height: auto;
}

.material-modal-media {
  min-width: 0;
  display: flex;
  align-items: center;
}

.material-modal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
}

.material-modal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  gap: 18px;
  padding: 10px 4px 6px;
}

.material-modal-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

.material-modal-text strong {
  font-weight: 700;
  color: #111827;
}

.material-modal-download {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.material-modal-download-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.material-modal-download-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .materials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .materials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .materials-page {
    padding: 20px 16px 36px;
  }

  .materials-grid {
    margin-top: 20px;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .materials-card {
    padding: 10px;
    border-radius: 14px;
  }

  .materials-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .materials-card-title {
    margin-top: 12px;
    font-size: 15px;
  }

  .material-modal-panel {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    margin: 6px auto;
    padding: 14px;
    border-radius: 14px;
  }

  .material-modal-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .material-modal-image {
    max-height: 42vh;
  }

  .material-modal-body {
    gap: 14px;
    padding: 0 0 4px;
  }

  .material-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    font-size: 30px;
  }
}

.video-play-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #f24f4f;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.video-play-icon::before {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.video-modal[hidden] {
  display: none;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 33, 0.66);
}

.video-modal-panel {
  position: relative;
  width: min(1120px, calc(100% - 34px));
  max-height: calc(100vh - 34px);
  margin: 18px auto;
  border-radius: 20px;
  background: #fff;
  overflow: auto;
}

.video-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 1;
  border: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #111827;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-media {
  padding: 14px 14px 0;
}

.video-preview-large {
  min-height: 420px;
}

.video-preview-large .video-play-icon {
  width: 96px;
  height: 96px;
}

.video-preview-large .video-play-icon::before {
  border-width: 14px 0 14px 23px;
  margin-left: 5px;
}

.video-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 14px;
}

.video-modal-body {
  padding: 16px 22px 26px;
}

.video-modal-body h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
}

.video-modal-body p {
  margin: 14px 0 0;
  font-size: 21px;
  color: var(--muted);
}

@media (min-width: 860px) {
  .nav-inner {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-hamburger {
    display: none !important;
  }

  .nav-menu {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static;
    margin-left: 0;
    justify-self: center;
    justify-content: center;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .domains {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .domain-tile {
    min-width: 0;
    flex: none;
  }

  .control-row {
    flex-wrap: nowrap;
  }

  .search-inline {
    min-width: 300px;
  }

  .content-card {
    padding: 14px;
  }

  .over-layout {
    gap: 18px;
  }

  .cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 859px) {
  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .nav-hamburger {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    z-index: 45;
  }

  .site-nav.is-mobile-open .nav-menu {
    display: flex !important;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    max-height: 220px;
  }

  .nav-type-menu {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-submenu-panel {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    max-height: none;
    margin-top: 6px;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .nav-submenu .nav-submenu-panel {
    display: grid;
    gap: 4px;
  }
}

@media (min-width: 560px) and (max-width: 859px) {
  .domains {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vak-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .subjects {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .education-types {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

  .video-page {
    padding: 20px 16px 36px;
  }

  .video-modal-panel {
    width: calc(100% - 12px);
    max-height: calc(100vh - 12px);
    margin: 6px auto;
    border-radius: 14px;
  }

  .video-preview-large {
    min-height: 220px;
  }

  .video-modal-body {
    padding: 12px 14px 20px;
  }

  .video-modal-body h2 {
    font-size: 18px;
  }

  .video-modal-body p {
    font-size: 17px;
  }

  .type-hero {
    min-height: auto;
    margin-top: 24px;
  }

  .over-layout {
    grid-template-columns: 1fr;
  }

  .over-kerndoelen-layout {
    grid-template-columns: 1fr;
  }

  .intro-offer-meta-grid,
  .intro-offer-gallery,
  .intro-offer-step-grid {
    grid-template-columns: 1fr;
  }

  .intro-offer-form-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-offer-form-panel {
    padding: 18px;
  }

  .intro-offer-contact-card {
    padding-right: 0;
  }

  .intro-offer-hero-layout {
    gap: 26px;
  }

  .intro-offer-hero-title {
    font-size: 23px;
  }

  .intro-offer-kicker {
    font-size: 16px;
  }

  .intro-offer-meta-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-offer-hero-image-wrap {
    min-height: 260px;
  }

  .intro-offer-hero-image-wrap::after {
    right: -10px;
    top: -10px;
    width: 110px;
    height: 110px;
  }

  .intro-offer-step:not(:last-child)::after {
    content: "";
  }

  .over-cp-gallery {
    grid-template-columns: 1fr;
  }

  .over-pdf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .over-kerndoelen-layout-reverse .over-kerndoelen-text,
  .over-kerndoelen-layout-reverse .over-kerndoelen-image-slot {
    order: initial;
  }

  .over-image-slot {
    min-height: 220px;
  }

  .over-banner-link {
    width: 50%;
  }

  .vak-footer-grid {
    grid-template-columns: 1fr;
  }

  .over-pdf-grid {
    grid-template-columns: 1fr;
  }

}

/* ==================== Blog ==================== */

.page-blog .site-copyright,
.page-blog-post .site-copyright {
  margin-top: 40px;
}

.blog-hero {
  margin-top: 28px;
}

.blog-hero-title {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--brand-dark);
}

.blog-hero-subtitle {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  text-align: left;
}

.blog-grid {
  max-width: calc(var(--content-max) - (2 * var(--page-pad)));
  margin: 8px auto 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e8eef2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.blog-card-image {
  display: block;
  width: calc(100% + 48px);
  margin: -24px -24px 16px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--brand-dark);
  width: fit-content;
}

.blog-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--brand-dark);
}

.blog-card-date {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.blog-card-excerpt {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.blog-card-readmore {
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.blog-card-readmore::after {
  content: "→";
}

/* ---- Single blog post ---- */

.blog-post-hero {
  margin-top: 28px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.blog-post-back:hover {
  color: var(--brand-dark);
}

.blog-post-back::before {
  content: "←";
}

.blog-post-content {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid #e8eef2;
  padding: 40px 48px;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.blog-post-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-blue);
  color: var(--brand-dark);
  margin-bottom: 14px;
}

.blog-post-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--brand-dark);
}

.blog-post-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 32px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #e8eef2;
  padding-bottom: 24px;
}

.blog-post-meta-sep {
  color: #ccc;
}

.blog-post-image {
  margin: 0 0 28px;
  border-radius: 14px;
  overflow: hidden;
}

.blog-post-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  text-align: right;
}

.blog-post-image figcaption a {
  color: var(--muted);
}

.blog-post-body {
  font-size: 15px;
  line-height: 1.75;
  color: #1e2a3a;
}

.blog-post-body h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 36px 0 12px;
  color: var(--brand-dark);
}

.blog-post-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 28px 0 8px;
  color: var(--brand-dark);
}

.blog-post-body p {
  margin: 0 0 18px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
}

.blog-post-body li {
  margin-bottom: 6px;
}

.blog-post-body a {
  color: var(--brand-dark);
  font-weight: 500;
}

.blog-post-body a:hover {
  text-decoration: none;
}

.blog-post-body strong {
  font-weight: 600;
}

.blog-post-body blockquote {
  margin: 0 0 18px;
  padding: 16px 20px;
  border-left: 4px solid var(--brand-purple);
  background: #f4f0fb;
  border-radius: 0 10px 10px 0;
}

.blog-post-body blockquote p {
  margin: 0;
}

.blog-post-hero-image {
  margin: 0 0 28px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}

.blog-post-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post-hero-image figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  padding: 0 4px;
}

.blog-post-hero-image figcaption a {
  color: var(--muted);
  text-decoration: underline;
}

.blog-post-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e8eef2;
  display: flex;
  justify-content: flex-start;
}

/* Breadcrumbs */

.blog-breadcrumb {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.blog-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.blog-breadcrumb li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.blog-breadcrumb li:not(:last-child)::after {
  content: "›";
  color: #ccc;
}

.blog-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  color: var(--brand-dark);
}

.blog-breadcrumb li[aria-current="page"] {
  color: var(--brand-dark);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 400px;
}

/* Related posts */

.blog-related {
  max-width: 760px;
  margin: 28px auto 0;
  width: 100%;
}

.blog-related-title {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--brand-dark);
}

.blog-related .blog-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}

@media (max-width: 700px) {
  .blog-related .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-breadcrumb li[aria-current="page"] {
    max-width: 200px;
  }
}

@media (max-width: 700px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-content {
    padding: 24px 20px;
  }

  .blog-post-title {
    font-size: 22px;
  }
}

@media (min-width: 701px) and (max-width: 1059px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .over-website-hero .over-title,
  .over-website-hero .over-content-card,
  .over-kerndoelen-hero .over-kerndoelen-card,
  .over-kerndoelen-hero .over-cp-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .video-page-animated .video-page-header,
  .video-page-animated .video-card {
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .video-page-animated .video-card:hover {
    transform: translateY(-5px);
  }

}
