/* 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 */
:root {
  --color-highlight-green: #bcde7d;
  --color-highlight-pink: #ffc8df;
  --color-highlight-yellow: #fee78c;
  --color-highlight-blue: #9cdef5;
}
/* svg scribbles */
.content--wrapper .leadin a {
    color: var(--color-black-500);
    display: inline-block;
  }
.content--wrapper .leadin svg {
    position: absolute;
    z-index: -5;
  }
.content--wrapper .leadin svg .line.top {
      visibility: hidden;
    }
.content--wrapper .leadin a.scribble--doubleLines {
    position: relative;
  }
.content--wrapper .leadin a.scribble--doubleLines svg {
      position: absolute;
      top: 0.5em;
      left: -30px;
      width: 8ch;
    }
/* svg width based on number of characters */
.content--wrapper .leadin a.scribble--doubleLines svg .line {
        fill: none;
        stroke: var(--color-highlight-pink);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 10px;
      }
.content--wrapper .leadin a.scribble--doubleLines svg .line.top {
        stroke: #f07f58;
      }
.content--wrapper .leadin a.scribble--wiggleLine {
    position: relative;
  }
.content--wrapper .leadin a.scribble--wiggleLine svg {
      position: absolute;
      top: 0.8em;
      left: -30px;
      width: 8ch;

    }
/* svg width based on number of characters */
.content--wrapper .leadin a.scribble--wiggleLine svg .line {
        fill: none;
        stroke: var(--color-highlight-green);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 10px;
      }
.content--wrapper .leadin a.scribble--wiggleLine svg .line.top {
        stroke: #038d38;
      }
.content--wrapper .leadin a.scribble--circleLine {
    position: relative;
  }
.content--wrapper .leadin a.scribble--circleLine svg {
      position: absolute;
      top: 0em;
      left: -10px;
      width: 5.5ch;
    }
/* svg width based on number of characters */
.content--wrapper .leadin a.scribble--circleLine svg .line {
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: var(--color-highlight-blue);
        stroke-width: 10px;
      }
.content--wrapper .leadin a.scribble--circleLine svg .line.top {
        stroke: #025DE8;
      }
.content--wrapper .leadin a.scribble--circleLine-2 {
    position: relative;
  }
.content--wrapper .leadin a.scribble--circleLine-2 svg {
      position: absolute;
      top: 0em;
      left: -10px;
      width: 7ch;
    }
/* svg width based on number of characters */
.content--wrapper .leadin a.scribble--circleLine-2 svg .line {
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: var(--color-highlight-pink);
        stroke-width: 8px;
      }
.content--wrapper .leadin a.scribble--circleLine-2 svg .line.top {
        stroke: #f07f58;
      }
.content--wrapper .leadin a.scribble--flowLine {
    position: relative;
  }
.content--wrapper .leadin a.scribble--flowLine svg {
      position: absolute;
      width: 5ch; /* svg width based on number of characters */

      top: 0em;
      left: 20px;
    }
.content--wrapper .leadin a.scribble--flowLine svg .line {
        fill: none;
        stroke: var(--color-highlight-yellow);
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 10px;
      }
.content--wrapper .leadin a.scribble--flowLine svg .line.top {
        stroke: #FC9130;
      }
/* end svg scribbles */
.content--wrapper .article span.highlightedText {
    position:relative;
    margin:0.1em;
    display: inline-block;
  }
.content--wrapper .article span.highlightedText:before {
    content:"";

    position:absolute;
    z-index:-1;
    left:-0.3em;
    top: 0.2em;

    width:calc(100% + 0.6em);
    height: 90%;
    border-radius: 0.2em;

    opacity: 0.8;
  }
.content--wrapper .article span.highlightedText--yellow:before {
    background-color: var(--color-highlight-yellow);
    transform: rotate(0.5deg);
  }
.content--wrapper .article .highlightedText--green:before {
    background-color: var(--color-highlight-green);
    transform: rotate(-0.5deg);
  }
.content--wrapper .article span.highlightedText--pink:before {
    background-color: var(--color-highlight-pink);
    transform: rotate(1deg);
  }
.content--wrapper .article span.highlightedText--blue:before {
    background-color: var(--color-highlight-blue);
    transform: rotate(-1deg);
  }
