/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
  padding: 150px 0 96px;
  min-height: calc(100vh - 200px);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.gallery-header h1 { margin-bottom: 16px; }

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid a:hover img { transform: scale(1.05); }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 150px; }
  .gallery-page { padding-top: 120px; }
}
