#popup_content_wrap {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start; /* default safe mode */
  padding: 40px 16px;
  background: rgba(0, 0, 0, 0.55);
  overflow-y: auto;
  z-index: 9999;
}

#popup_content_wrap.show {
  opacity: 1;
}

#popup_content {
  background: #ffffff;
  width: 100%;
  max-width: 760px;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* =====================================================
   CLOSE BUTTON
   ===================================================== */
.popup-close {
  position: sticky;
  top: 0;
  float: right;
  background: transparent;
  border: none;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  color: #333;
}

.popup-close:hover {
  color: #6E1C74;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
#popup_content h1 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #6E1C74;
}

#popup_content h3 {
  margin: 16px 0 6px;
  font-size: 18px;
  font-weight: 600;
}

#popup_content p {
  margin: 14px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* =====================================================
   LINKS
   ===================================================== */
#popup_content a {
  color: #0073b1;
  text-decoration: none;
}

#popup_content a:hover {
  text-decoration: underline;
}

/* =====================================================
   SMALL HEIGHT / HIGH ZOOM
   ===================================================== */
@media (max-height: 820px) {
  #popup_content {
    max-height: calc(100vh - 72px);
    padding: 18px;
  }

  #popup_content p {
    font-size: 14px;
  }
}

/* Large screens + 100% zoom */
@media (min-height: 850px) {
  #popup_content_wrap {
    align-items: center;
    padding-top: 0;
  }
}


@media (min-height: 900px) {
  #popup_content_wrap {
    align-items: center;
    padding-top: 0;
  }

  #popup_content {
    margin-top: 0;
  }
}
/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 768px) {
  #popup_content {
    width: 94%;
    max-height: calc(100vh - 64px);
  }
}
