.pagination {
    margin: 48px 0 0;
}
.pagination__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.pagination__link {
    font-family: 'Inter-Medium', sans-serif;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    border: 1px solid #E6EBF1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #131619;
    font-size: 14px;
    line-height: 100%;
    text-decoration: none;
    transition: all 0.5s linear;
    position: relative;
}
.pagination__link:hover {
    border: 1px solid #E2231A;
}
.pagination__link_active {
    border: 1px solid #E2231A;
    background: #DD1E31;
    color: #fff;
}
.pagination__link_arrow:after {
    content: '';
    width: 6px;
    height: 10px;
    display: block;
    background-image: url(images/icon-arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pagination__link_arrow-left {
    transform: rotate(180deg);
}
.pagination__link_arrow-right {
    transform: rotate(0deg);
}