.pagination {
    display: flex;
    align-items: center;
    justify-content: center; /* <- добавляем для центрирования */
    gap: 8px;
	font-family: 'Nunito-Regular';
    font-size: 20px;
    line-height: 120%;
	font-weight:400;
}


.page, .arrow {
    border: 0px solid #ccc;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 8px;
    text-align: center;

}

.page.active {
    border: 1px solid #000;
    font-weight: 700;
}

.page:hover, .arrow:hover {
    background: #f0f0f0;
}

.dots {
    padding: 0 6px;
}
