.media-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 40px;
}

.media-modal-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  margin: auto;
  display: block;
}

.media-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 768px) {
  .media-modal-content {
    width: 100%;
    height: auto;
  }
}
