/* popup_top.r1.css
   요청(2026-01-19): 팝업을 "메인화면 정면 중앙 상단"으로 이동
   - 기존 popup.r4/r5 스타일 위에 덮어쓰는 오버라이드
   - .hsb-popup 마크업이 존재한다는 전제
*/

.hsb-popup{
  position: fixed;
  top: 88px;               /* 헤더 아래, 화면 상단 가까이 */
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  bottom: auto;
  z-index: 9999;
  max-width: min(92vw, 560px);
  width: 560px;
}

@media (max-width: 860px){
  .hsb-popup{
    top: 76px;
    width: 92vw;
    max-width: 92vw;
  }
}
