.no-purchase {
  padding: 60px 24px;
  background: var(--lfr-bg);
}
.no-purchase__inner {
  max-width: var(--lfr-container);
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background-image: var(--np-bg);
  background-size: cover;
  background-position: top right;
  display: flex;
  align-items: center;
  padding: 48px;
}
.no-purchase__content {
  margin-left: auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.no-purchase__title {
  font-family: var(--lfr-font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
}
.no-purchase__title span {
  color: #ff4fd8;
}
.no-purchase__text {
  color: #d6d8e3;
  font-family: var(--lfr-font-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 1023px) {
  .no-purchase__content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .no-purchase {
    padding: 40px 16px;
  }
  .no-purchase__inner {
    padding: 28px 22px;
    min-height: 0;
  }
  .no-purchase__content {
    margin-left: 0;
  }
}
