body {
  font-family: 'Noto Sans', sans-serif;
  overflow-x: hidden;
}

.title,
.subtitle {
  text-align: center;
}

.section-title {
  position: relative;
  padding: 0.9rem 1rem;
  z-index: 0;
}

.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #f5f5f5;
  z-index: -1;
}

.hf-icon {
  height: 1.2em;
  width: auto;
  display: block;
}

@media screen and (min-width: 1024px) {
  .container.is-max-desktop {
    width: 80vw;
    max-width: 1200px;
  }
}

.footer .icon-link {
  font-size: 25px;
  color: #000;
}

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

.publication-title {
  font-family: 'Google Sans', sans-serif;
}

.publication-authors {
  font-family: 'Google Sans', sans-serif;
}

.publication-authors a {
  color: hsl(204, 86%, 53%) !important;
}

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

.author-block {
  display: inline-block;
}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  border: 1px solid #bbb;
  border-radius: 10px;
  padding: 0;
  font-size: 0;
}

.results-carousel .item a {
  display: block;
}

.results-carousel video,
.results-carousel img {
  margin: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Pipeline figure */
.pipeline-figure img {
  display: block;
  margin: 0 auto;
  width: 92%;
  max-width: 960px;
  height: auto;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* Results table */
.results-table {
  margin: 1.5rem auto;
  max-width: 800px;
}

.results-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.results-table th {
  background: #363636;
  color: #fff;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 600;
}

.results-table td {
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.results-table tr:nth-child(even) {
  background: #f9fafb;
}

.results-table tr:hover {
  background: #eef2ff;
}

.results-table .best {
  font-weight: 700;
  color: #059669;
}

/* Highlight boxes */
.highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-radius: 12px;
  padding: 1.2rem 1rem;
  margin: 0.5rem 0;
  text-align: center;
}

.highlight-box .stat-number {
  font-size: 2.2rem;
  font-family: 'Google Sans', sans-serif;
  font-weight: 800;
  display: block;
  line-height: 1.2;
}

.highlight-box .stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Feature cards */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 0.5rem 0;
}

.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feature-card .icon-large {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.feature-card h4 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: #6b7280;
}

@media screen and (max-width: 768px) {
  .pipeline-figure img {
    width: 100%;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }
}
