/* SITE HEADER */

/* Make main menu <nolink> links look the same as normal ones. */
.site-header #block-olivero-main-menu ul.menu li span {
    font-weight: bold;
    color: var(--color-text-neutral-loud);
}

/* Disable text selection of main menu links. */
.site-header #block-olivero-main-menu ul.menu li {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (min-width: 75rem) {
    
    /* Remove the gap in main menu button links on focus state. */
    body:not(.is-always-mobile-nav) .site-header .primary-nav__menu-link.button:focus::before {
        height: calc(100% + 8px);
        width: calc(100% + 8px);
    }
    
}

/* CONTENT */

/* Remove auto-hyphens. */
body {
    -webkit-hyphens: none !important;
    hyphens: none !important;
}

/* Add a faint box-shadow to page-wrapper. */
#page-wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Add an offset left border to content region h2 titles. */
.region--content h2::before {
    content: '';
    height: 1.5em;
    border-left: 0.15em solid var(--color--primary-50);
    display: inline-block;
    vertical-align: -25%;
    margin-left: -1.15em;
    margin-right: 1em;
}