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


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

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

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


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

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


.publication-title {
}

.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

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

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

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

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

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

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

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}

.slider-pagination .slider-page {
  background: #000000;
}

.eql-cntrb { 
  font-size: smaller;
}

/* Larger image carousel adjustments */
 .carousel-wide .results-carousel {
  max-width: 834px; /* 放大1/4：667 * 1.25 = 834 */
  margin: 0 auto;
 }

 .carousel-wide .results-carousel .item img {
  /* 不裁剪：使用最大宽高约束，保持比例 */
  max-width: 100%;
  max-height: 350px; /* 放大1/4：280 * 1.25 = 350 */
  width: auto;  /* 让浏览器按图片本身比例决定 */
  height: auto;
  object-fit: contain; /* 冗余，确保即便将来固定盒子也不裁剪 */
  border-radius: 8px;
  display: block;
 }

/* 包裹图片的容器：固定高度，图片自身自适应并居中，caption 在容器外部独立 */
.carousel-image-wrapper {
  width: 100%;
  height: 350px; /* 放大1/4：280 * 1.25 = 350 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff; /* 留白底色 */
  overflow: hidden; /* 防止异常大图溢出 */
  padding: 0; /* 确保不影响图片对齐 */
  box-sizing: border-box;
}

/* 轮播 item 去掉对 caption 的 flex 影响，让 wrapper + caption 垂直排布 */
.results-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-carousel .item h2.subtitle {
  font-size: 1rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

 @media (min-width: 1600px) {
  .carousel-wide .results-carousel .item img {
    height: 520px; /* keep proportion on very wide screens */
  }
 }

/* Reduce horizontal padding inside items so image is visually larger */
 .carousel-wide .results-carousel .item {
  padding: 10px;
  display: flex;               /* 让图片在固定高度盒子内居中 */
  align-items: center;
  justify-content: center;
  min-height: 400px;           /* 放大1/4：320 * 1.25 = 400 */
  background: #fff;            /* 留白区域底色 */
}

/* Small carousel for 3DGSCD dataset */
/* 625 -> 687 */
/* 781 -> 859 */
/* 313 -> 344 */
/* 313 -> 344 */
/* 375 -> 412 */
.carousel-small .results-carousel {
  max-width: 687px; 
  margin: 0 auto;
}

/* Updated: Specific styles for small carousel within carousel-wide section */
.carousel-small-wrapper .carousel-small-inner {
  max-width: 859px; 
  margin: 0 auto;
}

.carousel-small-wrapper .carousel-small-inner .item img,
.carousel-small .results-carousel .item img {
  max-width: 100%;
  max-height: 344px; 
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.carousel-small-wrapper .carousel-small-inner .carousel-image-wrapper,
.carousel-small .carousel-image-wrapper {
  width: 100%;
  height: 344px; 
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.carousel-small-wrapper .carousel-small-inner .item,
.carousel-small .results-carousel .item {
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 412px; 
  background: #fff;
}

.carousel-small-wrapper .carousel-small-inner .item h2.subtitle,
.carousel-small .results-carousel .item h2.subtitle {
  font-size: 0.9rem; /* 稍小的字体 */
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Video Presentation Styles */
.video-container {
  position: relative;
  margin-bottom: 1rem;
}

.video-container video {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container video:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive video grid */
@media (max-width: 768px) {
  .video-container {
    margin-bottom: 2rem;
  }
}



