/* Section sub-navigation tab bar (under page hero) */
.sb-subnav {
    width: 100%;
    background: #F9F9F9;
    border-bottom: 1px solid #E9E9E9;
    padding:16px 0px;
}
.sb-subnav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 26px;
}
.sb-subnav__link {
    position: relative;
    display: inline-block;
    padding: 8px 4px;
    font-size: 14px;
    font-weight: 400;
    color: #131413;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}
.sb-subnav__link:hover {
    color: #267043;
}
.sb-subnav__link.is-active {
    color: #5DA12C;
    border-bottom-color: #5DA12C;
    font-weight: 600;
}
@media (max-width: 760px) {
    .sb-subnav__inner {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0 20px;
        -webkit-overflow-scrolling: touch;
    }
    .sb-subnav__inner::-webkit-scrollbar { display: none; }
    .sb-subnav__link { padding: 14px 2px; font-size: 13px; }
}
