main .alternative-text-module {
  background: var(--Dark-Navy-Blue, #090524);
  z-index: 3;
  position: relative;
}

main .alternative-text-module::before {
  content: "";
  position: absolute;
  border-radius: 700px;
  background: linear-gradient(0deg, #4deaff 0%, #002bff 100%);
  filter: blur(250px);
  z-index: 4;
  width: 700px;
  height: 700px;
  right: -200px;
  bottom: -200px;
}

main .alternative-text-module .wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

main .alternative-text-module .upper-text {
  border-left: 1px solid rgba(170, 186, 220, 0.4);
  margin-left: auto;
  color: var(--Powder-Blue, #aabadc);
  max-width: 552px;
  padding: 64px 40px;
}
main .alternative-text-module .lower-text {
  border-top: 1px solid rgba(170, 186, 220, 0.4);
  color: #fff;
  padding: 64px 40px;
}

@media screen and (max-width: 1024px) { 
  main .alternative-text-module {
    min-height: unset;
    padding-top: 0;
  }
  
  main .alternative-text-module .upper-text,
  main .alternative-text-module .lower-text {
    margin: 0;
    padding: 40px;
  }

  main .alternative-text-module .upper-text {
    border-left: none;
  }
}
