.pagination-wrap {
    margin-top: 20px;
    margin-bottom: 120px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 500;
    font-size: 24px;
    line-height: 83%;
    color: #c2c2c2;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.pagination-link.active {
    background-color: #106cbc;
    color: #ffffff;
}

.pagination-link:not(.active) {
    background-color: transparent;
    color: #c2c2c2;
}

.pagination-ellipsis {
    color: #8E8E93;
    font-size: 16px;
    font-weight: 500;
    padding: 0 8px;
}

.pagination-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #106cbc;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #ffffff;
}

.pagination-arrow svg path {
    fill: #ffffff;
}

.pagination-arrow {
    background-color: #106cbc !important;
}

.pagination-item.disabled .pagination-link {
    opacity: 0.4;
    pointer-events: none;
}

.pagination-item.disabled {
    display: none;
}

.show-more-btn {
    display: none;
}

@media (max-width: 991px) {
    .pagination {
        display: none;
    }

    .show-more-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(16, 108, 188, 0.2);
        min-height: 56px;
        width: 100%;
        max-width: 280px;
        border-radius: 49px;
        color: #106cbc;
        background: #fff;
        margin: 24px auto 80px;
        padding: 0 20px;
        box-sizing: border-box;
        text-decoration: none;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    }

    .show-more-btn p {
        font-weight: 600;
        font-size: 16px;
        line-height: 1.2;
        color: #106cbc;
        margin: 0;
    }

    .show-more-btn svg {
        margin-left: 12px;
        flex-shrink: 0;
    }

    .show-more-btn:hover {
        background: #106cbc;
        border-color: #106cbc;
    }

    .show-more-btn:hover p {
        color: #fff;
    }

    .show-more-btn:hover svg path {
        stroke: #fff;
    }

    .pagination-wrap {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {
    .show-more-btn {
        max-width: none;
        width: calc(100% - 32px);
        margin: 20px 16px 48px;
        min-height: 52px;
    }

    .show-more-btn p {
        font-size: 15px;
    }

    .show-more-btn svg {
        width: 11px;
        height: 11px;
        margin-left: 10px;
    }
}
