#shrine-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 32px;
}

.shrine-tile {
  width: 140px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.shrine-tile img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.shrine-tile:hover img {
  transform: scale(1.1);
}

.shrine-tile p {
  margin-top: 8px;
  color: #d378c6;
  font-weight: bold;
  font-size: 0.9rem;
  text-transform: lowercase;
}
