How to expand the email sign-up section on mobile?

Hey guys, how can I expand the text and containers in the email sign-up section on mobile?

I want to make it as wide as all the “Image with text” and “Rich text” sections.

Here’s the link to my store: https://1049xn-ya.myshopify.com/
(Just scroll all the way down; the email sign-up section is there.)

I want it to be expanded like the text sections here: https://1049xn-ya.myshopify.com/products/editing-masterclass

I need this to work only on mobile.

Thanks a lot,
Tim

Hi @CreatorTim ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

@media screen and (max-width: 768px){
.newsletter__wrapper {
    padding-inline: 0 !important;
}
}

Here is the result:

Please let me know if it works!

Best,

Daisy

Thnak you!