I found the following to add to the site CSS to add an accent to the V2 Headline. How do I turn that into a class so I can selectively use it on some headlines and not others?
.x-text-headline {
overflow: hidden;
}
.x-text-headline .x-text-content-text-primary {
display: inline-block;
width: auto !important;
position: relative;
}
.x-text-headline .x-text-content-text-primary:before,
.x-text-headline .x-text-content-text-primary::after {
content: "";
position: absolute;
top: 50%;
height: 2px;
width: 9999px;
display: block;
margin-top: -1px;
background-color: #e5e5e5;
}
.x-text-headline .x-text-content-text-primary:before {
right: 100%;
margin-right: 0.5em;
}
.x-text-headline .x-text-content-text-primary::after {
left: 100%;
margin-left: 0.5em;
}