.certificate-img-container {
  position: relative; /* Referenz für absolute Position */
  display: inline-block; /* passend für Bildgrößen */
}

.certificate-img-container img {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.img-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: opacity 0.2s, transform 0.3s ease;
  opacity: 1;
 margin-top:-32px
}

.certificate-img-container .img-overlay {
 float:right;
}

.klein-grid .certificate-img-container .img-overlay {
    display: none;
}

.certificate-img-container.hide-overlay .img-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.icon-magnifier {
  width: 20px;
  height: 20px;
  color: #111;
  display: block;
  /* Farbe passend zu deinem Icon */
}

@media (reader) {
  .auszeichnung .fotos .certificate-img-container .icon-magnifier {
    display: none !important;
  }
} 