@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500&display=swap");
:root {
  --font-content: "Newsreader", "Times New Roman", Georgia, serif;
  --font-ui: var(--font-content);
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Code", "IBM Plex Mono", Menlo, Monaco, monospace;
  --font-size-base: 1.25rem;
  --font-size-small: 1.125rem;
  --font-size-smaller: 1rem;
  --font-size-h1: 3.125rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.375rem;
  --font-size-nav: 1.875rem;
  --font-size-nav-secondary: 1.5rem;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --wrap-wide: 800px;
  --wrap-normal: 800px;
  --line-height: 1.6;
  --border-radius: 4px;
  --image-radius: 6px;
  --input-width: 20em;
  --content-padding: 1.5rem;
  --nav-margin-top: 1rem;
  --nav-margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  :root {
    --wrap-normal: 100%;
    --wrap-wide: 100%;
    --input-width: 100%;
    --font-size-base: 1.25rem;
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.5rem;
    --font-size-h3: 1.25rem;
    --font-size-nav: 1.75rem;
    --font-size-nav-secondary: 1.375rem;
    --content-padding: 1.25rem;
    --nav-margin-top: 1rem;
    --nav-margin-bottom: 2rem;
  }
}
:root,
.theme-light {
  --color-bg-primary: #f0eee6;
  --color-bg-primary-rgb: 240, 238, 230;
  --color-bg-secondary: #e8e6dc;
  --color-tx-normal: #1f1e1d;
  --color-tx-normal-rgb: 31, 30, 29;
  --color-tx-muted: #5e5d59;
  --color-tx-faint: #b0aea5;
  --color-ui-normal: #e8e6dc;
  --color-ui-hover: #d1cfc5;
  --color-ui-active: darken($paper-ivory-dark, 5%);
  --color-highlight: rgba(0, 0, 0, 0.08);
  --color-action: #1f1e1d;
  --color-bg-hover: rgba(0, 0, 0, 0.05);
  --color-selection: rgba(31, 30, 29, 0.15);
  --color-tx-link: #1f1e1d;
  --color-tx-link-active: #66800b;
  --color-re: #c03e35;
  --color-or: #bc5215;
  --color-ye: #ad8301;
  --color-gr: #66800b;
  --color-cy: #24837b;
  --color-bl: #205ea6;
  --color-pu: #5e409d;
  --color-ma: #a02f6f;
}

.theme-dark {
  --color-bg-primary: #1f1e1d;
  --color-bg-primary-rgb: 31, 30, 29;
  --color-bg-secondary: #3d3d3a;
  --color-tx-normal: #f0eee6;
  --color-tx-normal-rgb: 240, 238, 230;
  --color-tx-muted: #b0aea5;
  --color-tx-faint: #5e5d59;
  --color-ui-normal: #3d3d3a;
  --color-ui-hover: #5e5d59;
  --color-ui-active: lighten($paper-slate-medium, 5%);
  --color-highlight: rgba(255, 255, 255, 0.15);
  --color-action: #f0eee6;
  --color-bg-hover: rgba(255, 255, 255, 0.1);
  --color-selection: rgba(240, 238, 230, 0.2);
  --color-tx-link: #f0eee6;
  --color-tx-link-active: #879a39;
  --color-re: #d14d41;
  --color-or: #da702c;
  --color-ye: #d0a215;
  --color-gr: #879a39;
  --color-cy: #3aa99f;
  --color-bl: #4385be;
  --color-pu: #8b7ec8;
  --color-ma: #ce5d97;
}

/*! 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 */
  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;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 600;
}

code,
kbd,
samp {
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 85%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  font-variant-numeric: tabular-nums;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.35em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  color-scheme: light dark;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: var(--font-content);
  line-height: var(--line-height);
  font-size: var(--font-size-base);
  font-weight: var(--weight-normal);
  color: var(--color-tx-normal);
  background-color: var(--color-bg-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-content);
  line-height: 1.2;
  color: var(--color-tx-normal);
  margin-top: 0;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--weight-bold);
  margin-bottom: 0.25em;
  line-height: 1.1;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--weight-semibold);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--weight-semibold);
  margin-top: 1.25em;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

small,
.small,
.date,
.muted {
  font-size: var(--font-size-small);
  line-height: 1.5;
}

.muted {
  color: var(--color-tx-muted);
}

.date {
  color: var(--color-tx-muted);
  font-weight: var(--weight-normal);
}

a {
  color: var(--color-tx-link);
  text-decoration: underline;
  text-decoration-color: var(--color-ui-normal);
  text-underline-offset: 0.15em;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}
a:hover {
  color: var(--color-tx-link-active);
  text-decoration-color: var(--color-tx-link-active);
}
a.plain {
  text-decoration: none;
}
a.plain:hover {
  text-decoration: underline;
}

strong,
b {
  font-weight: var(--weight-semibold);
}

em,
i {
  font-style: italic;
}

ul,
ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

li {
  margin-bottom: 0.25em;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--color-bg-code);
  padding: 0.15em 0.3em;
  border-radius: 3px;
}

pre {
  background: var(--color-bg-code);
  padding: 1em;
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin-bottom: 1em;
}
pre code {
  background: none;
  padding: 0;
}

a[target=_blank]:not(.no-icon)::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.15em;
  background-image: url("../images/external-link.svg");
  background-size: 0.7em;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  opacity: 0.6;
}
.theme-dark a[target=_blank]:not(.no-icon)::after {
  filter: invert(1);
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

::selection {
  background: var(--color-selection);
}

::-moz-selection {
  background: var(--color-selection);
}

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 100%;
  scrollbar-gutter: stable;
}

body {
  background-color: var(--color-bg-primary);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-wrapper {
  width: 100%;
  max-width: var(--wrap-normal);
  margin: 0 auto;
  padding: 40px var(--content-padding) 100px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: var(--nav-margin-top);
  margin-bottom: var(--nav-margin-bottom);
}

main {
  width: 100%;
}

article {
  width: 100%;
}

footer {
  width: 100%;
  margin: 4rem auto 2rem;
  padding: 1em 0;
}

iframe,
video {
  max-width: 100%;
}

@media (max-width: 768px) {
  .site-wrapper {
    padding: 20px var(--content-padding) 80px;
  }
}
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.25em;
  background: var(--color-tx-normal);
  color: var(--color-bg-primary);
  border: none;
  border-radius: 2em;
  font-family: var(--font-content);
  font-size: var(--font-size-small);
  font-weight: var(--weight-medium);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.back-to-top:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.back-to-top svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.25em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-name {
  font-size: var(--font-size-nav);
  font-weight: var(--weight-semibold);
  color: var(--color-tx-normal);
  text-decoration: none !important;
}
.site-name:hover, .site-name:active, .site-name:focus {
  text-decoration: none !important;
  color: var(--color-tx-normal);
}

.nav-separator {
  color: var(--color-tx-muted);
  font-size: var(--font-size-nav-secondary);
}

.nav-current {
  color: var(--color-tx-muted);
  font-size: var(--font-size-nav-secondary);
}

.nav-link {
  color: var(--color-tx-muted);
  font-size: var(--font-size-nav-secondary);
  text-decoration: none !important;
}
.nav-link:hover {
  text-decoration: none !important;
  color: var(--color-tx-normal);
}
.nav-link:active {
  text-decoration: none !important;
  color: var(--color-tx-link-active);
}

#theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-tx-normal);
  padding: 0;
}
#theme-toggle svg {
  width: 20px;
  height: 20px;
}

blockquote {
  padding-left: 1.5em;
  margin: 1.5em 0;
  border-left: 2px solid var(--color-tx-normal);
}

blockquote p {
  margin: 0;
}

hr {
  width: 100%;
  border: 0;
  height: 1px;
  margin: 1.5em 0;
  background: var(--color-ui-normal);
}

main > hr {
  margin: 4em 0;
}

article img {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: auto;
}

article .wide {
  padding: 1.5em 0;
  max-width: min(100vw, var(--wrap-wide));
  width: min(100vw, var(--wrap-wide));
  margin-left: calc((min(100vw, var(--wrap-wide)) - 100%) / -2);
}

figure {
  margin: 0;
  padding: 1.5em 0;
  text-align: center;
}

figcaption {
  font-size: var(--font-smaller);
  line-height: 1.4;
  color: var(--color-tx-muted);
  padding: 1em;
}

figcaption a {
  color: var(--color-tx-muted);
}

img + em {
  display: block;
  text-align: center;
  font-size: var(--font-smaller);
  line-height: 1.4;
  color: var(--color-tx-muted);
  padding: 1em;
  font-style: normal;
}

img + em a {
  color: var(--color-tx-muted);
}

article hr {
  margin-top: 3rem;
  margin-bottom: 1rem;
  margin-top: calc(2em + 2vh);
  margin-bottom: calc(2em + 2vh);
  display: block;
  border: 0;
  background: none;
  text-align: center;
  overflow: visible;
}

article hr:before {
  content: "•••";
  display: inline-block;
  font-size: 0.5em;
  font-size: calc(0.8em + 0.2vw);
  margin-left: 0.6em;
  letter-spacing: 1.25em;
  color: var(--color-tx-faint);
  position: relative;
  top: -0.75em;
}

.backlinks {
  display: grid;
  gap: 0.5em;
  grid-template-columns: repeat(2, 1fr);
}

.backlink {
  border: 1px solid var(--color-ui-normal);
  padding: 0.75em;
  border-radius: var(--border-radius);
  line-height: 1.3;
}

.backlink:hover {
  border-color: var(--color-ui-hover);
}

.backlink .small,
.backlink .smaller {
  line-height: 1.3;
}

@media (max-width: 600px) {
  .backlinks {
    grid-template-columns: repeat(1, 1fr);
  }
}
code,
kbd {
  font-family: var(--font-mono);
  background: var(--color-bg-secondary);
  padding: 0.1em 0.2em;
  border-radius: 4px;
  font-size: 90%;
}

kbd {
  font-weight: 600;
  border: 1px solid var(--color-ui-hover);
}

pre {
  font-family: var(--font-mono);
  border-radius: 4px;
  padding: 1em;
  font-size: 90%;
  border: 1px solid var(--color-ui-normal);
  white-space: pre-wrap;
}

pre code {
  background-color: transparent;
}

div.highlight {
  display: grid;
}

.highlight {
  border-radius: 4px;
  overflow: auto;
  margin: 1em 0;
}

.highlight .c {
  color: var(--color-tx-faint);
}

.highlight .err {
  color: var(--color-re);
}

.highlight .k {
  color: var(--color-gr);
}

.highlight .p {
  color: var(--color-tx-muted);
}

.highlight .cm {
  color: var(--color-tx-faint);
}

.highlight .cp {
  color: var(--color-tx-faint);
}

.highlight .c1 {
  color: var(--color-tx-faint);
}

.highlight .cs {
  color: var(--color-tx-faint);
}

.highlight .ge {
  font-style: italic;
}

.highlight .gr {
  color: var(--color-re);
}

.highlight .gh {
  color: var(--color-tx-faint);
}

.highlight .go {
  color: var(--color-tx-muted);
}

.highlight .gp {
  color: var(--color-tx-muted);
}

.highlight .gu {
  color: var(--color-tx-muted);
}

.highlight .gt {
  color: var(--color-re);
}

.highlight .kc {
  color: var(--color-bl);
}

.highlight .kd {
  color: var(--color-bl);
}

.highlight .kp {
  color: var(--color-bl);
}

.highlight .kr {
  color: var(--color-bl);
}

.highlight .kt {
  color: var(--color-bl);
}

.highlight .m {
  color: var(--color-pu);
}

.highlight .s {
  color: var(--color-gr);
}

.highlight .na {
  color: var(--color-or);
}

.highlight .nb {
  color: var(--color-gr);
}

.highlight .nc {
  color: var(--color-bl);
}

.highlight .no {
  color: var(--color-cy);
}

.highlight .nn {
  color: var(--color-tx-muted);
}

.highlight .nv {
  color: var(--color-cy);
}

.highlight .o {
  color: var(--color-re);
}

.highlight .w {
  color: var(--color-tx-faint);
}

.highlight .mf {
  color: var(--color-pu);
}

.highlight .mh {
  color: var(--color-pu);
}

.highlight .mi {
  color: var(--color-pu);
}

.highlight .mo {
  color: var(--color-pu);
}

.highlight .sb {
  color: var(--color-gr);
}

.highlight .sc {
  color: var(--color-gr);
}

.highlight .sd {
  color: var(--color-gr);
}

.highlight .s2 {
  color: var(--color-cy);
}

.highlight .se {
  color: var(--color-re);
}

.highlight .sh {
  color: var(--color-gr);
}

.highlight .si {
  color: var(--color-gr);
}

.highlight .sx {
  color: var(--color-gr);
}

.highlight .sr {
  color: var(--color-re);
}

.highlight .s1 {
  color: var(--color-cy);
}

.highlight .ss {
  color: var(--color-re);
}

.highlight .bp {
  color: var(--color-tx-faint);
}

.highlight .vc {
  color: var(--color-cy);
}

.highlight .vg {
  color: var(--color-cy);
}

.highlight .vi {
  color: var(--color-cy);
}

.highlight .il {
  color: var(--color-pu);
}

.footnote {
  color: var(--color-tx-muted);
  text-decoration: none;
  font-weight: 500;
  padding-left: 0.1em;
}

.reversefootnote {
  color: var(--color-tx-muted);
  text-decoration: none;
}

.footnotes {
  padding-top: 4em;
}

.footnotes:before {
  content: "Footnotes";
  padding-bottom: 0.25em;
  color: var(--color-tx-muted);
  display: block;
}

.footnotes li p {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

table {
  margin-top: 1.5em;
  margin-bottom: 2.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 90%;
}

tr {
  border-bottom: 1px solid var(--color-ui-normal);
}

td {
  padding: 0.5em 1em 0.5em 0;
  line-height: 1.3;
}

th:not(:last-child) {
  padding-right: 1em;
}

td:last-child {
  padding-right: 0;
}

th {
  text-align: left;
  font-weight: 600;
  padding-bottom: 0.5em;
}

.table-top td {
  vertical-align: top;
}

.table-col-first-md td:first-child {
  width: 12em;
}

.table-col-last-md td:last-child {
  width: 12em;
}

.table-nowrap table {
  white-space: nowrap;
}

.table-tabular table {
  font-variant-numeric: tabular-nums;
}

.table-small table {
  font-size: var(--font-small);
}

@media (max-width: 600px) {
  .table-mobile-wide table {
    width: 106%;
  }
  .table-mobile-wide table td {
    min-width: 16em;
  }
  .table-col-first-md td:first-child {
    min-width: 9em;
  }
}
.tag {
  border: 1px solid var(--color-ui-normal);
  padding: 0.1em 0.5em 0.15em;
  border-radius: 1em;
  font-size: var(--font-smaller);
  color: var(--color-tx-muted);
  line-height: 2;
  text-decoration: none;
}

.tag:hover {
  box-shadow: none;
  border-radius: 1em;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-tx-normal);
}

label {
  color: var(--color-tx-normal);
  display: block;
  padding: 0 0 0.2em 0;
}

input:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: var(--color-tx-muted);
}

::-moz-placeholder {
  color: var(--color-tx-muted);
}

::-ms-placeholder {
  color: var(--color-tx-muted);
}

::placeholder {
  color: var(--color-tx-muted);
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  border-radius: 0;
  background-color: transparent;
  border: 1px solid transparent;
  border-bottom: 1px solid var(--color-ui-normal);
  margin-bottom: 1.5em;
  padding: 0.5em 0;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus {
  border-bottom: 1px solid var(--color-action);
}

input[type=text],
input[type=email],
input[type=password] {
  width: var(--input-width);
}

input[type=submit],
button {
  -webkit-appearance: none;
  border-radius: 3px;
  background-color: var(--color-tx-normal);
  border: 1px solid var(--color-tx-normal);
  color: var(--color-bg-primary);
  font-weight: 400;
  padding: 0.5em 1em;
}

input[type=submit]:hover,
button:hover {
  border: 1px solid var(--color-action);
  background-color: var(--color-action);
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  max-width: 100%;
  margin: 0;
  border: 1px solid var(--color-ui-normal);
  border-radius: 3px;
  background-color: transparent;
  padding: 0.25em 1.5em 0.25em 0.5em;
  background-repeat: no-repeat;
  background-position: right 0.5em top 50%;
  background-size: 1em auto;
}

select:hover {
  border-color: var(--color-ui-hover);
  background-color: var(--color-bg-secondary);
}

select:focus {
  border-color: var(--color-ui-active);
  outline: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23B7B5AC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpath d='m7 15 5 5 5-5'/%3E%3Cpath d='m7 9 5-5 5 5'/%3E%3C/svg%3E");
}

.theme-dark select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23575653' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' %3E%3Cpath d='m7 15 5 5 5-5'/%3E%3Cpath d='m7 9 5-5 5 5'/%3E%3C/svg%3E");
}

#popover-wrapper {
  color-scheme: light dark;
  background: var(--color-bg-primary);
  padding: 1.5em;
  border: 1px solid var(--color-ui-hover);
  border-radius: 6px;
  overflow: auto;
  position: absolute;
  width: 380px;
  max-width: 80vw;
  height: 250px;
  max-height: 70vh;
  font-size: 0.825em;
  box-shadow: 0 5px 20px 2px rgba(var(--flexoki-black-rgb), 0.2);
  z-index: 9999;
  transition: opacity 250ms ease-in-out;
  animation: fadein 250ms ease-in-out forwards;
}

#popover-wrapper:hover {
  animation: fadein 250ms ease-in-out backwards;
}

@keyframes fadein {
  from {
    margin-top: 20px;
    opacity: 0;
    pointer-events: none;
  }
  to {
    margin-top: 0px;
    opacity: 1;
    pointer-events: auto;
  }
}
#popover-content > h1 {
  margin-top: 0;
  font-size: 1.25em;
}

#popover-content .ms2 {
  margin-bottom: 2rem;
}

.theme-dark #popover-wrapper {
  background: var(--color-bg-secondary);
  box-shadow: 0 5px 20px 2px rgba(var(--flexoki-black-rgb), 1);
}

#theme-toggle {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: none;
  cursor: pointer;
  background: none;
  padding: 4px;
  margin: 0;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

#theme-toggle:hover {
  background-color: var(--color-ui-hover);
}

#theme-toggle:focus {
  outline: none;
}

.theme-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: var(--color-tx-normal);
}

.theme-light .theme-icon-light {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-light .theme-icon-dark {
  opacity: 0;
  transform: rotate(180deg);
}

.theme-dark .theme-icon-light {
  opacity: 0;
  transform: rotate(-180deg);
}

.theme-dark .theme-icon-dark {
  opacity: 1;
  transform: rotate(0deg);
}

.bg {
  background-color: var(--color-bg-primary);
}

.bg-2 {
  background-color: var(--color-bg-secondary);
}

.bg-tx {
  background-color: var(--color-tx-normal);
}

.bg-tx-2 {
  background-color: var(--color-tx-muted);
}

.bg-tx-3 {
  background-color: var(--color-tx-faint);
}

.bg-ui {
  background-color: var(--color-ui-normal);
}

.bg-ui-2 {
  background-color: var(--color-ui-hover);
}

.bg-ui-3 {
  background-color: var(--color-ui-active);
}

.bg-black {
  background-color: var(--flexoki-black);
}

.bg-paper {
  background-color: var(--flexoki-paper);
}

.bg-flexoki-950 {
  background-color: var(--flexoki-950);
}

.bg-flexoki-900 {
  background-color: var(--flexoki-900);
}

.bg-flexoki-850 {
  background-color: var(--flexoki-850);
}

.bg-flexoki-800 {
  background-color: var(--flexoki-800);
}

.bg-flexoki-700 {
  background-color: var(--flexoki-700);
}

.bg-flexoki-600 {
  background-color: var(--flexoki-600);
}

.bg-flexoki-500 {
  background-color: var(--flexoki-500);
}

.bg-flexoki-300 {
  background-color: var(--flexoki-300);
}

.bg-flexoki-200 {
  background-color: var(--flexoki-200);
}

.bg-flexoki-150 {
  background-color: var(--flexoki-150);
}

.bg-flexoki-100 {
  background-color: var(--flexoki-100);
}

.bg-flexoki-50 {
  background-color: var(--flexoki-50);
}

.bg-re {
  background-color: var(--color-re);
}

.bg-or {
  background-color: var(--color-or);
}

.bg-ye {
  background-color: var(--color-ye);
}

.bg-gr {
  background-color: var(--color-gr);
}

.bg-cy {
  background-color: var(--color-cy);
}

.bg-bl {
  background-color: var(--color-bl);
}

.bg-pu {
  background-color: var(--color-pu);
}

.bg-ma {
  background-color: var(--color-ma);
}

.bg-re-2 {
  background-color: var(--color-re-hover);
}

.bg-or-2 {
  background-color: var(--color-or-hover);
}

.bg-ye-2 {
  background-color: var(--color-ye-hover);
}

.bg-gr-2 {
  background-color: var(--color-gr-hover);
}

.bg-cy-2 {
  background-color: var(--color-cy-hover);
}

.bg-bl-2 {
  background-color: var(--color-bl-hover);
}

.bg-pu-2 {
  background-color: var(--color-pu-hover);
}

.bg-ma-2 {
  background-color: var(--color-ma-hover);
}

.bg-red-600 {
  background-color: var(--flexoki-red-600);
}

.bg-orange-600 {
  background-color: var(--flexoki-orange-600);
}

.bg-yellow-600 {
  background-color: var(--flexoki-yellow-600);
}

.bg-green-600 {
  background-color: var(--flexoki-green-600);
}

.bg-cyan-600 {
  background-color: var(--flexoki-cyan-600);
}

.bg-blue-600 {
  background-color: var(--flexoki-blue-600);
}

.bg-purple-600 {
  background-color: var(--flexoki-purple-600);
}

.bg-magenta-600 {
  background-color: var(--flexoki-magenta-600);
}

.bg-red-400 {
  background-color: var(--flexoki-red-400);
}

.bg-orange-400 {
  background-color: var(--flexoki-orange-400);
}

.bg-yellow-400 {
  background-color: var(--flexoki-yellow-400);
}

.bg-green-400 {
  background-color: var(--flexoki-green-400);
}

.bg-cyan-400 {
  background-color: var(--flexoki-cyan-400);
}

.bg-blue-400 {
  background-color: var(--flexoki-blue-400);
}

.bg-purple-400 {
  background-color: var(--flexoki-purple-400);
}

.bg-magenta-400 {
  background-color: var(--flexoki-magenta-400);
}

.gap1 {
  gap: 1rem;
}

.pa {
  padding: 1rem;
}

.pt {
  padding-top: 1rem;
}

.pr {
  padding-right: 1rem;
}

.pb {
  padding-bottom: 1rem;
}

.pl {
  padding-left: 1rem;
}

.ppa {
  padding: 2rem;
}

.ppt {
  padding-top: 2rem;
}

.ppr {
  padding-right: 2rem;
}

.ppb {
  padding-bottom: 2rem;
}

.ppl {
  padding-left: 2rem;
}

.pn1 {
  padding-top: 2rem;
}

.pn2 {
  padding-top: 4rem;
}

.pn3 {
  padding-top: 6rem;
}

.pn4 {
  padding-top: 8rem;
}

.ps1 {
  padding-bottom: 2rem;
}

.ps2 {
  padding-bottom: 4rem;
}

.ps3 {
  padding-bottom: 6rem;
}

.ps4 {
  padding-bottom: 8rem;
}

.st {
  margin-top: 1rem;
}

.sr {
  margin-right: 1rem;
}

.sb {
  margin-bottom: 1rem;
}

.sl {
  margin-left: 1rem;
}

.sst {
  margin-top: 2rem;
}

.ssr {
  margin-right: 2rem;
}

.ssb {
  margin-bottom: 2rem;
}

.ssl {
  margin-left: 2rem;
}

.mn1 {
  margin-top: 2rem;
}

.mn2 {
  margin-top: 4rem;
}

.mn3 {
  margin-top: 6rem;
}

.mn4 {
  margin-top: 8rem;
}

.ms1 {
  margin-bottom: 2rem;
}

.ms2 {
  margin-bottom: 4rem;
}

.ms3 {
  margin-bottom: 6rem;
}

.ms4 {
  margin-bottom: 8rem;
}

.l {
  text-align: left;
}

.r {
  text-align: right;
}

.c {
  text-align: center;
}

.cc {
  margin-left: auto;
  margin-right: auto;
}

.vt {
  vertical-align: top;
}

.ba {
  border: 1px solid var(--color-ui-normal);
}

.bt {
  border-top: 1px solid var(--color-ui-normal);
}

.br {
  border-right: 1px solid var(--color-ui-normal);
}

.bb {
  border-bottom: 1px solid var(--color-ui-normal);
}

.bl {
  border-left: 1px solid var(--color-ui-normal);
}

.ra {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.fr {
  float: right;
}

flex,
.flex {
  display: flex;
}

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

.align-baseline {
  align-items: baseline;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.grid {
  display: grid;
}

.grid-columns {
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.nowrap {
  white-space: nowrap;
}

.font-normal {
  font-weight: 400;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.line-height-loose {
  line-height: 1.6;
}

.line-height-tight {
  line-height: 1.3;
}

.wrap {
  max-width: var(--wrap-normal);
  margin-left: auto;
  margin-right: auto;
}

.muted {
  color: var(--color-tx-muted);
}

.muted a {
  color: var(--color-tx-muted);
}

.faint {
  color: var(--color-tx-faint);
}

.action {
  color: var(--color-action);
}

.font-medium {
  font-weight: 500;
}

@media (min-width: 600px) {
  .dkh {
    display: none;
  }
}
@media (max-width: 54em) {
  .wide {
    border: none;
  }
  .wide img,
  .wide iframe,
  .wide video {
    border-radius: 0;
  }
}
@media (max-width: 600px) {
  .mh {
    display: none;
  }
  .mobile-grid-rows {
    grid-auto-flow: row;
  }
}
body:not(.theme-dark) .multiply {
  mix-blend-mode: multiply;
}

.desaturate {
  filter: grayscale(100%);
}

.theme-dark .invert {
  filter: invert(1);
}

.theme-dark .invert.multiply {
  mix-blend-mode: screen;
}

.hover-color {
  filter: grayscale(100%);
  transition: filter 0.2s ease-in-out;
}

.hover-color:hover {
  filter: grayscale(0%);
  transition: filter 0.2s ease-in-out;
}

img.outline {
  border: 1px solid var(--color-ui-normal);
}

.aspect-square {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.invalid-link {
  color: var(--color-tx-muted);
  text-decoration: underline;
  text-decoration-color: var(--color-ui-normal);
  cursor: not-allowed;
}

.highlight {
  background: var(--color-bg-secondary);
  color: var(--color-tx-normal);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.9em;
  line-height: 1.5;
  margin: 1.5rem 0;
  border: 1px solid var(--color-ui-normal);
}

.highlight pre {
  margin: 0;
}

.highlight .c,
.highlight .cm,
.highlight .c1,
.highlight .cs {
  color: var(--color-tx-muted);
  font-style: italic;
}

.highlight .err,
.highlight .gr,
.highlight .gt {
  color: var(--color-re);
}

.highlight .k,
.highlight .kd,
.highlight .kn,
.highlight .kp,
.highlight .kr,
.highlight .kt {
  color: var(--color-pu);
  font-weight: var(--weight-medium);
}

.highlight .o,
.highlight .ow {
  color: var(--color-or);
}

.highlight .n,
.highlight .na,
.highlight .nb,
.highlight .bp,
.highlight .vc,
.highlight .vg,
.highlight .vi {
  color: var(--color-tx-normal);
}

.highlight .nc,
.highlight .nn {
  color: var(--color-ye);
}

.highlight .ne,
.highlight .nf {
  color: var(--color-bl);
}

.highlight .nl {
  color: var(--color-tx-normal);
}

.highlight .nd,
.highlight .ni {
  color: var(--color-or);
}

.highlight .nt,
.highlight .nv {
  color: var(--color-cy);
}

.highlight .s,
.highlight .sa,
.highlight .sb,
.highlight .sc,
.highlight .dl,
.highlight .sd,
.highlight .s2,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sx,
.highlight .sr,
.highlight .s1,
.highlight .ss {
  color: var(--color-gr);
}

.highlight .m,
.highlight .mb,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .il,
.highlight .mo {
  color: var(--color-ma);
}

.highlight .gd {
  color: var(--color-re);
}

.highlight .gi {
  color: var(--color-gr);
}

.highlight .ge {
  font-style: italic;
}

.highlight .gs {
  font-weight: bold;
}

/*# sourceMappingURL=styles.css.map */