.hero[data-home-promo] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: block;
  min-height: 235px;
  padding: 28px 22px;
  border: 1px solid #ffd2b3;
  background: linear-gradient(90deg, #fffaf6 0%, #fff7ef 58%, #fff1e8 100%);
}

.hero[data-home-promo] > div:first-of-type {
  position: relative;
  z-index: 3;
  max-width: 470px;
}

.hero[data-home-promo] .stats {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 164px);
  gap: 12px;
}

.hero[data-home-promo] .hero-illust {
  position: absolute;
  right: 310px;
  bottom: -42px;
  width: 360px;
  max-width: 34%;
  opacity: 0.9;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: saturate(0.9);
}

@media (max-width: 900px) {
  .hero[data-home-promo] {
    padding: 24px 18px 210px;
  }

  .hero[data-home-promo] > div:first-of-type {
    max-width: none;
  }

  .hero[data-home-promo] p {
    display: none;
  }

  .hero[data-home-promo] .hero-illust {
    right: 10px;
    top: 20px;
    bottom: auto;
    width: 210px;
    max-width: none;
    opacity: 0.95;
    filter: saturate(0.82) brightness(1.08);
  }

  .hero[data-home-promo] .stats {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
}
