/* gallery.css */
.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.full-gallery-grid .gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-surface-2);
  cursor: pointer;
}

.full-gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.full-gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

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