/* 
Decoration that prepends text with a non-selectable horizontal line.
Better for screen-readers.
Used primarily at the beginning of sections.
*/

.siku-eyebrow {
    display: flex;
    align-items: center;
    gap: .7em;
    margin-bottom: 14px;
}

.siku-eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    display: inline-block;
    background: currentColor;
}
