.newsletter__wrapper {
  padding-right: calc(3rem / var(--font-body-scale));
  padding-left: calc(3rem / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .newsletter__wrapper {
    padding-right: 9rem;
    padding-left: 9rem;
  }
}

.newsletter__wrapper>* {
  margin-top: 0;
  margin-bottom: 0;
}

.newsletter__wrapper>*+* {
  margin-top: 2rem;
}

.newsletter__wrapper>*+.newsletter-form {
  margin-top: 3rem;
}

.newsletter__wrapper .page-width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 0;
  padding-bottom: 0;

  @media screen and (min-width: 850px) {
    flex-direction: row;
  }
}

.newsletter__wrapper .content__wrapper,
.newsletter__wrapper .form__wrapper {
  width: 100%;
}

.newsletter__wrapper .content__wrapper {
  display: flex;
  flex-direction: column;


  @media screen and (min-width: 850px) {
    justify-content: flex-start;
    max-width: 35%;
  }
}

.newsletter__wrapper .form__wrapper {
  display: flex;
  justify-content: center;

  @media screen and (min-width: 850px) {
    justify-content: flex-end;
  }
}

.newsletter__wrapper .content__wrapper .inline-richtext,
.newsletter__subheading {
  text-align: center;


  @media screen and (min-width: 850px) {
    text-align: left;
  }
}

.newsletter__wrapper .content__wrapper .inline-richtext {
  margin: 0 !important;
  margin-bottom: 1.6rem !important;

  @media screen and (min-width: 850px) {
    margin-bottom: .8rem !important;
  }
}

.newsletter__subheading {
  font-size: 1.4rem;
  letter-spacing: normal;

  @media screen and (min-width: 850px) {
    font-size: 1.6rem;
  }
}

.newsletter__wrapper .newsletter-form__field-wrapper {
  max-width: 55.4rem;
}

.newsletter-form__field-wrapper .newsletter-form__message {
  margin-top: 1.5rem;
}

.newsletter__button {
  margin-top: 3rem;
  width: fit-content;
}

@media screen and (min-width: 750px) {
  .newsletter__button {
    flex-shrink: 0;
    margin: 0 0 0 1rem;
  }
}