/* 
 * Popup Common Styles 
 * 라이브 및 테스트 환경 공용
 */

/* 배경 딤 레이어 */
.popup-dim {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(16, 22, 31, 0.46);
  pointer-events: auto;
}

/* 팝업 전체 감싸기 */
.site-popup-wrap {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* 팝업 공용 링크 영역 스타일 (멀티 링크용) */
.site-popup-link-area {
  position: absolute;
  display: block;
  padding: 0;
  z-index: 1;
  background: transparent;
  border: 0;
  outline: 0;
  cursor: pointer;
}

