/* hero_overlay.override.css
   - 히어로 비디오 위 어둡기 강제 오버라이드
   - 반드시 '모든 CSS 다음'에 로드하세요.
*/
:root{ --hero-dim: 0.70; } /* 원하는 농도(0~1) */

section.hero .hero-overlay{
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  background: rgba(0,0,0,var(--hero-dim)) !important;
  background-image: none !important; /* 기존 그라데이션/이미지 무력화 */
  z-index: 2 !important;            /* 비디오보다 위 */
  pointer-events: none;             /* 클릭 막지 않게 */
}

/* 비디오가 오버레이 위로 올라오지 않도록(필요시) */
.hero-video{ z-index: 1 !important; position: relative; }