.section-newsletter-with-text {
  background: var(--gradient-background);
  background-color: rgb(var(--color-background));
}
.padding-background-color {
  background-color: rgb(var(--padding-background-color));
}
.section-padding-for-background-color {
  padding-top: var(--padding-background-color-padding-top);
  padding-bottom: var(--padding-background-color-padding-bottom);  
}
.section-newsletter-with-text {
  .newsletter-with-text__heading {
    margin: unset;
  }
  .newsletter-with-text__text {
    color: rgb(var(--color-foreground));
  }
  .newsletter-with-text__blocks {
    display: flex;
    flex-direction: column;
    @media (min-width: 750px) {
      flex-direction: row;
    }
    justify-content: space-between;
    column-gap: 2rem;
    row-gap: 3rem;
  }
  .text-column-wrapper {
    @media (min-width: 750px) {
      max-width: 400px;
    }
    text-wrap: pretty;
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }
  .newsletter-column-heading {
    margin: unset;
    line-height: 1;
  }
  .newsletter {
    @media (min-width: 750px) {
      max-width: 400px;
    }
    .newsletter__wrapper {
      display: flex;
      flex-direction: column;
      row-gap: 1.5rem;
      .newsletter-form .field__button {
        width: 60px;
        min-height: 5.5rem;
        background-color: rgb(var(--color-button-background));
      }
      .newsletter-form .field__input {
        background-color: rgb(var(--color-button-background));
        color: rgb(var(--color-button-text));
        border-radius: 30px;
        min-height: 5.5rem;
        
      }
      .newsletter-form .field__input::placeholder {
          padding-inline-start: 1.5rem;
          color: #A5A5A5;
          opacity: 1;
      }
    }
  }
}
.newsletter-with-text-section {
  border-top-left-radius: 23px;
  border-top-right-radius: 23px; 
  overflow: hidden;
}