Hello
Presuming I understand you correctly and you wish to add the bottom border effect, try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
h1 {
overflow: hidden;
}
h1::after, h1::before {
position: absolute;
display: block;
content: '';
height: 3px;
bottom: 0;
margin-top: 5px;
}
h1::before {
left: 0;
width: 60px;
background-color: rgba(100,100,100,0.1);
background-color: var(--primary);
}
h1::after {
left: 63px;
width: 2000px;
background-color: rgba(100,100,100,0.1);
}
Ciaran