#image-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
#image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
#image-modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 90vw;
  max-height: 90vh;
}
#image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.content-page img {
  cursor: zoom-in;
  transition: opacity 0.2s ease-in-out;
}
.content-page img:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1339px) {
  /* Your styles here */
  .content-page img {
    width: auto;
    max-width: 999px !important;
    height: fit-content;
  }
}
