/* Gallery Container */
.gallery-container {
  max-width: min(96%, 1920px);
  margin: 0 auto;
  padding-left: clamp(0.75rem, 2vw, 1.5rem);
  padding-right: clamp(0.75rem, 2vw, 1.5rem);
}

/* Masonry Gallery Layout */
.masonry-gallery {
  column-count: 4;
  column-gap: 1.5rem;
  padding: 1rem 0;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--bg-secondary);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* Remove object-fit to ensure images remain their original proportions without cropping */
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Masonry */
@media (max-width: 1400px) {
  .masonry-gallery {
    column-count: 3;
  }
}

@media (max-width: 900px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 550px) {
  .masonry-gallery {
    column-count: 1;
    column-gap: 0;
  }
}

