/* The collection is a specimen cabinet: the Pal portrait is the metadata. */
.collection-grid { gap: 12px; }

.pal-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 13px;
  background: rgba(255, 253, 247, .72);
}

.pal-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: auto -25% -46px;
  height: 92px;
  background: #e8efda;
  border-radius: 50%;
}

.pal-card.owned::before { background: #cce7c4; }

.pal-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 127px;
  object-fit: contain;
  filter: drop-shadow(0 9px 6px rgba(27, 65, 54, .18));
  transition: transform .25s ease;
}

.pal-card:hover img { transform: scale(1.09) translateY(-3px); }
.pal-card > div { position: relative; z-index: 1; width: 100%; padding-top: 4px; }
.pal-card h3 { margin: 0; text-align: center; color: var(--pond); }
.ownership { z-index: 2; }

@media (max-width: 760px) {
  .pal-card { min-height: 147px; padding: 9px; }
  .pal-card img { width: 100%; height: 96px; }
}
