.hero-showcase {
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 330px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 210, 84, .2), transparent 24%),
    radial-gradient(circle at 68% 90%, rgba(128, 98, 223, .3), transparent 34%),
    linear-gradient(120deg, #d93245 0%, #ed4856 48%, #6639a8 100%);
}

.hero-copy {
  flex: 1 1 48%;
  min-width: 0;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: -8px 0 22px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
}

.hero-metrics span + span {
  position: relative;
  padding-left: 18px;
}

.hero-metrics span + span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .48);
}

.hero-metrics b {
  color: #fff;
}

.featured-showcase {
  flex: 1 1 430px;
  min-width: 360px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  background: rgba(31, 22, 57, .28);
  box-shadow: 0 22px 45px rgba(61, 15, 48, .25);
  backdrop-filter: blur(12px);
}

.featured-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.featured-heading small,
.featured-heading strong {
  display: block;
}

.featured-heading small {
  margin-bottom: 3px;
  color: #ffd3d8;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.featured-heading strong {
  font: 600 16px Fredoka;
}

.featured-heading button {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .1);
  font: 700 11px 'DM Sans';
  cursor: pointer;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.featured-card,
.featured-empty {
  aspect-ratio: 5 / 7;
  overflow: hidden;
  border-radius: 10px;
}

.featured-card {
  margin: 0;
  background: #fff;
  box-shadow: 0 10px 22px rgba(21, 11, 43, .34);
  transform: rotate(-2deg);
}

.featured-card:nth-child(2) {
  transform: translateY(-5px);
}

.featured-card:nth-child(3) {
  transform: rotate(2deg);
}

.featured-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-empty {
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, .34);
  color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .06);
  font-size: 23px;
}

.featured-modal label {
  margin: 12px 0;
}

.featured-modal select {
  width: 100%;
}

@media (max-width: 1000px) {
  .hero-showcase {
    align-items: stretch;
  }

  .featured-showcase {
    min-width: 320px;
  }
}

@media (max-width: 800px) {
  .hero-showcase {
    display: grid;
    padding: 30px 24px;
  }

  .featured-showcase {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .hero-metrics {
    gap: 7px 12px;
  }

  .hero-metrics span + span {
    padding-left: 12px;
  }

  .featured-showcase {
    padding: 14px;
  }
}
