/* 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;
}

/* Breadcrumb mobile responsive styles */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.70rem;
    }
    .breadcrumb svg {
        width: 12px;
        height: 12px;
    }
}