/* =========================================
   bh365 POPUP (No Overlay, Standalone Layer)
========================================= */

/* 팝업 호스트 (레이아웃 간섭 방지) */
#bh365PopupHost {
  position: fixed;
  inset: 0;
  pointer-events: none; /* 팝업만 클릭되도록 */
  z-index: 9999;
}

/* 팝업 본체 */
.bh365-pop {
  position: fixed;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  pointer-events: auto;
  display: none;

  /* 안전 장치 (모바일) */
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
}

/* =========================
   Header
========================= */
.bh365-pop__hd {
  height: 44px;
  padding: 0 14px;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 14px;
  font-weight: 600;
  color: #111111;

  cursor: move;           /* 드래그 가능 표시 */
  user-select: none;      /* 드래그 중 글자 선택 방지 */
}

/* 닫기 버튼 */
.bh365-pop__x {
  cursor: pointer;
  padding: 4px 10px;
  font-size: 18px;
  line-height: 1;
  user-select: none;
}
.bh365-pop__x:hover {
  background: #f5f5f5;
  border-radius: 6px;
}

/* =========================
   Body (중앙 컨텐츠 영역)
========================= */
.bh365-pop__bd {
  overflow-y: auto;
  background: #ffffff;
}

/* 본문 HTML 래퍼 */
.bh365-pop__content {
  padding: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #333333;
}

/* 이미지 */
.bh365-pop__bd img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* 링크 이미지 hover */
.bh365-pop__bd a img:hover {
  opacity: 0.95;
}

/* =========================
   Footer
========================= */
.bh365-pop__ft {
  height: 46px;
  padding: 0 14px;
  background: #ffffff;
  border-top: 1px solid #eeeeee;

  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 13px;
  color: #555555;
}

/* footer 버튼 */
.bh365-pop__btn {
  border: 1px solid #cccccc;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}
.bh365-pop__btn:hover {
  background: #f7f7f7;
}

/* =========================
   체크박스 정렬
========================= */
.bh365-pop__ft label {
  cursor: pointer;
}
.bh365-pop__ft input[type="checkbox"] {
  margin: 0;
}

/* =========================
   반응형 (모바일 대응)
========================= */
@media (max-width: 480px) {
  .bh365-pop__hd {
    font-size: 13px;
    height: 40px;
  }
  .bh365-pop__ft {
    height: 44px;
    font-size: 12px;
  }
  .bh365-pop__btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}
