.custom-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
}

.custom-pagination a,
.custom-pagination span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e5e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-decoration: none;
    color: #898995;
}

.custom-pagination .active {
    background: #2470eb;
    color: #fff;
    border-color: #2470eb;
}

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

.custom-pagination .dots {
    border: none;
}

@media (max-width: 1024px) {
    .custom-pagination {
        gap: 6px;
        margin-top: 24px;
    }

    .custom-pagination a,
    .custom-pagination span {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 720px) {
    .custom-pagination {
        gap: 4px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .custom-pagination a,
    .custom-pagination span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .custom-pagination .dots {
        display: none;
    }
}
