.image-duo-fullwidth-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  z-index: 13;
}

.image-duo-block {
  display: flex;
  
  flex-wrap: wrap;
  width: 100%;
}


.image-duo-block a {
  position: relative;
  display: block;
  border-bottom:none;
}

.image-duo-block.two-images a {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  display: block;
}

.image-duo-block.two-images img {
  width: 100%;
  height: 400px; /* Höhe nach Wunsch */
  object-fit: cover;
  display: block;
}

.image-duo-block img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}




.image-duo-block .zoom-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.image-duo-block a:hover .zoom-icon {
  opacity: 1;
}


.image-duo-block a:hover,
.image-duo-block a:focus {
  cursor: zoom-in;
}

.image-duo-block.two-images a:last-child .zoom-icon {
  right: 25px;
}

