.pagination {
    width: 1160px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: flex;
}

.pagination-btn {
    min-width: 36px;
    height: 32px;
    padding: 0 10px;
    background: #211F38;
    overflow: hidden;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    display: flex;
    border: none;
    cursor: pointer;
    color: #948CA8;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    text-decoration: none;
    box-sizing: border-box;
}

a.pagination-btn:hover {
    color: #EDEAF5;
}

.pagination-btn.is-disabled {
    opacity: 0.4;
    cursor: default;
    pointer-events: none;
}

.pagination-btn--wide {
    min-width: 42px;
}

.pagination-btn--active {
    background: #F12B9E;
    color: white;
}

.pagination-btn--arrow {
    padding: 0;
    width: 36px;
}

.pagination-arrow {
    width: 14px;
    height: 14px;
    display: block;
}

.pagination-ellipsis {
    color: #948CA8;
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word;
}

@media (max-width: 767px) {
    .pagination {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
}
