/* ÆË¾÷À» È­¸é Áß¾Ó¿¡ ¶ç¿ò + ¹ÝÅõ¸í ¹è°æ */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15vh 5vw; /* À§¾Æ·¡ ¿©¹é È®º¸ */
  box-sizing: border-box;
  padding: 0; /* ÁÂ¿ì ¿©¹é Á¦°Å */
}

/* ÆË¾÷ ¹Ú½º */
.popup-box {
  width: auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* ÀÌ¹ÌÁö */
.popup-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-height: calc(70vh - 50px); /* ¹öÆ° ¿µ¿ª Á¦¿Ü */
}

/* ÇÏ´Ü ¹öÆ° */
.popup-bottom {
  padding: 10px;
  background: #f8f8f8;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ddd;
  flex-shrink: 0;
}

#popup_close_btn {
  padding: 5px 12px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ÀÌ¹ÌÁö°¡ ÆË¾÷ÀÇ ³Êºñ¸¦ °áÁ¤ */
.popup-box img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 500px; /* ¿øº» ÀÌ¹ÌÁö ³Êºñ ±âÁØ */
}

@media (max-width: 520px) {
  .popup-box img {
    width: 100vw;
    height: auto;
    max-width: 90vw;
  }
}
