.view-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 4px;
    border: 1px solid #e2e7ec;
    border-radius: 999px;
    background: #fff;
}

.view-switch .view-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #34495e;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.view-switch a.view-pill:hover,
.view-switch a.view-pill:focus-visible {
    background: #eef7fd;
    color: #2478ad;
    outline: none;
}

.view-switch .view-pill.active {
    background: #3498db;
    color: #fff;
    cursor: default;
}

@media (max-width: 640px) {
    .view-switch {
        width: min(100%, 380px);
    }

    .view-switch .view-pill {
        flex: 1 1 0;
        padding-inline: 10px;
        white-space: normal;
        text-align: center;
    }
}
