:root {
  color-scheme: light;
  --font-sans: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
  --page-body-max-width: 820px;
  --page-body-inline-padding: 40px;
  --toc-width: 200px;
  --bg: #fff;
  --bg-subtle: #f9f9f9;
  --bg-inset: #f0f0f0;
  --surface-hover: #f0f0f0;
  --surface-active: #e9e9e9;
  --overlay: rgba(0, 0, 0, 0.35);
  --border: #e5e5e5;
  --border-faint: #ebebeb;
  --border-strong: #d0d0d0;
  --text-strong: #111;
  --text: #2a2a2a;
  --text-secondary: #555;
  --text-muted: #6b6b6b;
  --text-faint: #888;
  --icon-muted: #aaa;
  --link: #1f51a2;
  --success: #188a0e;
  --selection: rgba(100, 149, 237, 0.25);
  --code-bg: #f6f8fa;
  --code-border: #c2c7ce;
  --code-header-bg: #eef1f4;
  --code-header-border: #e3e6ea;
  --code-header-text: #57606a;
  --code-header-hover: #e1e6eb;
}

[data-theme=dark] {
  color-scheme: dark;
  --bg: #1a1a1a;
  --bg-subtle: #212121;
  --bg-inset: #2c2c2c;
  --surface-hover: #262626;
  --surface-active: #333;
  --overlay: rgba(0, 0, 0, 0.6);
  --border: #333;
  --border-faint: #2a2a2a;
  --border-strong: #4a4a4a;
  --text-strong: #f2f2f2;
  --text: #d4d4d4;
  --text-secondary: #b0b0b0;
  --text-muted: #949494;
  --text-faint: #7d7d7d;
  --icon-muted: #6a6a6a;
  --link: #8ab4f8;
  --success: #3fb950;
  --selection: rgba(100, 149, 237, 0.35);
  --code-bg: #202020;
  --code-border: #3a3a3a;
  --code-header-bg: #272727;
  --code-header-border: #333;
  --code-header-text: #9aa2aa;
  --code-header-hover: #33383e;
}

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

html, body {
  padding: 0;
  margin: 0;
  font-family: var(--font-sans);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

#content {
  display: flex;
  flex: 1;
}

main, .page-content {
  display: flex;
  flex: 1;
  min-width: 0;
}

.page-body {
  flex: 1;
  width: 100%;
  min-width: 0;
  max-width: var(--page-body-max-width);
  margin: 0 auto;
  padding: 0 var(--page-body-inline-padding) 40px;
  overflow-x: hidden;
}

@media (min-width: 1321px) {
  .page-body:last-child {
    margin-right: var(--toc-width);
  }
}
@media (max-width: 960px) {
  :root {
    --page-body-inline-padding: 16px;
  }
  html {
    font-size: 15px;
  }
  .content {
    font-size: 1.02rem;
    line-height: 1.6;
  }
  .page-body {
    padding: 0 16px 32px;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background-color: var(--bg);
  box-shadow: 0 1.5px 0px var(--border);
  position: relative;
  z-index: 1;
}
.header-nav a {
  text-decoration: none;
  color: var(--text-faint);
}
.header-nav a:hover {
  color: var(--text-strong);
}

.header-menu-btn {
  display: none;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--icon-muted);
  padding: 0;
  align-items: center;
  justify-content: center;
}
.header-menu-btn svg {
  width: 12px;
  height: 12px;
}
.header-menu-btn:hover {
  background-color: var(--surface-hover);
  color: var(--text);
}

@media (max-width: 960px) {
  .header-nav {
    gap: 10px;
  }
  .header-menu-btn {
    display: flex;
  }
  .header-logo {
    min-width: unset;
  }
  .header-links {
    display: none;
  }
}
.header-logo img {
  height: 28px;
  display: block;
  padding-left: 10px;
}

.header-site-title {
  font-size: 16px;
  font-weight: bold;
  color: var(--text);
}

.header-links {
  padding-left: 10px;
  display: flex;
  gap: 24px;
  font-size: 14px;
  flex: 1;
  text-transform: capitalize;
}

.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-faint);
  padding: 0;
}
.header-search-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.header-search-btn:hover {
  color: var(--text-strong);
}

.header-theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-faint);
  padding: 0;
}
.header-theme-btn span {
  display: block;
}
.header-theme-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.header-theme-btn .theme-icon-sun {
  display: none;
}
.header-theme-btn:hover {
  color: var(--text-strong);
}

[data-theme=dark] .header-theme-btn .theme-icon-moon {
  display: none;
}
[data-theme=dark] .header-theme-btn .theme-icon-sun {
  display: block;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-github-link svg {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--text-faint);
}
.header-github-link svg animate {
  display: none;
}
.header-github-link svg path {
  stroke-dashoffset: 0;
}
.header-github-link:hover svg {
  color: var(--text-strong);
}

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.search-overlay.is-open {
  display: block;
}
.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.search-overlay-panel {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 620px;
  max-width: calc(100vw - 32px);
  background: var(--bg);
  border-radius: 8px;
  padding: 12px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

#pagefind-ui {
  --pagefind-ui-scale: 0.75;
  --pagefind-ui-primary: var(--text-faint);
  --pagefind-ui-text: var(--text);
  --pagefind-ui-background: var(--bg);
  --pagefind-ui-border: var(--border);
  --pagefind-ui-border-radius: 6px;
  --pagefind-ui-font: var(--font-sans);
}
#pagefind-ui .pagefind-ui__result {
  padding: 8px 0;
  border-top: 1px solid var(--border-faint);
  border-bottom: none;
}
#pagefind-ui .pagefind-ui__result-image {
  display: none;
}
#pagefind-ui .pagefind-ui__result-nested {
  display: none;
}
#pagefind-ui .pagefind-ui__search-input {
  padding-top: 6px;
  padding-bottom: 6px;
  border-color: var(--border-strong);
  outline: none;
}
#pagefind-ui .pagefind-ui__search-input:focus {
  border-color: var(--text-faint);
  outline: none;
  box-shadow: none;
}
#pagefind-ui .pagefind-ui__result-title {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
}
#pagefind-ui .pagefind-ui__result-excerpt {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}
#pagefind-ui .pagefind-ui__result-tags {
  display: none;
}
#pagefind-ui .pagefind-ui__search-clear {
  background: none;
  border: none;
  box-shadow: none;
  color: var(--icon-muted);
  font-size: 12px;
  padding: 0 8px;
  cursor: pointer;
}
#pagefind-ui .pagefind-ui__search-clear:hover {
  color: var(--text);
}
#pagefind-ui .pagefind-ui__message {
  padding: 4px 0 0;
  font-size: 12px;
  color: var(--text-faint);
}
#pagefind-ui mark {
  background: none;
  color: var(--text-strong);
  font-weight: 600;
}

.sidebar-top {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px 4px;
}

.sidebar-collapse-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--icon-muted);
  transition: background-color 0.15s, color 0.15s;
}
.sidebar-collapse-btn svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
.sidebar-collapse-btn:hover {
  background-color: var(--surface-hover);
  color: var(--text);
}

.sidebar-mobile-close-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--icon-muted);
}
.sidebar-mobile-close-btn svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
}
.sidebar-mobile-close-btn:hover {
  background-color: var(--surface-hover);
  color: var(--text);
}

.sidebar.sidebar-collapsed .sidebar-collapse-btn svg {
  transform: rotate(0deg);
}

.sidebar.sidebar-collapsed {
  width: 28px;
  min-width: 28px;
}
.sidebar.sidebar-collapsed .sidebar-sticky {
  display: none;
}
.sidebar.sidebar-collapsed .sidebar-filter {
  display: none;
}
.sidebar.sidebar-collapsed .sidebar-top {
  padding: 4px 2px;
  justify-content: center;
}
.sidebar.sidebar-collapsed .sidebar-collapse-btn svg {
  transform: rotate(0deg);
}

.sidebar {
  width: 250px;
  min-width: 250px;
  position: relative;
  border-right: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.sidebar .sidebar-sticky {
  position: sticky;
  top: 8px;
  padding: 8px 10px;
  overflow-x: hidden;
  max-height: calc(100vh - 16px);
  overflow-y: auto;
}
.sidebar .sidebar-sticky::-webkit-scrollbar {
  width: 4px;
}
.sidebar .sidebar-sticky::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar .sidebar-sticky::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}
.sidebar .sidebar-sticky::-webkit-scrollbar-thumb:hover {
  background: var(--text-faint);
}
.sidebar a {
  text-decoration: none;
  color: inherit;
}
.sidebar details details {
  margin-left: 9px;
}
.sidebar summary {
  cursor: pointer;
  list-style: none;
  padding: 5px 6px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  line-height: 1.35;
  transition: background-color 0.12s ease;
}
.sidebar summary::-webkit-details-marker {
  display: none;
}
.sidebar summary:hover {
  background-color: var(--surface-hover);
}
.sidebar summary svg {
  width: 12px;
  height: 12px;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.sidebar summary a {
  display: inline;
  color: var(--text);
}
.sidebar details[open] > summary > svg {
  transform: rotate(90deg);
}

.sidebar-filter {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}
.sidebar-filter::placeholder {
  color: var(--icon-muted);
}
.sidebar-filter:focus {
  border-color: var(--icon-muted);
}

.sidebar-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.sidebar-icon svg {
  width: 20px;
  height: 20px;
}

.sidebar-page {
  display: block;
  padding: 5px 8px 5px 30px;
  border-radius: 5px;
  line-height: 1.35;
  color: var(--text-muted);
  transition: background-color 0.12s ease, color 0.12s ease;
}
.sidebar-page:hover {
  background-color: var(--surface-hover);
  color: var(--text);
}
.sidebar-page--active {
  background-color: var(--surface-active);
  color: var(--text-strong);
}

@media (max-width: 960px) {
  .sidebar {
    display: none;
  }
  .sidebar.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 25;
    width: 100vw;
    min-width: 0;
    background: var(--bg);
    border-right: none;
    overflow-y: auto;
  }
  .sidebar .sidebar-sticky {
    position: static;
    min-height: 100%;
    max-height: none;
    padding: 4px 16px 24px;
    box-sizing: border-box;
  }
  .sidebar-collapse-btn {
    display: none;
  }
  .sidebar-mobile-close-btn {
    display: none;
  }
  .sidebar.is-open .sidebar-mobile-close-btn {
    display: inline-flex;
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
  }
  .sidebar.is-open .sidebar-mobile-close-btn svg {
    width: 10px;
    height: 20px;
  }
  .sidebar.is-open {
    font-size: 16px;
  }
  .sidebar.is-open .sidebar-top {
    padding: 8px 52px 4px 16px;
  }
  .sidebar.is-open .sidebar-filter {
    font-size: 16px;
    padding: 6px 10px;
  }
  .sidebar.is-open a {
    padding: 0 4px;
  }
  .sidebar.is-open summary {
    padding: 8px 0;
  }
  .sidebar.is-open summary > svg {
    width: 22px;
    height: 22px;
    margin-top: 0;
  }
  .sidebar.is-open .sidebar-icon {
    width: 22px;
    height: 22px;
  }
  .sidebar.is-open .sidebar-icon svg {
    width: 22px;
    height: 22px;
  }
  .sidebar.is-open .sidebar-page {
    padding: 8px 0 8px 40px;
  }
  .sidebar-backdrop {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    z-index: 24;
    opacity: 0;
    visibility: hidden;
  }
  .sidebar-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }
  body.sidebar-open {
    overflow: hidden;
  }
}
@media (max-width: 1320px) {
  .toc {
    display: none;
  }
}
.toc {
  --toc-top-offset: 8px;
  --toc-line: var(--border);
  --toc-active: #2563eb;
  width: 240px;
  min-width: 240px;
  flex: 0 0 240px;
  box-sizing: border-box;
  padding: 8px 0 8px 6px;
  background-color: transparent;
  font-size: 13px;
}
.toc .toc-sticky {
  position: sticky;
  top: var(--toc-top-offset);
  max-height: calc(100vh - var(--toc-top-offset) - 8px);
  overflow-y: auto;
  padding: 0 8px;
}
.toc .toc-sticky::-webkit-scrollbar {
  width: 4px;
}
.toc .toc-sticky::-webkit-scrollbar-track {
  background: transparent;
}
.toc .toc-sticky::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 2px;
}
.toc .toc-sticky::-webkit-scrollbar-thumb:hover {
  background: var(--text-faint);
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc nav {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--toc-line);
}
.toc nav > ul {
  border-left: 1px solid var(--toc-line);
}
.toc li {
  margin: 0;
  line-height: 1.35;
}
.toc a {
  display: block;
  padding: 3px 0 3px 12px;
  margin-left: -1px;
  border-left: 2px solid transparent;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.12s ease, border-color 0.12s ease;
  font-weight: 400;
}
.toc a:hover {
  color: var(--text-strong);
}
.toc a.toc-active {
  color: var(--text-strong);
  border-left-color: var(--toc-active);
  font-weight: 600;
}

@media (min-width: 1800px) {
  .toc {
    padding-left: 8px;
  }
}
.toc-heading {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-strong);
  margin: 0 0 10px 0;
  padding: 0;
}

[data-theme=dark] .toc {
  --toc-active: #8ab4f8;
}

.content {
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: var(--text-strong);
  font-family: var(--font-sans);
  line-height: 1.25;
}
.content h1 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-top: 20px;
  margin-bottom: 24px;
}
.content h2 {
  margin-top: 25px;
  margin-bottom: 10px;
}
.content h3 {
  margin-top: 15px;
  margin-bottom: 7px;
}
.content h4 {
  margin-bottom: 5px;
}
.content h5 {
  margin-bottom: 5px;
}
.content h6 {
  font-size: 12px;
  margin-bottom: 4px;
}
.content p {
  margin: 0;
  padding: 12px 0 2px;
}
.content ul {
  margin: 8px 0;
}
.content li {
  margin: 4px 0;
}
.content ol {
  list-style: none;
  counter-reset: ol-counter;
  padding-left: 8px;
}
.content ol > li {
  counter-increment: ol-counter;
  position: relative;
  padding-left: 32px;
  margin: 6px 0;
}
.content ol > li > p:first-child {
  padding-top: 0;
}
.content ol > li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-color: #bdbdbd;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content a {
  color: var(--link);
  text-decoration: none;
}
.content li::marker {
  color: var(--text-secondary);
}

[data-theme=dark] .content ol > li::before {
  background-color: #4a4a4a;
}

.content code,
.content .highlight pre {
  font-family: var(--font-mono);
  font-size: 0.875em;
  line-height: 1.5;
}
.content code:not(pre code) {
  background-color: var(--bg-inset);
  border-radius: 4px;
  padding: 0.12em 0.4em;
}
.content .codeblock {
  margin: 16px 0;
  border: 1px solid var(--code-border);
  border-radius: 6px;
  overflow: hidden;
}
.content .codeblock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 8px 5px 14px;
  background: var(--code-header-bg);
  border-bottom: 1px solid var(--code-header-border);
}
.content .codeblock-lang {
  font-size: 0.78rem;
  color: var(--code-header-text);
  line-height: 1;
}
.content .codeblock-copy {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 7px;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  color: var(--code-header-text);
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1;
  transition: background-color 0.12s ease, color 0.12s ease;
}
.content .codeblock-copy svg {
  width: 13px;
  height: 13px;
  display: block;
}
.content .codeblock-copy:hover {
  background: var(--code-header-hover);
  color: var(--text-strong);
}
.content .codeblock-copy.is-copied {
  color: var(--success);
}
.content .highlight {
  border-radius: 6px;
  overflow: hidden;
  margin: 16px 0;
  border: 1px solid var(--code-border);
}
.content .highlight pre {
  margin: 0;
  padding: 14px 16px;
  overflow-x: auto;
  background: var(--code-bg) !important;
  -moz-tab-size: 4;
  tab-size: 4;
}
.content .codeblock .highlight {
  border: 0;
  border-radius: 0;
  margin: 0;
}

/* Generated using: hugo gen chromastyles --style=github */
/* Background */
.bg {
  background-color: #f7f7f7;
}

/* PreWrapper */
.chroma {
  background-color: #f7f7f7;
  -webkit-text-size-adjust: none;
}

/* Error */
.chroma .err {
  color: #f6f8fa;
  background-color: #82071e;
}

/* LineLink */
.chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit;
}

/* LineTableTD */
.chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}

/* LineTable */
.chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

/* LineHighlight */
.chroma .hl {
  background-color: #dedede;
}

/* LineNumbersTable */
.chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f;
}

/* LineNumbers */
.chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #7f7f7f;
}

/* Line */
.chroma .line {
  display: flex;
}

/* Keyword */
.chroma .k {
  color: #cf222e;
}

/* KeywordConstant */
.chroma .kc {
  color: #cf222e;
}

/* KeywordDeclaration */
.chroma .kd {
  color: #cf222e;
}

/* KeywordNamespace */
.chroma .kn {
  color: #cf222e;
}

/* KeywordPseudo */
.chroma .kp {
  color: #cf222e;
}

/* KeywordReserved */
.chroma .kr {
  color: #cf222e;
}

/* KeywordType */
.chroma .kt {
  color: #cf222e;
}

/* NameAttribute */
.chroma .na {
  color: #1f2328;
}

/* NameClass */
.chroma .nc {
  color: #1f2328;
}

/* NameConstant */
.chroma .no {
  color: #0550ae;
}

/* NameDecorator */
.chroma .nd {
  color: #0550ae;
}

/* NameEntity */
.chroma .ni {
  color: #6639ba;
}

/* NameLabel */
.chroma .nl {
  color: #900;
  font-weight: bold;
}

/* NameNamespace */
.chroma .nn {
  color: #24292e;
}

/* NameOther */
.chroma .nx {
  color: #1f2328;
}

/* NameTag */
.chroma .nt {
  color: #0550ae;
}

/* NameBuiltin */
.chroma .nb {
  color: #6639ba;
}

/* NameBuiltinPseudo */
.chroma .bp {
  color: #6a737d;
}

/* NameVariable */
.chroma .nv {
  color: #953800;
}

/* NameVariableClass */
.chroma .vc {
  color: #953800;
}

/* NameVariableGlobal */
.chroma .vg {
  color: #953800;
}

/* NameVariableInstance */
.chroma .vi {
  color: #953800;
}

/* NameVariableMagic */
.chroma .vm {
  color: #953800;
}

/* NameFunction */
.chroma .nf {
  color: #6639ba;
}

/* NameFunctionMagic */
.chroma .fm {
  color: #6639ba;
}

/* LiteralString */
.chroma .s {
  color: #0a3069;
}

/* LiteralStringAffix */
.chroma .sa {
  color: #0a3069;
}

/* LiteralStringBacktick */
.chroma .sb {
  color: #0a3069;
}

/* LiteralStringChar */
.chroma .sc {
  color: #0a3069;
}

/* LiteralStringDelimiter */
.chroma .dl {
  color: #0a3069;
}

/* LiteralStringDoc */
.chroma .sd {
  color: #0a3069;
}

/* LiteralStringDouble */
.chroma .s2 {
  color: #0a3069;
}

/* LiteralStringEscape */
.chroma .se {
  color: #0a3069;
}

/* LiteralStringHeredoc */
.chroma .sh {
  color: #0a3069;
}

/* LiteralStringInterpol */
.chroma .si {
  color: #0a3069;
}

/* LiteralStringOther */
.chroma .sx {
  color: #0a3069;
}

/* LiteralStringRegex */
.chroma .sr {
  color: #0a3069;
}

/* LiteralStringSingle */
.chroma .s1 {
  color: #0a3069;
}

/* LiteralStringSymbol */
.chroma .ss {
  color: #032f62;
}

/* LiteralNumber */
.chroma .m {
  color: #0550ae;
}

/* LiteralNumberBin */
.chroma .mb {
  color: #0550ae;
}

/* LiteralNumberFloat */
.chroma .mf {
  color: #0550ae;
}

/* LiteralNumberHex */
.chroma .mh {
  color: #0550ae;
}

/* LiteralNumberInteger */
.chroma .mi {
  color: #0550ae;
}

/* LiteralNumberIntegerLong */
.chroma .il {
  color: #0550ae;
}

/* LiteralNumberOct */
.chroma .mo {
  color: #0550ae;
}

/* Operator */
.chroma .o {
  color: #0550ae;
}

/* OperatorWord */
.chroma .ow {
  color: #0550ae;
}

/* OperatorReserved */
.chroma .or {
  color: #0550ae;
}

/* Punctuation */
.chroma .p {
  color: #1f2328;
}

/* Comment */
.chroma .c {
  color: #57606a;
}

/* CommentHashbang */
.chroma .ch {
  color: #57606a;
}

/* CommentMultiline */
.chroma .cm {
  color: #57606a;
}

/* CommentSingle */
.chroma .c1 {
  color: #57606a;
}

/* CommentSpecial */
.chroma .cs {
  color: #57606a;
}

/* CommentPreproc */
.chroma .cp {
  color: #57606a;
}

/* CommentPreprocFile */
.chroma .cpf {
  color: #57606a;
}

/* GenericDeleted */
.chroma .gd {
  color: #82071e;
  background-color: #ffebe9;
}

/* GenericEmph */
.chroma .ge {
  color: #1f2328;
}

/* GenericInserted */
.chroma .gi {
  color: #116329;
  background-color: #dafbe1;
}

/* GenericOutput */
.chroma .go {
  color: #1f2328;
}

/* GenericUnderline */
.chroma .gl {
  text-decoration: underline;
}

/* TextWhitespace */
.chroma .w {
  color: #fff;
}

/* Generated using: hugo gen chromastyles --style=github-dark */
/* Edited: font weights/styles normalized to match the light style; bp/na/nb/p added (absent from github-dark) */
[data-theme=dark] {
  /* Background */
}
[data-theme=dark] .bg {
  color: #e6edf3;
  background-color: #0d1117;
}
[data-theme=dark] {
  /* PreWrapper */
}
[data-theme=dark] .chroma {
  color: #e6edf3;
  background-color: #0d1117;
  -webkit-text-size-adjust: none;
}
[data-theme=dark] {
  /* Error */
}
[data-theme=dark] .chroma .err {
  color: #f85149;
}
[data-theme=dark] {
  /* LineLink */
}
[data-theme=dark] .chroma .lnlinks {
  outline: none;
  text-decoration: none;
  color: inherit;
}
[data-theme=dark] {
  /* LineTableTD */
}
[data-theme=dark] .chroma .lntd {
  vertical-align: top;
  padding: 0;
  margin: 0;
  border: 0;
}
[data-theme=dark] {
  /* LineTable */
}
[data-theme=dark] .chroma .lntable {
  border-spacing: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
[data-theme=dark] {
  /* LineHighlight */
}
[data-theme=dark] .chroma .hl {
  background-color: #6e7681;
}
[data-theme=dark] {
  /* LineNumbersTable */
}
[data-theme=dark] .chroma .lnt {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #737679;
}
[data-theme=dark] {
  /* LineNumbers */
}
[data-theme=dark] .chroma .ln {
  white-space: pre;
  -webkit-user-select: none;
  user-select: none;
  margin-right: 0.4em;
  padding: 0 0.4em 0 0.4em;
  color: #6e7681;
}
[data-theme=dark] {
  /* Line */
}
[data-theme=dark] .chroma .line {
  display: flex;
}
[data-theme=dark] {
  /* Keyword */
}
[data-theme=dark] .chroma .k {
  color: #ff7b72;
}
[data-theme=dark] {
  /* KeywordConstant */
}
[data-theme=dark] .chroma .kc {
  color: #79c0ff;
}
[data-theme=dark] {
  /* KeywordDeclaration */
}
[data-theme=dark] .chroma .kd {
  color: #ff7b72;
}
[data-theme=dark] {
  /* KeywordNamespace */
}
[data-theme=dark] .chroma .kn {
  color: #ff7b72;
}
[data-theme=dark] {
  /* KeywordPseudo */
}
[data-theme=dark] .chroma .kp {
  color: #79c0ff;
}
[data-theme=dark] {
  /* KeywordReserved */
}
[data-theme=dark] .chroma .kr {
  color: #ff7b72;
}
[data-theme=dark] {
  /* KeywordType */
}
[data-theme=dark] .chroma .kt {
  color: #ff7b72;
}
[data-theme=dark] {
  /* NameClass */
}
[data-theme=dark] .chroma .nc {
  color: #f0883e;
}
[data-theme=dark] {
  /* NameConstant */
}
[data-theme=dark] .chroma .no {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameDecorator */
}
[data-theme=dark] .chroma .nd {
  color: #d2a8ff;
}
[data-theme=dark] {
  /* NameEntity */
}
[data-theme=dark] .chroma .ni {
  color: #ffa657;
}
[data-theme=dark] {
  /* NameException */
}
[data-theme=dark] .chroma .ne {
  color: #f0883e;
}
[data-theme=dark] {
  /* NameLabel */
}
[data-theme=dark] .chroma .nl {
  color: #79c0ff;
  font-weight: bold;
}
[data-theme=dark] {
  /* NameNamespace */
}
[data-theme=dark] .chroma .nn {
  color: #ff7b72;
}
[data-theme=dark] {
  /* NameOther */
}
[data-theme=dark] .chroma .nx {
  color: #e6edf3;
}
[data-theme=dark] {
  /* NameProperty */
}
[data-theme=dark] .chroma .py {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameTag */
}
[data-theme=dark] .chroma .nt {
  color: #7ee787;
}
[data-theme=dark] {
  /* NameVariable */
}
[data-theme=dark] .chroma .nv {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameVariableClass */
}
[data-theme=dark] .chroma .vc {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameVariableGlobal */
}
[data-theme=dark] .chroma .vg {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameVariableInstance */
}
[data-theme=dark] .chroma .vi {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameVariableMagic */
}
[data-theme=dark] .chroma .vm {
  color: #79c0ff;
}
[data-theme=dark] {
  /* NameFunction */
}
[data-theme=dark] .chroma .nf {
  color: #d2a8ff;
}
[data-theme=dark] {
  /* NameFunctionMagic */
}
[data-theme=dark] .chroma .fm {
  color: #d2a8ff;
}
[data-theme=dark] {
  /* Literal */
}
[data-theme=dark] .chroma .l {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralDate */
}
[data-theme=dark] .chroma .ld {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralString */
}
[data-theme=dark] .chroma .s {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringAffix */
}
[data-theme=dark] .chroma .sa {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralStringBacktick */
}
[data-theme=dark] .chroma .sb {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringChar */
}
[data-theme=dark] .chroma .sc {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringDelimiter */
}
[data-theme=dark] .chroma .dl {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralStringDoc */
}
[data-theme=dark] .chroma .sd {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringDouble */
}
[data-theme=dark] .chroma .s2 {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringEscape */
}
[data-theme=dark] .chroma .se {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralStringHeredoc */
}
[data-theme=dark] .chroma .sh {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralStringInterpol */
}
[data-theme=dark] .chroma .si {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringOther */
}
[data-theme=dark] .chroma .sx {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringRegex */
}
[data-theme=dark] .chroma .sr {
  color: #79c0ff;
}
[data-theme=dark] {
  /* LiteralStringSingle */
}
[data-theme=dark] .chroma .s1 {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralStringSymbol */
}
[data-theme=dark] .chroma .ss {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumber */
}
[data-theme=dark] .chroma .m {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberBin */
}
[data-theme=dark] .chroma .mb {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberFloat */
}
[data-theme=dark] .chroma .mf {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberHex */
}
[data-theme=dark] .chroma .mh {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberInteger */
}
[data-theme=dark] .chroma .mi {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberIntegerLong */
}
[data-theme=dark] .chroma .il {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* LiteralNumberOct */
}
[data-theme=dark] .chroma .mo {
  color: #a5d6ff;
}
[data-theme=dark] {
  /* Operator */
}
[data-theme=dark] .chroma .o {
  color: #ff7b72;
}
[data-theme=dark] {
  /* OperatorWord */
}
[data-theme=dark] .chroma .ow {
  color: #ff7b72;
}
[data-theme=dark] {
  /* OperatorReserved */
}
[data-theme=dark] .chroma .or {
  color: #ff7b72;
}
[data-theme=dark] {
  /* Comment */
}
[data-theme=dark] .chroma .c {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentHashbang */
}
[data-theme=dark] .chroma .ch {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentMultiline */
}
[data-theme=dark] .chroma .cm {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentSingle */
}
[data-theme=dark] .chroma .c1 {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentSpecial */
}
[data-theme=dark] .chroma .cs {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentPreproc */
}
[data-theme=dark] .chroma .cp {
  color: #8b949e;
}
[data-theme=dark] {
  /* CommentPreprocFile */
}
[data-theme=dark] .chroma .cpf {
  color: #8b949e;
}
[data-theme=dark] {
  /* GenericDeleted */
}
[data-theme=dark] .chroma .gd {
  color: #ffa198;
  background-color: #490202;
}
[data-theme=dark] {
  /* GenericError */
}
[data-theme=dark] .chroma .gr {
  color: #ffa198;
}
[data-theme=dark] {
  /* GenericHeading */
}
[data-theme=dark] .chroma .gh {
  color: #79c0ff;
}
[data-theme=dark] {
  /* GenericInserted */
}
[data-theme=dark] .chroma .gi {
  color: #56d364;
  background-color: #0f5323;
}
[data-theme=dark] {
  /* GenericOutput */
}
[data-theme=dark] .chroma .go {
  color: #8b949e;
}
[data-theme=dark] {
  /* GenericPrompt */
}
[data-theme=dark] .chroma .gp {
  color: #8b949e;
}
[data-theme=dark] {
  /* GenericSubheading */
}
[data-theme=dark] .chroma .gu {
  color: #79c0ff;
}
[data-theme=dark] {
  /* GenericTraceback */
}
[data-theme=dark] .chroma .gt {
  color: #ff7b72;
}
[data-theme=dark] {
  /* GenericUnderline */
}
[data-theme=dark] .chroma .gl {
  text-decoration: underline;
}
[data-theme=dark] {
  /* TextWhitespace */
}
[data-theme=dark] .chroma .w {
  color: #6e7681;
}
[data-theme=dark] {
  /* NameBuiltinPseudo */
}
[data-theme=dark] .chroma .bp {
  color: #8b949e;
}
[data-theme=dark] {
  /* NameAttribute */
}
[data-theme=dark] .chroma .na {
  color: #e6edf3;
}
[data-theme=dark] {
  /* NameBuiltin */
}
[data-theme=dark] .chroma .nb {
  color: #d2a8ff;
}
[data-theme=dark] {
  /* Punctuation */
}
[data-theme=dark] .chroma .p {
  color: #e6edf3;
}

.content img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  display: block;
  margin: 8px 0;
}
.content hr {
  border: none;
  height: 1px;
  background-color: rgb(128, 128, 128);
}

.content table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 0.9em;
}
.content table thead tr {
  background-color: var(--bg-inset);
  border-bottom: 2px solid var(--border-strong);
}
.content table th {
  text-align: left;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text-strong);
  white-space: nowrap;
}
.content table td {
  padding: 7px 12px;
  border: none;
  border-bottom: 1px solid var(--border-faint);
  color: inherit;
}
.content table tr:last-child td {
  border-bottom: none;
}
.content table tbody tr:hover {
  background-color: var(--bg-subtle);
}

.content blockquote {
  margin: 0;
  background: var(--bg-subtle);
  padding: 20px;
  border-radius: 10px;
  color: var(--text);
}
.content blockquote p {
  display: inline;
}
.content blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  font-style: normal;
  color: var(--text-muted);
}
.content blockquote.alert {
  padding: 0 14px 10px;
  border-radius: 6px;
  border: 1px solid;
  overflow: hidden;
  margin: 1.4rem 0;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.5;
}
.content blockquote.alert .alert-header {
  display: flex;
  align-items: center;
  gap: 3px;
  margin: 0 -14px 10px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.035);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  line-height: 1;
  filter: saturate(0.55);
}
.content blockquote.alert .alert-header .alert-icon {
  display: flex;
  align-items: center;
}
.content blockquote.alert .alert-header .alert-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  flex-shrink: 0;
}
.content blockquote.alert .alert-heading {
  display: block;
  margin: 0;
  font-weight: 500;
  font-size: 1em;
  text-transform: capitalize;
  line-height: 1;
}
.content blockquote.alert p {
  display: block;
  margin: 0;
  padding: 0;
}
.content blockquote.alert p + p {
  margin-top: 8px;
}
.content blockquote.alert.alert-note {
  border-color: rgb(157, 192.5, 250.5);
  background: rgba(59, 130, 246, 0.07);
}
.content blockquote.alert.alert-note .alert-header {
  color: #3b82f6;
}
.content blockquote.alert.alert-tip {
  border-color: rgb(144.5, 226, 174.5);
  background: rgba(34, 197, 94, 0.08);
}
.content blockquote.alert.alert-tip .alert-header {
  color: #16a34a;
}
.content blockquote.alert.alert-important {
  border-color: rgb(197, 173.5, 250.5);
  background: rgba(139, 92, 246, 0.08);
}
.content blockquote.alert.alert-important .alert-header {
  color: #8b5cf6;
}
.content blockquote.alert.alert-warning {
  border-color: rgb(250, 206.5, 133);
  background: rgba(245, 158, 11, 0.1);
}
.content blockquote.alert.alert-warning .alert-header {
  color: #b45309;
}
.content blockquote.alert.alert-caution {
  border-color: rgb(249.5, 159, 174.5);
  background: rgba(244, 63, 94, 0.07);
}
.content blockquote.alert.alert-caution .alert-header {
  color: #e11d48;
}
.content blockquote.alert.alert-pithy {
  border-color: rgb(134, 201.5, 195.5);
  background: rgba(13, 148, 136, 0.06);
}
.content blockquote.alert.alert-pithy .alert-header {
  color: #0d9488;
}
.content blockquote.alert.alert-definition {
  border-color: #ad84b1;
  background: rgba(91, 9, 99, 0.06);
}
.content blockquote.alert.alert-definition .alert-header {
  color: #5b0963;
}
.content blockquote.alert.alert-problem {
  border-color: rgb(233.5, 154, 141.5);
  background: rgba(212, 53, 28, 0.06);
}
.content blockquote.alert.alert-problem .alert-header {
  color: #d4351c;
}
.content blockquote.alert.alert-solution {
  border-color: rgb(139.5, 196.5, 134.5);
  background: rgba(24, 138, 14, 0.07);
}
.content blockquote.alert.alert-solution .alert-header {
  color: #188a0e;
}
.content blockquote.alert.alert-question {
  border-color: rgb(127.5, 162, 210);
  background: rgba(0, 0, 0, 0.03);
}
.content blockquote.alert.alert-question .alert-header {
  color: rgb(0, 69, 165);
}
.content blockquote.alert.alert-answer {
  border-color: rgb(139.5, 196.5, 134.5);
  background: none;
}
.content blockquote.alert.alert-answer .alert-header {
  color: #188a0e;
}
.content blockquote.alert.alert-question:has(+ .alert-answer), .content blockquote.alert.alert-question + .alert-answer {
  border: 1px solid #d1d5db;
}
.content blockquote.alert.alert-question:has(+ .alert-answer) {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0;
  padding-bottom: 12px;
}
.content blockquote.alert.alert-question + .alert-answer {
  background: none;
  border-radius: 0 0 6px 6px;
  margin-top: 0;
  padding-top: 12px;
}
.content blockquote.alert.alert-question + .alert-answer .alert-header {
  display: none;
}
.content blockquote.alert.alert-pros, .content blockquote.alert.alert-cons {
  border-radius: 6px;
}
.content blockquote.alert.alert-pros ul, .content blockquote.alert.alert-cons ul {
  margin: 0;
  padding-left: 1.4em;
  list-style: none;
}
.content blockquote.alert.alert-pros li, .content blockquote.alert.alert-cons li {
  position: relative;
}
.content blockquote.alert.alert-pros li::before, .content blockquote.alert.alert-cons li::before {
  position: absolute;
  left: -1.35em;
  top: 0.15em;
  font-size: 0.75em;
  line-height: 1.4;
}
.content blockquote.alert.alert-pros {
  border-color: rgb(139.5, 196.5, 134.5);
  background: rgba(24, 138, 14, 0.06);
}
.content blockquote.alert.alert-pros .alert-header {
  color: #188a0e;
}
.content blockquote.alert.alert-pros li::before {
  content: "+";
  color: #188a0e;
}
.content blockquote.alert.alert-cons {
  border-color: rgb(233.5, 154, 141.5);
  background: rgba(212, 53, 28, 0.06);
}
.content blockquote.alert.alert-cons .alert-header {
  color: #d4351c;
}
.content blockquote.alert.alert-cons li::before {
  content: "−";
  color: #d4351c;
}
[data-theme=dark] .content blockquote.alert .alert-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
[data-theme=dark] .content blockquote.alert.alert-note {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-note .alert-header {
  color: rgb(127.6, 173.75, 249.15);
}
[data-theme=dark] .content blockquote.alert.alert-tip {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-tip .alert-header {
  color: rgb(111.35, 217.3, 150.35);
}
[data-theme=dark] .content blockquote.alert.alert-important {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-important .alert-header {
  color: rgb(179.6, 149.05, 249.15);
}
[data-theme=dark] .content blockquote.alert.alert-warning {
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(245, 158, 11, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-warning .alert-header {
  color: rgb(248.5, 191.95, 96.4);
}
[data-theme=dark] .content blockquote.alert.alert-caution {
  border-color: rgba(244, 63, 94, 0.45);
  background: rgba(244, 63, 94, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-caution .alert-header {
  color: rgb(247.85, 130.2, 150.35);
}
[data-theme=dark] .content blockquote.alert.alert-pithy {
  border-color: rgba(13, 148, 136, 0.45);
  background: rgba(13, 148, 136, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-pithy .alert-header {
  color: rgb(97.7, 185.45, 177.65);
}
[data-theme=dark] .content blockquote.alert.alert-definition {
  border-color: rgba(91, 9, 99, 0.45);
  background: rgba(91, 9, 99, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-definition .alert-header {
  color: rgb(148.4, 95.1, 153.6);
}
[data-theme=dark] .content blockquote.alert.alert-problem {
  border-color: rgba(212, 53, 28, 0.45);
  background: rgba(212, 53, 28, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-problem .alert-header {
  color: rgb(227.05, 123.7, 107.45);
}
[data-theme=dark] .content blockquote.alert.alert-solution {
  border-color: rgba(24, 138, 14, 0.45);
  background: rgba(24, 138, 14, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-solution .alert-header {
  color: rgb(104.85, 178.95, 98.35);
}
[data-theme=dark] .content blockquote.alert.alert-question {
  border-color: rgba(0, 69, 165, 0.55);
  background: rgba(255, 255, 255, 0.03);
}
[data-theme=dark] .content blockquote.alert.alert-question .alert-header {
  color: rgb(127.5, 162, 210);
}
[data-theme=dark] .content blockquote.alert.alert-answer {
  border-color: rgba(24, 138, 14, 0.5);
}
[data-theme=dark] .content blockquote.alert.alert-answer .alert-header {
  color: rgb(116.4, 184.8, 110.4);
}
[data-theme=dark] .content blockquote.alert.alert-question:has(+ .alert-answer), [data-theme=dark] .content blockquote.alert.alert-question + .alert-answer {
  border-color: #3f3f46;
}
[data-theme=dark] .content blockquote.alert.alert-pros {
  border-color: rgba(24, 138, 14, 0.5);
  background: rgba(24, 138, 14, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-pros .alert-header {
  color: rgb(116.4, 184.8, 110.4);
}
[data-theme=dark] .content blockquote.alert.alert-pros li::before {
  color: rgb(116.4, 184.8, 110.4);
}
[data-theme=dark] .content blockquote.alert.alert-cons {
  border-color: rgba(212, 53, 28, 0.5);
  background: rgba(212, 53, 28, 0.12);
}
[data-theme=dark] .content blockquote.alert.alert-cons .alert-header {
  color: rgb(229.2, 133.8, 118.8);
}
[data-theme=dark] .content blockquote.alert.alert-cons li::before {
  color: rgb(229.2, 133.8, 118.8);
}
.content .pros-cons {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin: 1.1rem 0;
}
.content .pros-cons > blockquote.alert {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
}
@media (max-width: 640px) {
  .content .pros-cons {
    flex-direction: column;
  }
}

.content blockquote.comment {
  margin: 1.2rem 0;
  padding: 10px 14px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.content blockquote.comment .comment-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg-inset);
  color: var(--text-muted);
}
.content blockquote.comment .comment-avatar svg {
  width: 13px;
  height: 13px;
  display: block;
}
.content blockquote.comment .comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 6px;
  padding: 0;
  line-height: 1.2;
}
.content blockquote.comment .comment-author {
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text);
}
.content blockquote.comment .comment-source {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
}
.content blockquote.comment a.comment-source:hover {
  text-decoration: underline;
}
.content blockquote.comment .comment-text {
  margin-left: 30px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text);
}
.content blockquote.comment .comment-text p {
  display: block;
  margin: 0;
  padding: 0;
}
.content blockquote.comment .comment-text p + p {
  margin-top: 5px;
}

.tags {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  gap: 4px;
  border: 1px solid transparent;
  padding: 2px 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s;
  text-transform: lowercase;
  font-size: 0.75rem;
}
.tag:nth-child(6n+1) {
  background-color: #dbeafe;
  border-color: #bfdbfe;
  color: #1e40af;
}
.tag:nth-child(6n+1):hover {
  background-color: #bfdbfe;
}
.tag:nth-child(6n+2) {
  background-color: #ffe4e6;
  border-color: #fecdd3;
  color: #9f1239;
}
.tag:nth-child(6n+2):hover {
  background-color: #fecdd3;
}
.tag:nth-child(6n+3) {
  background-color: #dcfce7;
  border-color: #bbf7d0;
  color: #166534;
}
.tag:nth-child(6n+3):hover {
  background-color: #bbf7d0;
}
.tag:nth-child(6n+4) {
  background-color: #f3e8ff;
  border-color: #e9d5ff;
  color: #6b21a8;
}
.tag:nth-child(6n+4):hover {
  background-color: #e9d5ff;
}
.tag:nth-child(6n+5) {
  background-color: #ffedd5;
  border-color: #fed7aa;
  color: #9a3412;
}
.tag:nth-child(6n+5):hover {
  background-color: #fed7aa;
}
.tag:nth-child(6n+6) {
  background-color: #ccfbf1;
  border-color: #99f6e4;
  color: #115e59;
}
.tag:nth-child(6n+6):hover {
  background-color: #99f6e4;
}
.tag svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

[data-theme=dark] .tag:nth-child(6n+1) {
  background-color: rgba(191, 219, 254, 0.14);
  border-color: rgba(191, 219, 254, 0.35);
  color: #bfdbfe;
}
[data-theme=dark] .tag:nth-child(6n+1):hover {
  background-color: rgba(191, 219, 254, 0.25);
}
[data-theme=dark] .tag:nth-child(6n+2) {
  background-color: rgba(254, 205, 211, 0.14);
  border-color: rgba(254, 205, 211, 0.35);
  color: #fecdd3;
}
[data-theme=dark] .tag:nth-child(6n+2):hover {
  background-color: rgba(254, 205, 211, 0.25);
}
[data-theme=dark] .tag:nth-child(6n+3) {
  background-color: rgba(187, 247, 208, 0.14);
  border-color: rgba(187, 247, 208, 0.35);
  color: #bbf7d0;
}
[data-theme=dark] .tag:nth-child(6n+3):hover {
  background-color: rgba(187, 247, 208, 0.25);
}
[data-theme=dark] .tag:nth-child(6n+4) {
  background-color: rgba(233, 213, 255, 0.14);
  border-color: rgba(233, 213, 255, 0.35);
  color: #e9d5ff;
}
[data-theme=dark] .tag:nth-child(6n+4):hover {
  background-color: rgba(233, 213, 255, 0.25);
}
[data-theme=dark] .tag:nth-child(6n+5) {
  background-color: rgba(254, 215, 170, 0.14);
  border-color: rgba(254, 215, 170, 0.35);
  color: #fed7aa;
}
[data-theme=dark] .tag:nth-child(6n+5):hover {
  background-color: rgba(254, 215, 170, 0.25);
}
[data-theme=dark] .tag:nth-child(6n+6) {
  background-color: rgba(153, 246, 228, 0.14);
  border-color: rgba(153, 246, 228, 0.35);
  color: #99f6e4;
}
[data-theme=dark] .tag:nth-child(6n+6):hover {
  background-color: rgba(153, 246, 228, 0.25);
}

.breadcrumb {
  font-size: 10px;
  color: var(--text-faint);
  margin-bottom: 6px;
  margin-top: 6px;
}
.breadcrumb a {
  color: var(--text-faint);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--text);
}

.breadcrumb-sep {
  margin: 0 4px;
}

.page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.page-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-secondary);
}
.page-nav a:hover {
  color: var(--text-strong);
}
.page-nav a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.page-nav .page-nav-next {
  margin-left: auto;
}

.page-edit-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.page-edit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--icon-muted);
  text-decoration: none;
}
.page-edit svg {
  width: 11px;
  height: 11px;
}
.page-edit:hover {
  color: var(--text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card {
    height: auto;
    min-height: 96px;
    padding: 14px;
  }
  .card-title {
    font-size: 0.95rem;
  }
  .card-summary {
    font-size: 0.85rem;
  }
  .card-tag {
    font-size: 0.72rem;
  }
}
.card {
  height: 80px;
  display: block;
  padding: 14px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  background: var(--bg);
  transition: border-color 0.15s, background 0.15s;
}
.card:hover {
  border-color: var(--accent);
  text-decoration: none !important;
}

.card-title {
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 4px;
  color: var(--text-strong);
}

.card-summary {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 5px;
}

.card-tag {
  font-size: 0.65rem;
  background: var(--bg-inset);
  color: var(--text-secondary);
  border-radius: 3px;
  padding: 1px 5px;
}

.footer {
  padding: 16px 40px;
  font-size: 0.85rem;
  color: var(--text-faint);
  border-top: 1px solid var(--border);
  text-align: center;
}