.no-purchase-section {
  position: relative;
  height: 700px;
  overflow: hidden;
  background: var(--bg-alt);
}

.no-purchase-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.no-purchase-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.no-purchase-content h2 {
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 24px;
}

.no-purchase-content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 32px;
}

.no-purchase-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  overflow: hidden;
}

.no-purchase-image img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 1600px) {
  .no-purchase-inner {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .no-purchase-section {
    height: auto;
  }

  .no-purchase-inner {
    grid-template-columns: 1fr;
    padding: 60px 20px 0 20px;
  }

  .no-purchase-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .no-purchase-content h2 {
    font-size: 28px;
  }

  .no-purchase-content p {
    font-size: 16px;
    line-height: 1.6;
  }

  .no-purchase-image {
    margin-top: 32px;
  }
}
