.sah-course-nav {
    position: relative;
    z-index: 800;
    height: var(--sah-course-nav-height);
    background: var(--sah-navy);
    color: #fff;
}

.sah-course-nav__inner {
    width: min(100% - 48px, 1180px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.sah-course-nav__inner::-webkit-scrollbar {
    display: none;
}

.sah-course-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 11px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.sah-course-nav a:hover {
    background: rgba(255,255,255,.10);
}

.sah-course-nav a.is-active {
    background: var(--sah-purple);
    font-weight: 750;
}

@media (max-width: 760px) {
    .sah-course-nav {
        height: 42px;
    }

    .sah-course-nav__inner {
        width: 100%;
        justify-content: flex-start;
        padding: 0 10px;
        gap: 2px;
    }

    .sah-course-nav a {
        font-size: 14px;
        min-height: 34px;
        padding: 0 10px;
    }
}
