.gallery {
  display: grid;
  /* Automatically creates columns at least 250px wide */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Keeps aspect ratio while filling the space */
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}