.galery-lightbox {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.galery-lightbox img {
  width: clamp(220px, 48%, 600px);
  height: auto;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .2s ease;
}
.galery-lightbox img:hover {
  transform: scale(1.02);
}
/* Lightbox-Overlay */
.lb {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  z-index: 99999; /* über WP-Adminbar/Sticky-Header */
}
.lb.is-open {
  display: flex;
}
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .9);
}
.lb__img {
  position: relative;
  max-width: 1200px;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
  z-index: 1;
}
/* Schließen-Button */
.lb__close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
body.lb-no-scroll {
  overflow: hidden;
}