.home-featured-showcase {
  --home-featured-transition: var(--mc-gradient-transition, 820ms cubic-bezier(0.22, 1, 0.36, 1));
  --home-featured-bottom-gradient: linear-gradient(90deg, #ff73f8 0%, #8f7cff 52%, #31afff 100%);
  --home-featured-gradient: linear-gradient(90deg, #31afff 0%, #ff73f8 50%, #31afff 100%);
  background: #f9f9f9;
  padding-bottom: 60px;
  padding-top: 60px;
}

.home-featured-showcase__shell {
  display: grid;
  grid-template-columns: minmax(320px, 426px) minmax(320px, 762px);
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.home-featured-showcase__left-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.home-featured-showcase__left-column > .gradient-action--article {
  width: 280px;
  max-width: 100%;
  align-self: flex-end;
}

.home-featured-showcase__section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-featured-showcase__section-label-line {
  width: 25px;
  height: 1px;
  background: #a1a1a1;
}

.home-featured-showcase__section-label-text {
  color: #9b9b9b;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.home-featured-showcase__title {
  margin: 12px 0 0;
  color: #0f0f0f;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 1.2;
}

.home-featured-showcase__artist-card {
  display: flex;
  flex-direction: column;
  background: #111;
}

.home-featured-showcase__artist-image-link {
  display: block;
  width: 100%;
}

.home-featured-showcase__artist-image {
  display: block;
  width: 100%;
  aspect-ratio: 426 / 338;
  object-fit: cover;
}

.home-featured-showcase__artist-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.home-featured-showcase__artist-name {
  margin: 0;
}

.home-featured-showcase__artist-name a {
  color: #fff;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.home-featured-showcase__artist-location {
  margin: 0;
  color: #bababa;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.home-featured-showcase__artist-location-icon {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
}

.home-featured-showcase__artist-location-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #ffffff;
}

.home-featured-showcase__artist-description {
  margin: 0;
  color: #fcfcfc;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.home-featured-showcase__artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-featured-showcase__artist-tag {
  background: #fff;
  color: #111;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 10px;
}

.home-featured-showcase__right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}

.home-featured-showcase__product-card {
  --article-card-gradient: var(--gradient-action-gradient);
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  background: #fff;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  opacity: 0;
  transform: translateY(-18px);
  animation: home-featured-product-enter 560ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-featured-showcase__right-column .home-featured-showcase__product-card:nth-child(2) {
  animation-delay: 80ms;
}

.home-featured-showcase__right-column .home-featured-showcase__product-card:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes home-featured-product-enter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-featured-showcase__product-card::after {
  background:
    radial-gradient(circle at 100% 0%, rgba(49, 175, 255, 0.2), transparent 44%),
    linear-gradient(215deg, rgba(255, 255, 255, 0) 20%, rgba(255, 115, 248, 0.12) 76%, rgba(49, 175, 255, 0.14) 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity var(--home-featured-transition);
}

.home-featured-showcase__product-card::before {
  background-image: var(--home-featured-bottom-gradient);
  background-position: 0% 50%;
  background-size: 100% 100%;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  pointer-events: none;
  position: absolute;
  transition: width var(--home-featured-transition);
  width: 0;
  z-index: 2;
}

.home-featured-showcase__product-card > * {
  position: relative;
  z-index: 1;
}

.home-featured-showcase__product-card:hover::after,
.home-featured-showcase__product-card:focus-within::after {
  opacity: 1;
}

.home-featured-showcase__product-card:hover::before,
.home-featured-showcase__product-card:focus-within::before {
  width: 100%;
}

.home-featured-showcase__product-card:hover .home-featured-showcase__product-name a,
.home-featured-showcase__product-card:focus-within .home-featured-showcase__product-name a {
  background-image: var(--home-featured-gradient);
  background-position: 0% 50%;
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-featured-showcase__product-image-link {
  display: block;
  width: 100%;
}

.home-featured-showcase__product-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.home-featured-showcase__product-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 24px;
}

.home-featured-showcase__product-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-featured-showcase__product-name {
  margin: 0;
}

.home-featured-showcase__product-name a {
  color: #111;
  background-image: none;
  background-position: 100% 50%;
  background-size: 200% 100%;
  -webkit-text-fill-color: currentColor;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    color var(--home-featured-transition),
    background-position var(--home-featured-transition);
}

.home-featured-showcase__product-description {
  margin: 0;
  color: #2a2a2a;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.home-featured-showcase__product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  width: 100%;
}

.home-featured-showcase__product-price {
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  min-height: 30px;
  padding: 7px 12px;
  position: relative;
  z-index: 2;
}

.home-featured-showcase__product-cta {
  --gradient-action-arrow-height: 32px;
  --gradient-action-arrow-width: 32px;
  --gradient-action-arrow-shift: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: transparent;
  border: 0;
  color: #111;
  text-transform: uppercase;
  font-family: "Asta Sans", "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 113px;
  min-height: var(--gradient-action-arrow-height);
  padding: 0;
  text-decoration: none;
}

.home-featured-showcase__product-cta-label {
  color: #111;
  background-image: none;
  background-position: 100% 50%;
  background-size: 200% 100%;
  -webkit-text-fill-color: currentColor;
  display: inline-block;
  text-transform: uppercase;
  transition:
    color var(--home-featured-transition),
    background-position var(--home-featured-transition);
}

.home-featured-showcase__product-cta-arrow {
  background-color: #111;
  background-image: none;
  transform: translateX(0);
  transition:
    background-position var(--home-featured-transition),
    transform var(--home-featured-transition);
}

.home-featured-showcase__product-cta:hover .home-featured-showcase__product-cta-label,
.home-featured-showcase__product-cta:focus-visible .home-featured-showcase__product-cta-label,
.home-featured-showcase__product-card:hover .home-featured-showcase__product-cta-label,
.home-featured-showcase__product-card:focus-within .home-featured-showcase__product-cta-label {
  background-image: var(--gradient-action-gradient);
  background-position: 0% 50%;
  background-size: 200% 100%;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-featured-showcase__product-cta:hover .home-featured-showcase__product-cta-arrow,
.home-featured-showcase__product-cta:focus-visible .home-featured-showcase__product-cta-arrow,
.home-featured-showcase__product-card:hover .home-featured-showcase__product-cta-arrow,
.home-featured-showcase__product-card:focus-within .home-featured-showcase__product-cta-arrow {
  background-color: transparent;
  background-image: var(--gradient-action-gradient);
  background-position: 0% 50%;
  background-size: 200% 100%;
}
.home-featured-showcase__product-card:hover .home-featured-showcase__product-cta-arrow,
.home-featured-showcase__product-card:focus-within .home-featured-showcase__product-cta-arrow {
  transform: translateX(var(--gradient-action-arrow-shift, 0px));
}

@media (max-width: 980px) {
  .home-featured-showcase__product-cta {
    font-size: 18px;
  }
}

.home-featured-showcase--product-only .home-featured-showcase__shell,
.home-featured-showcase--artist-only .home-featured-showcase__shell {
  grid-template-columns: minmax(320px, 762px);
  justify-content: start;
}

@media (max-width: 1180px) {
  .home-featured-showcase__shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .home-featured-showcase {
    padding: 0;
  }

  .home-featured-showcase__title {
    font-size: 34px;
  }

  .home-featured-showcase__artist-content {
    padding: 20px;
  }

  .home-featured-showcase__artist-name a,
  .home-featured-showcase__product-name a {
    font-size: 22px;
  }

  .home-featured-showcase__left-column > .gradient-action--article {
    width: 100%;
  }

  .home-featured-showcase__product-card {
    grid-template-columns: 1fr;
  }

  .home-featured-showcase__product-cta {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-featured-showcase__product-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
