diff --git a/bedrock/base/templates/includes/protocol/footer/footer-newsletter.html b/bedrock/base/templates/includes/protocol/footer/footer-newsletter.html
index b37152d8eef..a1f7bf109f9 100644
--- a/bedrock/base/templates/includes/protocol/footer/footer-newsletter.html
+++ b/bedrock/base/templates/includes/protocol/footer/footer-newsletter.html
@@ -8,12 +8,12 @@
![]({{ static('img/logos/m24/symbol-white.svg') }})
-
{{ ftl('footer-refresh-get-the-best') }}
+
{{ ftl('footer-refresh-discover-mozilla-products', fallback='newsletter-form-we-will-only-send-v2') }}
{{ email_newsletter_form(
- newsletters='mozilla-and-you',
+ newsletters='mozilla-foundation, mozilla-and-you',
title=None
)}}
diff --git a/l10n/en/footer-refresh.ftl b/l10n/en/footer-refresh.ftl
index 98c43f215a6..832b8549578 100644
--- a/l10n/en/footer-refresh.ftl
+++ b/l10n/en/footer-refresh.ftl
@@ -2,7 +2,7 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
-footer-refresh-get-the-best = Get the best { -brand-name-firefox } tips, tricks and updates. We promise to keep your email private and secure — just the best of { -brand-name-firefox } sent straight to your inbox.
+footer-refresh-discover-mozilla-products =Discover { -brand-name-mozilla } products and initiatives. We promise to keep your email private and secure — no sharing, no selling, just great updates.
footer-refresh-leadership = Leadership
footer-refresh-advertise = Advertise with { -brand-name-mozilla }
footer-refresh-firefox-release-notes = { -brand-name-firefox } Release Notes
diff --git a/media/css/m24/components/footer-newsletter.scss b/media/css/m24/components/footer-newsletter.scss
index 979bcd3fb21..00dba04f09d 100644
--- a/media/css/m24/components/footer-newsletter.scss
+++ b/media/css/m24/components/footer-newsletter.scss
@@ -195,9 +195,26 @@ $max-footer-content-width: $content-max;
@media #{$mq-lg} {
display: grid;
- grid-template-columns: 1fr 1fr;
- grid-template-rows: 30px 45px 75px;
+ grid-template-columns: [full-width-start] 1fr 1fr [full-width-end];
column-gap: $spacer-lg;
+
+ > * {
+ grid-column: full-width;
+ }
+
+ // country input
+ label:first-of-type,
+ p:first-of-type {
+ grid-column-start: 1;
+ grid-column-end: 2;
+ }
+
+ // lang input
+ label:nth-of-type(2),
+ p:nth-of-type(2) {
+ grid-column-start: 2;
+ grid-column-end: 3;
+ }
}
p {
@@ -209,25 +226,10 @@ $max-footer-content-width: $content-max;
@media #{$mq-lg} {
display: inline-grid;
-
- &:first-of-type {
- grid-column-start: 1;
- grid-column-end: 2;
- }
-
- &:nth-of-type(2) {
- grid-column-start: 2;
- grid-column-end: 3;
- }
}
&:has(> label.mzp-u-inline) {
- margin: $spacer-lg 0 $spacer-md;
-
- @media #{$mq-lg} {
- grid-column-start: 1;
- grid-column-end: 3;
- }
+ margin-bottom: $spacer-lg;
input {
margin: 0;