/* 기본 설정 */
body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #fcfcfc;
  color: #4a4a4a;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px; /* 내비게이션 바 높이만큼 오프셋 */
}

h1, h2, h3, h4, .title {
  font-family: 'Google Sans', sans-serif;
  color: #363636;
}

a {
  color: #3273dc;
  transition: color 0.2s ease;
}
a:hover {
  color: #1c4e9e;
}

/* 내비게이션 바 */
.navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.navbar-item {
  font-weight: 500;
}

/* Hero 섹션 */
.site-logo {
  width: 80px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0 auto 1rem;
  display: block;
}

.publication-title {
  font-weight: 700;
}

.publication-subtitle {
  font-weight: 400;
  color: #555;
  margin-bottom: 1.5rem !important;
}

.author-block {
  display: inline-block;
  margin-right: 10px;
}
.author-block a {
  color: #3273dc;
  font-weight: 600;
  text-decoration: none;
}
.author-block a:hover {
  text-decoration: underline;
}

/* 박스/카드 스타일 개선 */
.box {
  border-radius: 12px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.05), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: #fff;
}

/* 이미지 및 비디오 컨테이너 */
.figure-strip img, .main-result-img {
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.video-container video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: #000;
  max-height: 360px;
}

.image-box img {
  border-radius: 6px;
  border: 1px solid #eee;
  padding: 5px;
  background: #fff;
}

figcaption {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
}

/* 텍스트 강조 */
.has-text-primary {
  color: #3273dc !important; /* Bulma 기본 primary 색상 또는 원하는 색으로 변경 */
}

/* 인용 박스 */
.citation-box {
  background-color: #f5f5f5;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #3273dc;
}

/* 푸터 */
footer.footer {
  background: #f5f5f5;
  padding: 3rem 1.5rem;
  margin-top: 3rem;
}