Stack the 'Header Title' and 'Header Description' text

Hi Wpzoom forum,

I am a new user and am getting used to the excellent Inspiro Lite theme before I progress to PRO.

For this initial bit of work I wish to stack the ‘Header Title’ and ‘Header Description’ text on the Homepage Hero Area.

It currently allows: 'MEDITATION with NAME’
I would like to do:
MEDITATION
with
NAME

Assume this will be a styling change somewhere?

Many thanks, Ian

I have tried a workaround with a PNG and CSS but I’d much rather use text, have pasted in the CSS below for anyone who’s trying the same.

I notice the PRO version says I can ‘Customise Every Detail’ does this mean that Elementor containers and widgets can be used on the Homepage Hero Area?

Here is my CSS FYI

.site-title a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.site-title a::before {
  content: url('path_to_your_image.png'); /* Insert your image path here */
  display: block;
  position: relative; 
  top: 10px;
  left: 0;
  text-indent: 0;
}