@charset "UTF-8";
/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Variables used throughout the theme.
 * To adjust anything, simply edit the variables below and rebuild the theme.
 ******************************************************************************/
/* Your project partials — convert these files to `@use "variables";`
   (or `@use "variables" as *;`) inside each file and qualify variables if needed. */
/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Themes
 ******************************************************************************/
:root {
  color-scheme: light;
  --global-bg-color: #ffffff;
  --global-code-bg-color: rgba(181, 9, 172, 0.05);
  --global-text-color: #000000;
  --global-text-color-light: #828282;
  --global-theme-color: #b509ac;
  --global-hover-color: #b509ac;
  --global-hover-text-color: #ffffff;
  --global-footer-bg-color: #1c1c1d;
  --global-footer-text-color: #e8e8e8;
  --global-footer-link-color: #ffffff;
  --global-distill-app-color: #828282;
  --global-divider-color: rgba(0, 0, 0, 0.1);
  --global-card-bg-color: #ffffff;
  --global-highlight-color: #b71c1c;
  --global-back-to-top-bg-color: rgba(
    0,
    0,
    0,
    0.4
  );
  --global-back-to-top-text-color: #ffffff;
  --global-newsletter-bg-color: #ffffff;
  --global-newsletter-text-color: #000000;
  --global-tip-block: #42b983;
  --global-tip-block-bg: #e2f5ec;
  --global-tip-block-text: #215d42;
  --global-tip-block-title: #359469;
  --global-warning-block: #e7c000;
  --global-warning-block-bg: #fff8d8;
  --global-warning-block-text: #6b5900;
  --global-warning-block-title: #b29400;
  --global-danger-block: #c00;
  --global-danger-block-bg: #ffe0e0;
  --global-danger-block-text: #600;
  --global-danger-block-title: #c00;
}
:root #light-toggle-system {
  display: inline-block;
}
:root #light-toggle-dark {
  display: none;
}
:root #light-toggle-light {
  display: none;
}
:root .only-light {
  display: block;
}
:root .only-dark {
  display: none;
}
:root #back-to-top {
  color: var(--global-back-to-top-text-color);
  background: var(--global-back-to-top-bg-color);
  bottom: 30px;
  right: 30px;
  height: 40px;
  width: 40px;
  z-index: 10;
}

html[data-theme=dark] {
  color-scheme: dark;
  --global-bg-color: #1c1c1d;
  --global-code-bg-color: #2c3237;
  --global-text-color: #e8e8e8;
  --global-text-color-light: #828282;
  --global-theme-color: #2698ba;
  --global-hover-color: #2698ba;
  --global-hover-text-color: #ffffff;
  --global-footer-bg-color: #e8e8e8;
  --global-footer-text-color: #1c1c1d;
  --global-footer-link-color: #000000;
  --global-distill-app-color: #e8e8e8;
  --global-divider-color: #424246;
  --global-card-bg-color: #212529;
  --global-back-to-top-bg-color: rgba(
    255,
    255,
    255,
    0.5
  );
  --global-back-to-top-text-color: #000000;
  --global-newsletter-bg-color: #e8e8e8;
  --global-newsletter-text-color: #1c1c1d;
  --global-tip-block: #42b983;
  --global-tip-block-bg: #215d42;
  --global-tip-block-text: #beffe2;
  --global-tip-block-title: #e2f5ec;
  --global-warning-block: #e7c000;
  --global-warning-block-bg: #6b5900;
  --global-warning-block-text: #fff2af;
  --global-warning-block-title: #fff8d8;
  --global-danger-block: #c00;
  --global-danger-block-bg: #600;
  --global-danger-block-text: #ffb9b9;
  --global-danger-block-title: #ffe0e0;
}
html[data-theme=dark] .only-light {
  display: none;
}
html[data-theme=dark] .only-dark {
  display: block;
}

html[data-theme-setting=dark] #light-toggle-system {
  display: none;
}
html[data-theme-setting=dark] #light-toggle-dark {
  display: inline-block;
}
html[data-theme-setting=dark] #light-toggle-light {
  display: none;
}
html[data-theme-setting=dark] #back-to-top {
  color: var(--global-back-to-top-text-color);
  background: var(--global-back-to-top-bg-color);
}

html[data-theme-setting=light] #light-toggle-system {
  display: none;
}
html[data-theme-setting=light] #light-toggle-dark {
  display: none;
}
html[data-theme-setting=light] #light-toggle-light {
  display: inline-block;
}

.fa-half-sun-moon {
  position: relative;
  display: inline-block;
  --fa-font: var(--fa-font-solid);
  speak: none;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 1em;
  height: 1em;
}

.fa-half-sun-moon::before,
.fa-half-sun-moon::after {
  content: "";
  position: absolute;
  inset: 0;
  top: -0.5px;
  bottom: -0.5px;
  text-align: center;
  line-height: 1em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  font: var(--fa-font);
}

/* Left half: MOON */
.fa-half-sun-moon::before {
  content: "\f111";
  color: var(--global-text-color);
  clip-path: polygon(0 0, calc(50% - 0.5px) 0, calc(50% - 0.5px) 100%, 0 100%);
}

/* Right half: SUN */
.fa-half-sun-moon::after {
  content: "\f185";
  color: var(--global-text-color);
  clip-path: polygon(calc(50% + 0.5px) 0, 100% 0, 100% 100%, calc(50% + 0.5px) 100%);
  right: -1.5px; /* slight overflow to avoid right-edge clipping */
  transform: translateX(-1px); /* visually re-center the sun half */
}

#light-toggle:hover .fa-half-sun-moon::before {
  color: var(--global-theme-color);
}

#light-toggle:hover .fa-half-sun-moon::after {
  color: var(--global-theme-color);
}

/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/******************************************************************************
 * Content
 ******************************************************************************/
body {
  padding-bottom: 70px;
  color: var(--global-text-color);
  background-color: var(--global-bg-color);
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  scroll-margin-top: 66px;
}

body.fixed-top-nav {
  padding-top: 57px;
}

body.sticky-bottom-footer {
  padding-bottom: 0;
}

.container {
  max-width: 980px;
}

.profile img {
  width: 100%;
}

/******************************************************************************
 * Publications
 ******************************************************************************/
/*****************************************************************************
* Projects
*****************************************************************************/
/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Typography styles: Headings, text, links, tables, blockquotes
 ******************************************************************************/
p,
h1,
h2,
h3,
h4,
h5,
h6,
em,
div,
li,
span,
strong {
  color: var(--global-text-color);
}

hr {
  border-top: 1px solid var(--global-divider-color);
}

table:not(.table) td,
table:not(.table) th {
  font-size: 1rem;
  padding: 0.45rem 1rem 0.45rem 0;
  border-top: 1px solid var(--global-divider-color);
}
table:not(.table) th {
  font-weight: 600;
}

a,
table.table a {
  color: var(--global-theme-color);
}
a:hover,
table.table a:hover {
  color: var(--global-theme-color);
  text-decoration: underline;
}
a:hover:after :not(.nav-item.dropdown),
table.table a:hover:after :not(.nav-item.dropdown) {
  width: 100%;
}

.table-dark {
  background-color: transparent;
}
.table-dark.table-bordered {
  border: 1px solid var(--global-divider-color) !important;
}

blockquote {
  background: var(--global-bg-color);
  border-left: 5px solid var(--global-theme-color);
  margin: 1.5em 0;
  padding: 1em;
  font-size: 1.2rem;
}
blockquote p {
  margin-bottom: 0;
}
blockquote {
  /* Tips, warnings, and dangers blockquotes */
}
blockquote.block-tip {
  border-color: var(--global-tip-block);
  background-color: var(--global-tip-block-bg);
}
blockquote.block-tip em,
blockquote.block-tip li,
blockquote.block-tip p,
blockquote.block-tip strong {
  color: var(--global-tip-block-text);
}
blockquote.block-tip a,
blockquote.block-tip h1,
blockquote.block-tip h2,
blockquote.block-tip h3,
blockquote.block-tip h4,
blockquote.block-tip h5,
blockquote.block-tip h6 {
  color: var(--global-tip-block-title);
}
blockquote.block-warning {
  border-color: var(--global-warning-block);
  background-color: var(--global-warning-block-bg);
}
blockquote.block-warning em,
blockquote.block-warning li,
blockquote.block-warning p,
blockquote.block-warning strong {
  color: var(--global-warning-block-text);
}
blockquote.block-warning a,
blockquote.block-warning h1,
blockquote.block-warning h2,
blockquote.block-warning h3,
blockquote.block-warning h4,
blockquote.block-warning h5,
blockquote.block-warning h6 {
  color: var(--global-warning-block-title);
}
blockquote.block-danger {
  border-color: var(--global-danger-block);
  background-color: var(--global-danger-block-bg);
}
blockquote.block-danger em,
blockquote.block-danger li,
blockquote.block-danger p,
blockquote.block-danger strong {
  color: var(--global-danger-block-text);
}
blockquote.block-danger a,
blockquote.block-danger h1,
blockquote.block-danger h2,
blockquote.block-danger h3,
blockquote.block-danger h4,
blockquote.block-danger h5,
blockquote.block-danger h6 {
  color: var(--global-danger-block-title);
}

/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Navigation bar and header customization
 ******************************************************************************/
.navbar {
  box-shadow: none;
  border-bottom: 1px solid var(--global-divider-color);
  background-color: var(--global-bg-color);
  opacity: 0.95;
}
.navbar .navbar-collapse-main {
  justify-content: flex-end;
  text-align: right;
}
.navbar .navbar-menu-list {
  margin-left: auto;
}

@media (max-width: 575.98px) {
  .navbar .navbar-toggler-main {
    margin-left: auto;
  }
  .navbar .navbar-collapse-main {
    text-align: left;
  }
  .navbar .navbar-menu-list {
    margin-left: 0;
    align-items: flex-start;
    width: 100%;
  }
}
.navbar .dropdown-menu,
.btn-group.dropdown .dropdown-menu {
  background-color: var(--global-bg-color);
  border: 1px solid var(--global-divider-color);
}
.navbar .dropdown-menu a:not(.active),
.btn-group.dropdown .dropdown-menu a:not(.active) {
  color: var(--global-text-color);
}
.navbar .dropdown-menu a:hover,
.btn-group.dropdown .dropdown-menu a:hover {
  color: var(--global-hover-color);
}
.navbar .dropdown-menu .dropdown-divider,
.btn-group.dropdown .dropdown-menu .dropdown-divider {
  border-top: 1px solid var(--global-divider-color) !important;
}

.dropdown-item {
  color: var(--global-text-color);
}
.dropdown-item:hover {
  color: var(--global-hover-color);
  background-color: var(--global-bg-color);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--global-hover-color);
  color: var(--global-hover-text-color) !important;
}
.dropdown-item.active:hover,
.dropdown-item:active:hover {
  color: var(--global-hover-text-color);
}

.navbar.navbar-light a:hover {
  text-decoration: none;
}
.navbar.navbar-light .navbar-brand {
  color: var(--global-text-color);
}
.navbar.navbar-light .navbar-nav .nav-item .nav-link {
  color: var(--global-text-color);
}
.navbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
  color: var(--global-hover-color);
}
.navbar.navbar-light .navbar-nav .nav-item.active > .nav-link {
  background-color: inherit;
  font-weight: bolder;
  color: var(--global-theme-color);
}
.navbar.navbar-light .navbar-nav .nav-item.active > .nav-link:hover {
  color: var(--global-hover-color);
}
.navbar.navbar-light .navbar-brand.social {
  padding-bottom: 0;
  padding-top: 0;
  font-size: 1.7rem;
}
.navbar.navbar-light .navbar-brand.social a img {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.5rem;
}
.navbar.navbar-light .navbar-brand.social a svg {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.5rem;
}
.navbar.navbar-light .navbar-brand.social a svg image {
  width: 1.7rem;
  height: 1.7rem;
}
.navbar.navbar-light .navbar-brand.social a i::before {
  color: var(--global-text-color);
  transition-property: all 0.2s ease-in-out;
}
.navbar.navbar-light .navbar-brand.social a:hover i::before {
  color: var(--global-theme-color);
}

.navbar-toggler .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--global-text-color);
  border-radius: 1px;
  margin-bottom: 4px;
  transition: all 0.2s;
}
.navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-toggler .middle-bar {
  opacity: 0;
}
.navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

#light-toggle {
  padding: 0;
  border: 0;
  background-color: inherit;
  color: var(--global-text-color);
  cursor: pointer;
  /* Fix footprint to prevent navbar shifting when icon changes */
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#light-toggle:hover {
  color: var(--global-hover-color);
}

@media (min-width: 576px) {
  #light-toggle {
    transform: translateY(4px);
  }
}
#search-toggle {
  padding: 0;
  border: 0;
  background-color: inherit;
  color: var(--global-text-color);
  cursor: pointer;
}
#search-toggle:hover {
  color: var(--global-hover-color);
}

/*******************************************************************************
 * Footer styles
 ******************************************************************************/
footer.fixed-bottom {
  background-color: var(--global-footer-bg-color);
  font-size: 0.75rem;
}
footer.fixed-bottom .container {
  color: var(--global-footer-text-color);
  padding-top: 9px;
  padding-bottom: 8px;
  text-align: center;
}
footer.fixed-bottom a {
  color: var(--global-footer-link-color);
}
footer.fixed-bottom a:hover {
  color: var(--global-theme-color);
  text-decoration: none;
}

footer.sticky-bottom {
  border-top: 1px solid var(--global-divider-color);
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 0.9rem;
}
footer.sticky-bottom .container {
  text-align: center;
}

/*******************************************************************************
 * Blog post and listing styles
 ******************************************************************************/
.header-bar {
  border-bottom: 1px solid var(--global-divider-color);
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.header-bar h1 {
  color: var(--global-theme-color);
  font-size: 5rem;
}

.tag-category-list {
  border-bottom: 1px solid var(--global-divider-color);
  text-align: center;
  padding-top: 1rem;
}
.tag-category-list ul {
  justify-content: center;
  display: flow-root;
}
.tag-category-list ul p,
.tag-category-list ul li {
  list-style: none;
  display: inline-block;
  padding: 1rem 0.5rem;
  color: var(--global-text-color-light);
}

.post-title mjx-container[jax=CHTML][display=true] {
  display: unset;
}

.post-list {
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
}
.post-list li {
  border-bottom: 1px solid var(--global-divider-color);
  list-style: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.post-list li .post-meta {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.post-list li .post-tags {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  padding-top: 0.25rem;
  padding-bottom: 0;
}
.post-list li a {
  color: var(--global-text-color);
  text-decoration: none;
}
.post-list li a:hover {
  color: var(--global-theme-color);
}
.post-list li mjx-container[jax=CHTML][display=true] {
  display: unset;
}

.af-pagination,
.pagination {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  list-style: none;
}

.af-page-link,
.pagination .page-link {
  position: relative;
  display: block;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--global-text-color);
  background-color: var(--global-bg-color);
  border: 1px solid var(--global-divider-color);
  padding: 0.75rem 1.15rem;
}
.af-page-link:hover,
.pagination .page-link:hover {
  color: #000;
  text-decoration: none;
  background-color: color-mix(in srgb, var(--global-theme-color) 10%, transparent);
}

.af-page-item:first-child .af-page-link,
.pagination .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.af-page-item:last-child .af-page-link,
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.af-page-item.active .af-page-link,
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: var(--global-theme-color);
  border-color: var(--global-theme-color);
}
.af-page-item.active .af-page-link:hover,
.pagination .page-item.active .page-link:hover {
  background-color: var(--global-theme-color);
}

.af-page-item.disabled .af-page-link,
.pagination .page-item.disabled .page-link {
  color: var(--global-text-color-light);
  pointer-events: none;
  background-color: var(--global-bg-color);
}

.post .post-meta {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  margin-bottom: 0;
}
.post .post-tags {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  padding-top: 0.25rem;
  padding-bottom: 1rem;
}
.post .post-tags a {
  color: var(--global-text-color-light);
  text-decoration: none;
}
.post .post-tags a:hover {
  color: var(--global-theme-color);
}

.featured-posts a {
  color: var(--global-text-color-light);
  text-decoration: none;
}
.featured-posts a .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.featured-posts a:hover {
  color: var(--global-theme-color);
}
.featured-posts a:hover .card-title {
  color: var(--global-theme-color);
}
.featured-posts .post-meta {
  color: var(--global-text-color-light);
  font-size: 0.875rem;
  margin-bottom: 0;
  padding-top: 0.5rem;
}

.post-description {
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
.post-description a {
  color: inherit;
}
.post-description a:hover {
  color: var(--global-theme-color);
  text-decoration: none;
}

/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Publication and bibliography styles
 ******************************************************************************/
.publications {
  margin-top: 2rem;
}
.publications h1 {
  color: var(--global-theme-color);
  font-size: 2rem;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
.publications h2 {
  margin-bottom: 1rem;
}
.publications h2 span {
  font-size: 1.5rem;
}
.publications h2.bibliography {
  color: var(--global-divider-color);
  border-top: 1px solid var(--global-divider-color);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: right;
}
.publications ol.bibliography {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.publications ol.bibliography li {
  margin-bottom: 1rem;
}
.publications ol.bibliography li .preview {
  display: inline-block;
}
.publications ol.bibliography li .abbr {
  margin-bottom: 0.5rem;
}
.publications ol.bibliography li .abbr abbr {
  display: inline-block;
  background-color: var(--global-theme-color);
  margin-bottom: 0.5rem;
  color: var(--global-card-bg-color) !important;
}
.publications ol.bibliography li .abbr abbr a {
  color: white;
}
.publications ol.bibliography li .abbr abbr a:hover {
  text-decoration: none;
}
.publications ol.bibliography li .abbr .award {
  color: var(--global-theme-color) !important;
  border: 1px solid var(--global-theme-color);
}
.publications ol.bibliography li .title {
  font-weight: bolder;
}
.publications ol.bibliography li .author a {
  border-bottom: 1px dashed var(--global-theme-color);
}
.publications ol.bibliography li .author a:hover {
  border-bottom-style: solid;
  text-decoration: none;
}
.publications ol.bibliography li .author > em {
  border-bottom: 1px solid;
  font-style: normal;
}
.publications ol.bibliography li .author > span.more-authors {
  color: var(--global-text-color-light);
  border-bottom: 1px dashed var(--global-text-color-light);
  cursor: pointer;
}
.publications ol.bibliography li .author > span.more-authors:hover {
  color: var(--global-text-color);
  border-bottom: 1px dashed var(--global-text-color);
}
.publications ol.bibliography li .links a.btn {
  color: var(--global-text-color);
  border: 1px solid var(--global-text-color);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  margin-left: 0;
}
.publications ol.bibliography li .links a.btn:hover {
  color: var(--global-theme-color);
  border-color: var(--global-theme-color);
}
.publications ol.bibliography li .links a.award.btn {
  border-color: var(--global-highlight-color);
}
.publications ol.bibliography li .badges {
  padding-bottom: 0.5rem;
}
.publications ol.bibliography li .badges span {
  display: inline-block;
  color: #000000;
  height: 100%;
  padding-right: 0.5rem;
  vertical-align: middle;
}
.publications ol.bibliography li .badges span:hover {
  text-decoration: underline;
}
.publications ol.bibliography li .hidden {
  font-size: 0.875rem;
  max-height: 0px;
  overflow: hidden;
  text-align: justify;
  transition-property: 0.15s ease;
  -moz-transition: 0.15s ease;
  -ms-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: all 0.15s ease;
}
.publications ol.bibliography li .hidden p {
  line-height: 1.4em;
  margin: 10px;
}
.publications ol.bibliography li .hidden pre {
  font-size: 1em;
  line-height: 1.4em;
  padding: 10px;
}
.publications ol.bibliography li .hidden.open {
  max-height: 100em;
  transition-property: 0.15s ease;
  -moz-transition: 0.15s ease;
  -ms-transition: 0.15s ease;
  -o-transition: 0.15s ease;
  transition: all 0.15s ease;
}
.publications ol.bibliography li div.abstract.hidden {
  border: dashed 1px var(--global-bg-color);
}
.publications ol.bibliography li div.abstract.hidden.open {
  border-color: var(--global-text-color);
}
.publications ol.bibliography div.award.hidden {
  border: dashed 1px var(--global-bg-color);
}
.publications ol.bibliography div.award.hidden.open {
  border-color: var(--global-highlight-color);
}

.citation,
.citation-number {
  color: var(--global-theme-color);
}

/*******************************************************************************
 * Reusable component styles: Cards, captions, profiles, etc.
 ******************************************************************************/
ul.task-list {
  list-style-type: none; /* Remove bullets from all levels */
}

ul.task-list > li ul {
  /* Nested lists within .task-list */
  padding-inline-start: 1.5rem;
}

ul.task-list input[type=checkbox] {
  margin: 0.275rem 0.5rem 0.5rem -1rem;
  vertical-align: middle;
}

.equation {
  margin-bottom: 1rem;
  text-align: center;
}

.caption {
  font-size: 0.875rem;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.card {
  background-color: var(--global-card-bg-color);
}
.card .card-img {
  width: 100%;
  padding-top: 1.25rem;
}
.card .card-title {
  color: var(--global-text-color);
}
.card .card-body {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}

.hoverable {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .hoverable {
    transition: none;
  }
  .hoverable:hover {
    transform: none;
  }
}
.profile {
  width: 100%;
}
.profile .more-info {
  margin-bottom: 5px;
  margin-top: 5px;
  font-family: monospace;
}
.profile .more-info p {
  display: inline-block;
  margin: 0;
}

.profile.float-right {
  margin-left: 1rem;
}

.profile.float-left {
  margin-right: 1rem;
}

@media (min-width: 576px) {
  .profile {
    width: 30%;
  }
  .profile .address p {
    display: block;
  }
}
.cv {
  margin-bottom: 40px;
}
.cv .card {
  background-color: var(--global-card-bg-color);
  border: 1px solid var(--global-divider-color);
}
.cv .card .list-group-item {
  background-color: inherit;
  border-color: var(--global-divider-color);
}
.cv .card .list-group-item .badge {
  color: var(--global-card-bg-color) !important;
  background-color: var(--global-theme-color) !important;
}

.table-cv-map {
  background-color: transparent;
  border: none;
  color: var(--global-text-color);
}

.date-column {
  width: 75px;
  transform: translateX(-15px) translateY(-5px);
}

.projects a {
  text-decoration: none;
}
.projects a:hover .card-title {
  color: var(--global-theme-color);
}
.projects .card img {
  width: 100%;
}
.projects .col {
  padding-bottom: 1rem;
}
.projects .grid-sizer,
.projects .grid-item {
  width: 250px;
  margin-bottom: 10px;
}
.projects h2.category {
  color: var(--global-divider-color);
  border-bottom: 1px solid var(--global-divider-color);
  padding-top: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: right;
}

@media (min-width: 768px) {
  .repo {
    max-width: 50%;
  }
}
.social {
  text-align: center;
}
.social .contact-icons {
  font-size: 4rem;
}
.social .contact-icons a img {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
}
.social .contact-icons a svg {
  width: 3.5rem;
  height: 4rem;
  margin-bottom: 0.5rem;
}
.social .contact-icons a svg image {
  width: 3.5rem;
  height: 3.5rem;
}
.social .contact-icons a i::before {
  color: var(--global-text-color);
  transition-property: all 0.2s ease-in-out;
}
.social .contact-icons a:hover {
  text-decoration: none;
}
.social .contact-icons a:hover i::before {
  color: var(--global-theme-color);
}
.social .contact-note {
  font-size: 0.8rem;
}

.wechat-modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
}

.wechat-modal > img {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 33%;
  max-width: 400px;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 400px) {
  .wechat-modal > img {
    width: 100%;
  }
}
.distill a:hover {
  border-bottom-color: var(--global-theme-color);
  text-decoration: none;
}

.d2h-diff-table {
  position: relative;
}

/* Built-in Sass modules you’ll likely use across partials */
/* Configure your design tokens BEFORE loading any of your partials.
   Make sure `_sass/_variables.scss` declares `$max-content-width: 72rem !default;` */
/*******************************************************************************
 * Utility styles: Code, forms, animations, modals, etc.
 ******************************************************************************/
figure.highlight {
  margin: 0 0 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
figure.highlight pre {
  white-space: pre;
  word-wrap: normal;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

pre {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 6px;
  padding: 6px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre;
  word-wrap: normal;
}
pre pre,
pre code {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  white-space: inherit;
}

code {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 3px;
  padding: 3px 3px;
  white-space: normal;
  word-wrap: break-word;
}

:not(pre) > code {
  font-size: 0.82em;
  font-weight: 400;
  padding: 2px 4px;
}

progress {
  /* Positioning */
  position: fixed;
  left: 0;
  top: 56px;
  z-index: 10;
  /* Dimensions */
  width: 100%;
  height: 1px;
  /* Reset the appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Get rid of the default border in Firefox/Opera. */
  border: none;
  /* Progress bar container for Firefox/IE10  */
  background-color: transparent;
  /* Progress bar value for IE10  */
  color: var(--global-theme-color);
}

progress::-webkit-progress-bar {
  background-color: transparent;
}

progress::-webkit-progress-value {
  background-color: var(--global-theme-color);
}

progress::-moz-progress-bar {
  background-color: var(--global-theme-color);
}

.progress-container {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 56px;
  left: 0;
  height: 5px;
  display: block;
}

.progress-bar {
  background-color: var(--global-theme-color);
  width: 0%;
  display: block;
  height: inherit;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition-property: color, background-color, border-color, fill, stroke, box-shadow !important;
  transition-duration: 240ms !important;
  transition-timing-function: ease !important;
  transition-delay: 0 !important;
}

.code-display-wrapper {
  position: relative;
}
.code-display-wrapper .copy {
  background: var(--global-card-bg-color);
  border-color: var(--global-bg-color);
  border-radius: 0.3rem;
  border-style: none;
  color: var(--global-text-color);
  font-size: medium;
  opacity: 0;
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
}
.code-display-wrapper:active .copy, .code-display-wrapper:focus .copy, .code-display-wrapper:hover .copy {
  color: var(--global-hover-color);
  opacity: 1;
}

.btn-group.dropdown .btn {
  box-shadow: none;
  -webkit-box-shadow: none;
}
.btn-group.dropdown .btn-secondary.dropdown-toggle {
  border: 1px solid var(--global-divider-color);
}
.btn-group.dropdown .btn-secondary.dropdown-toggle .page-size {
  color: inherit;
}
.btn-group.dropdown .btn-secondary.dropdown-toggle:not(.active) {
  background-color: var(--global-bg-color) !important;
  color: var(--global-text-color);
}
.btn-group.dropdown .btn-secondary.dropdown-toggle:hover {
  background-color: var(--global-hover-color) !important;
  color: var(--global-hover-text-color) !important;
}

.af-table-shell {
  margin: 1.1rem 0 1.4rem;
}

.af-table-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.af-table-search {
  min-width: min(300px, 100%);
  max-width: 100%;
  border: 1px solid var(--global-divider-color);
  border-radius: 0.4rem;
  background-color: var(--global-bg-color);
  color: var(--global-text-color);
  font-size: 0.94rem;
  line-height: 1.4;
  padding: 0.42rem 0.72rem;
}

.af-table-search:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--global-theme-color) 35%, transparent);
  outline-offset: 1px;
}

.af-table-pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.af-table-page-info {
  color: var(--global-text-color);
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 0.3rem;
}

.af-table-pagination button {
  border: 1px solid var(--global-divider-color);
  background-color: transparent;
  border-radius: 0.35rem;
  color: var(--global-text-color);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  min-width: 2rem;
  padding: 0.38rem 0.56rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.af-table-pagination button:hover:not(:disabled) {
  background-color: var(--global-theme-color);
  border-color: var(--global-theme-color);
  color: var(--global-hover-text-color);
}

.af-table-pagination button:disabled {
  cursor: default;
  opacity: 0.45;
}

table[data-toggle=table].af-table-enhanced {
  margin-bottom: 0;
}

table[data-toggle=table].af-table-enhanced thead th {
  background-color: color-mix(in srgb, var(--global-theme-color) 12%, transparent);
  border-bottom: 1px solid var(--global-divider-color);
  color: var(--global-text-color);
  font-weight: 600;
  letter-spacing: 0.01em;
}

table[data-toggle=table].af-table-enhanced th.af-sortable {
  cursor: pointer;
  user-select: none;
}

table[data-toggle=table].af-table-enhanced th.af-sortable:hover {
  color: var(--global-hover-color);
}

table[data-toggle=table].af-table-enhanced tbody tr.af-row-selected {
  background-color: color-mix(in srgb, var(--global-theme-color) 12%, transparent);
}

#toc-sidebar {
  z-index: 1;
  top: 5rem;
}
#toc-sidebar.toc > .toc-list {
  overflow: visible;
  padding-left: 0.8rem;
}
#toc-sidebar .toc-list {
  list-style: none;
  margin: 0;
  padding-left: 0.8rem;
}
#toc-sidebar .toc-list .toc-list {
  margin-top: 0.12rem;
  margin-left: 0;
}
#toc-sidebar .toc-link {
  color: var(--global-text-color);
  display: block;
  position: relative;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  padding: 0.14rem 0.25rem 0.14rem 0.4rem;
  transition: color 0.2s ease, font-weight 0.2s ease;
  transform: none;
}
#toc-sidebar .toc-link::before {
  background-color: color-mix(in srgb, var(--global-divider-color) 80%, transparent) !important;
}
#toc-sidebar .toc-link:hover {
  color: var(--global-hover-color);
  text-decoration: none;
  transform: none;
}
#toc-sidebar .toc-link:hover::before {
  background-color: var(--global-hover-color) !important;
}
#toc-sidebar .toc-link.is-active-link {
  color: var(--global-theme-color);
  font-weight: 600;
  transform: none;
}
#toc-sidebar .toc-link.is-active-link::before {
  background-color: var(--global-theme-color) !important;
}
#toc-sidebar .toc-link.is-active-link:hover {
  color: var(--global-hover-color);
}
#toc-sidebar .toc-link.is-active-link:hover::before {
  background-color: var(--global-hover-color) !important;
}

/* small screens */
@media (max-width: 576px) {
  /* override stickyness so that the navigation does not follow scrolling */
  #toc-sidebar {
    visibility: hidden;
    height: 0;
    top: 0;
  }
  /* Responsive code blocks for mobile */
  pre {
    font-size: 0.875rem;
    padding: 8px 10px;
    margin: 0.5rem 0;
  }
  figure.highlight {
    margin: 0.5rem 0;
  }
  figure.highlight pre {
    font-size: 0.875rem;
    padding: 8px 10px;
  }
  :not(pre) > code {
    font-size: 0.875rem;
    padding: 2px 4px;
  }
}
/* Extra small screens */
@media (max-width: 400px) {
  pre {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
  figure.highlight pre {
    font-size: 0.8rem;
    padding: 6px 8px;
  }
  :not(pre) > code {
    font-size: 0.8rem;
    padding: 1px 3px;
  }
}
/* Medium screens - optimize for tablets */
@media (min-width: 577px) and (max-width: 768px) {
  pre {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  figure.highlight pre {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}
.newsletter-form-container {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.newsletter-form-input,
.bibsearch-form-input {
  color: var(--global-newsletter-text-color);
  background: var(--global-newsletter-bg-color);
  border: 1px solid var(--global-newsletter-text-color);
  outline: none;
  margin: 0px 10px 0px 0px;
  width: 100%;
  max-width: 350px;
  min-width: 100px;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  border-radius: 6px;
  padding: 8px 12px;
}

.newsletter-form-input:focus {
  border-color: var(--global-theme-color) !important;
}

.newsletter-form-button {
  background: var(--global-theme-color);
  color: var(--global-bg-color);
  display: flex;
  width: min-content;
  max-width: 200px;
  white-space: nowrap;
  height: 38px;
  align-items: center;
  flex-direction: row;
  padding: 9px 17px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  border-radius: 6px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border: none;
  cursor: pointer;
}

.newsletter-loading-button {
  background: var(--global-theme-color);
  color: var(--global-bg-color);
  display: none;
  width: min-content;
  max-width: 300px;
  white-space: nowrap;
  height: 38px;
  align-items: center;
  flex-direction: row;
  padding: 9px 17px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  border-radius: 6px;
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  border: none;
  cursor: pointer;
  margin-right: 20px;
}

.newsletter-success {
  color: var(--global-text-color);
  display: none;
  align-items: center;
  width: 100%;
}

.newsletter-error {
  color: var(--global-theme-color);
  display: none;
  align-items: center;
  width: 100%;
}

.newsletter-back-button {
  color: var(--global-theme-color);
  margin: 10px auto;
  text-align: center;
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 575px) {
  .newsletter-form-input,
  .newsletter-form-button,
  .newsletter-loading-button,
  .newsletter-success,
  .newsletter-error {
    font-size: 16px !important;
  }
  .newsletter-form-container {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.af-popover {
  position: absolute;
  z-index: 1070;
  max-width: 276px;
  padding: 0.5rem 0.75rem;
  background-color: var(--global-bg-color);
  border: 1px solid var(--global-divider-color);
  border-radius: 0.375rem;
  color: var(--global-text-color);
  font-size: 0.875rem;
  line-height: 1.5;
  white-space: pre-line;
  word-wrap: break-word;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.af-tooltip {
  position: absolute;
  z-index: 1080;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 0.25rem;
  color: #fff;
  font-size: 0.8125rem;
  max-width: 200px;
  word-wrap: break-word;
  pointer-events: none;
}

.popover {
  background-color: var(--global-bg-color);
  border-color: var(--global-divider-color);
}
.popover .popover-header {
  color: var(--global-text-color);
  border-bottom: 1px solid var(--global-divider-color);
}
.popover .popover-body {
  color: var(--global-text-color);
}

.bs-popover-top .arrow::after {
  border-top-color: var(--global-bg-color);
}
.bs-popover-top .arrow:before {
  border-top-color: var(--global-divider-color);
}

.bs-popover-bottom .arrow::after {
  border-bottom-color: var(--global-bg-color);
}
.bs-popover-bottom .arrow:before {
  border-bottom-color: var(--global-divider-color);
}

::highlight(search) {
  background-color: var(--global-theme-color);
  color: var(--global-text-color);
}

.unloaded {
  display: none !important;
}

.medium-zoom-overlay,
.medium-zoom-image--opened {
  z-index: 999;
}

.echarts {
  height: 400px;
  width: 100%;
}

.map {
  height: 400px;
  width: 100%;
}

swiper-container {
  --swiper-navigation-color: var(--global-theme-color);
  --swiper-pagination-color: var(--global-theme-color);
  --swiper-pagination-bullet-inactive-color: var(--global-text-color);
}

.ps-root .ps-algorithm {
  margin: 0.8em 0;
  border-top: 3px solid var(--global-text-color);
  border-bottom: 2px solid var(--global-text-color);
}
.ps-root .ps-algorithm.with-caption > .ps-line:first-child {
  border-bottom: 2px solid var(--global-text-color);
}

ninja-keys {
  --ninja-accent-color: var(--global-theme-color);
  --ninja-icon-size: 0px;
  --ninja-modal-background: var(--global-bg-color);
  --ninja-z-index: 1031;
}

ninja-keys::part(ninja-input) {
  color: var(--ninja-selected-text-color);
}

ninja-keys::part(ninja-input-wrapper) {
  background: var(--global-bg-color);
}

figure.cover {
  display: inline-block;
  text-align: center;
  margin: 0.5rem; /* adjust as needed */
}
figure.cover img {
  vertical-align: bottom;
}
figure.cover figcaption.abandoned {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #ee5f5b;
}
figure.cover figcaption.finished,
figure.cover figcaption.watched {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #62c462;
}
figure.cover figcaption.interested {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #7691db;
}
figure.cover figcaption.paused {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #bdac7e;
}
figure.cover figcaption.queued {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #9e76b5;
}
figure.cover figcaption.reading,
figure.cover figcaption.watching {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #f89406;
}
figure.cover figcaption.reread,
figure.cover figcaption.rewatch {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #a6517d;
}
figure.cover figcaption.uncategorized {
  font-family: monospace;
  color: #23212d;
  text-transform: uppercase;
  background-color: #b0abb3;
}
figure.cover {
  /* mouse over link */
}
figure.cover a.cover-link:hover {
  color: #23212d !important;
}

.calendar-toggle-btn {
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--global-theme-color);
  border-radius: 999px;
  color: var(--global-theme-color);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 600;
  gap: 0.25rem;
  padding: 0.45rem 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.16s ease;
}

.calendar-toggle-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--global-theme-color) 45%, transparent);
  outline-offset: 2px;
}

.calendar-toggle-btn:hover {
  background-color: color-mix(in srgb, var(--global-theme-color) 14%, transparent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.09);
  color: var(--global-theme-color);
  transform: translateY(-1px);
}

.calendar-toggle-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.calendar-toggle-btn[aria-pressed=true],
.calendar-toggle-btn.is-open {
  background-color: var(--global-theme-color);
  color: var(--global-hover-text-color);
  border-color: var(--global-theme-color);
}

.calendar-toggle-btn[aria-pressed=true]:hover,
.calendar-toggle-btn.is-open:hover {
  background-color: var(--global-hover-color);
  border-color: var(--global-hover-color);
  color: var(--global-hover-text-color);
}

.calendar-toggle-btn.btn-sm {
  cursor: pointer;
  font-size: 0.88rem;
}

.google-calendar-embed {
  width: 100%;
  height: 600px;
  border: none;
}
@media (max-width: 768px) {
  .google-calendar-embed {
    height: 500px;
  }
}
@media (max-width: 480px) {
  .google-calendar-embed {
    height: 400px;
  }
}

mjx-container[jax=CHTML][display=true] {
  overflow-x: auto;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  padding: 0;
  list-style: none;
  position: relative;
}

.tab > * {
  flex: none;
  padding-left: 20px;
  position: relative;
}

.tab > * > a {
  display: block;
  text-align: center;
  padding: 9px 20px;
  color: var(--global-text-color-light);
  border-bottom: 2px solid transparent;
  border-bottom-color: transparent;
  font-size: 12px;
  text-transform: uppercase;
  transition: color 0.1s ease-in-out;
  line-height: 20px;
}

.tab > .active > a {
  color: var(--global-text-color);
  border-color: var(--global-theme-color);
}

.tab > li > a {
  text-decoration: none;
  cursor: pointer;
}

.tab-content {
  padding: 0;
}

.tab-content > li {
  display: none;
}

.tab-content > li.active {
  display: block;
}

/*****************************
 * Teachings/Courses styles
 *****************************/
.courses {
  margin-top: 30px;
}

.year {
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--global-divider-color);
  padding-bottom: 10px;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.course-item {
  border: 1px solid var(--global-divider-color);
  border-radius: 5px;
  padding: 15px;
  background-color: var(--global-bg-color);
  transition: transform 0.2s ease-in-out;
}
.course-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.course-title {
  margin-top: 0;
  margin-bottom: 10px;
}

.course-meta {
  font-size: 0.9rem;
  color: var(--global-text-color-light);
  margin-bottom: 10px;
}

.course-term,
.course-instructor {
  margin-right: 15px;
}

.course-description {
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.course-description p {
  margin-bottom: 0;
}

.course-info {
  margin-bottom: 30px;
}

.course-schedule {
  margin-bottom: 30px;
}
.course-schedule table.table {
  margin-top: 0.75rem;
}
.course-schedule table.table thead th {
  background-color: color-mix(in srgb, var(--global-theme-color) 12%, transparent);
  border-top: 0;
  border-bottom: 1px solid var(--global-divider-color);
  color: var(--global-text-color);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.7rem 1rem;
}
.course-schedule table.table tbody td {
  padding: 0.72rem 1rem;
}

.schedule-description p {
  margin-bottom: 0;
}

.schedule-materials {
  padding-left: 18px;
  margin-bottom: 0;
}

.typogram .diagram {
  display: block;
}
.typogram .diagram line,
.typogram .diagram circle,
.typogram .diagram rect {
  stroke: var(--global-text-color);
}
.typogram .diagram line {
  stroke-width: 2;
}
.typogram .diagram circle {
  r: 3.5;
}
.typogram .diagram rect {
  width: 6px;
  height: 6px;
}
.typogram .diagram text,
.typogram .glyph,
.typogram .debug text {
  /** font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; **/
  font-family: Iosevka Fixed, monospace;
  font-size: 3em;
  text-anchor: middle;
  alignment-baseline: central;
  white-space: pre;
  fill: var(--global-text-color);
}
.typogram .reserved {
  fill: transparent;
  white-space: pre;
}
.typogram .debug[debug=true] .reserved {
  fill: var(--global-text-color);
  opacity: 0.5;
}
.typogram .debug[debug=true] line.grid {
  stroke: var(--global-text-color);
  stroke-width: 0.2;
  stroke-linecap: butt;
  fill: var(--global-text-color);
  opacity: 1%;
}
.typogram polygon {
  stroke-width: 0;
}
.typogram .debug[debug=true] polygon.inner {
  fill: var(--global-text-color);
  stroke: var(--global-text-color);
  opacity: 5%;
}
.typogram polygon {
  stroke: var(--global-text-color);
  /** stroke-width: 0.2; **/
  stroke-linecap: butt;
  fill: var(--global-text-color);
}
.typogram .debug[debug=true] polygon,
.typogram .debug[debug=true] line.grid {
  opacity: 10%;
}
.typogram .debug[debug=true] polygon,
.typogram .debug[debug=true] path,
.typogram .debug[debug=true] circle {
  opacity: 50%;
}
.typogram .debug[debug=true] polygon {
  fill: red;
  stroke: red;
}
.typogram {
  /**
  circle {
    fill: var(--global-text-color);
  }
  **/
}
.typogram .debug[debug=true] circle,
.typogram .debug[debug=true] path {
  opacity: 50%;
  fill: red;
}
.typogram .debug[debug=true] circle {
  stroke: red;
}
.typogram .debug[debug=true] .inner {
  stroke-width: 0.2;
}
.typogram line.part {
  stroke-width: 6;
  stroke-linecap: butt;
  stroke: var(--global-text-color);
}
.typogram .debug[debug=true] line.part {
  opacity: 50%;
  stroke: red;
}
.typogram .debug[debug=true] line.center {
  stroke-width: 3;
  stroke-linecap: butt;
  opacity: 10%;
  stroke: var(--global-text-color);
}
.typogram text::selection {
  fill: HighlightText;
  background-color: Highlight;
}

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