.pagination{
    display:flex;
    justify-content:center;
    gap:8px;
    margin:40px 0;
    flex-wrap:wrap;
}

.pagination a,
.pagination span{

    min-width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:8px;

    text-decoration:none;

    transition:.2s;
}

.pagination a{

    background:#fff;
    border:1px solid #d9d9d9;

}

.pagination a:hover{

    background:#2563eb;
    color:#fff;

}

.pagination .active{

    background:#2563eb;
    color:#fff;
    font-weight:bold;

    box-shadow:0 2px 8px rgba(37,99,235,.25);

}

.pagination .disabled{

    opacity:.4;

}

.pagination .dots{

    border:none;
    background:none;

}