.glossaire-block-container{
    display: flex;
    /* mobile defaults use CSS variables set inline on the wrapper */
    margin-top: var(--gb-mt-mobile, 0);
    margin-bottom: var(--gb-mb-mobile, 0);
    padding: 0;
    justify-content: center;
}
@media (min-width: 768px) {
    .glossaire-block-container {
        /* desktop defaults use CSS variables set inline on the wrapper */
        margin-top: var(--gb-mt-desktop, 0);
        margin-bottom: var(--gb-mb-desktop, 0);
    }
}
.glossaire-block-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 3rem;
}
.glossaire-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: auto;
    margin: 0;
}
.glossaire-cats{
    display: flex;
}
.glossaire-cats-list{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 1.5rem;
    justify-content: center;
    font-size: var(--wp--preset--font-size--l-title);
    font-weight: 600;
    padding-bottom: 3rem;
}
@media (max-width: 768px){
    .glossaire-cats-list{
        gap: 1rem;
    }
}
.glossaire-cat:hover{
    cursor: pointer;
}
.glossaire-cat.active{
    color: var(--wp--preset--color--sauge);
}

/* hidden state when filtering */
.glossaire-item.is-hidden{ display: none; }

.glossaire-text{
    & h2{
        margin-top: 0.5rem;
    }
}



