.nre-banner {
  background-color: #f3f0ff;
  background-size: 150%;
  background-position: center;
  background-repeat: no-repeat;
}

.nre-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.nre-banner__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.nre-banner__text {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1;
}

.nre-banner__image {
  display: flex;
  justify-content: center;
}

.nre-banner__image img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .nre-banner {
    background: #84cc16;
  }
  .nre-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
    margin-top: 20px;
  }

  .nre-banner__image img {
    max-height: 280px;
    margin: 0 auto;
  }

  .nre-banner__image--left img {
    max-width: 300px;
    margin: 0 auto;
  }

  .nre-banner {
    background-size: cover;
    background-position: bottom;
  }
}
