.wp-block-categories-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wp-block-categories-list .cat-item a {
    text-decoration: none;
    border: 1px solid var(--wp--preset--color--custom-text-action);
    padding: 4px 8px;
    border-radius: 16px;
    transition: all .3s ease-in-out;
}

.wp-block-categories-list .cat-item a:hover {
    background-color: var(--wp--preset--color--custom-text-action);
    border: 1px solid var(--wp--preset--color--custom-text-action);
    color: var(--wp--preset--color--custom-text-inverted);
}

.wp-block-categories-list .cat-item a:active {
    background-color: var(--wp--preset--color--custom-bg-inverted);
    border: 1px solid var(--wp--preset--color--custom-bg-inverted);
    color: var(--wp--preset--color--custom-text-inverted);
}

.wp-block-categories-list .cat-item.current-cat a {
    background-color: var(--wp--preset--color--custom-bg-inverted);
    border: 1px solid var(--wp--preset--color--custom-bg-inverted);
    color: var(--wp--preset--color--custom-text-inverted);
}