.card-product-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.card-product-category .card__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.card-product-category .card__media-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background-color: var(--color-surface-muted);
}
.card-product-category .card__media {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.card-product-category .card__media__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 5;
  background: linear-gradient(
    0deg,
    rgb(var(--color-surface-dark-rgb) / 0.9) 0%,
    rgb(var(--color-surface-dark-rgb) / 0) 100%
  );
}
.card-product-category .card__content {
  display: flex;
  position: absolute;
  z-index: 10;
  flex-direction: column;
  gap: 0.2rem;
  left: 2rem;
  bottom: 2rem;
  right: 2rem;
}
@media (width >= 1200px) {
  .card-product-category .card__content {
    left: 4.4rem;
    right: 4.4rem;
    bottom: 4.4rem;
  }
}
.card-product-category .card__title-alt {
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-md);
  line-height: var(--line-height-dense);
  color: rgb(var(--color-text-light-rgb) / 0.7);
}
.card-product-category .card__title {
  font-weight: var(--font-weight-semi-bold);
  font-size: var(--font-size-lg);
  line-height: var(--line-height-snug);
  font-family: var(--font-family-heading);
  color: var(--color-text-light);
}
