/* ===== 全局设置 ===== */
html, body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #000;   /* 黑色背景 */
  color: #fff;              /* 默认白色文字 */
}

/* 链接颜色 */
a {
  color: hsl(204, 86%, 53%) !important;
}
a:hover {
  text-decoration: underline;
}

/* ===== 标题 ===== */
.title
.hero .title,
.section .title {
  color: #fff !important;
}

.subtitle,
.hero .subtitle,
.section .subtitle {
  color: #ddd !important;
}

/* ===== 内容文本（Bulma 默认是灰色，这里强制改成浅灰/白色） ===== */
.content,
.content p,
.content li,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #ddd !important;
}

/* ===== 页脚 ===== */

.footer {
  background-color: #4c4c4c;
  color: #fff;
}
.footer .icon-link {

  font-size: 25px;
  color: #fff;

}

/* ===== 自定义标题样式 ===== */
.page-title {
  text-align: center;
  margin: 0 0;
}
.page-title .title-main {
  font-size: 3rem;
  font-weight: bold;
  display: block;
  color: #fff;
}
.page-title .title-sub {
  font-size: 1.5rem;
  font-weight: normal;
  display: block;
  color: #fff;
}


/* ===== teaser 图片居中 ===== */
.teaser .hero-body {
  padding-top: 2rem;
  padding-bottom: 0;
}
.teaser {
  font-family: 'Google Sans', sans-serif;
  text-align: center;
}
.teaser img {
  display: block;
  margin: 0 auto;
  padding-bottom:0rem;
}
.teaser video {
  display: block;
  margin: 0 auto;
  padding-bottom:0rem;
}

/* ===== publication 样式 ===== */
.publication-title {
  font-family: 'Google Sans', sans-serif;
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
}
.author-block{
  padding-top: 0;
  padding-bottom: 0;
}
.publication-authors {
  font-family: 'Google Sans', sans-serif;
  padding-top: 1rem;
  padding-bottom: 0;
}
.publication-authors a {
  color: #fff !important;
  /* color: hsl(204, 86%, 53%) !important; */
  font-size: 1rem;

}
.publication-authors a:hover {
  text-decoration: underline;
}
.publication-venue {
  color: #fff;
  width: fit-content;
  font-weight: bold;
}
.publication-awards {
  color: #ff3860;
  width: fit-content;
  font-weight: bolder;
}
.publication-university {
  color: #bfbdbd !important;
  font-size: 0.85rem;

}

/* ===== 视频嵌入 ===== */
.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-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

/* ===== Carousel ===== */
.results-carousel {
  overflow: hidden;
}
.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  border: 1px solid #444; /* 浅灰边框，避免太突兀 */
  border-radius: 10px;
  padding: 0;
  font-size: 0;
}
.results-carousel video {
  margin: 0;
}

/* ===== Interpolation 面板 ===== */
.interpolation-panel {
  background: #1a1a1a;
  border-radius: 10px;
  color: #fff;
}
.interpolation-panel .interpolation-image {
  width: 100%;
  border-radius: 5px;
}
#interpolation-image-wrapper img {
  border-radius: 5px;
}

/* ===== 作者区 ===== */

.authors-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.authors-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}
.author-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #555;   /* 浅灰边框 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  background: #222;
}
.author-name {
  font-family: 'Google Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  text-align: center;
  color: hsl(204, 86%, 53%);
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.2em * 2);
}
.author-name sup {
  color: #fff;
  font-weight: 600;
}
.authors-affil-note {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 0.8rem;
}
