/* src/css/tokens/_global.css */
:root {
  /* Colors */
  --color-green-500: #018c26;
  --color-red-500: #ff5b2b;
  --color-azur-500: #8fd2e5;
  --color-blue-500: #1333d8;
  --color-pink-500: #ffbdbd;
  --color-fuchsia-500: #ff7db4;
  --color-orange-500: #fe6d01;
  --color-yellow-500: #ffad1b;
  --color-yellow-900: #fff4ba;
  --color-black-005: #f2f2f2;
  --color-black-100: #f4f4f4;
  --color-black-200: #e6e6e6;
  --color-black-250: #d9d9d9;
  --color-black-500: #1a1a1a;
  --color-black-950: #0d0d0d;
  --color-black-1000: #000000;
  --color-white: #ffffff;

  /* Fonts */
  --font-sans-light: font-sans-light, Helvetica, sans-serif;
  --font-sans-regular: "font-sans-regular", sans-serif;
  --font-sans-bold: font-sans-bold, Helvetica, sans-serif;
  --font-sans-black: font-sans-black, Helvetica, sans-serif;
  --font-mono-bold: font-mono-bold, Courier, monospace;
  --font-mono-regular: font-mono-regular, Courier, monospace;
  --font-mono-thin: font-mono-thin, Courier, monospace;

  /* Type scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 5rem;
  --text-9xl: 6rem;

  /* Line height */
  --line-height-base: 1.5;

  /* Spacing (migrated from my-* spacing variables) */
  --spacing-0: 0;
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 0.75rem;
  --spacing-4: 1rem;
  --spacing-6: 1.5rem;
  --spacing-8: 2rem;
  --spacing-12: 3rem;
  --spacing-16: 4rem;
  --spacing-32: 8rem;
  --spacing-64: 16rem;

  /* Border radius */
  --rounded-none: 0px;
  --rounded-sm: 0.125rem;
  --rounded-base: 0.25rem;
  --rounded-md: 0.375rem;
  --rounded-lg: 0.5rem;
  --rounded-xl: 0.75rem;
  --rounded-2xl: 1rem;
  --rounded-3xl: 1.5rem;

  /* Breakpoints (reference only — cannot be used in media queries) */
  /* --breakpoint-sm: 375px  */
  /* --breakpoint-md: 600px  */
  /* --breakpoint-lg: 1244px */
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/* Universal box-sizing reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: subpixel;
}
/* || TYPOGRAPHY */
/* fonts — shared (GT Flexa + JetBrainsMono) */
@font-face {
  font-family: "font-sans-light";
  src: url("/assets/fonts/GT-Flexa-Light-Trial.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "font-sans-regular";
  src: url("/assets/fonts/GT-Flexa-Regular-Trial.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "font-sans-bold";
  src: url("/assets/fonts/GT-Flexa-Bold-Trial.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "font-sans-black";
  src: url("/assets/fonts/gt-flexa-black-trial.woff") format("woff");
  font-weight: 900;
}
/* variable font, kan eventueel bovenstaande vervangen? */
@font-face {
  font-family: "GT Flexa variable";
  src: url("/assets/fonts/gt-flexa-var-trial.ttf") format("truetype");
  font-weight: 1 1000;
}
@font-face {
  font-family: "font-mono-bold";
  src: url("/assets/fonts/JetBrainsMono-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "font-mono-regular";
  src: url("/assets/fonts/JetBrainsMono-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "font-mono-thin";
  src: url("/assets/fonts/JetBrainsMono-Thin.woff2") format("woff2");
  font-weight: 100;
}
/* base typography */
html {
  font-size: 16px;
}
body {
  font-family: var(--font-sans-light);
  line-height: var(--line-height-base);
  color: var(--color-black-500);
}
::-moz-selection {
  color: var(--color-blue-500);
  background: var(--color-yellow-900);
}
::selection {
  color: var(--color-blue-500);
  background: var(--color-yellow-900);
}
ul,
li {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: var(--color-blue-500);
}
a:hover {
    color: var(--color-orange-500);
  }
.link {
  cursor: pointer;
}
/* header typography */
.header {
  font-family: var(--font-mono-regular);
  font-size: var(--text-xs);
  letter-spacing: 1px;
}
.header .version--date,
  .header .changelog--link--container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
.header .version--date {
    left: 80px;
  }
.header .changelog--link--container {
    right: 80px;
  }
/* content wrapper typography */
.content--wrapper p.preheader {
    line-height: clamp(1em, calc(1.2em + 2vw), 1.6em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: 0;
    margin-bottom: var(--spacing-16);
  }
.content--wrapper p {
    line-height: clamp(1em, calc(1.2em + 2vw), 1.6em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(1.2rem, 4vw, 1.6rem); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: var(--spacing-16);
    margin-bottom: var(--spacing-16);
  }
.content--wrapper p.leadin {
    font-family: var(--font-sans-bold);
    line-height: clamp(1em, calc(1em + 2vw), 1.2em); /* default 1em + 2vw, min 1em, max 1.2em */
    font-size: clamp(24px, 8vw, 80px); /* default 10vw, niet kleiner dan 2rem, niet groter dan 5rem */
    margin-top: var(--spacing-32);
    margin-bottom: var(--spacing-32);
  }
.content--wrapper p.article {
    margin-top: var(--spacing-8);
    margin-bottom: var(--spacing-8);
  }
.content--wrapper p.article:last-of-type {
      margin-bottom: var(--spacing-32);
    }
.content--wrapper ul.links--socials {
    list-style-type: none;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: var(--text-lg);
  }
.content--wrapper ul.links--socials li {
      float: left;
      margin-right: 40px;
    }
.content--wrapper ul.links--socials li a {
        color: var(--color-blue-500);
        text-decoration: none;
      }
.content--wrapper p.caption { /* uitlijnen op grid? */ /* vervangen voor variabele */
  }
.content--wrapper p.caption::before {
      font-family: var(--font-mono-regular);
      content: "->>";
      display: block;
      position: absolute;
      transform: translateX(-40px);
      color: var(--color-pink-500);
    }
.content--wrapper p.caption {

    position: relative;
    transform: translateX(-100%) translateX(90vw);
    z-index: 999;
    font-size: var(--text-sm);
    line-height: var(--line-height-base);
    width: 20vw;
    min-width: 300px;
}
/* footnotes */
ol.footnotes {
  display: block;
  position: relative;
  left: 80px;
  top: 50%;
  /* transform: translateY(-50%); */

  list-style: none;
  counter-reset: my-awesome-counter;
  font-family: var(--font-mono-regular);
  font-size: var(--text-xs);
  width: calc(100% - 40px);
}
ol.footnotes li {
    counter-increment: my-awesome-counter;
  }
ol.footnotes li::before {
      content: counter(my-awesome-counter) ". ";
      color: var(--color-pink-500);
      font-family: var(--font-mono-regular);
    }
/* footer typography */
.footer {
  font-family: var(--font-mono-regular);
  font-size: var(--text-sm);
}
/* || TYPOGRAPHY MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
    .content--wrapper p.preheader {
      font-size: var(--text-2xl);
      margin-bottom: var(--spacing-8);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-32);
      margin-bottom: var(--spacing-32);
    }

    .content--wrapper p.article {
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-8);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-32);
      }
}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  .header--metadata {
    height: 80px;
    font-size: var(--text-xs);
  }

    .header--metadata .version--date {
      left: 40px;
      display: block;
    }

    .header--metadata .changelog--link--container {
      left: 40px;
      display: block;
      margin-top: 20px;
    }
    .content--wrapper p.preheader {
      font-size: var(--text-lg);
      margin-bottom: var(--spacing-8);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-16);
      margin-bottom: var(--spacing-32);
      font-size: var(--text-4xl);
    }

    .content--wrapper p.article {
      font-size: var(--text-lg);
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-8);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-16);
      }

  .header .changelog--link--container {
    display: none;
  }
    .footer ol.footnotes {
      left: 40px;
    }
}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
    .content--wrapper p.preheader {
      font-size: var(--text-sm);
      margin-bottom: var(--spacing-4);
    }

    .content--wrapper p.leadin {
      margin-top: var(--spacing-8);
      margin-bottom: var(--spacing-16);
      font-size: var(--text-3xl);
    }

    .content--wrapper p.article {
      font-size: var(--text-base);
    }

      .content--wrapper p.article:last-of-type {
        margin-bottom: var(--spacing-32);
      }

  .footer {
    font-size: var(--text-sm);
  }

    .footer ol.footnotes {
      left: 40px;
      top: 50%;
      transform: translateY(-50%);
    }
}
/* || LAYOUT */
/* nav wrapper — structural positioning only */
.nav--wrapper {
  position: fixed;
  z-index: 100;
  width: 80px;
  height: 100vh;
  left: 0;
  top: 0;
}
.nav--wrapper .nav--openCloseContainer {
    position: absolute;
    width: 80px;
    height: 100vh;
    right: 0;
    top: 0;
  }
/* main */
main {
  position: relative;
  z-index: 0;
  width: calc(100% - 80px);
  left: 80px;
  top: 0;
  overflow: hidden; /* prevents horizontal scrollbar */
}
/* header */
.header {
  position: relative;
  height: 15vh;
  top: 0;
  left: 0;
}
/* content wrapper — layout only */
.content--wrapper {
  margin-bottom: 20vh;
  margin-top: 10vh;
  width: 100%;
}
/* footer — layout dimensions only */
.footer {
  height: 160px;
  margin-top: 32vh;
  width: 100%;
}
/* || UTILITY: alignment */
.centered {
  margin-left: auto;
  margin-right: auto;
}
/* || UTILITY: width */
.w-full {
  width: calc(100% - 80px);
}
.w-large {
  width: calc(100% - 10vw);
  max-width: 1440px;
}
.w-medium {
  width: calc(100% - 10vw);
  max-width: 1000px;
}
.w-small {
  width: calc(100% - 10vw);
  max-width: 1000px;
  padding-left: 80px;
  padding-right: 80px;
}
/* || LAYOUT MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
    .content--wrapper .w-medium {
      width: calc(100% - 30vw);
      max-width: 1000px;
    }

    .content--wrapper .w-small {
      width: calc(100% - 30vw);
      max-width: 1000px;
      padding-left: 0;
      padding-right: 0;
    }
}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  .footer {
    height: 80px;
  }
}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
  .nav--wrapper {
    position: fixed;
    width: 100vw;
    height: 80px;
    left: 0;
    top: calc(100vh - 80px);
  }

    .nav--wrapper .nav--openCloseContainer {
      position: absolute;
      width: 100vw;
      height: 80px;
      z-index: 999;
      right: 0;
      top: 0;
    }

  main {
    left: 0px;
    width: 100%;
  }

  .footer {
    height: 100px;
    margin: 320px 0 80px 0; /* krijg positionering footer niet goed */
  }
}
/* component: nav */
.nav--wrapper .nav--openCloseContainer {
    background-color: var(--color-pink-500);
  }
.nav--wrapper .nav--openCloseContainer .hamburger {
      position: absolute;
      width: 40px;
      height: 40px;
      top: calc(50% - 20px);
      right: 20px;

      transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
      transform: rotate(-90deg);
    }
.nav--wrapper .nav--items {
    position: absolute;
    height: 100vh;
    top: 0;
    right: 80px;
    overflow: hidden;

    left: 0;
    background-color: var(--color-black-005);
  }
.nav--wrapper .nav--items li {
      position: absolute;
      display: block;
      max-height: 160px;
      width: 2500px;
      left: -1200px;

      font-family: "GT Flexa variable", serif;
      font-variation-settings: "wght" 500, "wdth" 10, "ital" 200;

      font-size: var(--text-9xl);
      text-transform: uppercase;
      text-align: right;
      padding: 0.8em 0.6em;
      margin: 0 auto;
      line-height: 0;
    }
.nav--wrapper .nav--items li a:hover {
          color: white;
          animation: scrolling-left2 20s linear infinite;
          animation-delay: 10s;
        }
.nav--wrapper .nav--items li.home {
      bottom: 310px;
      transform: rotate(10deg);
      background-color: var(--color-green-500);
    }
.nav--wrapper .nav--items li.home a {
        color: var(--color-blue-500);
      }
.nav--wrapper .nav--items li.lezer {
      bottom: 450px;
      transform: rotate(-6deg);
      background-color: #FFD4D3;
    }
.nav--wrapper .nav--items li.lezer a {
        color: #FE6D01;
      }
.nav--wrapper .nav--items li.maker {
      bottom: 50px;
      transform: rotate(-15deg);
      background-color: #FECC1A;
    }
.nav--wrapper .nav--items li.maker a {
        color: var(--color-green-500);
      }
.nav--wrapper .nav--items li.blog {

      bottom: 550px;
      transform: rotate(7deg);
      background-color: #025DE8;
    }
.nav--wrapper .nav--items li.blog a {
        color: #FAA9CB;
      }
.nav--wrapper .authorDate {
    position: absolute;
    width: 200px;
    bottom: 40px;
    left: 50%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: top left;
    white-space: no-wrap;

    font-family: var(--font-mono-regular);
    font-size: var(--text-xs);
    letter-spacing: 1px;
    line-height: 0;
  }
/* nav media query — small screens (375px and below) */
@media screen and (max-width: 375px) {

  .nav--wrapper {
    position: fixed;
    width: 100vw;
    height: 80px;

    left: 0;
    top: calc(100vh - 80px);
  }

    .nav--wrapper .nav--openCloseContainer {
      position: absolute;
      width: 100vw;
      height: 80px;
      z-index: 999;

      right: 0;
      top: 0;
    }

    .nav--wrapper .nav--items {
      right: 0;
    }

    .nav--wrapper .hamburger {
      top: calc(50% - 10px);
      left: calc(50% - 10px);
      transform: rotate(0deg) translate(0, 0);
    }

    .nav--wrapper .authorDate {
      display: none;
    }
}
/* nav media query — short screens */
@media (max-height: 600px) {
  .authorDate {
    display: none;
  }
}
/* component: changelog */
/* changelog layout */
.changelog-layover {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: var(--color-blue-500);
  mix-blend-mode: hard-light;
  z-index: 1000;
}
.changelog {
  position: fixed;
  overflow-y: scroll;
  width: 60vw;
  max-width: 1000px;
  min-width: 550px;
  transform: translateX(100vw) translateX(0%); /* stacking translateX to position left to viewport and than its own width to the left */
  top: 0;
  height: 100vh;
  margin: 0;
  padding: 0 6vw 0 6vw;
  z-index: 1001;
}
/* changelog styling */
.changelog {
  color: var(--color-blue-500);
  font-family: var(--font-mono-regular);
  background-color: var(--color-yellow-900);
  background-image: url("/assets/svg/ApprovedStamp.svg");
  background-repeat: no-repeat;
  background-position: calc(60vw - 200px) calc(50vh - 80px);
  background-size: 160px 160px;
}
.changelog .changelog-logo {
    width: 80px;
    height: 80px;
    mix-blend-mode: multiply;
  }
.changelog h1 {
    color: var(--color-black-500);
    font-family: var(--font-sans-black);
    text-transform: uppercase;
    font-size: var(--text-6xl);
    margin: 6vw 0 40px 0;
  }
.changelog a {
    -webkit-text-decoration: underline dashed blue;
            text-decoration: underline dashed blue;
  }
.changelog .tableHeader {
    color: var(--color-black-500);
    font-size: var(--text-xs);
    text-transform: capitalize;
    font-weight: bold;
  }
.changelog .sectionHeader {
    font-size: var(--text-xs);
    font-weight: bold;
  }
.changelog .sectionContent {
    font-size: var(--text-xs);
  }
.changelog .changelog--gridRow {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 50px;
  }
.changelog .changelog--gridRow > div {
    padding: 20px;
  }
.changelog .sectionContent {
    grid-column: 1 / 5;
  }
.changelog .col-1    { grid-column: 1 / 2; }
.changelog .col-2    { grid-column: 2 / 3; }
.changelog .col-2to3 { grid-column: 2 / 4; }
.changelog .col-3    { grid-column: 3 / 4; }
.changelog .col-4    { grid-column: 4 / 5; }
.changelog .changelog--gridRow > div.col-1 {
    padding-left: 0;
  }
.changelog .changelog--gridRow > div.col-4 {
    padding-right: 0;
    text-align: right;
  }
.changelog .tableHeader { /* Safari */
    position: sticky;
    top: 0;
    background-color: var(--color-yellow-900);

    text-transform: uppercase;
    border-bottom: 2px solid var(--color-black-500);
  }
.changelog .changelog--gridRow.sectionHeader {
    border-top: 0px solid black;
    border-bottom: 5px double var(--color-black-500);
  }
.changelog .description {
    border-bottom: 1px solid var(--color-black-500);
  }
.changelog .col-2, .changelog .col-3, .changelog .col-2to3 {
    border-right: 1px solid var(--color-black-500);
  }
.changelog .col-2, .changelog .col-2to3 {
    border-left: 1px solid var(--color-black-500);
  }
.changelog .changelog--footer {
    position: sticky;
    bottom: 0px;
    border-top: 2px solid var(--color-black-500);
    color: var(--color-black-500);
    margin-top: 80px;
    background-color: var(--color-yellow-900);
  }
.changelog .changelog--footer p {
      display: block;
      width: 200px;
      font-size: var(--text-sm);
      font-weight: bold;
      margin-top: 30px;
      height: 140px;
      border-bottom: 2px dashed var(--color-black-500);
    }
.changelog .changelog--footer img {
      width: 140px;
      height: 140px;
      margin-top: -120px;
    }
/* Footer component — typography in _typography.css, layout in _layout.css */
/* component: header */
.header .version--date,
  .header .changelog--link--container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
.header .version--date {
    left: 80px;
  }
.header .changelog--link--container {
    right: 80px;
  }
/* header media query — small screens (600px and below) */
@media screen and (max-width: 600px) {

  .header--metadata {
    height: 80px;
    font-size: var(--text-xs);
  }

    .header--metadata .version--date {
      left: 40px;
      display: block;
    }

    .header--metadata .changelog--link--container {
      left: 40px;
      display: block;
      margin-top: 20px;
    }

  .header .changelog--link--container {
    display: none;
  }
}
/* Page-specific tokens: fluid type scale */
:root {
  --fontsizeFluid-3xs: clamp(0.63rem, 0.32vw + 0.56rem, 0.75rem);
  --fontsizeFluid-2xs: clamp(0.63rem, 0.65vw + 0.5rem, 0.88rem);
  --fontsizeFluid-xs: clamp(0.75rem, 0.65vw + 0.63rem, 1rem);
  --fontsizeFluid-sm: clamp(0.75rem, 0.97vw + 0.57rem, 1.13rem);
  --fontsizeFluid-base: clamp(0.81rem, 1.13vw + 0.6rem, 1.25rem);
  --fontsizeFluid-lg: clamp(0.88rem, 1.61vw + 0.57rem, 1.5rem);
  --fontsizeFluid-xl: clamp(1rem, 2.26vw + 0.58rem, 1.88rem);
  --fontsizeFluid-2xl: clamp(1.13rem, 2.9vw + 0.58rem, 2.25rem);
  --fontsizeFluid-3xl: clamp(1.25rem, 4.52vw + 0.4rem, 3rem);
  --fontsizeFluid-4xl: clamp(1.5rem, 5.81vw + 0.41rem, 3.75rem);
  --fontsizeFluid-5xl: clamp(1.88rem, 6.77vw + 0.6rem, 4.5rem);
  --fontsizeFluid-6xl: clamp(3rem, 5.16vw + 2.03rem, 5rem);
  --fontsizeFluid-7xl: clamp(3.75rem, 5.81vw + 2.66rem, 6rem);
  --lineheightFluid-rem: clamp(1.3rem, 0.516vw + 1.203rem, 1.5rem);
  --lineheightFluid-percentage: clamp(120%, 0.516vw + 120%, 150%);
}
/* Page-specific styles */
/* || THEME - ARTICLE */
/* base overrides */
/* added styles */
/* layout: utility classes */
/* COLUMN LAYOUT */
.content--wrapper {
  margin: auto;
  margin-top: 160px;
  max-width: 1360px;
  padding: 0 80px;


}
.content--wrapper .section.onecols {
    margin: auto;
    max-width: 680px;
  }
.content--wrapper .section.onecols .main-column {
    }
.content--wrapper .section.withSidenote {
    margin: auto;
    display: grid;
    grid-template-columns: 80% 20%;
  }
.content--wrapper .section.withSidenote .main-column {
      padding-right: 20%; /* dit is een percentage van de totale .twocols width, zonder padding (dus 1200px) */
      padding-left: 10%; /* dit is een percentage van de totale .twocols width, zonder padding (dus 1200px) */
    }
.content--wrapper .section.withSidenote .aside-column {
    }
.content--wrapper .pretitle {
    margin-bottom: 0;
  }
.content--wrapper h1, .content--wrapper h2, .content--wrapper h3, .content--wrapper h4, .content--wrapper h5, .content--wrapper h6 {
      /* font-family: var(--font-sans-bold); */
      font-family: "GT Flexa variable", serif;
            --wdth: 100;
            --wght: 450;
            font-variation-settings: "wght" var(--wght), "wdth" var(--wdth);
    }
.content--wrapper p, .content--wrapper h2, .content--wrapper h3, .content--wrapper .content-width {
    position: relative;
    width: 100%;
  }
.content--wrapper p.no-dropcap::first-letter {
    font-family: "font-sans-light";
    line-height: 1em;
    font-size: clamp(1.76rem, 3vw + 2.14rem, 6rem);;
    float: none;
    margin-bottom: -0.3em;
    padding: 0px 0.2em 0px 0px;
  }
.content--wrapper .number {
    display: inline-block;
    width: 3em;
    height: 1em;
    margin-left: -3em;
  }
.content--wrapper hr {
    margin: var(--spacing-16) 0;
    /* border: 0;     */
  }
.content--wrapper .sidenote {
    position: absolute;
    width: 280px;
    right: 2vw;
    margin-right: 0;

    display: flex;
    justify-content: flex-end;
  }
.content--wrapper .sidenote sup {
      /* background-color: red; */
      width: 2em;
      top: 0;
    }
.content--wrapper .sidenote p {
      /* background-color: yellow; */
      max-width: 280px;
      min-width: 80px;
      width: 100%;
    }
/* WIDTH UTILITY CLASSES */
.content--wrapper .full-width {
    /* breaks content out of container content--wrapper */
    width: calc(100vw - 80px);
    max-width: calc(100vw - 80px);
    position: relative;
    padding-left: 0;
    padding-right: 0;
    left: calc(50% + 40px);
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
.content--wrapper .large-width {
      /* breaks content out of container content--wrapper, but only a little */
      width: 60vw;
      max-width: 60vw;
      position: relative;
      padding-left: 0;
      padding-right: 0;
      left: 50%;
      right: 50%;
      margin-left: -30vw;
      margin-right: -30vw;
  }
.content--wrapper .container-width {
    width: 100%;
  }
.content--wrapper .content-width {
    /* default */
  }
.content--wrapper .half-width {
    width: 50%;
  }
.content--wrapper .two-cols {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* creates 2 columns of equal width */
    border-radius: 0;
    margin-bottom: var(--spacing-64);
  }
.content--wrapper .two-cols img {
      border-radius: 0;
    }
.content--wrapper .two-cols figcaption {
      padding: 0 40px;
    }
/* classes for default elements (h1, p, etc) */
.content--wrapper h1 {
      font-size: var(--fontsizeFluid-6xl);
      line-height: var(--lineheightFluid-percentage);
      margin-top: 0;
      margin-bottom: var(--spacing-16);
    }
/* TEXT FLUID DEFAULT CLASSES */
.content--wrapper h2 {
    font-size: var(--fontsizeFluid-lg);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
    margin-bottom: var(--spacing-2);
  }
/* css variablen hergebruiken voor utility classes? (textFluid-xs, etc?) */
.content--wrapper h3 {
    font-size: var(--fontsizeFluid-sm);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
    margin-bottom: var(--spacing-1);
  }
/* misschien utility classes niet nodig. om .md clean te houden beter om iig default p gewoon te stylen. Dan p, p.article? */
.content--wrapper p {
    font-size: var(--fontsizeFluid-base);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
    margin-bottom: var(--spacing-8);
  }
/* TYPOGRAPHY */
.content--wrapper p.intro {
    font-size: var(--fontsizeFluid-lg);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
    margin-bottom: var(--spacing-16);
  }
.content--wrapper p.intro::first-letter {
      font-family: "font-sans-light";
      line-height: 1em;
      font-size: clamp(1.76rem, 3vw + 2.14rem, 6rem);;
      float: left;
      margin-bottom: -0.3em;
      padding: 0px 0.2em 0px 0px;
    }
.content--wrapper ul {
    font-size: var(--fontsizeFluid-sm);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
    margin-bottom: var(--spacing-8);

    list-style: none;
    margin-left: 0;
    padding-left: 1.5rem;
  }
.content--wrapper ul li:before {
      display: inline-block;
      content: "-";
      width: 1.5rem;
      margin-left: -1.5rem;
    }
.content--wrapper ul li {
    margin-bottom: var(--spacing-4);
  }
.content--wrapper ul.singleline li {
    margin-bottom: var(--spacing-1);
  }
.content--wrapper img {
    position: relative;
    width: 100%;

    margin-top: var(--spacing-8);
    margin-bottom: var(--spacing-8);
    border-radius: var(--rounded-base);
  }
.content--wrapper .sidenote p {
      font-size: var(--fontsizeFluid-2xs);
      line-height: var(--lineheightFluid-percentage);
      margin-top: 0;
    }
.content--wrapper .number {
    font-family: "font-mono-regular";
    font-weight: normal;

    font-size: var(--fontsizeFluid-2xs);
    line-height: var(--lineheightFluid-percentage);
    margin-top: 0;
  }
.content--wrapper sup {
    line-height: 1em;
  }
.content--wrapper em {
    font-family: "font-sans-regular";
    font-weight: normal;
    font-style: normal;
  }
.content--wrapper strong {
    font-family: "font-sans-bold";
    font-weight: normal;
    /* color: var(--color-fuchsia-500); */
  }
.content--wrapper blockquote {
    margin: var(--spacing-16) 0;
    padding: var(--spacing-16) var(--spacing-6) var(--spacing-12) var(--spacing-6);
    text-align: center;
    font-family: "font-sans-light";
  }
.content--wrapper blockquote p {
      font-size: var(--fontsizeFluid-lg);
      line-height: var(--lineheightFluid-percentage);

      margin-top: 0;
      margin-bottom: var(--spacing-8);
    }
.content--wrapper blockquote cite {
      font-size: var(--fontsizeFluid-xs);
      line-height: var(--lineheightFluid-percentage);
      margin-top: 0;
      margin-bottom: 0;
    }
.content--wrapper .streamer {
    display: block;
    padding: var(--spacing-16) var(--spacing-6) var(--spacing-16) var(--spacing-6);
    text-align: center;
    font-family: "font-sans-light";

    font-size: var(--fontsizeFluid-2xl);
    line-height: var(--lineheightFluid-percentage);

    margin-top:  var(--spacing-16);
    margin-bottom: var(--spacing-16);


  }
/* utility classes - vertical spacing */
.content--wrapper .my-0  {margin-bottom: var(--spacing-0);}
.content--wrapper .my-1  {margin-bottom: var(--spacing-1);}
.content--wrapper .my-2  {margin-bottom: var(--spacing-2);}
.content--wrapper .my-3  {margin-bottom: var(--spacing-3);}
.content--wrapper .my-4  {margin-bottom: var(--spacing-4);}
.content--wrapper .my-6  {margin-bottom: var(--spacing-6);}
.content--wrapper .my-8  {margin-bottom: var(--spacing-8);}
.content--wrapper .my-12 {margin-bottom: var(--spacing-12);}
.content--wrapper .my-16 {margin-bottom: var(--spacing-16);}
.content--wrapper .my-32 {margin-bottom: var(--spacing-32);}
.content--wrapper .my-64 {margin-bottom: var(--spacing-64);}
/* margins depending on next element. Margin-top because this only affects the last element */
.content--wrapper p + h1 {margin-top: var(--spacing-16);}
.content--wrapper p + h2 {margin-top: var(--spacing-12);}
.content--wrapper ul + h2 {margin-top: var(--spacing-12);}
.content--wrapper p + h3 {margin-top: var(--spacing-8);}
.content--wrapper ul + h3 {margin-top: var(--spacing-8);}
.content--wrapper p + ul {margin-top: calc(-1 * var(--spacing-4));}
.content--wrapper ul + p {margin-top: var(--spacing-8);}
.content--wrapper img + p {margin-top: var(--spacing-16);}
.content--wrapper .pretitle + .title {margin-top: var(--spacing-6);}
.content--wrapper .textAlign-center {text-align: center;}
.content--wrapper .gridGap-20 {gap: 20px;}
/* utility classes for text sizes. These overrule standard h1, p, etc classes */
.content--wrapper .textFluid-3xs {
    font-size: var(--fontsizeFluid-3xs);
    line-height: var(--lineheightFluid-percentage);
  }
/* TEXT FLUID UTILITY CLASSES */
.content--wrapper .textFluid-2xs {
    font-size: var(--fontsizeFluid-2xs);
    line-height: var(--lineheightFluid-percentage);
  }
/* adds a 20px gap between items */
.content--wrapper .textFluid-xs {
    font-size: var(--fontsizeFluid-xs);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-sm {
    font-size: var(--fontsizeFluid-sm);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-base {
    font-size: var(--fontsizeFluid-base);
    /* line-height: clamp(1em, calc(1.2em + 2vw), 1.6em); */
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-lg {
    font-size: var(--fontsizeFluid-lg);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-xl {
    font-size: var(--fontsizeFluid-xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-2xl {
    font-size: var(--fontsizeFluid-2xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-3xl {
    font-size: var(--fontsizeFluid-3xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-4xl {
    font-size: var(--fontsizeFluid-4xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-5xl {
    font-size: var(--fontsizeFluid-5xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-6xl {
    font-size: var(--fontsizeFluid-6xl);
    line-height: var(--lineheightFluid-percentage);
  }
.content--wrapper .textFluid-7xl {
    font-size: var(--fontsizeFluid-7xl);
    line-height: var(--lineheightFluid-percentage);
  }
/* || MEDIA QUERIES */
/* On screens that are 1244px width or less */
@media screen and (max-width: 1244px) {
    /* layout */


    .content--wrapper h1 {
      font-size: var(--fontsizeFluid-4xl) !important;
      line-height: var(--lineheightFluid-percentage);
      margin-bottom: var(--spacing-12) !important;
    }
}
/* On screens that are 600px or less */
@media screen and (max-width: 600px) {
  .content--wrapper {

    padding: 0 40px;
  }


    .content--wrapper h1 {
      font-size: var(--fontsizeFluid-3xl) !important;
      line-height: var(--lineheightFluid-percentage);
      margin-bottom: var(--spacing-8) !important;
    }
}
/* On screens that are 375px or less */
@media screen and (max-width: 375px) {
  title {
    /* background-color: yellow; */
  }
}
