/* Gallery page styles */

.gallery-page-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(246, 198, 75, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(137, 208, 238, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, var(--paper) 0%, #ffffff 100%);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 1.5rem;
}

.gallery-masonry .gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.gallery-page-grid .media-card {
  display: block;
  width: 100%;
  height: auto !important;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background: transparent;
  box-shadow: var(--shadow-soft);
}

.gallery-page-grid .gallery-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: var(--sky-soft);
}

.gallery-page-grid .media-card img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  display: block;
}

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

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