.homeHero {
  margin-bottom: 60px;
}

.homeHero__wrapper {
  position: relative;
  min-height: 390px;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .72) 0 80px, transparent 82px),
    radial-gradient(circle at 78% 92%, rgba(255, 255, 255, .42) 0 145px, transparent 147px),
    linear-gradient(120deg, #e6f3ff 0%, #f0e9ff 56%, #ffe7f1 100%);
  box-shadow: 0 12px 36px rgba(25, 118, 210, .12);
}

.homeHero__wrapper::after {
  content: "";
  position: absolute;
  right: 9%;
  top: 50%;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(25, 118, 210, .12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.homeHero__title {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 0 32px;
  color: var(--color-text);
  font-family: var(--font-secondary);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.12;
}

.homeHero__button {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .homeHero {
    margin-bottom: 40px;
  }

  .homeHero__wrapper {
    min-height: 330px;
    padding: 56px 40px;
  }

  .homeHero__title {
    max-width: 680px;
  }
}

@media screen and (max-width: 767px) {
  .homeHero__wrapper {
    min-height: 300px;
    padding: 40px 24px;
    border-radius: 12px;
  }

  .homeHero__wrapper::after {
    right: -70px;
    width: 160px;
    height: 160px;
  }

  .homeHero__title {
    margin-bottom: 24px;
    font-size: 34px;
  }

  .homeHero__button {
    width: 100%;
  }
}
