.schaefer-matten-bilder-block {
  display: flex;
  width: 100%;
  max-width: 100vw;
  height: 500px;
  max-height: 500px;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.schaefer-matten-bilder-block__item {
  flex: 1 1 0;
  overflow: hidden;
}

.schaefer-matten-bilder-block__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.schaefer-matten-bilder-block__item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .schaefer-matten-bilder-block {
    flex-direction: column;
    height: auto;
    max-height: none;
  }

  .schaefer-matten-bilder-block__item {
    flex: none;
    width: 100%;
    height: 300px;
  }
}
