.popup-manager {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.popup-content {
  position: relative;
  width: min(92vw, 820px);
  max-height: 90vh;
  margin: 5vh auto;
  background: #ffffff;
  border-radius: 8px;
  overflow: auto;
  box-sizing: border-box;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.popup-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 2;
  margin: 8px 8px 0 0;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.popup-media img {
  display: block;
  width: 100%;
  height: auto;
}

.popup-html {
  padding: 18px 22px 22px;
}

.popup-manager .popup-html > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .popup-content {
    width: 94vw;
    margin: 3vh auto;
    max-height: 94vh;
  }

  .popup-html {
    padding: 14px 16px 18px;
  }
}
