.posts-grid-block {
    background-color: #0D0D0D;
    padding-bottom: 160px;
}

.posts-grid-block-filter {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(242, 238, 230, 0.12);
    margin-bottom: 35px;
}

.posts-grid-block-categories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.posts-grid-block-category {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    text-transform: uppercase;
    color: rgb(242, 238, 230, 0.5);
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.posts-grid-block-category.active,
.posts-grid-block-category:hover {
    color: #F2EEE6;
    text-decoration: underline;
}

.posts-grid-block-count {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #F2EEE6;
}

@media (max-width: 1024px) {
    .posts-grid-block {
        padding-bottom: 150px;
    }

    .posts-grid-block-filter {
        padding: 20px 0;
        border-bottom: none;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 30px;
    }

    .posts-grid-block-categories {
        padding-bottom: 20px;
        border-bottom: 1px solid rgb(242, 238, 230, 0.12);
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}
