/* Underline bar under the organizational title (anchors to RTL start = right) */
.structure-title-underline {
    position: relative;
    line-height: 1.2;
}

.structure-title-underline::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -8px;
    width: 72px;
    height: 4px;
    background-color: #916627;
    border-radius: 2px;
}

