/*******************************************************************************
 * Variables used throughout the theme.
 * To adjust anything, simply edit the variables below and rebuild the theme.
 ******************************************************************************/
/*******************************************************************************
 * Themes
 ******************************************************************************/
:root {
  --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: #0076df;
  --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,.1);
  --global-card-bg-color: #ffffff;
  --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 .fa-sun {
  display: none;
}
:root .fa-moon {
  padding-left: 10px;
  padding-top: 12px;
  display: block;
}
:root .repo-img-light {
  display: block;
}
:root .repo-img-dark {
  display: none;
}

html[data-theme=dark] {
  --global-bg-color: #1C1C1D;
  --global-code-bg-color: #2c3237;
  --global-text-color: #e8e8e8;
  --global-text-color-light: #e8e8e8;
  --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-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;
}
html[data-theme=dark] .fa-sun {
  padding-left: 10px;
  padding-top: 12px;
  display: block;
}
html[data-theme=dark] .fa-moon {
  display: none;
}
html[data-theme=dark] .repo-img-light {
  display: none;
}
html[data-theme=dark] .repo-img-dark {
  display: block;
}

/******************************************************************************
 * 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: 56px;
}

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

.container {
  max-width: 1120px;
}

.profile img {
  width: 100%;
}

/******************************************************************************
 * Publications
 ******************************************************************************/
/*****************************************************************************
* Projects
*****************************************************************************/
/*******************************************************************************
 * Styles for the base elements of the theme.
 ******************************************************************************/
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 td,
table th {
  font-size: 1rem;
}
table th {
  font-weight: bold;
}

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;
}

figure,
img {
  max-width: 90vw;
}

blockquote {
  background: var(--global-bg-color);
  border-left: 2px solid var(--global-theme-color);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  font-size: 1.2rem;
}

.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 img {
  width: 100%;
}
.card .card-title {
  color: var(--global-text-color);
}
.card .card-item {
  width: auto;
  margin-bottom: 10px;
}
.card .card-item .row {
  display: flex;
  align-items: center;
}

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

.profile {
  width: 100%;
}
.profile .address {
  margin-bottom: 5px;
  margin-top: 5px;
  font-family: monospace;
}
.profile .address 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;
  }
}
.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;
}

.navbar {
  box-shadow: none;
  border-bottom: 1px solid var(--global-divider-color);
  background-color: var(--global-bg-color);
  opacity: 0.95;
}

.navbar .dropdown-menu {
  background-color: var(--global-bg-color);
  border: 1px solid var(--global-divider-color);
}
.navbar .dropdown-menu a:not(.active) {
  color: var(--global-text-color);
}
.navbar .dropdown-menu a:hover {
  color: var(--global-hover-color);
}
.navbar .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);
}

.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 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);
}
#light-toggle:hover {
  color: var(--global-hover-color);
}

.social {
  text-align: center;
}
.social .contact-icons {
  font-size: 4rem;
}
.social .contact-icons a i::before {
  color: var(--global-text-color);
  transition-property: all 0.2s ease-in-out;
}
.social .contact-icons a:hover i::before {
  color: var(--global-theme-color);
}
.social .contact-note {
  font-size: 0.8rem;
}

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;
}
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;
}

.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;
}

@media (min-width: 768px) {
  .repo {
    max-width: 50%;
  }
}
.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-list {
  border-bottom: 1px solid var(--global-divider-color);
  text-align: center;
  padding-top: 1rem;
}
.tag-list ul {
  justify-content: center;
  display: flow-root;
}
.tag-list ul p,
.tag-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;
}

.pagination .page-item .page-link {
  color: var(--global-text-color);
}
.pagination .page-item .page-link:hover {
  color: #000000;
}
.pagination .page-item.active .page-link {
  color: #ffffff;
  background-color: var(--global-theme-color);
}
.pagination .page-item.active .page-link:hover {
  background-color: var(--global-theme-color);
}

.distill a:hover {
  border-bottom-color: var(--global-theme-color);
  text-decoration: none;
}

.projects a {
  text-decoration: none;
}
.projects a:hover .card-title {
  color: var(--global-theme-color);
}
.projects .card img {
  width: 100%;
}
.projects .card-item {
  width: auto;
  margin-bottom: 10px;
}
.projects .card-item .row {
  display: flex;
  align-items: center;
}
.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;
}

.project-list {
  margin-top: 1rem;
}

.project-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid var(--global-divider-color);
}
.project-row:last-child {
  border-bottom: 1px solid var(--global-divider-color);
}
.project-row h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.project-row p {
  margin: 0;
  color: var(--global-text-color-light);
  line-height: 1.55;
}

.project-copy {
  min-width: 0;
}

.project-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  padding-top: 0.1rem;
  color: var(--global-theme-color);
}

.project-link,
.project-stars {
  color: var(--global-theme-color);
}

@media (max-width: 576px) {
  .project-row {
    display: block;
  }
  .project-actions {
    margin-top: 0.5rem;
  }
}
.navbar .nav-cv-link {
  font-weight: 600;
}

.cz-home {
  --cz-ink: var(--global-text-color);
  --cz-muted: var(--global-text-color-light);
  --cz-line: var(--global-divider-color);
  --cz-accent: var(--global-theme-color);
  --cz-green: #0f766e;
  --cz-amber: #b8860b;
  --cz-surface: color-mix(in srgb, var(--global-bg-color) 92%, var(--cz-accent) 8%);
  width: 100%;
  max-width: 100%;
  padding-bottom: 3rem;
  overflow-x: hidden;
}

.cz-hero {
  min-height: calc(100dvh - 4.5rem);
  padding: 3.4rem 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.cz-kicker {
  color: var(--cz-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.cz-hero h1 {
  font-size: clamp(1.5rem, 2.1vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-weight: 750;
}

.cz-lede {
  max-width: 790px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--cz-muted);
}

.cz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cz-button {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--cz-line);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.cz-button:hover {
  text-decoration: none;
  border-color: var(--cz-accent);
}

.cz-button-primary {
  color: #fff;
  background: var(--cz-accent);
  border-color: var(--cz-accent);
}

.cz-scroll-cue {
  position: absolute;
  left: 0;
  bottom: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cz-muted);
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
}

.cz-scroll-cue::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
  animation: cz-scroll-cue 1.4s ease-in-out infinite;
}

.cz-scroll-cue:hover {
  color: var(--cz-accent);
  text-decoration: none;
}

@keyframes cz-scroll-cue {
  0%, 100% {
    opacity: 0.55;
    transform: rotate(45deg) translate(-0.05rem, -0.15rem);
  }
  50% {
    opacity: 1;
    transform: rotate(45deg) translate(0.2rem, 0.1rem);
  }
}
.cz-section {
  padding: 3.5rem 0;
  border-top: 1px solid var(--cz-line);
}

.cz-section-head {
  margin-bottom: 1.75rem;
}

.cz-section-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
}

.cz-section-title-row h2 {
  margin-bottom: 0;
  white-space: nowrap;
}

.cz-section-title-row span {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  padding: 0.18rem 0.62rem;
  border: 1px solid color-mix(in srgb, var(--global-theme-color) 28%, var(--cz-line));
  border-radius: 999px;
  color: color-mix(in srgb, var(--global-theme-color) 72%, var(--cz-text));
  background: color-mix(in srgb, var(--global-bg-color) 92%, var(--global-theme-color) 8%);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
}

.cz-section h2 {
  font-size: clamp(2.15rem, 3.1vw, 2.65rem);
  font-weight: 750;
  margin-bottom: 0.45rem;
}

.cz-section-head p {
  max-width: 720px;
  color: var(--cz-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cz-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.cz-project-card {
  border: 1px solid var(--cz-line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--global-bg-color);
}

.cz-project-media {
  display: flex;
  align-items: flex-end;
  min-height: 168px;
  padding: 1rem;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(23, 59, 109, 0.92), rgba(15, 118, 110, 0.78)), repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 14px);
}

.cz-project-media span {
  max-width: 12rem;
  font-size: 1.35rem;
  line-height: 1.1;
  color: #fff;
}

.cz-project-media img {
  display: block;
}

.cz-project-body {
  padding: 1rem;
}

.cz-meta,
.cz-venue {
  margin: 0 0 0.45rem;
  color: var(--cz-muted);
  font-size: 0.82rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cz-kind-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin: 0 0 0.72rem;
}

.cz-kind-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 1.62rem;
  padding: 0.18rem 0.58rem;
  border: 1px solid color-mix(in srgb, var(--cz-line) 86%, var(--cz-accent) 14%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--cz-text) 76%, var(--cz-muted) 24%);
  background: color-mix(in srgb, var(--global-bg-color) 90%, var(--cz-accent) 10%);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.cz-kind-badge-keyword {
  border-color: color-mix(in srgb, var(--cz-line) 78%, #1677c8 22%) !important;
  background: color-mix(in srgb, var(--global-bg-color) 89%, #1677c8 11%) !important;
}

.cz-kind-badge-nature {
  border-color: color-mix(in srgb, var(--cz-line) 78%, #4f8f79 22%) !important;
  background: color-mix(in srgb, var(--global-bg-color) 90%, #4f8f79 10%) !important;
}

.cz-kind-badge-institution {
  border-color: color-mix(in srgb, var(--cz-line) 76%, #9a7a34 24%) !important;
  background: color-mix(in srgb, var(--global-bg-color) 91%, #9a7a34 9%) !important;
}

.cz-kind-badge-institution-first {
  position: relative;
  margin-left: 0.45rem;
}

.cz-kind-badge-institution-first::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 1px;
  background: color-mix(in srgb, var(--cz-line) 74%, var(--cz-muted) 26%);
}

.cz-project-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

.cz-project-card p,
.cz-more-item p,
.cz-publication p,
.cz-about p {
  color: var(--cz-muted);
  line-height: 1.6;
}

.cz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.cz-tags span,
.cz-interest-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--cz-line);
  border-radius: 999px;
  color: var(--cz-muted);
  font-size: 0.82rem;
}

.cz-subhead {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.cz-more-list {
  border-top: 1px solid var(--cz-line);
}

.cz-more-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cz-line);
}

.cz-more-item h4,
.cz-publication h4 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  line-height: 1.4;
}

.cz-more-actions {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  white-space: nowrap;
  color: var(--cz-accent);
  padding-top: 0.2rem;
}

.cz-pub-group h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cz-publication {
  padding: 1rem 0;
  border-top: 1px solid var(--cz-line);
}

.cz-about {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 2rem;
}

.cz-about-mark {
  width: 72px;
  height: 72px;
  border: 1px solid var(--cz-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--cz-accent);
}

.cz-interest-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 1.35rem;
}

.cz-skill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cz-skill-grid h4 {
  margin-bottom: 0.25rem;
}

@media (max-width: 900px) {
  .cz-featured-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: 0;
    margin-right: 0;
  }
  .cz-hero {
    padding-top: 2.75rem;
  }
  .cz-more-item,
  .cz-about {
    display: block;
  }
  .cz-more-actions {
    margin-top: 0.5rem;
  }
  .cz-about-mark {
    margin-bottom: 1rem;
  }
  .cz-skill-grid {
    grid-template-columns: 1fr;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

#navbar.navbar {
  border-bottom: 1px solid color-mix(in srgb, var(--global-divider-color) 72%, transparent);
  background: color-mix(in srgb, var(--global-bg-color) 84%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03), 0 14px 38px rgba(15, 23, 42, 0.035);
}

.navbar.navbar-light .navbar-nav .nav-item .nav-link {
  position: relative;
  color: color-mix(in srgb, var(--global-text-color) 82%, var(--global-bg-color));
  font-weight: 500;
}

.navbar.navbar-light .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.25rem;
  height: 2px;
  border-radius: 999px;
  background: var(--global-theme-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.navbar.navbar-light .navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar .nav-cv-link {
  color: var(--global-theme-color) !important;
  font-weight: 700 !important;
}

.cz-home {
  position: relative;
}

.cz-home > * {
  position: relative;
  z-index: 1;
}

.cz-home::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: 0;
  width: min(48rem, 90vw);
  height: 26rem;
  pointer-events: none;
  background: radial-gradient(circle at 78% 20%, rgba(15, 118, 110, 0.14), transparent 28%), linear-gradient(90deg, rgba(23, 59, 109, 0.065) 1px, transparent 1px), linear-gradient(0deg, rgba(15, 118, 110, 0.055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent);
  transform: translateX(-12%);
}

.cz-hero {
  position: relative;
}

.cz-kicker {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--cz-line) 78%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--global-bg-color) 90%, var(--cz-green) 10%);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.cz-hero h1 {
  max-width: 12ch;
}

.cz-lede {
  overflow-wrap: anywhere;
}

.cz-button {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cz-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.cz-section {
  scroll-margin-top: 5rem;
}

.cz-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: end;
}

.cz-section-head p {
  margin-bottom: 0;
}

.cz-project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  will-change: transform;
}

.cz-project-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--global-theme-color) 42%, var(--cz-line));
  box-shadow: 0 26px 68px rgba(15, 23, 42, 0.14);
}

.cz-project-card:hover .cz-project-media::before {
  transform: perspective(420px) rotateX(58deg) translateY(16px) scale(1.42);
}

.cz-project-card:hover .cz-project-media span {
  transform: translateY(-2px);
}

.cz-project-media {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(23, 59, 109, 0.94), rgba(15, 118, 110, 0.76) 62%, rgba(184, 134, 11, 0.55)), radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.22), transparent 24%);
}

.cz-project-card:nth-child(2) .cz-project-media {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(23, 59, 109, 0.84) 62%, rgba(124, 58, 237, 0.42)), radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.2), transparent 25%);
}

.cz-project-card:nth-child(3) .cz-project-media {
  background: linear-gradient(135deg, rgba(32, 70, 120, 0.96), rgba(184, 134, 11, 0.6) 58%, rgba(15, 118, 110, 0.74)), radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 26%);
}

.cz-project-media-image {
  background: #fff;
}

.cz-project-media-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transform-origin: center;
}

.cz-project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  transform: perspective(420px) rotateX(58deg) translateY(26px) scale(1.35);
  transform-origin: bottom center;
  transition: transform 260ms ease;
}

.cz-project-media-image::before {
  z-index: 1;
  opacity: 1;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.12) 45%, transparent 76%);
  transform: none;
}

.cz-project-media::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) center/76% 1px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) center/1px 76% no-repeat;
  opacity: 0.64;
}

.cz-project-media-image::after {
  z-index: 2;
  opacity: 0.22;
}

.cz-project-media span {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease;
}

.cz-project-body {
  flex: 1;
  min-width: 0;
}

.cz-tags span,
.cz-interest-strip span {
  background: color-mix(in srgb, var(--global-bg-color) 88%, var(--global-theme-color) 12%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cz-tags span:hover,
.cz-interest-strip span:hover {
  transform: translateY(-1px);
  color: var(--global-theme-color);
  border-color: color-mix(in srgb, var(--global-theme-color) 42%, var(--cz-line));
}

.cz-more-item,
.cz-publication {
  border-radius: 10px;
  transition: background 180ms ease, padding-left 180ms ease, border-color 180ms ease;
}

.cz-more-item:hover,
.cz-publication:hover {
  background: color-mix(in srgb, var(--global-bg-color) 90%, var(--global-theme-color) 10%);
  padding-left: 0.75rem;
}

.cz-more-item > div:first-child,
.cz-publication > * {
  min-width: 0;
}

.cz-more-actions a,
.cz-more-actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cz-about-mark {
  background: linear-gradient(135deg, color-mix(in srgb, var(--global-bg-color) 65%, var(--global-theme-color) 35%), var(--global-bg-color));
  box-shadow: inset 0 0 0 8px color-mix(in srgb, var(--global-bg-color) 88%, var(--global-theme-color) 12%);
}

.cz-skill-grid > div {
  padding: 1rem;
  border: 1px solid var(--cz-line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--global-bg-color) 96%, var(--global-theme-color) 4%);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cz-skill-grid > div:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--global-theme-color) 38%, var(--cz-line));
  background: color-mix(in srgb, var(--global-bg-color) 91%, var(--global-theme-color) 9%);
}

.cz-project-feature-list {
  display: grid;
  gap: 1.05rem;
}

.cz-project-feature {
  display: grid;
  grid-template-columns: minmax(24rem, 0.5fr) minmax(0, 1fr);
  gap: 1.45rem;
  align-items: start;
  padding: 0.95rem;
  border: 1px solid var(--cz-line);
  border-radius: 10px;
  background: #f8fbfd;
  background: color-mix(in srgb, var(--global-bg-color) 97%, var(--global-theme-color) 3%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cz-project-feature:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--global-theme-color) 40%, var(--cz-line));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.cz-project-preview {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  aspect-ratio: 16/10;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  padding: 0.85rem;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(23, 59, 109, 0.94), rgba(15, 118, 110, 0.76) 62%, rgba(184, 134, 11, 0.55)), radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.22), transparent 24%);
}

.cz-project-feature:nth-child(2n) .cz-project-preview {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.94), rgba(23, 59, 109, 0.84) 62%, rgba(124, 58, 237, 0.42)), radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.2), transparent 25%);
}

.cz-project-feature:nth-child(3n) .cz-project-preview {
  background: linear-gradient(135deg, rgba(32, 70, 120, 0.96), rgba(184, 134, 11, 0.6) 58%, rgba(15, 118, 110, 0.74)), radial-gradient(circle at 35% 20%, rgba(255, 255, 255, 0.2), transparent 26%);
}

.cz-project-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.82;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.28) 46%, transparent 76%);
}

.cz-project-preview::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  z-index: 2;
  width: 4.2rem;
  height: 4.2rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)) center/76% 1px no-repeat, linear-gradient(90deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.48)) center/1px 76% no-repeat;
  opacity: 0.48;
}

.cz-project-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.cz-project-feature:hover .cz-project-preview img {
  transform: scale(1.025);
}

.cz-project-preview span {
  position: relative;
  z-index: 3;
  max-width: 13rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.12rem;
  line-height: 1.08;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.cz-project-summary {
  min-width: 0;
  padding: 0.15rem 0 0;
}

.cz-project-summary h3 {
  margin: 0 0 0.42rem;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem);
  line-height: 1.28;
}

.cz-project-summary p {
  color: var(--cz-muted);
  line-height: 1.55;
  margin-bottom: 0.55rem;
}

.cz-project-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.cz-more-projects {
  margin-top: 2.5rem;
}

.cz-more-projects-head {
  margin-bottom: 0.85rem;
}

.cz-more-projects h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(2.15rem, 3.1vw, 2.65rem);
  font-weight: 750;
  white-space: nowrap;
}

.cz-more-projects-head p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.cz-more-project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 26rem));
  gap: 1.15rem;
  justify-content: start;
}

.cz-more-project-card {
  display: grid;
  gap: 0.78rem;
  align-content: start;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--cz-line);
  border-radius: 10px;
  background: #f8fbfd;
  background: color-mix(in srgb, var(--global-bg-color) 97%, var(--global-theme-color) 3%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cz-more-project-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--global-theme-color) 40%, var(--cz-line));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.075);
}

.cz-more-project-card .cz-project-preview {
  aspect-ratio: 16/10;
}

.cz-more-project-card .cz-project-preview span {
  font-size: 1rem;
}

.cz-more-project-body {
  min-width: 0;
}

.cz-more-project-body h4 {
  margin: 0 0 0.42rem;
  color: var(--cz-text);
  font-size: 1.02rem;
  font-weight: 720;
  line-height: 1.28;
}

.cz-more-project-body p {
  margin-bottom: 0.55rem;
  color: var(--cz-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cz-more-project-kind {
  color: var(--cz-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.cz-project-links > a,
.cz-project-links > span,
.cz-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2rem;
  color: var(--global-theme-color);
  font-weight: 650;
  text-decoration: none;
}

.cz-detail-link {
  padding: 0.32rem 0.72rem;
  border: 1px solid color-mix(in srgb, var(--global-theme-color) 32%, var(--cz-line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--global-bg-color) 92%, var(--global-theme-color) 8%);
}

.cz-detail-arrow {
  color: inherit;
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.02em);
}

.cz-project-links .cz-github-stars {
  min-height: 1.62rem;
  padding: 0.18rem 0.58rem;
  border: 1px solid color-mix(in srgb, var(--cz-line) 76%, #4f8f79 24%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--cz-text) 84%, #3f7663 16%);
  background: color-mix(in srgb, var(--global-bg-color) 91%, #4f8f79 9%);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.cz-project-links .cz-github-stars i {
  color: #4f8f79;
}

.cz-project-links .cz-paper-badge {
  min-height: 1.62rem;
  padding: 0.18rem 0.58rem;
  border: 1px solid color-mix(in srgb, var(--cz-line) 72%, #4d7fa8 28%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--cz-text) 84%, #426f94 16%);
  background: color-mix(in srgb, var(--global-bg-color) 91%, #4d7fa8 9%);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}

.cz-project-links .cz-paper-badge i {
  color: #4d7fa8;
}

.cz-project-links a:hover,
.cz-detail-link:hover {
  color: var(--global-theme-color);
  text-decoration: none;
  border-color: var(--global-theme-color);
}

.cz-project-page {
  --cz-muted: var(--global-text-color-light);
  --cz-line: var(--global-divider-color);
  padding: 2.5rem 0 4rem;
}

.cz-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: var(--global-theme-color);
  font-weight: 650;
}

.cz-back-link:hover {
  color: var(--global-theme-color);
  text-decoration: none;
}

.cz-back-link-bottom {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.cz-project-hero {
  max-width: 100%;
  margin-bottom: 0;
}

.cz-project-rail {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  min-height: 10rem;
  padding-top: 0.2rem;
  color: var(--cz-muted);
}

.cz-project-rail::after {
  content: "";
  display: block;
  width: 1px;
  height: clamp(4rem, 13vw, 8.5rem);
  margin-top: 0.65rem;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--global-theme-color) 56%, transparent), transparent);
}

.cz-project-rail-number {
  color: color-mix(in srgb, var(--global-theme-color) 72%, var(--cz-text));
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.cz-project-rail-label {
  color: var(--global-theme-color);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.cz-project-rail-title {
  max-width: 7rem;
  color: var(--cz-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.cz-project-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cz-project-hero > p:not(.cz-meta) {
  color: var(--cz-muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.cz-project-figure {
  width: min(34rem, 72%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--cz-line);
  border-radius: 8px;
  background: #fff;
}

.cz-project-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #fff;
}

.cz-project-detail-section {
  display: grid;
  grid-template-columns: minmax(8rem, 0.24fr) minmax(0, 1fr);
  gap: 1.45rem;
  padding: 2rem 0;
  border-top: 1px solid var(--cz-line);
}

.cz-project-hero-section {
  padding-top: 0;
  border-top: 0;
}

.cz-project-cover-section {
  padding-top: 0;
  padding-bottom: 1.8rem;
  border-top: 0;
}

.cz-project-detail-section h2 {
  font-size: 1.35rem;
  margin: 0;
}

.cz-project-detail-section p {
  color: var(--cz-muted);
  line-height: 1.75;
}

.cz-project-overview-section {
  grid-template-columns: minmax(8rem, 0.2fr) minmax(0, 1fr);
}

.cz-project-overview-section .cz-tags {
  margin-top: 0.8rem;
}

.cz-placeholder {
  padding: 1rem;
  border: 1px dashed color-mix(in srgb, var(--cz-line) 80%, var(--global-theme-color));
  border-radius: 12px;
  color: var(--cz-muted);
  background: color-mix(in srgb, var(--global-bg-color) 96%, var(--global-theme-color) 4%);
}

.cz-project-content {
  color: var(--cz-muted);
  line-height: 1.75;
}

.cz-project-content h3 {
  margin: 0 0 0.65rem;
  color: var(--global-text-color);
  font-size: 1.15rem;
  font-weight: 750;
}

.cz-project-content h3:not(:first-child) {
  margin-top: 1.6rem;
}

.cz-project-content p {
  margin-bottom: 1rem;
}

.cz-inline-figure {
  width: 75%;
  margin: 1.5rem auto 1.75rem;
}

.cz-inline-figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--cz-line);
  border-radius: 8px;
  background: #fff;
}

.cz-inline-figure figcaption {
  margin-top: 0.55rem;
  color: var(--cz-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cz-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.cz-media-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--cz-line);
  border-radius: 12px;
  background: #fff;
}

.cz-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center;
  background: #fff;
}

.cz-project-video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body > .container,
  .container.mt-5,
  #navbar .container,
  .cz-section-head {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    box-sizing: border-box;
  }
  body > .container,
  .container.mt-5 {
    width: calc(100dvw - 2rem) !important;
    max-width: 20.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    overflow-x: hidden;
  }
  .cz-hero,
  .cz-lede,
  .cz-section-head,
  .cz-section-head p,
  .cz-section-title-row,
  .cz-featured-grid,
  .cz-project-card,
  .cz-project-body,
  .cz-more-projects,
  .cz-more-project-list,
  .cz-more-project-card,
  .cz-more-item,
  .cz-about {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .cz-hero {
    min-height: auto;
    padding: 3.25rem 0 3rem;
    display: block;
  }
  .cz-scroll-cue {
    position: static;
    margin-top: 2.25rem;
  }
  .cz-home::before {
    left: auto;
    right: -2.5rem;
    width: 100%;
    transform: none;
  }
  .cz-section-head {
    display: block;
  }
  .cz-section-title-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .cz-section-title-row h2,
  .cz-more-projects h3 {
    white-space: normal;
  }
  .cz-section h2,
  .cz-more-projects h3 {
    font-size: 2rem;
    line-height: 1.12;
  }
  .cz-kicker {
    font-size: 0.82rem;
  }
  .cz-hero h1 {
    font-size: clamp(1.5rem, 7dvw, 1.85rem);
    max-width: 100%;
  }
  .cz-lede {
    font-size: 1.05rem;
    max-width: 100%;
  }
  .cz-project-media {
    min-height: 150px;
  }
  .cz-project-feature {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0.78rem;
    border: 1px solid var(--cz-line);
    border-radius: 10px;
    background: #f8fbfd;
    background: color-mix(in srgb, var(--global-bg-color) 97%, var(--global-theme-color) 3%);
  }
  .cz-project-preview {
    min-height: 0;
  }
  .cz-more-project-list {
    grid-template-columns: 1fr;
  }
  .cz-more-project-card {
    padding: 0.78rem;
    border: 1px solid var(--cz-line);
    border-radius: 10px;
    background: #f8fbfd;
    background: color-mix(in srgb, var(--global-bg-color) 97%, var(--global-theme-color) 3%);
  }
  .cz-project-detail-section {
    display: block;
  }
  .cz-project-rail {
    display: none;
  }
  .cz-project-detail-section h2 {
    margin-bottom: 0.8rem;
  }
  .cz-project-figure,
  .cz-inline-figure {
    width: 100%;
  }
  .cz-media-grid {
    grid-template-columns: 1fr;
  }
  .cz-home,
  .cz-home > *,
  .cz-section,
  .cz-featured-grid,
  .cz-more-list,
  .cz-project-card,
  .cz-project-body,
  .cz-section-head p,
  .cz-project-card p,
  .cz-more-item p,
  .cz-about p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }
  .cz-project-media::after {
    right: -0.75rem;
    top: 0.8rem;
    width: 4.2rem;
    height: 4.2rem;
  }
  .cz-tags {
    max-width: 100%;
    overflow: hidden;
  }
  .cz-tags span,
  .cz-interest-strip span {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  body > .container,
  .container.mt-5 {
    width: calc(100dvw - 2rem) !important;
    max-width: 20.5rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cz-hero h1 {
    font-size: clamp(2.4rem, 11dvw, 2.9rem);
  }
  .cz-hero,
  .cz-lede,
  .cz-section-head,
  .cz-section-head p,
  .cz-featured-grid,
  .cz-project-card,
  .cz-project-body,
  .cz-more-item,
  .cz-about {
    max-width: 100% !important;
  }
}
.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.year {
  color: var(--global-divider-color);
  border-top: 1px solid var(--global-divider-color);
  padding-top: 1rem;
  margin-top: 2rem;
  margin-bottom: -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 {
  width: 100%;
  min-width: 80px;
  max-width: 200px;
}
.publications ol.bibliography li .abbr {
  height: 2rem;
  margin-bottom: 0.5rem;
}
.publications ol.bibliography li .abbr abbr {
  display: inline-block;
  background-color: var(--global-theme-color);
  padding-left: 1rem;
  padding-right: 1rem;
}
.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 .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);
}

figure.highlight {
  margin: 0 0 1rem;
}

pre {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 6px;
  padding: 6px 12px;
}
pre pre,
pre code {
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

code {
  color: var(--global-theme-color);
  background-color: var(--global-code-bg-color);
  border-radius: 3px;
  padding: 3px 3px;
}

html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}

.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);
}
.post .post-content blockquote {
  border-left: 5px solid var(--global-theme-color);
  padding: 8px;
}
.post .post-content blockquote p {
  margin-bottom: 0;
}

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;
}

/* Copy button */
.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.5rem;
  top: 0.5rem;
}
.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;
}
.btn-group.dropdown .dropdown-menu {
  background-color: var(--global-bg-color);
}
.btn-group.dropdown .dropdown-item {
  background-color: var(--global-bg-color);
  color: var(--global-text-color);
}
.btn-group.dropdown .dropdown-item:hover {
  color: var(--global-hover-color);
}
.btn-group.dropdown .dropdown-item.active, .btn-group.dropdown .dropdown-item:active {
  background-color: var(--global-hover-color);
  color: var(--global-hover-text-color) !important;
}
.btn-group.dropdown .dropdown-item.active:hover, .btn-group.dropdown .dropdown-item:active:hover {
  color: var(--global-hover-text-color);
}

/* Table of Contents */
nav[data-toggle=toc] {
  top: 5rem;
}
nav[data-toggle=toc] .nav .nav > li > a {
  font-size: 0.75rem;
}
nav[data-toggle=toc] .nav > li > a {
  color: var(--global-text-color);
  font-size: 0.75rem;
}
nav[data-toggle=toc] .nav > li > a:hover {
  color: var(--global-hover-color);
  border-left-color: var(--global-hover-color);
}
nav[data-toggle=toc] .nav-link.active {
  color: var(--global-theme-color);
  border-left-color: var(--global-theme-color);
  font-size: 0.75rem;
}
nav[data-toggle=toc] .nav-link.active:hover {
  color: var(--global-hover-color);
  border-left-color: var(--global-hover-color);
}

/* small screens */
@media (max-width: 576px) {
  /* override stickyness so that the navigation does not follow scrolling */
  nav[data-toggle=toc] {
    visibility: hidden;
    height: 0;
    top: 0;
  }
}
/* Tips, warnings, and dangers blockquotes */
.post .post-content blockquote.block-tip {
  border-color: var(--global-tip-block);
  background-color: var(--global-tip-block-bg);
}
.post .post-content blockquote.block-tip p {
  color: var(--global-tip-block-text);
}
.post .post-content blockquote.block-tip h1, .post .post-content blockquote.block-tip h2, .post .post-content blockquote.block-tip h3, .post .post-content blockquote.block-tip h4, .post .post-content blockquote.block-tip h5, .post .post-content blockquote.block-tip h6 {
  color: var(--global-tip-block-title);
}
.post .post-content blockquote.block-warning {
  border-color: var(--global-warning-block);
  background-color: var(--global-warning-block-bg);
}
.post .post-content blockquote.block-warning p {
  color: var(--global-warning-block-text);
}
.post .post-content blockquote.block-warning h1, .post .post-content blockquote.block-warning h2, .post .post-content blockquote.block-warning h3, .post .post-content blockquote.block-warning h4, .post .post-content blockquote.block-warning h5, .post .post-content blockquote.block-warning h6 {
  color: var(--global-warning-block-title);
}
.post .post-content blockquote.block-danger {
  border-color: var(--global-danger-block);
  background-color: var(--global-danger-block-bg);
}
.post .post-content blockquote.block-danger p {
  color: var(--global-danger-block-text);
}
.post .post-content blockquote.block-danger h1, .post .post-content blockquote.block-danger h2, .post .post-content blockquote.block-danger h3, .post .post-content blockquote.block-danger h4, .post .post-content blockquote.block-danger h5, .post .post-content blockquote.block-danger h6 {
  color: var(--global-danger-block-title);
}

/*******************************************************************************
 * Style overrides for distill blog posts.
 ******************************************************************************/
d-byline {
  border-top-color: var(--global-divider-color) !important;
}

d-byline h3 {
  color: var(--global-text-color) !important;
}

d-byline a, d-article d-byline a {
  color: var(--global-text-color) !important;
}
d-byline a:hover, d-article d-byline a:hover {
  color: var(--global-hover-color) !important;
}

d-article {
  border-top-color: var(--global-divider-color) !important;
}
d-article p, d-article h1, d-article h2, d-article h3, d-article h4, d-article h5, d-article h6, d-article li, d-article table {
  color: var(--global-text-color) !important;
}
d-article h1, d-article h2, d-article hr, d-article table, d-article table th, d-article table td {
  border-bottom-color: var(--global-divider-color) !important;
}
d-article a {
  color: var(--global-theme-color) !important;
}
d-article a:hover {
  color: var(--global-theme-color) !important;
}
d-article b i {
  display: inline;
}
d-article details {
  color: var(--global-text-color);
  background-color: var(--global-code-bg-color);
  margin-top: 0;
  padding: 8px 12px;
  position: relative;
  border-radius: 6px;
  display: block;
  margin-bottom: 20px;
  grid-column: text;
  overflow: auto;
  max-width: 100%;
}
d-article details summary {
  color: var(--global-theme-color);
}
d-article details p {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
d-article d-contents {
  align-self: start;
  grid-column: 1/4;
  grid-row: auto/span 4;
  justify-self: end;
  margin-top: 0em;
  padding-left: 2em;
  padding-right: 3em;
  border-right: 1px solid var(--global-divider-color);
  width: max(70%, 300px);
  margin-right: 0px;
  margin-top: 0em;
  display: grid;
  grid-template-columns: minmax(8px, 1fr) [toc] auto minmax(8px, 1fr) [toc-line] 1px minmax(32px, 2fr);
}
d-article d-contents nav {
  grid-column: toc;
}
d-article d-contents nav a {
  border-bottom: none !important;
}
d-article d-contents nav a:hover {
  border-bottom: 1px solid var(--global-text-color) !important;
}
d-article d-contents nav h3 {
  margin-top: 0;
  margin-bottom: 1em;
}
d-article d-contents nav div {
  display: block;
  outline: none;
  margin-bottom: 0.8em;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}
d-article d-contents nav ul {
  padding-left: 1em;
  margin-top: 0;
  margin-bottom: 6px;
  list-style-type: none;
}
d-article d-contents nav ul li {
  margin-bottom: 0.25em;
}
d-article d-contents .figcaption {
  line-height: 1.4em;
}
d-article d-contents toc-line {
  border-right: 1px solid var(--global-divider-color);
  grid-column: toc-line;
}
d-article d-footnote {
  scroll-margin-top: 66px;
}

d-appendix {
  border-top-color: var(--global-divider-color) !important;
  color: var(--global-distill-app-color) !important;
}
d-appendix h3, d-appendix li, d-appendix span {
  color: var(--global-distill-app-color) !important;
}
d-appendix a, d-appendix a.footnote-backlink {
  color: var(--global-distill-app-color) !important;
}
d-appendix a:hover, d-appendix a.footnote-backlink:hover {
  color: var(--global-hover-color) !important;
}

@media (max-width: 1024px) {
  d-article d-contents {
    display: block;
    grid-column-start: 2;
    grid-column-end: -2;
    padding-bottom: 0.5em;
    margin-bottom: 1em;
    padding-top: 0.5em;
    width: 100%;
    border: 1px solid var(--global-divider-color);
  }
  d-article d-contents nav {
    grid-column: none;
  }
}

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