/* Container for the gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
  gap: 10px; /* space between items */
  max-width: 800px;
  margin: 0 auto;
}

/* Each gallery item */
.gallery-item {
  width: 100%;
  height: 200px; /* fixed height for uniformity */
  overflow: hidden;
  border-radius: 8px;
}

/* Image styling */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures images fill the cell without distortion */
  transition: transform 0.3s ease;
}

/* Optional hover effect */
.gallery-item img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}