.mjs-image {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mjs-image__img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}

.mjs-image__caption {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.mjs-image__caption a {
  color: var(--color-muted);
  text-decoration: underline;
}

.mjs-image__credit {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.mjs-image__credit a {
  color: var(--color-muted);
  text-decoration: underline;
}

.mjs-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: zoom-out;
}

.mjs-lightbox__img {
  width: 80vw;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.mjs-lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
