.top-bar-module {
    height: 70px;
}

.top-bar-module__outer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.top-bar-module__outer p {
    font-size: 24px;
    font-family: var(--font-family-serif);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 29px;
}

.top-bar-module__outer p span {
    color: var(--brand-primary);
}

.top-bar-module .modulelinks {
    position: absolute;
}

.top-bar-module__names a {
    color: unset;
}

.top-bar-module__names a:hover {
    text-decoration: none;
    color: unset;
}

@media (min-width: 992px) {

    .top-bar-module {
        margin-left: auto;
        margin-right: auto;
    }

    .top-bar-module__outer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-module__outer p {
        font-size: 34px;
    }
}