/* TAG - STYLE */

/* TAG - DEBUT */
.ancrages-tag {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}


.ancrages-tag a{
    background: transparent;
    color: #000;
    font-size: 20px;
    line-height: 24px;
    padding: 9px 20px;
    border-radius: 42px;
    box-shadow: inset 0 0 0 1px #000;
    text-decoration: none!important;
}

.ancrages-tag:hover a,
.ancrages-tag.selected a{
    background: #000;
    color: #fff;
    box-shadow: inset 0 0 0 1px #000;
}

/* RESPONSIVE */

@media screen and (max-width: 980px) {
    .ancrages-tag a{
        font-size: 15px;
        line-height: 20px;
        padding: 6.5px 15px;
        border-radius: 33px;
    }
}

/* TAG - FIN */

/* TAG FILTER CONTAINER - DEBUT */

.tag-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

@media screen and (max-width: 980px) {
    .tag-filter-container {
        gap: 10px;
    }
    
}