.banner {
  margin-top: 47px;
}

.banner-content {
  border-radius: var(--border-radius-small);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}

.banner-no-purchase .banner-content {
  background: linear-gradient(to bottom, #a886ff 1.78%, var(--color-gradient-pink-end) 235.51%);
}

.banner-text {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-title-small {
  font-size: 74.6px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1;
}

.banner-title-large {
  font-size: 95.4px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.banner-image {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
}

.banner-mascot {
  width: 100%;
  height: auto;
  max-width: 450px;
}

.banner-blue {
  background: linear-gradient(
    to bottom,
    var(--color-gradient-blue-start) 1.78%,
    var(--color-gradient-blue-end) 235.51%
  );
}

.banner-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.banner-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.37;
  color: var(--color-text-secondary);
}

.banner-device {
  width: 100%;
  height: auto;
  max-width: 350px;
}

@media (max-width: 1024px) {
  .banner-text {
    padding: 40px;
  }

  .banner-title-small {
    font-size: 60px;
  }

  .banner-title-large {
    font-size: 76px;
  }

  .banner-mascot {
    max-width: 350px;
  }

  .banner-title {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-device {
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .banner {
    margin-top: 30px;
  }

  .banner-content {
    grid-template-columns: 1fr;
  }

  .banner-blue {
    display: flex;
    flex-direction: column;
  }

  .banner-blue .banner-image {
    order: 2;
  }

  .banner-blue .banner-text {
    order: 1;
  }

  .banner-text {
    padding: 30px 20px;
    text-align: center;
  }

  .banner-title-small {
    font-size: 40px;
  }

  .banner-title-large {
    font-size: 50px;
  }

  .banner-mascot {
    max-width: 280px;
  }

  .banner-title {
    font-size: 32px;
    line-height: 40px;
  }

  .banner-device {
    max-width: 250px;
  }
}
