.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}
ul.page-numbers {
    list-style: none;
    display: flex;
    gap: 20px;
}
ul.page-numbers li a, ul.page-numbers li span.current {
    color: var(--global-text);
    width: 40px;
    height: 40px;
    border-radius: 34px;
    padding: 8px;
    font-weight: 400;
    text-align: center; 
    display: block;
}
ul.page-numbers li a {
    background: transparent;
    color: var(--global-text);
}
ul.page-numbers li span.current, ul.page-numbers li a:hover {
    background: var(--red-bg);
    color: var(--red-text);
}
ul.page-numbers li a.next, ul.page-numbers li a.prev {
    width: auto;
}