/* 메인 자동 오픈 레이어 팝업 (빌더 어드민 연동) — MIG-36600 고객 요청 2026-09-10 */
.plk-popup {
  position: fixed;
  z-index: 9990;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: min(560px, 92vw);
  width: 100%;
}
.plk-popup--top { top: 12%; transform: translate(-50%, 0); }
.plk-popup--bottom { top: auto; bottom: 4%; transform: translate(-50%, 0); }
.plk-popup--full {
  left: 0; top: 0; right: 0; bottom: 0;
  transform: none;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
}
.plk-popup__card {
  background: #fff;
  border: 1px solid #d5d5d5;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 84vh;
}
.plk-popup--full .plk-popup__card { max-width: min(560px, 92vw); width: 100%; }
.plk-popup__body {
  display: block;
  overflow-y: auto;
  text-decoration: none;
  color: inherit;
}
.plk-popup__body img {
  display: block;
  width: 100%;
  height: auto;
}
.plk-popup__content { padding: 18px 20px; font-size: 14px; line-height: 1.6; }
.plk-popup__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #e3e3e3;
  background: #f7f7f7;
}
.plk-popup__bar button {
  appearance: none;
  border: 0;
  background: none;
  padding: 11px 16px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  font-family: inherit;
}
.plk-popup__bar button:hover { color: #111; text-decoration: underline; }
.plk-popup__close { margin-left: auto; font-weight: bold; }
@media (max-width: 767px) {
  .plk-popup { max-width: 94vw; }
  .plk-popup__bar button { padding: 12px 14px; }
}
