:root {
  --ink: #1d1f22;
  --muted: #667085;
  --brand: #9fc3fa;
  --brand-soft: #eaf2ff;
  --surface: #ffffff;
  --surface-2: #f6f7fb;
  --shadow: 0 10px 30px rgba(18, 23, 43, 0.12);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Avenir Next", "Avenir", "Trebuchet MS", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
}

.site-header {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
}



.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  position: relative;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 16px;
}

.nav__brand img {
  width: 180px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  box-shadow: none;
}

.nav__toggle-label {
  display: none;
}

.nav__toggle-icon {
  font-size: 28px;
  line-height: 1;
}

.nav a,
.nav button:not(.nav__toggle) {
  font: inherit;
  color: var(--ink);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav a:hover,
.nav button:hover {
  color: #9fc3fa;
}

.lang-switch {
  margin-left: auto;
  border: 1px solid #d0d7e2 !important;
  background: #ffffff !important;
  border-radius: 999px !important;
  padding: 6px 10px !important;
  font-size: 13px !important;
  line-height: 1.1;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

.lang-switch:hover {
  background: #f4f7ff !important;
}

.lang-switch__label {
  font-weight: 600;
  color: #667085;
}

.lang-switch__track {
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: #d0d7e2;
  position: relative;
  display: inline-block;
}

.lang-switch__thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(18, 23, 43, 0.25);
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
}

.lang-switch[aria-checked="true"] .lang-switch__thumb {
  transform: translateX(16px);
}

.lang-switch[aria-checked="false"] .lang-switch__label--nl {
  color: #1d1f22;
}

.lang-switch[aria-checked="true"] .lang-switch__label--en {
  color: #1d1f22;
}

.nav__item {
  position: relative;
}

.nav__caret {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 14px;
}

.nav__item.open .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 90vw);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 23, 43, 0.18);
  padding: 16px;
  display: none;
  gap: 10px;
  z-index: 50;
}

.nav__item.open .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  display: grid;
}

.dropdown-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
}

.dropdown-item:hover {
  background: #f4f7ff;
}

.dropdown-item strong {
  font-weight: 500;
  display: block;
}

.dropdown-item span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.dropdown-icon {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  background: #eaf2ff;
  display: grid;
  place-items: center;
}

.dropdown-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.overview {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.overview__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.overview__search {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.overview__search > div {
  width: 100%;
  max-width: 520px;
}

.overview__title {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 500;
}

.overview__search input {
  width: min(520px, 92vw);
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid #d0d7e2;
  font: inherit;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  color: var(--ink);
}

.overview__search input::placeholder {
  color: #98a2b3;
}

.overview__results {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  width: min(640px, 92vw);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: none;
  padding: 8px;
}

.overview__results a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
}

.overview__results a:hover {
  background: #f4f7ff;
}

.overview__results small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.overview__card {
  background: #d8e7ff;
  border-radius: 5px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: none;
}

.overview__card--leren {
  background: #faca8e;
}

.overview__card--downloads {
  background: #8de0c8;
}

.overview__card--boeken {
  background: #c294f8;
}

.overview__card--videocursus {
  background: #fbb7b8;
}

.overview__card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
}

.overview__card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.overview__card--link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.overview__card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(61, 135, 244, 0.22);
}

.overview__icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #355070;
}

.overview__icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.overview__icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.hero {
  padding: 28px 0 0;
}

.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.hero__copy {
  font-size: 15px;
  line-height: 1.5;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 72px;
}

body.home .page {
  display: none;
}

.filters {
  margin: 22px 0 28px;
}

.filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters__chips--secondary {
  margin-top: 12px;
}

.chip {
  border: 1px solid #9fc3fa;
  background: #ffffff;
  color: #9fc3fa;
  padding: 10px 16px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
}

.chip[aria-pressed="true"] {
  background: #9fc3fa;
  color: white;
  border-color: #9fc3fa;
  box-shadow: none;
}

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

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: none;
  display: grid;
  gap: 4px;
  cursor: pointer;
  height: 282px;
  opacity: 0;
  animation: cardIn 0.5s ease forwards;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 32px rgba(18, 23, 43, 0.16);
}

.card__image {
  background: var(--surface);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 195px;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__image--contain img {
  object-fit: contain;
}

.card__title {
  font-weight: 600;
  font-size: 15px;
}

.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.modal__header .taglist {
  margin-top: 8px;
}

.modal__header .card__meta {
  margin-top: 6px;
}

.tag {
  background: var(--brand-soft);
  color: #3352c5;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal.is-open {
  display: flex;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
}

.modal__dialog {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 26px;
  max-width: 760px;
  width: min(92vw, 760px);
  max-height: 86vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: var(--surface-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.modal__header {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  align-items: start;
  grid-template-columns: 1fr auto;
}

.modal__title {
  font-size: 26px;
  margin: 0;
}

.modal__section {
  margin-bottom: 18px;
}

.modal__section h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.modal__section p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
}

.modal__section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.modal__figure {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.modal__figure--icon {
  width: 120px;
  padding: 10px;
}

.modal__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.page-title {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 600;
}

.themes-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.theme-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: grid;
  gap: 12px;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 280px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(18, 23, 43, 0.18);
}

.theme-card__image {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.theme-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-card__title {
  font-size: 18px;
  font-weight: 600;
}

.theme-card--disabled {
  cursor: default;
  opacity: 0.7;
}

.theme-card--disabled:hover {
  transform: none;
  box-shadow: none;
}

.theme-card__status {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #eef2ff;
  color: #3352c5;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.videocursus-hero {
  margin-top: 24px;
}

.videocursus-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.videocursus-hero__content h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.videocursus-hero__content h3 {
  margin: 16px 0 10px;
  font-size: 24px;
}

.videocursus-hero__content p {
  margin: 0 0 10px;
  color: #30343b;
  line-height: 1.5;
}

.videocursus-hero__note {
  font-weight: 500;
}

.videocursus-media {
  display: block;
}

.videocursus-media__hero-image {
  width: 100%;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.videocursus-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.videocursus-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.videocursus-card h2 {
  margin: 0 0 10px;
  font-size: 39px;
}

.videocursus-card p {
  margin: 0;
  color: #30343b;
  line-height: 1.5;
}

.videocursus-card--motivation {
  background: #f0ebd5;
}

.videocursus-card--feedback {
  background: #dde3e1;
}

.videocursus-card__button {
  margin-top: 22px;
  border: 0;
  background: transparent;
  color: #3d87f4;
  font: inherit;
  font-size: 30px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.videocursus-card__button:hover {
  color: #2f76e6;
}

.videocursus-lead {
  display: grid;
  gap: 14px;
}

.videocursus-lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.videocursus-lead__placeholder {
  border: 1px dashed #cfd8f6;
  border-radius: var(--radius-sm);
  background: #f7f9ff;
  padding: 18px;
  color: #516178;
  font-size: 15px;
}

.videocursus-lead__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.theme-hero {
  padding: 26px 0 0;
}

.theme-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 28px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.theme-hero__badge {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: #eef3ff;
  display: grid;
  place-items: center;
  padding: 12px;
}

.theme-hero__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.theme-hero__eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.theme-hero h1 {
  margin: 0 0 8px;
  font-size: 30px;
}

.theme-intro {
  margin-top: 26px;
}

.theme-intro__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.theme-intro__text,
.theme-intro__media {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 22px;
}

.theme-intro__text h2,
.theme-intro__media h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.theme-intro__text p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.5;
}

.theme-intro__text ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.video-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #eef2ff;
  aspect-ratio: 16 / 9;
}

.video-frame img,
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-frame__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.video-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.theme-section {
  margin-top: 30px;
}

.theme-section h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.download-card {
  height: auto;
}

.download-card .card__image {
  height: 210px;
}

.download-modal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.download-modal__media {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 12px;
}

.download-modal__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.download-modal__body {
  display: grid;
  gap: 12px;
}

.download-modal__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.download-modal__meta {
  font-size: 13px;
  color: var(--muted);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  background: #3d87f4;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(61, 135, 244, 0.25);
  width: fit-content;
  gap: 10px;
}

.download-button:hover {
  background: #2f76e6;
}

.download-button::after {
  content: "→";
  font-size: 18px;
  line-height: 1;
}

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

.video-card__media {
  background: #f2f4f8;
  position: relative;
}

.video-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__play {
  position: absolute;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.95);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.25);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e7edff 0%, #f7f8fc 100%);
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  padding: 12px;
}

.video-placeholder--large {
  min-height: 260px;
  font-size: 15px;
}

.video-modal {
  display: grid;
  gap: 18px;
}

.video-modal__player {
  background: #f2f4f8;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-modal__player video {
  width: 100%;
  height: auto;
  display: block;
}

.video-modal__player iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.video-modal__text {
  display: grid;
  gap: 10px;
}

.video-modal__text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.video-modal__detail h3 {
  margin: 12px 0 6px;
  font-size: 16px;
}

.video-modal__detail ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.video-modal__detail a {
  color: var(--brand);
  text-decoration: none;
}

.video-modal__detail a:hover {
  text-decoration: underline;
}

.media-placeholder {
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #eef2ff 0%, #f6f7fb 100%);
  border: 1px dashed #cfd8f6;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 500;
}

.theme-media {
  margin-top: 28px;
}

.theme-media__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.theme-media__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: none;
  padding: 22px;
}

.theme-media__card h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.podcast-list {
  display: grid;
  gap: 12px;
}

.podcast-embed iframe {
  width: 100%;
  display: block;
}

.linklist {
  display: grid;
  gap: 6px;
}

.linklist a {
  color: var(--brand);
  text-decoration: none;
  font-size: 13px;
}

.linklist a:hover {
  text-decoration: underline;
}

@keyframes cardIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalIn {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

  .overview__search {
    align-items: center;
    text-align: center;
  }

  .overview__search > div {
    display: grid;
    justify-items: center;
  }

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

  .card {
    height: auto;
  }

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

  .modal__title {
    font-size: 22px;
  }
}

@media (min-width: 741px) {
  .nav__toggle {
    display: none;
  }
}

@media (max-width: 740px) {
  .nav {
    justify-content: space-between;
  }

  .nav__brand {
    position: static;
  }

  .nav__brand img {
    width: 150px;
    height: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(18, 23, 43, 0.14);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__item,
  .nav__links > a {
    width: 100%;
  }

  .nav__links > a,
  .nav__links > .nav__item > button {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switch {
    margin-left: 0;
    justify-content: center !important;
    width: 100%;
  }

  .nav__dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    padding: 8px 0 0;
    display: none;
  }

  .nav__item:focus-within .nav__dropdown {
    display: none;
  }

  .nav__item.open .nav__dropdown {
    display: grid;
  }

  .nav__dropdown .dropdown-item {
    display: grid;
    justify-content: start;
    align-items: center;
    grid-template-columns: 32px 1fr;
  }
}

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

  .hero__content {
    padding: 20px;
  }

  .card__image {
    height: 100px;
  }

  .theme-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .theme-hero__badge {
    margin: 0 auto;
  }

  .theme-intro__grid {
    grid-template-columns: 1fr;
  }

  .theme-media__grid {
    grid-template-columns: 1fr;
  }

  .videocursus-hero__content {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .videocursus-media {
    margin-top: 4px;
  }

  .videocursus-cards {
    grid-template-columns: 1fr;
  }

  .videocursus-card h2 {
    font-size: 30px;
  }

  .videocursus-card__button {
    font-size: 24px;
  }

  .download-modal {
    grid-template-columns: 1fr;
  }

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

.linklist p {
  font-size: 13px;
}
