.shirts-hero {
  grid-template-columns: minmax(310px, 0.72fr) minmax(560px, 1.28fr);
  min-height: 390px;
  padding: 28px 30px;
}

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

.shirts-hero h1 {
  max-width: 570px;
  font-size: clamp(56px, 5.5vw, 86px);
}

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

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

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

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

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

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

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

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

.shirt-card .product-card__body {
  display: grid;
  grid-template-rows: auto auto auto auto auto 1fr auto;
  gap: 8px;
  min-height: 330px;
}

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

.shirt-card .product-card__subtitle {
  min-height: 2.6em;
}

.shirt-card__support {
  min-height: 1.3em;
  margin: 0;
  color: var(--orange);
  font: 700 12px/1.3 Arial, sans-serif;
}

.shirt-card__sizes {
  margin: 0;
  font: 700 13px/1.3 Arial, sans-serif;
}

.shirt-card__pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 8px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(24, 19, 12, 0.28);
  background: rgba(255, 255, 255, 0.3);
  font: 500 11px/1.25 Arial, sans-serif;
}

.shirt-card__pricing span:first-child {
  grid-column: 1 / -1;
  font-weight: 700;
}

.shirt-card .product-card__price {
  align-self: end;
}

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

@media (max-width: 1100px) {
  .shirts-hero {
    grid-template-columns: minmax(280px, 0.78fr) minmax(460px, 1.22fr);
  }

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

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

  .shirts-hero h1 {
    max-width: none;
    font-size: clamp(48px, 12vw, 70px);
  }

  .shirts-hero__art {
    width: 100%;
    aspect-ratio: 2 / 1;
  }
}

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

  .shirts-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

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

  .shirt-card .product-card__media {
    aspect-ratio: 1 / 1;
    padding: 18px;
  }

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

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

  .shirt-card__pricing {
    grid-template-columns: 1fr 1fr;
  }
}
