@charset "UTF-8";
:root {
  color-scheme: light;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji";
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
               "Liberation Mono", monospace;
  --text-size: 1.0625rem;
  --line-height: 1.7;
  --content-width: 720px;
  --gutter: 1.5rem;
  --bg: #fdfdfc;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --faint: #8f8f8f;
  --border: #e4e2dd;
  --surface: #f6f5f2;
  --accent: #2d5f8b;
  --accent-hover: #1c3f60;
  --selection: #d8e6f2;
  --lift-shadow: 0 6px 20px rgba(28, 28, 28, 0.07);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) {
    color-scheme: dark;
    --bg: #15171a;
    --text: #e4e2df;
    --muted: #9b9a96;
    --faint: #7d7c78;
    --border: #2b2e33;
    --surface: #1d2025;
    --accent: #82b3dd;
    --accent-hover: #a9cdec;
    --selection: #2a3f52;
    --lift-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  }
}
:root[data-theme=dark] {
  color-scheme: dark;
  --bg: #15171a;
  --text: #e4e2df;
  --muted: #9b9a96;
  --faint: #7d7c78;
  --border: #2b2e33;
  --surface: #1d2025;
  --accent: #82b3dd;
  --accent-hover: #a9cdec;
  --selection: #2a3f52;
  --lift-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--text-size);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.011em;
}

p, ul, ol, blockquote, pre, table {
  margin: 0 0 1.15em;
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.12s ease, border-color 0.12s ease;
}
a:hover {
  color: var(--accent-hover);
  border-bottom-color: currentColor;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

code, pre {
  font-family: var(--font-mono);
  font-size: 0.875em;
}

code {
  background: var(--surface);
  padding: 0.15em 0.35em;
  border-radius: 4px;
}

pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}

blockquote {
  border-left: 3px solid var(--border);
  padding-left: 1rem;
  margin-left: 0;
  color: var(--muted);
}

table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
table th, table td {
  border: 1px solid var(--border);
  padding: 0.5rem 0.7rem;
  text-align: left;
}
table th {
  background: var(--surface);
  font-weight: 600;
}

ul, ol {
  padding-left: 1.4em;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.site-main {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Nav */
.site-nav {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1.75rem var(--gutter) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
}

.site-nav__name {
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.012em;
}
.site-nav__name:hover {
  color: var(--accent);
  border-bottom-color: transparent;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 0.4rem 1.1rem;
  flex-wrap: wrap;
}

.site-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  font-size: 0.9375rem;
}
.site-nav__links a {
  color: var(--muted);
}
.site-nav__links a:hover {
  color: var(--accent);
}
.site-nav__links a[aria-current=page] {
  color: var(--text);
}

/* Theme toggle */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease, background-color 0.12s ease;
}
.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface);
}

.theme-toggle__icon {
  display: block;
}

.theme-toggle__sun {
  display: none;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .theme-toggle__moon {
    display: none;
  }
  :root:not([data-theme=light]) .theme-toggle__sun {
    display: block;
  }
}
:root[data-theme=dark] .theme-toggle__moon {
  display: none;
}
:root[data-theme=dark] .theme-toggle__sun {
  display: block;
}

/* Link row — hero, footer, and publication links all share this */
.link-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.9rem;
  font-size: 0.9375rem;
}
.link-row li + li::before {
  content: "·";
  color: var(--faint);
  margin-right: 0.9rem;
}

.link-row--tight {
  font-size: 0.875rem;
  margin-top: 0.6rem;
}

.link-row--icons {
  align-items: center;
  gap: 0.4rem 1.1rem;
}
.link-row--icons li + li::before {
  content: none;
}
.link-row--icons a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem;
  margin: -0.45rem;
}
.link-row--icons .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.icon {
  width: 1em;
  height: 1em;
  flex: none;
}

/* Footer */
.site-footer {
  max-width: var(--content-width);
  margin: 4rem auto 0;
  padding: 1.75rem var(--gutter) 3rem;
  border-top: 1px solid var(--border);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--faint);
}
.site-footer__meta a {
  color: var(--faint);
}
.site-footer__meta a:hover {
  color: var(--accent);
}

/* Generic pages */
.page__header {
  margin: 3rem 0 2rem;
}

.page__title {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.page__subtitle {
  margin: 0;
  color: var(--muted);
}

.hero {
  margin: 3rem 0 1rem;
}

.hero__photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.hero__name {
  font-size: 2rem;
  margin-bottom: 0.15rem;
}

.hero__tagline {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.0625rem;
}

/* Sections */
.section {
  margin: 3.25rem 0;
  scroll-margin-top: 1.5rem;
}

.section__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.09em;
  color: var(--faint);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* Research */
.pub-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Research filter */
.pub-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
}

.pub-filter__btn {
  font: inherit;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--faint);
  background: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}
.pub-filter__btn:hover {
  color: var(--text);
}
.pub-filter__btn.is-active {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border);
}
.pub-filter__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.pub[hidden] {
  display: none;
}

.pub {
  padding: 1rem 1.15rem;
  margin: 0 -1.15rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.pub:last-child {
  margin-bottom: 0;
}

@media (hover: hover) {
  .pub:hover,
  .pub:focus-within {
    background: var(--surface);
    border-color: var(--border);
    box-shadow: var(--lift-shadow);
    transform: translateY(-2px);
  }
}
.pub:focus-within {
  background: var(--surface);
  border-color: var(--border);
}

@media (prefers-reduced-motion: reduce) {
  .pub,
  .pub-filter__btn {
    transition: none;
  }
  .pub:hover,
  .pub:focus-within {
    transform: none;
  }
}
.pub--with-thumb {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.pub__thumb img {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: block;
}

.pub__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.pub__star {
  color: #d9a441;
}

.pub__authors {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  color: var(--muted);
}
.pub__authors strong {
  color: var(--text);
  font-weight: 600;
}

.pub__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--faint);
}

.pub__status {
  text-transform: lowercase;
}
.pub__status--published {
  color: var(--accent);
}
.pub__status--ongoing {
  color: #b0821f;
}
.pub__status--preprint {
  color: var(--muted);
}

.pub__summary {
  margin: 0.6rem 0 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.pub-list__intro {
  margin: 0 0 1.75rem;
}

.pub-list__more {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.pub-list__note {
  margin: 0.3rem 0 0;
  font-size: 0.8125rem;
  color: var(--faint);
}

/* News */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0 1rem;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  align-items: baseline;
}

.news__date {
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.news__kind {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
  margin-right: 0.35rem;
  vertical-align: 0.08em;
}

@media (max-width: 30rem) {
  .pub--with-thumb {
    grid-template-columns: 1fr;
  }
  .pub__thumb img {
    max-width: 180px;
  }
  .news {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
.post {
  margin-top: 2.5rem;
}

.post__back {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}
.post__back a {
  color: var(--muted);
}
.post__back a:hover {
  color: var(--accent);
}

.post__header {
  margin-bottom: 2rem;
}

.post__title {
  font-size: 1.875rem;
  margin-bottom: 0.4rem;
}

.post__meta {
  margin: 0;
  color: var(--faint);
  font-size: 0.875rem;
}

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

/* Long-form body copy */
.prose h2 {
  font-size: 1.375rem;
  margin-top: 2.25rem;
}
.prose h3 {
  font-size: 1.125rem;
  margin-top: 1.75rem;
}
.prose li {
  margin-bottom: 0.35em;
}
.prose img {
  display: block;
  margin: 1.75rem auto;
  border-radius: 6px;
}
.prose mjx-container[display=true] {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0;
}

/* Clickable heading anchors -- injected by the script in _layouts/post.html.
   Kept out of the way until the heading is hovered or the link is focused. */
.heading-anchor {
  margin-left: 0.35em;
  color: var(--faint);
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.12s ease, color 0.12s ease;
}
.heading-anchor, .heading-anchor:hover {
  border-bottom-color: transparent;
}
.heading-anchor:hover {
  color: var(--accent);
}
.heading-anchor:focus-visible {
  opacity: 1;
}

.prose :is(h2, h3, h4, h5, h6):hover .heading-anchor {
  opacity: 1;
}

@media (hover: none) {
  .heading-anchor {
    opacity: 0.4;
  }
}
/* Table of contents — generated by kramdown's `{:toc}` marker.
   Depth is capped by `kramdown.toc_levels` in _config.yml. */
#markdown-toc {
  margin: 0 0 2.5rem;
  padding: 0.9rem 1.25rem;
  border-left: 2px solid var(--border);
  list-style: none;
  font-size: 0.9375rem;
  line-height: 1.5;
}
#markdown-toc ul {
  list-style: none;
  margin: 0.3em 0 0;
  padding-left: 1rem;
  font-size: 0.9375em;
}
#markdown-toc li {
  margin-bottom: 0.35em;
}
#markdown-toc a {
  color: var(--muted);
  border-bottom-color: transparent;
}
#markdown-toc a:hover {
  color: var(--accent);
}

/* Reference list — numbered, with a hanging indent so wrapped lines
   line up under the citation text rather than under the number. */
.references {
  font-size: 0.9375rem;
  line-height: 1.5;
  padding-left: 2.2em;
}
.references li {
  margin-bottom: 0.6em;
  padding-left: 0.25em;
}
.references li:has(:target) {
  background-color: var(--selection);
  border-radius: 3px;
  box-shadow: 0 0 0 0.35em var(--selection);
}

/* Figures -- rendered by _includes/figure.html.

   The matplotlib SVGs carry an opaque white background and black axis text,
   so on the dark theme they would otherwise read as a bare white slab. The
   card treatment (white plate, padding, border) makes that white deliberate
   in both themes without needing a second dark export of every chart. */
.figure {
  margin: 2rem 0;
}

.figure__media {
  display: block;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: #ffffff;
}
.figure__media, .figure__media:hover {
  border-bottom: 1px solid var(--border);
}
.figure__media:hover {
  border-color: var(--accent);
}
.figure__media img {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
}

.figure__caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}
.figure__caption p {
  margin: 0;
}
.figure__caption p + p {
  margin-top: 0.5em;
}

/* Multi-panel charts break out of the prose column. Capped against the
   viewport so the page itself never scrolls sideways. */
.figure--wide {
  width: min(1080px, 94vw);
  margin-left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 48rem) {
  .figure--wide {
    width: 100%;
    margin-left: 0;
    transform: none;
  }
}
/* Citation block -- rendered by _includes/citation.html on posts with
   `cite: true`. Sits below the post body, above the writing-index link. */
.cite {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.cite__heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 1rem;
}

.cite__block {
  position: relative;
  margin-bottom: 1rem;
}
.cite__block > pre {
  padding-right: 5rem;
  margin-bottom: 0;
}

.cite__bibtex {
  font-size: 0.8125rem;
  line-height: 1.55;
}

.cite__copy {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background-color: var(--bg);
  color: var(--muted);
  font: inherit;
  font-size: 0.75rem;
  line-height: 1.6;
  cursor: pointer;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.cite__copy:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.cite__copy.is-copied {
  color: var(--accent);
  border-color: var(--accent);
}

.cite__status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Writing index */
.post-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}

.post-list__year {
  margin-bottom: 2.25rem;
}

.post-list__year-heading {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--faint);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.post-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-list__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0 1rem;
  padding: 0.4rem 0;
  align-items: baseline;
}

.post-list__date {
  color: var(--faint);
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.post-list__feed {
  margin-top: 2.5rem;
  font-size: 0.9375rem;
}

@media (max-width: 30rem) {
  .post-list__item {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}
/* Callout boxes — used by posts via {% include custom-box.html %} */
.custom-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 1.75rem 0;
  overflow: hidden;
  background-color: var(--surface);
}

.custom-box-header {
  background-color: var(--selection);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.custom-box-body {
  padding: 1rem 1rem 0.1rem;
}

.highlight .c, .highlight .cm, .highlight .c1, .highlight .cs, .highlight .cd {
  color: var(--faint);
  font-style: italic;
}
.highlight .k, .highlight .kc, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt {
  color: #a626a4;
  font-weight: 600;
}
.highlight .s, .highlight .s1, .highlight .s2, .highlight .sb, .highlight .sc, .highlight .sd, .highlight .se, .highlight .sh, .highlight .si, .highlight .sx, .highlight .sr {
  color: #50a14f;
}
.highlight .m, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .mo, .highlight .il {
  color: #986801;
}
.highlight .nf, .highlight .nc, .highlight .nn {
  color: #4078f2;
}
.highlight .nb, .highlight .bp {
  color: #0184bc;
}
.highlight .o, .highlight .ow {
  color: var(--text);
}
.highlight .err {
  color: #e45649;
}
.highlight .gd {
  color: #e45649;
}
.highlight .gi {
  color: #50a14f;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme=light]) .highlight .k, :root:not([data-theme=light]) .highlight .kc, :root:not([data-theme=light]) .highlight .kd, :root:not([data-theme=light]) .highlight .kn, :root:not([data-theme=light]) .highlight .kp, :root:not([data-theme=light]) .highlight .kr, :root:not([data-theme=light]) .highlight .kt {
    color: #c678dd;
  }
  :root:not([data-theme=light]) .highlight .s, :root:not([data-theme=light]) .highlight .s1, :root:not([data-theme=light]) .highlight .s2, :root:not([data-theme=light]) .highlight .sb, :root:not([data-theme=light]) .highlight .sc, :root:not([data-theme=light]) .highlight .sd, :root:not([data-theme=light]) .highlight .se, :root:not([data-theme=light]) .highlight .sh, :root:not([data-theme=light]) .highlight .si, :root:not([data-theme=light]) .highlight .sx, :root:not([data-theme=light]) .highlight .sr {
    color: #98c379;
  }
  :root:not([data-theme=light]) .highlight .m, :root:not([data-theme=light]) .highlight .mf, :root:not([data-theme=light]) .highlight .mh, :root:not([data-theme=light]) .highlight .mi, :root:not([data-theme=light]) .highlight .mo, :root:not([data-theme=light]) .highlight .il {
    color: #d19a66;
  }
  :root:not([data-theme=light]) .highlight .nf, :root:not([data-theme=light]) .highlight .nc, :root:not([data-theme=light]) .highlight .nn {
    color: #61afef;
  }
  :root:not([data-theme=light]) .highlight .nb, :root:not([data-theme=light]) .highlight .bp {
    color: #56b6c2;
  }
  :root:not([data-theme=light]) .highlight .err, :root:not([data-theme=light]) .highlight .gd {
    color: #e06c75;
  }
  :root:not([data-theme=light]) .highlight .gi {
    color: #98c379;
  }
}
:root[data-theme=dark] .highlight .k, :root[data-theme=dark] .highlight .kc, :root[data-theme=dark] .highlight .kd, :root[data-theme=dark] .highlight .kn, :root[data-theme=dark] .highlight .kp, :root[data-theme=dark] .highlight .kr, :root[data-theme=dark] .highlight .kt {
  color: #c678dd;
}
:root[data-theme=dark] .highlight .s, :root[data-theme=dark] .highlight .s1, :root[data-theme=dark] .highlight .s2, :root[data-theme=dark] .highlight .sb, :root[data-theme=dark] .highlight .sc, :root[data-theme=dark] .highlight .sd, :root[data-theme=dark] .highlight .se, :root[data-theme=dark] .highlight .sh, :root[data-theme=dark] .highlight .si, :root[data-theme=dark] .highlight .sx, :root[data-theme=dark] .highlight .sr {
  color: #98c379;
}
:root[data-theme=dark] .highlight .m, :root[data-theme=dark] .highlight .mf, :root[data-theme=dark] .highlight .mh, :root[data-theme=dark] .highlight .mi, :root[data-theme=dark] .highlight .mo, :root[data-theme=dark] .highlight .il {
  color: #d19a66;
}
:root[data-theme=dark] .highlight .nf, :root[data-theme=dark] .highlight .nc, :root[data-theme=dark] .highlight .nn {
  color: #61afef;
}
:root[data-theme=dark] .highlight .nb, :root[data-theme=dark] .highlight .bp {
  color: #56b6c2;
}
:root[data-theme=dark] .highlight .err, :root[data-theme=dark] .highlight .gd {
  color: #e06c75;
}
:root[data-theme=dark] .highlight .gi {
  color: #98c379;
}

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