.pagination .link {
    font-weight: 500;
    font-size: 18px;
    color: #000000;
    line-height: 1;
    width: 40px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.pagination ul {
    padding: 0;
    display: flex;
    gap: 0.7rem;
    list-style: none;
}

.pagination ul li:nth-child(3) {
    display: none;
}

.pagination li {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page {
    font-size: 1.4rem;
    color: white;
}

.pagination .current {
    background: #000;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pagination nav li:empty {
    display: none;
}
