.show-more-pagination {
    margin: 30px 0 140px;
    text-align: center;
    position: relative;
    min-height: 58px;
}

.pagination-show-more {
    margin-bottom: 15px;
}

.btn-show-more {
    display: inline-block;
    padding: 14px 24px;
    border: #353743 3px solid;
    color: #353743;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 24px;
    min-width: 395px;
}

.pagination-nav {
    position: absolute;
    top: 22px;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #353743;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    /* background: #007bff; */
    color: #0839FE;
    font-weight: bold;
    /* border-color: #007bff; */
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #999;
    font-size: 14px;
}

.prev,
.next {
    font-weight: bold;
}

.page-link.next:after, .page-link.prev:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: #000 2px solid;
    border-bottom: #000 2px solid;
    transform: rotate(-45deg);
    transition: border-color ease .2s;
}
.page-link.prev:after {
    transform: rotate(135deg);
}

@media (max-width: 768px) {
    .show-more-pagination {
        margin: 30px 0 40px;
    }
    .pagination-nav {
        position: static;
        font-weight: bold;
    }
    .pagination-show-more {
        margin: 0 0 40px;
    }
    .btn-show-more {
        font-size: 18px;
        min-width: 300px;
        padding: 10px 24px;
    }
}