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

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

.gallery-img {
  display: block;
  width: 360px;
  height: 300px;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
