/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page-main {
  flex: 1;
}

/* =========================================================
   INTRO
========================================================= */

.gallery-intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.gallery-title {
  margin: 8px 0 12px;
}

.gallery-description {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.82;
}

/* =========================================================
   GRID
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;

  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1.08);
}

/* invisible scroll trigger */
.gallery-sentinel {
  height: 1px;
}

/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}