.remote-more-posts {
    display: flex;
    gap: 30px;
}
.remote-more-posts-left {
    width: 65%;
}
.remote-more-posts-right {
    width: 35%;
}

@media (max-width: 768px) {
    .remote-more-posts {
        flex-direction: column;
        gap: 20px;
    }
    .remote-more-posts-left,
    .remote-more-posts-right {
        width: 100%;
    }
}
.category-filter ul {
    list-style: none;
    padding: 0;
}
.category-filter li {
    cursor: pointer;
    margin: 5px 0;
}
.ajax-post {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.custom-content img {
    width: 100%;
    height: auto;
}
.custom-button {
    display: inline-block;
    margin-top: 10px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
}
.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #333;
}

.ajax-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.ajax-pagination .pagination-prev,
.ajax-pagination .pagination-next {
    flex: 1;
    text-align: center;
}

.ajax-pagination .pagination-prev {
    text-align: left;
}

.ajax-pagination .pagination-next {
    text-align: right;
}

.ajax-pagination .pagination-numbers {
    flex: 2;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.ajax-pagination .page-numbers {
    padding: 6px 12px;
    border: 1px solid #ccc;
    color: #333;
    text-decoration: none;
}

.ajax-pagination .page-numbers.current {
    color: #fff;
}

.ajax-pagination .page-numbers {
    padding: 6px 12px;   
    color: #333;
    text-decoration: none;
    border: 1px solid #cccccc00 !important;
}

.ajax-pagination .page-numbers.current {
    background: #1E70BF;
    color: #fff;
    border-color: #1E70BF;
    border-radius: 40px;
    height: 40px;
    width: 40px;
}

.ajax-pagination .page-numbers.disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
   
}

