Cut image to one side on Publish mobile

The first image of my article on Publish (link) is cut to the right. There’s no way to show the right side of the image.

What I’m trying to do

The image should show in its entire width or at least have a horizontal scroll bar but it’s instead just cut.

Things I have tried

I searched for “cut image Publish mobile” or “cropped image Publish mobile” but didn’t find anything.
I also tried changing the size of the image but this doesn’t affect the size of the image on Mobile, only on Desktop.

I was not able to replicate this by using dev-tools. Checking on my mobile device shows your site working correctly.

I do see you have some css affecting the image. Depending on your browser, you may also need to use aspect ratio to ensure responsive sizing. For example:

img {
  width: auto;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16/9;
  }