.tags-filter {
    margin-bottom: 30px;
}

.tags-filter__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-filter__item {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tags-filter__item:hover {
    background: #e5e5e5;
}

.tags-filter__item.active {
    background: #333;
    color: #fff;
}

@media (max-width: 767px) {
    .tags-filter__list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .tags-filter__list::-webkit-scrollbar {
        display: none;
    }
} 