Hello
A bit of a shot in the dark this, but, to amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
.module .module_header::before,
.page-header::before {
background-color: rgba(0,0,0,0.25);
right: 0;
}
.module .module_header::after,
.page-header::after {
background-color: var(--primary);
right: calc(100% - 70px);
}
.module .module_header::after,
.page-header::after {
position: absolute;
bottom: 0;
left: 0;
height: 4px;
content: '';
opacity: .8;
}
.module .module_header,
.page-header {
position: relative;
text-align: center;
overflow: hidden;
padding-bottom: 0;
margin-bottom: .75rem;
}
Ciaran