.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    padding: 0 0.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(126, 143, 173, 0.22);
    color: #c2cbda;
    background: rgba(15, 18, 26, 0.5);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pagination a:hover,
.pagination a:focus-visible {
    background: rgba(134, 185, 255, 0.12);
    color: #dce7ff;
    border-color: rgba(134, 185, 255, 0.35);
}

.pagination .is-current {
    background: rgba(134, 185, 255, 0.18);
    color: #9cc8ff;
    border-color: rgba(134, 185, 255, 0.4);
    font-weight: 700;
    cursor: default;
}

.pagination__ellipsis {
    border: none !important;
    background: none !important;
    color: #5a6a82 !important;
}