.collection-page .collection-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
  padding: clamp(12px, 2vw, 20px) 0 clamp(8px, 2vw, 16px);
  width: min(1700px, 100%);
}

.collection-page .collection-gallery-grid .tier-card {
  background: transparent;
}

.collection-page .collection-gallery-grid .tier-card__link {
  align-items: stretch;
  gap: 14px;
}

.collection-page .collection-gallery-grid .tier-card__figure {
  border: none;
  border-radius: 0;
  background: #ffffff;
  aspect-ratio: 2/3;
}

.collection-page .collection-gallery-grid .tier-card__image {
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.collection-page .collection-gallery-grid .tier-card__cta {
  display: none;
}

.collection-page .collection-gallery-grid .tier-card__details {
  background: transparent;
  border: none;
  padding: 0 6px 14px;
  gap: 8px;
  text-align: center;
  align-items: center;
  justify-items: center;
}

.collection-page .collection-gallery-grid .tier-card__price {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.collection-page .collection-gallery-grid .tier-card__description {
  margin: 0;
  color: #404040;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1100px) {
  .collection-page .collection-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 6px;
  }
}

@media (max-width: 640px) {
  .collection-page .collection-gallery-grid {
    grid-template-columns: 1fr;
  }

  .collection-page .collection-gallery-grid .tier-card__figure {
    aspect-ratio: auto;
  }
}
