/* Популярные подборки */
.popular-tags {
    margin: 3rem auto 1rem;
}
.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.tag-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .25rem 1rem .25rem .5rem;
    background: #f3f4f3;;
    border: 1px solid #e0e0e0;
    border-radius: 1.5rem;
    color: #2c2d2e;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.tag-btn:hover {
    background: #e0e0e0;
-webkit-box-shadow: rgba(0,0,0,.05) 0 2px 4px 0;
-moz-box-shadow: rgba(0,0,0,.05) 0 2px 4px 0;
box-shadow: rgba(0,0,0,.05) 0 2px 4px 0;
text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tag-btn:active {
    transform: translateY(0);
}

.tag-btn svg {
flex-shrink: 0;
color: #2c2d2e;
transition: color 0.2s ease;
width: 2rem;
height: 2rem;
-o-object-fit: contain;
object-fit: contain;
-webkit-border-radius: .5rem;
-moz-border-radius: .5rem;
border-radius: .5rem;
z-index: 2;
position: relative;
border: 1px solid rgba(0,0,0,.102);
-webkit-border-radius: 100%;
-moz-border-radius: 100%;
border-radius: 100%;
padding: .2rem;
}

.tag-btn:hover svg {
    color: #2c2d2e;
}