
/* hero_height_restore.css
   모바일에서 카드가 사라지는 증상 방지: hero 높이 자동 해제 오버라이드를 무효화 */
section.hero {
  height: 85vh !important;   /* 인라인과 동일하게 강제 유지 */
  min-height: 85vh !important;
}
@supports (height: 1dvh) {
  section.hero { min-height: 85dvh !important; }
}
