.elementor-2476 .elementor-element.elementor-element-1425e33a{--display:flex;}.elementor-2476 .elementor-element.elementor-element-43c253a{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-23befc4 */.photo-gallery {
  column-count: 3;
  column-gap: 20px;
}

.photo-gallery img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
  display: block;
  break-inside: avoid;
  user-select: none;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.photo-gallery img:nth-child(odd) {
  animation-delay: 0.15s;
}

.photo-gallery img:nth-child(even) {
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover – bardzo subtelny */
.photo-gallery img:hover {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

/* Responsywność */
@media (max-width: 900px) {
  .photo-gallery {
    column-count: 2;
  }
}

@media (max-width: 500px) {
  .photo-gallery {
    column-count: 1;
  }
}/* End custom CSS */