.expondo-newsletter {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 90px;
  box-sizing: border-box;
  text-align: left;
  font-size: 40px;
  color: #1a1a1a;
  font-family: 'Bebas Neue';
}

.frame-parent {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
  max-width: 1440px;
}

.interested-in-receiving-news-a-parent {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 40px 0px 0px;
  gap: 20px;
}

.interested-in-receiving {
  align-self: stretch;
  position: relative;
  text-transform: uppercase;
  line-height: 1.2;
}

.subscribe-to-our-newsletter-to-wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: 'Open Sans';
}

.subscribe-to-our-container {
  flex: 1;
  position: relative;
  line-height: 26px;
}

.privacy-policy {
  color: inherit;
  text-decoration: underline;
}

.expondo-newsletter-privacy-policy {
  text-decoration: underline;
}

.frame-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-family: 'Open Sans';
}

.buttons-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.buttons {
  border-radius: 100px;
  display: flex;
  align-items: flex-start;
}

.cta {
  height: 48px;
  width: 335px;
  border-radius: 100px;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  box-sizing: border-box;
  flex: 1;
  position: relative;
  line-height: 24px;
  color: #fff;
}

.cta:disabled {
  background-color: #6b6d75;
  cursor: not-allowed;
}

.envelope-parent {
  align-self: stretch;
  height: 50px;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid #1a1a1a;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  text-align: left;
  color: #6b6d75;
  font-family: 'Font Awesome 6 Pro';
}


.envelope {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-family: 'Font Awesome 6 Pro';
  color: #6b6d75;
  text-align: left;
}

.my-email-address {
  position: relative;
  line-height: 24px;
  font-family: 'Open Sans';
  border: none;
  outline: none;
}

glyph.expondo-icon-envelop {
  mask-size: cover;
  background-color: black;
  width: 20px;
  height: 20px;
}

.subscribe-to-our-container p:first-letter {
  text-transform: capitalize
}

.subscribe-to-our-container a {
  text-decoration: underline;
  color: inherit;
}

.subscribe-to-our-newsletter-to {
  margin-bottom: 10px;;
}

/* 📱 Responsive layout for mobile screens */
@media (max-width: 768px) {
  .expondo-newsletter {
    padding: 20px; /* less padding for small screens */
    text-align: center;
  }

  .frame-parent {
    flex-direction: column; /* stack items vertically */
    align-items: stretch;   /* make children full-width */
    justify-content: center;
    gap: 30px;              /* space between text and form */
  }

  .interested-in-receiving-news-a-parent {
    padding: 0;             /* remove right padding */
    align-items: center;    /* center text */
    text-align: center;
  }

  .subscribe-to-our-newsletter-to-wrapper {
    justify-content: center;
  }

  .frame-wrapper {
    width: 100%;            /* form takes full width */
  }

  .cta {
    width: 100%;            /* full-width submit button on mobile */
  }

  .envelope-parent {
    width: 100%;            /* full-width input */
  }
}
