.kutsche-about-images-grid img {
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.kutsche-about-images-grid img:hover {
  transform: scale(1.01);
  filter: brightness(1.02);
}

.kutsche-img-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vh 3vw;
  background: rgba(0, 0, 0, 0.78);
  z-index: 1000;
}

.kutsche-img-modal.kutsche-img-modal--open {
  display: flex;
  animation: kutscheImgModalFadeIn 0.18s ease-out;
}

.kutsche-img-modal__content {
  position: relative;
  max-width: min(1100px, 96vw);
  max-height: 92vh;
  overflow: auto;
  border-radius: var(--radius, 0);
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(6px) scale(0.985);
  animation: kutscheImgModalPopIn 0.22s ease-out forwards;
  display: flex;
  flex-direction: column;
}

.kutsche-img-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.kutsche-img-modal__close:hover {
  background: rgba(0, 0, 0, 0.75);
}

.kutsche-img-modal__title {
  padding: 18px 56px 14px;
  text-align: center;
  font-family: var(--font-display, inherit);
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--foreground, 0 0% 10%));
  border-bottom: 1px solid hsl(var(--border, 0 0% 91%));
}

.kutsche-img-modal__img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  background: transparent;
  display: block;
  margin: 0 auto;
}

@keyframes kutscheImgModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes kutscheImgModalPopIn {
  from { transform: translateY(10px) scale(0.98); }
  to { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .kutsche-about-images-grid img {
    transition: none;
  }
  .kutsche-img-modal.kutsche-img-modal--open,
  .kutsche-img-modal__content {
    animation: none;
  }
}

