:root {
  --body-color: #111111;
  --title-color: #202124;
  --muted-color: #555555;
  --link-color: hsl(204, 86%, 53%);
  --section-title-size: 1.9rem;
  --subsection-title-size: 1.35rem;
}

body {
  margin: 0;
  color: var(--body-color);
  background: #fff;
  font-family: 'Noto Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
}

.is-max-desktop {
  max-width: 1080px;
}

.columns {
  display: flex;
  justify-content: center;
}

.column {
  min-width: 0;
  width: 100%;
}

.column.is-four-fifths {
  flex: 0 1 92%;
  max-width: 1100px;
}

.column.is-8 {
  flex: 0 1 66.6667%;
  max-width: 860px;
}

.has-text-centered {
  text-align: center;
}

.has-text-justified {
  text-align: justify;
}

.hero {
  display: block;
}

.hero-body {
  padding: 3rem 0;
}

.section {
  padding: 3rem 0;
}

.title {
  margin: 0 0 1.25rem;
  color: var(--title-color);
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.18;
}

.title.is-1 {
  font-size: clamp(2.2rem, 4.8vw, 3.55rem);
}

.title.is-3 {
  font-size: var(--section-title-size);
}

.title.is-4 {
  margin-bottom: 1rem;
  font-size: var(--subsection-title-size);
}

.subtitle {
  max-width: 920px;
  margin: 1rem auto 0;
  color: #333;
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.is-size-5 {
  font-size: 1.18rem;
}

.publication-title {
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  letter-spacing: 0;
}

.publication-authors {
  margin-top: 0.35rem;
  color: var(--body-color);
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  line-height: 1.7;
}

.publication-authors a {
  color: var(--link-color) !important;
}

.publication-authors a:hover {
  text-decoration: underline;
}

.publication-affiliations {
  color: var(--muted-color);
  font-size: 0.98rem;
}

.author-block {
  display: inline-block;
  white-space: nowrap;
}

.publication-venue {
  width: fit-content;
  margin: 1.25rem auto 1.35rem;
  color: var(--muted-color);
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-weight: 700;
}

.publication-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
}

.link-block a {
  margin-top: 5px;
  margin-bottom: 5px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 2.1rem;
  padding: 0.38rem 1rem;
  border: 1px solid transparent;
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}

.button.is-rounded {
  border-radius: 999px;
}

.button.is-dark {
  color: #fff;
  background: #363636;
}

.button.is-dark:hover {
  background: #242424;
  text-decoration: none;
}

.button.is-light {
  color: #333;
  background: #f5f5f5;
}

.button.is-disabled {
  pointer-events: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  font-size: 1.04rem;
  line-height: 1;
}

.dnerf {
  font-variant: small-caps;
}

.teaser {
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
}

.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser img,
.section-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.benchmark-image {
  width: 100%;
  margin-top: 0.85rem;
  margin-bottom: 1.05rem;
}

.content {
  font-size: 1.02rem;
  line-height: 1.7;
}

.content p {
  margin: 0 0 1rem;
}

.abstract-section {
  padding: 3.7rem 0 3.9rem;
  background: #f5f5f5;
}

.abstract-copy {
  max-width: 980px;
  margin: 0 auto;
}

.abstract-copy p:last-child {
  margin-bottom: 0;
}

.content strong,
.content b {
  font-weight: 700;
}

.method-image {
  margin-top: 1.2rem;
}

.result-block {
  margin-bottom: 2.6rem;
}

.result-block:last-child {
  margin-bottom: 0;
}

.figure-caption {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  color: #2f2f2f;
}

.benchmark-table-wrap {
  width: 100%;
  margin: 1.35rem auto 1.1rem;
  overflow-x: auto;
}

.benchmark-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border-top: 2.5px solid #222;
  border-bottom: 2.5px solid #222;
  color: #111;
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-size: 1.04rem;
  line-height: 1.25;
  table-layout: fixed;
}

.benchmark-table th,
.benchmark-table td {
  padding: 0.72rem 1.1rem;
  text-align: center;
  vertical-align: middle;
}

.benchmark-table th:first-child,
.benchmark-table td:first-child {
  width: 34%;
  text-align: left;
}

.benchmark-table thead {
  border-bottom: 1.8px solid #333;
}

.benchmark-table thead th {
  font-weight: 700;
}

.benchmark-table .table-group td {
  padding: 0.82rem 1rem;
  border-top: 1.5px solid #555;
  border-bottom: 1.5px solid #555;
  font-family: Castoro, Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}

.benchmark-table .oppo-row {
  background: #e7fbfb;
  font-weight: 700;
}

.benchmark-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem auto;
}

.benchmark-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: #f1f1f1;
  color: #333;
  font-family: 'Google Sans', 'Noto Sans', Arial, sans-serif;
  font-size: 0.92rem;
}

pre {
  overflow-x: auto;
  margin: 0;
  padding: 1.25rem;
  border-radius: 6px;
  color: #f7f7f7;
  background: #222;
  font-size: 0.9rem;
  line-height: 1.5;
}

code {
  font-family: 'Courier New', Courier, monospace;
}

.footer {
  padding: 3rem 0;
  color: #444;
  background: #fafafa;
  font-size: 0.94rem;
}

.footer .icon-link {
  display: inline-flex;
  margin: 0 0.45rem 1rem;
  color: #000;
  font-size: 25px;
}

.footer p {
  margin: 0 0 0.6rem;
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1240px);
  }

  .columns {
    display: block;
  }

  .column.is-four-fifths,
  .column.is-8 {
    max-width: none;
  }

  .hero-body {
    padding: 2.4rem 0;
  }

  .title.is-1 {
    font-size: 2rem;
  }

  .title.is-3 {
    font-size: 1.55rem;
  }

  .title.is-4 {
    font-size: 1.18rem;
  }

  .subtitle,
  .is-size-5 {
    font-size: 1.02rem;
  }

  .author-block {
    white-space: normal;
  }

  .publication-links {
    gap: 0.45rem;
  }

  .button {
    min-width: 8rem;
  }

  .abstract-section {
    padding: 2.7rem 0 2.9rem;
  }

  .has-text-justified {
    text-align: left;
  }

}
