.hubNavigationWrapper {
    height: 3.5rem;
    background-color: #1b1b1b;
    border-bottom: 1px solid #252525;
    position: sticky;
    top: 0;
    z-index: 100;
}

.hubNavigationContainer {
    height: inherit;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.hubNavigationBrand {
    text-decoration: none;
    color: #e8e8e8;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hubNavigationLinks {
    display: flex;
}

.hubNavigationLink {
    text-decoration: none;
    color: #878787;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 0.85rem;
    padding: 0 0.8rem;
    transition: color 0.15s ease;
}

.hubNavigationLink:hover {
    color: #e8e8e8;
}

.hubNavigationLink.activeLink {
    color: #e8e8e8;
}

@media screen and (max-width: 655px) {
    .hubNavigationContainer {
        padding: 0 1rem;
    }

    .hubNavigationBrand {
        font-size: 0.8rem;
    }

    .hubNavigationLink {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }
}
