.product-category-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.product-category-card .card__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.product-category-card .card__media-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background-color: rgb(var(--color-bg-contrast-rgb) / 0.08);
}
.product-category-card .card__media {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.product-category-card .card__media__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 5;
  background: linear-gradient(
    0deg,
    rgb(var(--color-bg-contrast-rgb) / 0.75) 0%,
    rgb(var(--color-bg-contrast-rgb) / 0) 100%
  );
}
.product-category-card .card__content {
  display: flex;
  position: absolute;
  z-index: 10;
  padding: 0 0.2rem 0 1.6rem;
  height: 4.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  gap: 0.6rem;
  left: 1.2rem;
  bottom: 1.2rem;
  right: 1.2rem;
  background-color: var(--color-accent);
  border-radius: 20rem;
}
.product-category-card .card__title {
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-s);
  line-height: 1.2;
}
.product-category-card .card__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(--color-bg-contrast);
}
.product-category-card .card__icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-accent);
  transform: rotate(-45deg);
}
