#zentrum-home-images {
  margin: 24px 0 28px;
}

#zentrum-home-images .zth-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#zentrum-home-images .zth-card {
  display: block;
  background: #111;
  overflow: hidden;
  position: relative;
}

#zentrum-home-images .zth-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

#zentrum-home-images .zth-card:hover img {
  transform: scale(1.03);
}

#zentrum-home-images .zth-caption {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 1;
  min-width: 180px;
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991px) {
  #zentrum-home-images {
    margin: 20px 0 24px;
  }

  #zentrum-home-images .zth-grid {
    grid-template-columns: 1fr;
  }

  #zentrum-home-images .zth-caption {
    bottom: 16px;
    min-width: 0;
    max-width: calc(100% - 24px);
    padding: 10px 14px;
    font-size: 24px;
  }
}
