
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none; 
  padding: 0;
  margin: 0;
  justify-content: center;
}

.gallery-item {
  
  width: calc((100% - 48px) / 3);
}

.gallery-image {
  width: 100%;
  height: 240px;
  object-fit: cover; 
  display: block;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-image:hover {
  transform: scale(1.04);
  cursor: zoom-in;
}