.card-product-all {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  flex-direction: column;
}
.card-product-all .card__link {
  display: flex;
  align-items: stretch;
  width: 100%;
  position: relative;
  flex-direction: column;
  overflow: hidden;
}
.card-product-all .card__media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background-color: var(--color-surface-muted);
}
.card-product-all .card__media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
}
.card-product-all .card__content {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  aspect-ratio: 2/3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0 1.6rem;
  background: linear-gradient(
    0deg,
    rgb(var(--color-primary-rgb) / 0) 0%,
    rgb(var(--color-primary-rgb) / 0.5) 100%
  );
  color: var(--color-on-primary);
}
.card-product-all .card__title {
  display: block;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-snug);
}
.card-product-all .card__icon {
  display: flex;
  width: 100%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  height: 6rem;
  border-radius: 20rem;
  background-color: rgb(var(--color-surface-rgb) / 0.2);
}
.card-product-all .card__icon .icon {
  width: 2rem;
  height: 2rem;
}
