.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.gallery-item {
  flex: 1;
  min-width: 250px;
}

.gallery-item img {
  background-color: #e0e0e0;
  border-radius: 12px;
  display: block;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-item img:hover {
  transform: scale(1.03);
}