
@layer reset {
  * {
    box-sizing: border-box;
  }

  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
  }

  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section {
    display: block;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  blockquote,
  q {
    quotes: none;
  }
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: "";
    content: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
}

:root {

  /* PRIMITIVES */
  --mdf-color-grey-100: rgb(36, 36, 36);
  --mdf-color-grey-200: rgb(51, 51, 51);
  --mdf-color-grey-300: rgb(71, 71, 71);
  --mdf-color-grey-400: rgb(101, 101, 101);
  --mdf-color-grey-500: rgb(135, 135, 135);
  --mdf-color-grey-600: rgb(170, 170, 170);
  --mdf-color-grey-700: rgb(201, 201, 201);
  --mdf-color-grey-800: rgb(230, 230, 230);
  --mdf-color-grey-900: rgb(245, 245, 245);
  --mdf-color-grey-1000: rgb(250, 250, 250);

  --mdf-color-blue-0: hsl(from var(--mdf-color-blue-100) h s calc(l - 20));
  --mdf-color-blue-100: rgb(0, 99, 192);
  --mdf-color-blue-500: hsl(from var(--mdf-color-blue-100) h s calc(l + 20));
  --mdf-color-blue-900: hsl(from var(--mdf-color-blue-100) h s calc(l + 60));

  --mdf-color-purple-100: rgb(70, 36, 112);
  --mdf-color-purple-500: hsl(from var(--mdf-color-purple-100) h s calc(l + 20));
  --mdf-color-purple-900: hsl(from var(--mdf-color-purple-100) h calc(s + 50) calc(l + 65));

  --mdf-color-green-0: hsl(from var(--mdf-color-green-100) h s calc(l - 20));
  --mdf-color-green-100: rgb(49, 148, 59);
  --mdf-color-green-500: hsl(from var(--mdf-color-green-100) h s calc(l + 20));
  --mdf-color-green-900: hsl(from var(--mdf-color-green-100) h s calc(l + 55));

  --mdf-color-red-100: rgb(175, 0, 35);
  --mdf-color-red-500: hsl(from var(--mdf-color-red-100) h s calc(l + 20));
  --mdf-color-red-900: hsl(from var(--mdf-color-red-100) h s calc(l + 62));

  --mdf-color-yellow-0: hsl(from var(--mdf-color-yellow-100) h s calc(l - 30));
  --mdf-color-yellow-100: rgb(255, 207, 33);
  --mdf-color-yellow-500: hsl(from var(--mdf-color-yellow-100) h s calc(l + 16));
  --mdf-color-yellow-900: hsl(from var(--mdf-color-yellow-100) h s calc(l + 38));

  --mdf-color-transparent-100: rgba(0, 0, 0, 0.1);
  --mdf-color-transparent-200: rgba(0, 0, 0, 0.2);
  --mdf-color-transparent-300: rgba(0, 0, 0, 0.3);
  --mdf-color-transparent-500: rgba(0, 0, 0, 0.5);


  /* SEMANTIC */
  --mdf-color-text-default: var(--mdf-color-grey-100);
  --mdf-color-text-muted: var(--mdf-color-grey-200);
  --mdf-color-text-brand-primary-default: var(--mdf-color-blue-100);
  --mdf-color-text-brand-primary-muted: var(--mdf-color-blue-500);
  --mdf-color-text-brand-secondary-default: var(--mdf-color-purple-100);
  --mdf-color-text-brand-secondary-muted: var(--mdf-color-purple-500);

  --mdf-color-background-default: var(--mdf-color-grey-1000);
  --mdf-color-background-muted: var(--mdf-color-grey-900);
  --mdf-color-background-subtle: var(--mdf-color-grey-800);
  --mdf-color-background-brand-primary: var(--mdf-color-blue-900);
  --mdf-color-background-brand-secondary: var(--mdf-color-purple-900);
  --mdf-color-background-error: var(--mdf-color-red-900);
  --mdf-color-background-warning: var(--mdf-color-yellow-900);
  --mdf-color-background-success: var(--mdf-color-green-900);

  --mdf-color-border-default: var(--mdf-color-grey-700);
  --mdf-color-border-muted: var(--mdf-color-grey-800);
  --mdf-color-border-brand-primary: var(--mdf-color-blue-500);
  --mdf-color-border-brand-secondary: var(--mdf-color-purple-500);
  --mdf-color-border-error: var(--mdf-color-red-500);
  --mdf-color-border-warning: var(--mdf-color-yellow-500);
  --mdf-color-border-success: var(--mdf-color-green-500);

  --mdf-color-outline-default: var(--mdf-color-grey-200);

  &[data-theme="dark"] {
    --mdf-color-text-default: var(--mdf-color-grey-900);
    --mdf-color-text-muted: var(--mdf-color-grey-800);
    --mdf-color-text-brand-primary-default: var(--mdf-color-blue-900);
    --mdf-color-text-brand-primary-muted: var(--mdf-color-blue-500);
    --mdf-color-text-brand-secondary-default: var(--mdf-color-purple-900);
    --mdf-color-text-brand-secondary-muted: var(--mdf-color-purple-500);

    --mdf-color-background-default: var(--mdf-color-grey-100);
    --mdf-color-background-muted: var(--mdf-color-grey-200);
    --mdf-color-background-subtle: var(--mdf-color-grey-300);
    --mdf-color-background-brand-primary: var(--mdf-color-blue-0);
    --mdf-color-background-brand-secondary: var(--mdf-color-purple-100);
    --mdf-color-background-error: var(--mdf-color-red-100);
    --mdf-color-background-warning: var(--mdf-color-yellow-0);
    --mdf-color-background-success: var(--mdf-color-green-0);

    --mdf-color-border-default: var(--mdf-color-grey-300);
    --mdf-color-border-muted: var(--mdf-color-grey-400);
    --mdf-color-border-brand-primary: var(--mdf-color-blue-500);
    --mdf-color-border-brand-secondary: var(--mdf-color-purple-500);
    --mdf-color-border-error: var(--mdf-color-red-500);
    --mdf-color-border-warning: var(--mdf-color-yellow-500);
    --mdf-color-border-success: var(--mdf-color-green-500);

    --mdf-color-outline-default: var(--mdf-color-grey-800);

    --mdf-color-transparent-100: rgba(0, 0, 0, 0.6);
    --mdf-color-transparent-200: rgba(0, 0, 0, 0.7);
    --mdf-color-transparent-300: rgba(0, 0, 0, 0.8);
    --mdf-color-transparent-500: rgba(0, 0, 0, 0.9);
  }
}
body {
  color: var(--mdf-color-text-default);
}

/* TITLES */
.mdf-title1,
.mdf-title2,
.mdf-title3,
.mdf-title4 {
  font-weight: 700;
}

.mdf-title1 {
  font-size: 3rem;
}

.mdf-title2 {
  font-size: 2.4rem;
}

.mdf-title3 {
  font-size: 1.7rem;
}

.mdf-title4 {
  font-size: 1.2rem;
}

/* TEXT */
.mdf-emphasis {
  font-weight: 700;
}

.mdf-italic {
  font-style: italic;
}

.mdf-highlighted {
  font-weight: 700;
  color: var(--mdf-color-text-brand-primary-default);

  &.mdf-highlighted-secondary {
    color: var(--mdf-color-text-brand-secondary-default);
  }
}

.mdf-muted {
  color: var(--mdf-color-text-muted);
}

.mdf-block {
  padding: 1rem;
  background-color: var(--mdf-color-background-muted);
  border-radius: 8px;
  border: 1px solid var(--mdf-color-border-default);
  box-shadow: 0px 1px 1px var(--mdf-color-transparent-300);

  &.mdf-block-brand-primary {
    background-color: var(--mdf-color-background-brand-primary);
    border-color: var(--mdf-color-border-brand-primary);
  }

  &.mdf-block-brand-secondary {
    background-color: var(--mdf-color-background-brand-secondary);
    border-color: var(--mdf-color-border-brand-secondary);
  }

  &.mdf-block-error {
    background-color: var(--mdf-color-background-error);
    border-color: var(--mdf-color-border-error);
  }

  &.mdf-block-success {
    background-color: var(--mdf-color-background-success);
    border-color: var(--mdf-color-border-success);
  }

  &.mdf-block-warning {
    background-color: var(--mdf-color-background-warning);
    border-color: var(--mdf-color-border-warning);
  }
}

/* BADGE */
.mdf-badge {
  display: inline-block;
  background: var(--mdf-color-background-muted);
  background: linear-gradient(var(--mdf-color-background-muted), var(--mdf-color-background-subtle));

  padding: 5px 7px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: var(--mdf-color-transparent-100) -1px -2px 0.5px inset;
}

/* LINK */
.mdf-link {
  display: inline;
  line-height: 1rem;
  padding: 1px 3px;
  border-radius: 5px;

  --color-visited: var(--mdf-color-brand-primary-muted);
  --hover-luminosity-reduction: 5;
  --text-luminosity-reduction: 85;

  color: var(--mdf-color-text-default);
  background-color: var(--mdf-color-background-subtle);

  text-decoration: underline;
  text-underline-offset: 1.5px;
  text-decoration-thickness: 1.5px;

  &:visited {
    background-color: var(--mdf-color-background-brand-secondary);
    color: var(--mdf-color-text-brand-secondary);
  }

  &:hover {
    background-color: hsl(from var(--mdf-color-background-subtle) h s calc(l - 5));

    &:visited {
      background-color: hsl(from var(--mdf-color-background-brand-secondary) h s calc(l - 5));
    }
  }

  &:focus-visible {
    outline: 2px solid var(--mdf-color-outline-default);
    outline-offset: 1px;
  }
}

/* BUTTON */
.mdf-button-container {
  border: 3px solid transparent;
  border-radius: 11px;
  background-clip: padding-box;
  position: relative;
  display: inline-block;

  --color: var(--mdf-color-background-muted);
  --color-dark: hsl(from var(--color) h s calc(l - 2));
  --color-border-light: hsl(from var(--color) h s calc(l + 3));
  --color-border-dark: hsl(from var(--color) h s calc(l - 5));

  --color-border-light-2: hsl(from var(--color) h calc(s - 10) l);
  --color-border-dark-2: hsl(from var(--color) calc(h) s calc(l - 20));

  &:hover {
    &:before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: -1;
      margin: -3px;
      border-radius: inherit;
      background: linear-gradient(var(--color-border-light-2), var(--color-border-dark-2));
    }
  }

  .mdf-button {
    color: inherit;
    background: linear-gradient(var(--color-border-light) 10%, var(--color-border-dark) 50%);
    cursor: pointer;
    line-height: 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0px 0px 2px var(--mdf-color-transparent-300);
    font-size: 1rem;
    padding: 0;
    border: none;
    transition: box-shadow 0.2s;

    .mdf-button-content {
      display: flex;
      align-items: center;
      margin: 5px;
      border-radius: 5px;
      padding: 5px 1rem;
      background-color: var(--color);
      transition: background-color 0.2s
    }

    &:active {
      box-shadow: 0px 0px 1px var(--mdf-color-transparent-200);

      .mdf-button-content {
        background-color: var(--color-dark);
      }
    }

    &:focus-visible {
      outline: 2px solid var(--mdf-color-outline-default);
      outline-offset: 3px;
    }
  }
}

/* FORM */
.mdf-select-field {
  cursor: pointer;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  border: 1px solid var(--mdf-color-border-muted);
  border-radius: 8px;
  font-size: inherit;
  padding: 9px 12px;
  line-height: 1.5rem;
  background-color: var(--mdf-color-background-muted);
  width: 250px;
  box-shadow: 0px 1px 1px var(--mdf-color-transparent-300);
  font-family: inherit;
  color: inherit;

  &:hover,
  &:focus {
    background-color: var(--mdf-color-background-default);
  }

  &:focus {
    outline: 2px solid var(--mdf-color-outline-default);
    outline-offset: 3px;
  }
}

.mdf-input-label,
.mdf-select-label,
.mdf-textarea-label {
  margin-bottom: 2px;
}

.mdf-input-field[type="text"],
.mdf-input-field[type="search"],
.mdf-input-field[type="password"],
.mdf-textarea-field {
  border: 1px solid var(--mdf-color-border-muted);
  border-radius: 8px;
  font-size: inherit;
  padding: 9px 12px;
  line-height: 1.5rem;
  background-color: var(--mdf-color-background-muted);
  width: 250px;
  box-shadow: 0px 1px 1px var(--mdf-color-transparent-300);
  font-family: inherit;

  &:hover,
  &:focus {
    background-color: var(--mdf-color-background-default);
  }

  &:focus {
    outline: 2px solid var(--mdf-color-outline-default);
    outline-offset: 3px;
  }
}

.mdf-textarea-field {
  width: 320px;
  height: 150px;
}

.mdf-checkbox {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}

.mdf-checkbox-field {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  width: 1.4em;
  height: 1.4em;
  border: 0.15em solid var(--mdf-color-border-brand-primary);
  background-color: var(--mdf-color-background-brand-primary);
  border-radius: 0.25rem;
  padding: 0;
  cursor: pointer;

  display: grid;
  place-content: center;

  &:hover,
  &:focus {
    background-color: var(--mdf-color-background-default);
  }
}

.mdf-checkbox-field::before {
  content: "";
  width: 20px;
  height: 20px;
  clip-path: path("M 6.9101 9.3579 C 6.4728 8.9207 5.7636 8.9207 5.3259 9.3579 S 4.8887 10.5044 5.3259 10.9421 L 7.4069 13.023 C 8.056 13.6722 9.108 13.6722 9.7571 13.023 L 10.1661 12.614 L 6.9101 9.3579 Z M 14.5261 6.6699 C 14.0888 6.2327 13.3796 6.2327 12.9419 6.6699 L 8.582 11.0299 L 10.1661 12.614 L 14.5261 8.2541 C 14.9633 7.8164 14.9633 7.1072 14.5261 6.6699 Z");
  transform: scale(0);
  transform-origin: bottom left;
  box-shadow: inset 1em 1em var(--mdf-color-text-brand-primary-default);
  background-color: CanvasText;
}

.mdf-checkbox-field:checked::before {
  transform: scale(1);
}

.mdf-checkbox-field:focus-visible {
  outline: 2px solid var(--mdf-color-outline-default);
  outline-offset: 3px;
}

.mdf-color {
  --border-radius: 8px;
  --background: var(--mdf-color-background-muted);
  --border: 1px solid var(--mdf-color-border-muted);

  display: flex;
  flex-direction: column;
  width: auto;

  .mdf-color-label {
    padding: 0.5rem;
    background-color: var(--background);
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border: var(--border);
    box-shadow: 0px 1px 0px var(--mdf-color-transparent-300);
    border-top: none;
  }

  .mdf-color-field {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    width: 100%;
    height: 4rem;
    position: relative;
    z-index: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    &:focus {
      border-radius: var(--border-radius);
    }

    &::-webkit-color-swatch {
      border-top-left-radius: var(--border-radius);
      border-top-right-radius: var(--border-radius);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      border: var(--border);
    }

    &::-webkit-color-swatch-wrapper {
      padding: 0;
    }
  }
}

/* TABLES */
.mdf-table {
  border-radius: 8px;
  border-style: hidden;
  box-shadow: 0 1px 2px var(--mdf-color-transparent-200);

  .mdf-th:first-child {
    border-top-left-radius: 8px;
  }

  .mdf-th:last-child {
    border-top-right-radius: 8px;
  }

  tbody>tr:last-child>td:first-child {
    border-bottom-left-radius: 8px;
  }

  tbody>tr:last-child>td:last-child {
    border-bottom-right-radius: 8px;
  }

  .mdf-td,
  .mdf-th {
    padding: 0.5rem;
    border: 1px solid var(--mdf-color-border-muted);
  }

  .mdf-th {
    font-weight: 600;
  }

  .mdf-th,
  :nth-child(even)>.mdf-td {
    background-color: var(--mdf-color-background-muted);
    text-align: start;
  }
}

/* CODE */
.mdf-code-inline {
  line-height: 1rem;
  padding: 1px 3px;
  border-radius: 5px;
  background-color: var(--mdf-color-background-subtle);
  font-weight: 600;
  font-family: monospace;
}

.mdf-code-block {
  line-height: 1rem;
  padding: 10px 1rem;
  border-radius: 8px;
  background-color: var(--mdf-color-background-brand-primary);
  border: 1px solid var(--mdf-color-border-brand-primary);
  font-family: monospace;
  margin: 0;
  box-shadow: 0px 1px 1px var(--mdf-color-transparent-300);
}

/* QUOTE */
.mdf-quote {
  padding: 1rem 2rem;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: var(--mdf-color-background-brand-secondary);
  box-shadow: 0px 1px 1px var(--mdf-color-transparent-300);
  border-left: 5px solid var(--mdf-color-border-brand-secondary);

  .mdf-quote-source {
    margin-top: 1rem;
    font-style: italic;
    color: var(--mdf-color-text-muted);
  }
}

/* MENU */
.mdf-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;

  .mdf-menu-item {
    color: inherit;
    text-decoration: none;
    padding: 8px 20px;
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: transparent;
    border-radius: 12px;
    transition: border 0.2s, background 0.2s, box-shadow 0.2s;


    .mdf-menu-item-dot {
      width: 0;
      height: 0;
      display: block;
      background-color: var(--mdf-color-text-brand-primary-default);
      border-radius: 2px;
      margin-right: 0;
      transition: width 0.1s, margin-right 0.2s ease-out, background-color 0.5s;
    }

    &:hover,
    &.mdf-menu-item-current,
    &:focus-visible {
      background: linear-gradient(var(--mdf-color-background-muted), var(--mdf-color-background-subtle));
      box-shadow: 0px 1px 2px var(--mdf-color-transparent-300);

      .mdf-menu-item-dot {
        margin-right: 10px;
        width: 8px;
        height: 8px;
        background-color: var(--mdf-color-text-brand-primary-muted);
      }
    }

    &:hover .mdf-menu-item-dot {
      background-color: var(--mdf-color-text-brand-primary-default);
    }

    &:active {
      box-shadow: 0px 0px 1px var(--mdf-color-transparent-300);
    }

    &:focus-visible {
      outline: 2px solid var(--mdf-color-outline-default);
      outline-offset: 3px;
    }
  }
}

/* LIST */
.mdf-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: disc;
  padding-left: 1em;

  .mdf-list-item {
    &::marker {
      color: var(--mdf-color-text-muted);
    }
  }
}

/* UTILITIES */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-VariableFont_wdth,wght.woff2") format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Italic-VariableFont_wdth,wght.woff2") format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

body {
  background-color: var(--mdf-color-background-default);
  padding: 1rem;
  min-height: 100vh;
  font-family: "IBM Plex Sans", "system-ui", "Arial";
  line-height: 1.6rem;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.title {
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 10px;

  a {
    color: inherit;
    text-decoration: none;

    &:visited {
      color: inherit;
    }

    &:focus-visible {
      outline: 2px solid var(--mdf-color-outline-default);
      outline-offset: 3px;
      border-radius: 8px;
    }
  }
}

.page-title {
  line-height: 3rem;
}

.content {
  max-width: 600px;
  margin: 0 auto;
}

.header {
  margin: 0 0 2rem 0;
}

.footer {
  margin-top: 2rem;
  text-align: right;
}

.blog-post-list {
  display: flex;
  flex-direction: column;
  margin: 1rem 0 2rem 0;

  .blog-post-list-item:last-child {
    .blog-post-list-item-link:hover {
      border-bottom: 1px solid var(--mdf-color-border-muted);
    }
  }

  .blog-post-list-item-link {
    padding: 1.5rem 10px;
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
    display: block;
    border-radius: 0px;
    border: 1px solid transparent;
    border-top: 1px solid var(--mdf-color-border-muted);

    .blog-post-list-item-date {
      font-size: 1rem;
      margin-top: 5px;
    }

    &:hover {
      background-color: var(--mdf-color-background-muted);
      border-left: 1px solid var(--mdf-color-border-muted);
      border-right: 1px solid var(--mdf-color-border-muted);

      .blog-post-list-item-title {
        text-decoration: underline;
      }
    }

    &:focus-visible {
      outline: 2px solid var(--mdf-color-outline-default);
      background-color: var(--mdf-color-background-muted);
    }
  }
}

.blog-description {
  margin-top: 2rem;
}

.menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  .menu-item {
    text-decoration: none;

    &.menu-item-current {
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 500;
    }

    &:visited {
      color: inherit;
    }

    &:focus-visible {
      border-radius: 3px;
      outline: 2px solid var(--mdf-color-outline-default);
      outline-offset: 3px;
    }
  }
}

.mdf-link {
  border-radius: 3px;
}

.mdf-badge {
  border-radius: 3px;
}

.mdf-emphasis {
  font-weight: 600;
}

i {
  font-style: italic;
}

.text-no-wrap {
  text-wrap: nowrap;
}

.skip-to-content-link {
  background: var(--mdf-color-background-brand-primary);
  padding: 8px;
  position: absolute;
  transform: translateY(-200%);
  border-radius: 3px;

  &:visited {
    color: inherit;
  }

  &:focus {
    transform: translateY(0%);
    outline: 2px solid var(--mdf-color-outline-default);
    outline-offset: -1px;
  }
}