.custom-hero-bg {
  position: relative;
  width: 100%;
  height: 100vh; /* 화면 전체 높이 */
  overflow: hidden;
}
.custom-hero-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; /* 화면 비율 유지하며 꽉 채우기 */
}
.page-header .overlay-content {
  position: relative;
  z-index: 2; /* 영상 위에 콘텐츠 표시 */
}


