.content-switch {
    position: sticky;
    top: 0;
    padding: 1em;
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem;
    z-index: 99;
    transition: top .3s;
}
.content-switch--page-header-expanded {
    top: 60px;
}
.content-switch__inner {
    display: flex;
    padding: 8px;
    gap: 5px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 1px 20px 2px rgba(0,0,0,.2);
    border-radius: 50px;
}
.content-switch__item {
    display: flex;
    align-items: center;
    padding: .75em 1.75em;
    font-weight: bold;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: .25s;
}
.content-switch__item--active {
    color: #fff;
    background-color: #f96915;
}

@media (min-width: 992px) {
    .content-switch--page-header-expanded {
        top: 140px;
    }
}
