/* Mobile drawer — desktop ≥1024 keeps the current icon row */
/* kz-nav-link-colors v20260820 — rest, hover blue, current only Blog */
header.nav a,
header.nav a:link,
header.nav a:visited,
header.nav a:hover,
header.nav a:active,
header.nav a:focus,
header.kz-nav a {
  text-decoration: none !important;
  background-color: transparent;
}
header.nav nav.nav-links a:link,
header.nav nav.nav-links a:visited,
header.kz-nav nav.nav-links a:link,
header.kz-nav nav.nav-links a:visited,
header.nav .nav-links a:link,
header.nav .nav-links a:visited,
header.kz-nav .nav-links a:link,
header.kz-nav .nav-links a:visited,
header.nav .nav-cta:link,
header.nav .nav-cta:visited,
header.kz-nav .nav-cta:link,
header.kz-nav .nav-cta:visited,
header.nav .nav-cta-bar:link,
header.nav .nav-cta-bar:visited,
header.nav .nav-links a.is-current,
header.nav .nav-links a[aria-current="page"] {
  color: #FFFFFF !important;
}
header.nav .nav-links a {
  box-shadow: none;
}
header.nav .nav-links a.is-current,
header.nav .nav-links a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 #FFFFFF;
}
header.nav nav.nav-links a:hover,
header.nav nav.nav-links a:focus-visible,
header.kz-nav nav.nav-links a:hover,
header.kz-nav nav.nav-links a:focus-visible,
header.nav .nav-links a:hover,
header.nav .nav-links a:focus-visible,
header.nav .nav-cta:hover,
header.nav .nav-cta:focus-visible,
header.nav .nav-cta-bar:hover,
header.nav .nav-cta-bar:focus-visible {
  color: #007FEF !important;
}
header.nav .nav-links a:focus:not(:focus-visible),
header.nav .nav-cta:focus:not(:focus-visible) {
  color: #FFFFFF !important;
}
.brand-name { white-space: nowrap; }
.nav-toolbar,
.nav-backdrop,
.nav-drawer-head { display: none; }

@media (max-width: 1023.98px) {
  .nav {
    z-index: 50;
    min-height: 56px;
    height: 56px;
  }
  .nav.is-open { z-index: 100010; }
  .nav .wrap { width: calc(100% - 24px); }
  .nav-inner {
    flex-wrap: nowrap;
    min-height: 56px;
    height: 56px;
    padding: 0;
    gap: 10px;
  }
  .brand {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }
  .brand-name,
  .brand-sub { white-space: nowrap; }
  .brand-sub { display: none; }
  .nav-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
  }
  .nav-cta-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 12px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(0, 127, 239, 0.5);
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }
  .nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle:focus-visible {
    outline: 2px solid #007FEF;
    outline-offset: 2px;
  }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }
  .nav-toggle-bars {
    position: relative;
  }
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav.is-open .nav-toggle-bars { background: transparent; }
  .nav.is-open .nav-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav.is-open .nav-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: auto;
    height: auto;
    background: rgba(12, 16, 34, 0.62);
    opacity: 0;
    pointer-events: none;
    z-index: 100000;
    transition: opacity 180ms ease;
    touch-action: none;
    overscroll-behavior: none;
  }
  .nav.is-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-menus {
    position: fixed;
    inset: 56px 0 0 0;
    width: auto;
    height: auto;
    max-width: none;
    margin: 0;
    padding: 12px 20px 28px;
    background: #0C1022;
    z-index: 100020;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform 200ms ease, visibility 200ms ease;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }
  .nav.is-open .nav-menus {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    margin-bottom: 8px;
  }
  .nav-drawer-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
  }
  .nav-close {
    display: none !important;
  }
  .nav-links,
  .nav-socials {
    flex-wrap: nowrap;
  }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    font-size: 22px;
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 22px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
  }
  .nav-soc {
    width: 40px;
    height: 40px;
  }
  .nav-soc svg {
    width: 28px;
    height: 28px;
  }
  .nav-cta-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    margin: 8px 0 0;
    border-radius: 999px;
    background: #70C500;
    color: #1A1A1C;
    font-size: 16px;
    font-weight: 700;
  }
  .nav-cta-panel:link,
  .nav-cta-panel:visited,
  .nav-cta-panel:hover,
  .nav-cta-panel:focus,
  .nav-cta-panel:focus-visible { background: #70C500; color: #1A1A1C !important; }
  .nav-cta-panel:hover { opacity: 0.92; }
  html.nav-open,
  html.nav-open body,
  body.nav-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

/* kz-mobile-overflow */
@media (max-width: 1023.98px) {
  html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    max-width: 100%;
  }
  body { position: relative; }
  main,
  #primary,
  .site-main,
  .hero,
  .ribbon,
  .reviews-scroller,
  .stats,
  .stats .wrap,
  #programma,
  .focus-grid,
  .player,
  .host,
  .gallery,
  .tiles {
    overflow-x: hidden;
    max-width: 100%;
  }
  .reviews-scroller {
    overscroll-behavior-x: none;
  }
}
@media (max-width: 1023.98px) and (prefers-reduced-motion: reduce) {
  .reviews-scroller { overflow-x: auto; }
}

@media (min-width: 1024px) {
  .nav-toolbar,
  .nav-backdrop,
  .nav-drawer-head { display: none !important; }
}

/* kz-nav-close-hide */
.nav-close,
button.nav-close,
#nav-close {
  display: none !important;
}

/* ==========================================================================
   Lime Background (#70C500) High-Contrast Fix: Force Dark Ink Text (#1A1A1C)
   ========================================================================== */
.ha-mark,
.ha-hl .ha-mark,
.ha-side .ha-mark,
.focus-lime,
.focus-card.focus-lime,
.tariff-lime,
.tile-lime,
.btn-lime,
.badge-lime,
.pill-solid,
.pill-lime,
.stat-badge,
.review-badge:not(.alt),
.prereq-head,
.counter.counter-lime,
.prereq-row:nth-child(3) .counter,
.nav-cta-panel,
.kz-cookie__btn--accept,
.bg-lime,
.lime,
[style*="#70C500"],
[style*="#70c500"],
[style*="rgb(112, 197, 0)"],
[style*="rgb(112,197,0)"],
.gallery .g-item:nth-child(5n+2) .tool-face,
.reviews-set .review:nth-child(4n + 2) {
  color: #1A1A1C !important;
}

.ha-mark *,
.focus-lime *,
.focus-card.focus-lime *,
.focus-card.focus-lime h3,
.focus-card.focus-lime p,
.focus-card.focus-lime span,
.focus-card.focus-lime .focus-label,
.focus-card.focus-lime a,
.tariff-lime:not(.tariff-soon) *,
.tariff-lime h3,
.tariff-lime .price,
.tariff-lime .price-sub,
.tariff-lime p,
.tariff-lime .tariff-pills .chip,
.tariff-lime .pill-inverse,
.tariff-lime .pill-ghost,
.tariff-lime .tariff-soon-label,
.tile-lime *,
.tile-lime h3,
.tile-lime p,
.tile-lime span,
.tile-lime .tile-verb,
.btn-lime *,
.badge-lime *,
.pill-solid *,
.pill-lime *,
.stat-badge *,
.review-badge:not(.alt) *,
.prereq-head *,
.counter.counter-lime *,
.prereq-row:nth-child(3) .counter *,
.nav-cta-panel *,
.kz-cookie__btn--accept *,
.bg-lime *,
.lime *,
[style*="#70C500"] h1, [style*="#70C500"] h2, [style*="#70C500"] h3, [style*="#70C500"] h4, [style*="#70C500"] h5, [style*="#70C500"] h6,
[style*="#70C500"] p, [style*="#70C500"] span, [style*="#70C500"] a, [style*="#70C500"] div, [style*="#70C500"] b, [style*="#70C500"] strong,
[style*="#70c500"] h1, [style*="#70c500"] h2, [style*="#70c500"] h3, [style*="#70c500"] h4, [style*="#70c500"] h5, [style*="#70c500"] h6,
[style*="#70c500"] p, [style*="#70c500"] span, [style*="#70c500"] a, [style*="#70c500"] div, [style*="#70c500"] b, [style*="#70c500"] strong,
.gallery .g-item:nth-child(5n+2) .tool-face *,
.reviews-set .review:nth-child(4n + 2) * {
  color: #1A1A1C !important;
}

.tariff-lime .occupancy,
.tariff-lime .occupancy * {
  color: #FFFFFF !important;
  background-color: #007FEF !important;
}

.pill-solid:link,
.pill-solid:visited,
.pill-solid:hover,
.pill-solid:focus,
.pill-solid:focus-visible,
.hero-pills a.pill.pill-solid:link,
.hero-pills a.pill.pill-solid:visited,
.hero-pills a.pill.pill-solid:hover,
.hero-pills a.pill.pill-solid:focus,
.hero-pills a.pill.pill-solid:focus-visible,
.nav-cta-panel:link,
.nav-cta-panel:visited,
.nav-cta-panel:hover,
.nav-cta-panel:focus,
.nav-cta-panel:focus-visible {
  color: #1A1A1C !important;
}

