/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 15px;
}

.gallery-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 3%;
  aspect-ratio: 1;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.gallery-item:hover img {
  opacity: 0.8;
}

/* Tablet: 3 columns */
@media only screen and (min-width: 481px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* Desktop: 4 columns */
@media only screen and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
