/* Thumbnail in Beschreibung + Kommentare */
.description-body .desc-img img,
.comment-body .desc-img img {
  display: block;
  max-width: 240px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transition: box-shadow 0.15s ease;
}

.description-body .desc-img img:hover,
.comment-body .desc-img img:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}

.img-lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  cursor: default;
}
