/* @media (min-width:768px){.newsletter--section-wrapper .newsletter-wrapper--outer{flex-direction:row;align-items:center;gap:20px}} */
/* .section--newsletter{width:100%}
.newsletter--section-wrapper .newsletter-wrapper--outer{display:flex;flex-direction:column;gap:15px}

@media (min-width:768px){
  .newsletter--section-wrapper .newsletter-wrapper--outer{
    flex-direction:column;
    align-items:flex-start; 
    gap:20px;
  }
}
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper{display:flex;flex-direction:column;gap:15px}@media (min-width:768px){.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper{width:50%}}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper .rte,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h1,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h2,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h3,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h4,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h5,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h6,.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper p{margin:0}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper{display:flex;height:fit-content}@media (min-width:768px){.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper{width:50%}}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper form .errors{width:fit-content}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form{display:flex;flex-direction:column;width:100%}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form #newsletter-wrapper{display:flex;width:100%;align-items:center}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form #newsletter-wrapper #newsletter_text{flex:2}.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form #newsletter-wrapper #newsletter_submit{margin-left:0;border:0 none;cursor:pointer;display:flex;align-items:center;background:0 0;font-size:20px;position:relative;width:fit-content}.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--center{text-align:center}.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--right{text-align:right}.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--center #newsletter-wrapper,.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--right #newsletter-wrapper{position:relative;left:12px}@media (min-width:768px){.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--center #newsletter-wrapper,.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--right #newsletter-wrapper{left:0}}.newsletter--section-wrapper.color-scheme--white #newsletter_text{border-color:var(--border-color)}.newsletter--section-wrapper.color-scheme--white #newsletter_submit,.newsletter--section-wrapper.color-scheme--white #newsletter_text,.newsletter--section-wrapper.color-scheme--white #newsletter_text::placeholder{color:var(--text-color)}.newsletter--section-wrapper.color-scheme--accent #newsletter_text{border-color:var(--color-scheme-feature-text-transparent25)}.newsletter--section-wrapper.color-scheme--accent #newsletter_submit,.newsletter--section-wrapper.color-scheme--accent #newsletter_text,.newsletter--section-wrapper.color-scheme--accent #newsletter_text::placeholder{color:var(--color-scheme-feature-text)}.newsletter--section-wrapper.color-scheme--dark #newsletter_text{border-color:var(--color-scheme-dark-text-transparent25)}.newsletter--section-wrapper.color-scheme--dark #newsletter_submit,.newsletter--section-wrapper.color-scheme--dark #newsletter_text,.newsletter--section-wrapper.color-scheme--dark #newsletter_text::placeholder{color:var(--color-scheme-dark-text)}.newsletter--section-wrapper.color-scheme--light #newsletter_text{border-color:var(--color-scheme-light-text-transparent25)}.newsletter--section-wrapper.color-scheme--light #newsletter_submit,.newsletter--section-wrapper.color-scheme--light #newsletter_text,.newsletter--section-wrapper.color-scheme--light #newsletter_text::placeholder{color:var(--color-scheme-light-text)} */



.section--newsletter{
  width:100%;
}

/* MAIN WRAPPER */
.newsletter--section-wrapper .newsletter-wrapper--outer{
  display:flex;
  flex-direction:column;
  align-items:center; /* FIX */
  justify-content:center;
  text-align:center; /* FIX */
  gap:20px;
}

/* Desktop */
@media (min-width:768px){
  .newsletter--section-wrapper .newsletter-wrapper--outer{
    flex-direction:column;
    align-items:center; /* पहले flex-start था */
    gap:20px;
  }
}

/* CONTENT (Heading + Text) */
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper{
  display:flex;
  flex-direction:column;
  align-items:center; /* FIX */
  text-align:center;
  gap:15px;
  width:100%; /* FIX (50% हटाया) */
}

/* Remove margin */
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper .rte,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h1,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h2,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h3,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h4,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h5,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper h6,
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-content--wrapper p{
  margin:0;
}

/* FORM WRAPPER */
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper{
  display:flex;
  justify-content:center; /* FIX */
  width:100%; /* FIX (50% हटाया) */
}

/* FORM */
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form{
  display:flex;
  flex-direction:column;
  align-items:center; /* FIX */
  width:100%;
  max-width:430px;
  padding-left:25px;
}

/* INPUT + BUTTON */
.newsletter--section-wrapper .newsletter-wrapper--outer .newsletter-form--wrapper #newsletter_section_form #newsletter-wrapper{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:center; /* FIX */
  gap:10px;
}

/* INPUT */
#newsletter_text{
  flex:1;
  padding:12px;
}

/* BUTTON */
#newsletter_submit{
  margin-left:0;
  border:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  background:transparent;
}

/* REMOVE LEFT SHIFT BUG */
.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--center #newsletter-wrapper,
.newsletter--section-wrapper .newsletter-wrapper--outer.newsletter-text--right #newsletter-wrapper{
  position:relative;
  left:0 !important; /* FIX */
}

/* COLOR SCHEMES (UNCHANGED) */
.newsletter--section-wrapper.color-scheme--white #newsletter_text{border-color:var(--border-color)}
.newsletter--section-wrapper.color-scheme--white #newsletter_submit,
.newsletter--section-wrapper.color-scheme--white #newsletter_text,
.newsletter--section-wrapper.color-scheme--white #newsletter_text::placeholder{color:var(--text-color)}

.newsletter--section-wrapper.color-scheme--accent #newsletter_text{border-color:var(--color-scheme-feature-text-transparent25)}
.newsletter--section-wrapper.color-scheme--accent #newsletter_submit,
.newsletter--section-wrapper.color-scheme--accent #newsletter_text,
.newsletter--section-wrapper.color-scheme--accent #newsletter_text::placeholder{color:var(--color-scheme-feature-text)}

.newsletter--section-wrapper.color-scheme--dark #newsletter_text{border-color:var(--color-scheme-dark-text-transparent25)}
.newsletter--section-wrapper.color-scheme--dark #newsletter_submit,
.newsletter--section-wrapper.color-scheme--dark #newsletter_text,
.newsletter--section-wrapper.color-scheme--dark #newsletter_text::placeholder{color:var(--color-scheme-dark-text)}

.newsletter--section-wrapper.color-scheme--light #newsletter_text{border-color:var(--color-scheme-light-text-transparent25)}
.newsletter--section-wrapper.color-scheme--light #newsletter_submit,
.newsletter--section-wrapper.color-scheme--light #newsletter_text,
.newsletter--section-wrapper.color-scheme--light #newsletter_text::placeholder{color:var(--color-scheme-light-text)}