.pager {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}


.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 10px;
    background-color: #F0F0F0;
    border-radius: 4px;
    font-weight: bold;
    border-radius: 50px;
}


.next.page-numbers,
.prev.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #DF433C;
    border-radius: 4px;
    font-weight: bold;
    border-radius: 50px;
    color: #fff;
}

.page-numbers.current {
    background-color: #FFD1D1;
    color: #DF433C;
}

.nav-links {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .page-numbers {
        width: 30px;
        height: 30px;
    }

    .next.page-numbers,
    .prev.page-numbers {
        width: 30px;
        height: 30px;
    }
    
}