.gallery-page {
  padding: 80px 0;
}

.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.gallery-tile {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
  cursor: pointer;
}

.gallery-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

.tile-header {
  margin-bottom: 8px;
}

.tile-category {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(58, 175, 160, 0.14);
  color: var(--primary);
}

.tile-title {
  font-size: 1.4rem;
  margin: 10px 0 14px;
}

.tile-preview {
  display: flex;
  gap: 12px;
  overflow: hidden; /* no scrollbar */
}

.tile-preview img {
  height: 96px;
  width: 140px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .tile-preview img {
    height: 80px;
  }
}
