.category-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
    width: 100%;
}

.category-nav {
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.category-nav-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    display: none;
}

.category-nav .category-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 18px;
    border: 1px solid #eee;
    border-radius: 44px;
    transition: 0.3s;
}
.category-list a:hover {
    background-color: #f2f2f2;
}

.category-list .count {
    color: #959595;
    display: inline-block;
    margin-left: 16px;
}

.category-list a.is-active,
.category-list a.is-active .count {
    color: var(--color-orange);
    font-weight: 600;    
}
.category-list a.is-active {
    background-color: rgba(255,128,0,0.1);
    border: 1px solid transparent;
}