.newsletter-v2 {
  width: 100%;
  margin: 80px 0;
  padding: 0 $gutter;

  @include sm {
    margin: 50px 0;
    padding: 0 calc(#{$gutter-mobile} * 2);
  }

  &__wrapper {
    width: 100%;
    margin: 0 auto;
    max-width: $header-content-width;
  }

  &__container {
    width: 100%;
    position: relative;
    padding: 30px 20px 30px 70px;

    @include sm {
      padding: 0 0 0 40px;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 100%;
      background: linear-gradient(
        0deg,
        #{$gray-70} 0%,
        #{$blue}  23.87%,
        #{$green} 52.02%,
        #{$yellow} 77.34%,
        #f39200 100%
      );
    }
  }

  &__info {
    display: flex;
    align-items: flex-end;

    @include sm {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  &__title {
    margin: 0;
    font-weight: 700;
    font-size: 3.8rem;
    line-height: 4.2rem;
    letter-spacing: -0.02em;
    margin-right: 20px;
    width: 200px;
    flex-shrink: 0;

    @include sm {
      margin-right: 0;
      margin-bottom: 12px;
    }
  }

  &__subtitle {
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.5rem;
    letter-spacing: -0.01em;
    color: $primary-color;
  }

  &__cta {
    margin-top: 40px;
  }
}
