.filtro-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.filtro-posts-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scroll-behavior: smooth;
    padding: 5px;
}

.filtro-posts-scroll::-webkit-scrollbar {
    display: none;
}

.filtro-posts-scroll button {
    white-space: nowrap;
    background: #f1f1f1;
    color: #111;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filtro-posts-scroll button:hover {
    background: #111;
    color: #fff;
}

.filtro-posts-scroll button.active {
    background: #111;
    color: #fff;
}

.scroll-left,
.scroll-right {
    background: #fff;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.scroll-left:hover,
.scroll-right:hover {
    background: #111;
    color: #fff;
}
