/* 모달 기본 */
.modal {
  display: none; /* 처음에는 숨김 */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8); /* 반투명 배경 */
}

/* 모달 이미지 */
.modal-content {
  display: block;
  max-width: 90%;
  max-height: 80%;
  margin: 5% auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: zoom 0.3s;
}

/* 확대 애니메이션 */
@keyframes zoom {
  from {transform: scale(0.7);}
  to {transform: scale(1);}
}

/* 닫기 버튼 */
.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-close:hover {
  color: #bbb;
}

/* 캡션 */
#modal-caption {
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
}


.modal-content {
  display: block;
  width: auto;
  width: auto;        /* 가로는 자동으로 비율 유지 */
  height: 90vh;       /* 화면 세로 90% */
  max-width: 95vw;    /* 화면 가로 최대 제한 */
  margin: 5% auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  animation: zoom 0.3s;
  object-fit: contain; /* 이미지 비율 유지 */
}
