.articles__pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.articles__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    color: inherit;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    transition: background-color .2s, border-color .2s, color .2s;
}
.articles__pagination a.page-numbers:hover {
    border-color: #8b5a2b;
    color: #8b5a2b;
}
.articles__pagination .page-numbers.current {
    background-color: #8b5a2b;
    border-color: #8b5a2b;
    color: #fff;
}
.articles__pagination .page-numbers.dots {
    border: none;
}
