.pagination-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
}
.pagination {
    align-items: baseline;
    margin: 0 0 0 -10px;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
    gap: 1rem;
}
a.page-link__next {
    padding: .65em 1.2em;
    border: 1px;
    border-style: solid;
    border-radius: var(--border-radius-btn);
    font-family: 'OpenSans-Semibold';
    display: flex;
    align-items: center;
    text-align: center;
    min-width: 7em;
    cursor: pointer;
    width: 100%;
    max-width: 16em;
    transition: transform 0.5s ease;
    justify-content: space-between;
}
a.page-link__next:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);

}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
li {
    color: #495057;
    line-height: 1.5em;
    font-weight: 700;
    font-size: var(--s20);
}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    font-size: 1em;
    font-family: 'OpenSans-Bold';
    color: #8D8D8D;
    border: 0;
}
.page-link.active {
    color: #3b5957;
}