/* 컨테이너는 항상 클릭 투과, 자식 div만 클릭 받음
   ※ #hd_pop:not(:has(div)) 패턴은 hidden div도 자식으로 인식해서 무효 → 사용 금지 */
#hd_pop {
  pointer-events: none;
}
#hd_pop > div {
  pointer-events: auto;
}

@media (max-width: 599px) {
  .hd_pops_con {
    width: 100% !important;
    height: auto !important;
  }
  .hd_pops_footer {
    font-size: 2.6vw !important;
  }
  #hd_pop {
    height: 100vh;
    position: absolute;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 5% !important;
  }
  #hd_pop > div {
    margin: 0 auto !important;
    left: auto !important;
    top: 5% !important;
    border-radius: 22px;
    overflow: hidden;
    width: 90% !important;
  }
}
