Hi Joshua,
There are no background position options specifically for mobile. You would need to make this change using the “background-position” CSS property within a mobile media query. Something like this:
@media screen and (max-width: 768px) {
.page-id-30 .obb-hero {
background-position: right;
}
}
Otherwise, you could try using the “Cover” block in place of the Hero block. Within the Cover block options you can change the focal point of the background image. However, this option is not specifically for mobile either, but it might help you find a happy medium in regards to the image placement on both desktop and mobile.
I hope this helps.
Thanks!