.site-popup-backdrop {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 27, 40, .58);
  backdrop-filter: blur(10px);
  animation: daol-popup-backdrop .35s ease both;
}

.site-popup {
  position: relative;
  width: min(92vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  color: #12324a;
  background: #fff;
  box-shadow: 0 32px 90px rgba(5, 25, 38, .3);
  animation: daol-popup-in .5s cubic-bezier(.16, .8, .24, 1) both;
}

.site-popup img { width: 100%; max-height: 360px; object-fit: cover; }
.site-popup-copy { padding: 25px; }
.site-popup-copy small { color: #147e78; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.site-popup-copy h2 { margin: 9px 0 10px; font-family: "Noto Serif KR", serif; font-size: clamp(24px, 5vw, 34px); line-height: 1.35; }
.site-popup-copy p { margin: 0; color: #58707c; line-height: 1.75; }
.site-popup-actions { display: flex; gap: 9px; margin-top: 20px; }
.site-popup-actions a, .site-popup-actions button { flex: 1; min-height: 46px; display: grid; place-items: center; border: 1px solid #d6e3e7; border-radius: 11px; font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
.site-popup-actions a { color: #fff; background: #12324a; }
.site-popup-actions button { color: #12324a; background: #fff; }
.site-popup-close { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #12324a; background: rgba(255, 255, 255, .92); box-shadow: 0 6px 18px rgba(10, 31, 45, .15); font-size: 21px; cursor: pointer; }

@keyframes daol-popup-backdrop { from { opacity: 0; } to { opacity: 1; } }
@keyframes daol-popup-in { from { opacity: 0; transform: translateY(28px) scale(.96); } to { opacity: 1; transform: none; } }

@media (max-width: 560px) {
  .site-popup-backdrop { align-items: end; padding: 12px; }
  .site-popup { width: 100%; border-radius: 22px; }
  .site-popup img { max-height: 285px; }
  .site-popup-copy { padding: 21px 18px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .site-popup-backdrop, .site-popup { animation: none; }
}
