.master-subnav {
    margin: 0 0 16px;
}

.master-subnav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .04);
}

.master-subnav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .04);
    font-size: 14px;
    line-height: 1.2;
}

.master-subnav__link:hover {
    background: rgba(255, 255, 255, .08);
}

.master-subnav__link.is-active {
    font-weight: 700;
    border-color: rgba(72, 187, 120, .75);
    background: rgba(72, 187, 120, .18);
}

@media (max-width: 640px) {
    .master-subnav__inner {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .master-subnav__link {
        white-space: nowrap;
        flex: 0 0 auto;
    }
}