/* Style en pastille pour le bloc Catégories */
.wp-block-categories.is-style-pill-style {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
}
.wp-block-categories.is-style-pill-style li a {
    border-radius: 10px;
    border: 1px solid #797979;
    padding: 10px;
    font-size: 1em;
    display: inline-block;
    margin: 0;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.wp-block-categories.is-style-pill-style li:hover a {
    color: #fff;
    background: #797979;
}