.banner {
  background: linear-gradient(32.88deg, #030915 21.97%, #1c232d 78.03%);
  position: relative;
  overflow: hidden;
}

.banner__ellipse {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  max-width: 600px;
}

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

.banner__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.banner__image {
  flex-shrink: 0;
  width: 420px;
}

.banner__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(var(--shadow-heavy));
}

.banner__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 699px;
}

.banner__title {
  font-size: 35px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 48px;
}

.banner__desc {
  font-size: 20px;
  color: var(--color-text-body);
  line-height: 1.5;
}

@media (max-width: 1023px) {
  .banner__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .banner__image {
    width: 320px;
  }

  .banner__content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .banner__image {
    width: 260px;
  }

  .banner__title {
    font-size: 28px;
    line-height: 36px;
  }
}
