/* The 1440px design canvas scales to the viewport between 821px and 1279px.
   Keep the email field and submit action at least 44 physical pixels high. */
@media (min-width: 821px) and (max-width: 1279px) {
  .email-capture-section__input,
  .email-capture-section__button {
    box-sizing: border-box;
    height: clamp(60px, calc(112px - 4vw), 80px);
    min-height: clamp(60px, calc(112px - 4vw), 80px);
  }
}

/* Avoid splitting the Chinese headline in the middle of 了解 at 320px. */
@media (max-width: 350px) {
  .email-capture-section[lang="zh-cn"] .email-capture-section__title,
  .email-capture-section[lang="zh-tw"] .email-capture-section__title {
    max-width: 280px;
    font-size: 28px;
    word-break: keep-all;
    text-wrap: balance;
  }
}
