.tag-list {
    margin: 20px 0 40px;
    padding: 16px 0 24px;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.tag-list .h3 {
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-list .h3 svg {
    width: 22px;
    height: auto;
}

.tag-list_inner {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
    gap: 8px;
}

.tag-list li {
    margin: 0;
}

.tag-list_item {
    display: block;
    text-decoration: none;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid var(--link-color);
    border-radius: 20px;
    padding: 0 10px;
    line-height: 1.8em;
    outline: none;
    background: white;
    color: var(--link-color);

}

.tag-list_item:hover,
.tag-list_item:focus,
.tag-list_item:active {
    background: var(--link-color);
    color: white;
    outline: none;
}

@media screen and (min-width: 768px) {
    .tag-list_item {
        transition: all .2s;
        font-size: 14px;
    }
}

@media screen and (min-width: 1024px) {
    .tag-list_item {
        font-size: 15px;
        padding: 0 12px;
    }
}
