/* ---- GALLERY PAGE THUMBNAILS ---- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.gallery-grid-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.gallery-grid-item img {
  width: 100%;
  height: 200px;         /* thumbnail height */
  object-fit: contain;   /* show whole PNG */
  background: #f1f5f9;   /* subtle background */
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.gallery-grid-title {
  font-size: 0.85rem;
  color: var(--text-main);
  text-align: center;
}
