Image with text making text full width on mobile devices

Hello, I would like to ask you how could I make the text section from the image with text full width on mobile devices. I use Crave theme. Link to the website: https://microplanet.cz/
Thank you for any ideas.

I attach as a photo what I mean:

Hello @Matyas ,

You can try to follow these steps:

Go to Online Store → Themes → Actions → Edit code

Go to Assets folder → base.css file → add this following code at the bottom of page:

@media (max-width: 768px) {
  .text-section-container {
    width: 100%;
    max-width: 100%;
  }
}

Save and preview

Hope this can help. Let us know if you need any further support.

Transcy

Hello, I have tried it and nothing changed.