/* =========================================
   GALLERY PAGE
========================================= */

.gallery-category {
  margin-bottom: 48px;
}

.gallery-category h2 {
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}
