.collectibles-hero {
  grid-template-columns: minmax(360px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 405px;
  padding: 28px 30px;
}

.collectibles-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font: 800 15px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.collectibles-hero h1 {
  max-width: 670px;
  font-size: clamp(42px, 4vw, 62px);
}

.collectibles-hero .books-hero__copy > p:last-child {
  max-width: 580px;
}

.collectibles-hero__art {
  align-self: stretch;
  background: var(--paper-light);
}

.collectibles-hero__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.collectibles-catalog {
  padding-top: 34px;
}

.collectibles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.collectible-card {
  min-width: 0;
}

.collectible-card .product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 14px;
  background: rgba(255, 247, 224, 0.72);
}

.collectible-card .product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collectible-card .product-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 9px;
  min-height: 260px;
}

.collectible-card h3 {
  min-height: 2.2em;
  font-size: 20px;
  line-height: 1.08;
}

.collectible-card .product-card__subtitle {
  min-height: 2.6em;
  line-height: 1.3;
}

.collectible-card__format {
  align-self: end;
  margin: 0;
  color: var(--brown);
  font: 700 12px/1.3 Arial, sans-serif;
  text-transform: uppercase;
}

.collectible-card .product-card__price {
  margin: 0;
}

.collectible-card .product-card__button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
}

.collectibles-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.collectibles-pagination__control {
  display: grid;
  min-width: 40px;
  height: 40px;
  padding-inline: 12px;
  place-items: center;
  border: 2px solid var(--line);
  border-radius: 5px;
  background: var(--paper-light);
  color: var(--ink);
  font: 800 13px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.collectibles-pagination a:hover,
.collectibles-pagination a[aria-current="page"] {
  background: var(--orange);
}

.collectibles-pagination [aria-disabled="true"] {
  opacity: 0.45;
}
@media (max-width: 1100px) {
  .collectibles-hero {
    grid-template-columns: minmax(300px, 0.82fr) minmax(450px, 1.18fr);
  }

  .collectibles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .collectibles-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .collectibles-hero h1 {
    max-width: none;
    font-size: clamp(42px, 10.8vw, 62px);
  }

  .collectibles-hero__art {
    width: 100%;
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 600px) {
  .collectibles-hero {
    padding: 18px;
  }

  .collectibles-hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .collectibles-grid {
    grid-template-columns: 1fr;
  }

  .collectible-card .product-card__media {
    padding: 16px;
  }

  .collectible-card .product-card__body {
    min-height: 0;
  }

  .collectible-card h3,
  .collectible-card .product-card__subtitle {
    min-height: 0;
  }
}
