.category-posts-pagination-block {
    margin: 0 auto;
    width: 100%;
}

.category-posts-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
    font-family: sans-serif;
    gap: 8px;
}

.category-posts-page-item {
    display: block;
}

.category-posts-page-item .category-posts-page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    padding: 0 6px;
    color: #848282;
    background-color: #ffffff;
    border: 1px solid #848282;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    letter-spacing: -3%;
}

.category-posts-page-item.category-posts-disabled:not(.category-posts-prev):not(.category-posts-next) .category-posts-page-link {
    color: #cccccc;
    border-color: #e6e6e6;
    cursor: default;
    pointer-events: none;
}

.category-posts-page-item:not(.category-posts-active):not(.category-posts-disabled) .category-posts-page-link:hover {
    border-color: #000000;
    color: #000000;
}

.category-posts-page-item.category-posts-active .category-posts-page-link {
    background-color: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
    font-weight: bold;
    cursor: default;
    pointer-events: none;
}

.category-posts-page-item.category-posts-prev .category-posts-page-link,
.category-posts-page-item.category-posts-next .category-posts-page-link {
    border-color: #000000;
    color: #000000;
    width: 50px;
    height: 32px;
    padding-right: 10px;
    padding-left: 10px;
}

.category-posts-page-item.category-posts-prev.category-posts-active .category-posts-page-link,
.category-posts-page-item.category-posts-next.category-posts-active .category-posts-page-link {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.category-posts-page-item .category-posts-page-link.category-posts-separator {
    border: none !important;
    background: transparent !important;
    color: #666666 !important;
    min-width: auto;
}

.category-posts-page-item.category-posts-prev.category-posts-disabled .category-posts-page-link,
.category-posts-page-item.category-posts-next.category-posts-disabled .category-posts-page-link {
    border-color: #CACACA !important;
    color: #CACACA !important;
    background-color: #ffffff !important;
    cursor: default !important;
    pointer-events: none !important;
}

.category-posts-prev {
    margin-right: 32px;
}

.category-posts-next {
    margin-left: 32px;
}

.category-posts-page-item .category-posts-page-link:active {
    outline: none !important;
    box-shadow: none !important;
}

@media (max-width: 600px) {
    .category-posts-pagination {
        gap: 4px;
        margin: 15px 0;
    }

    .category-posts-prev {
        margin-right: 8px !important;
    }
    .category-posts-next {
        margin-left: 8px !important;
    }

    .category-posts-page-item .category-posts-page-link {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .category-posts-page-item.category-posts-prev .category-posts-page-link,
    .category-posts-page-item.category-posts-next .category-posts-page-link {
        width: 42px;
        height: 32px;
        padding-right: 5px;
        padding-left: 5px;
    }
}
