.news-block{
    position:relative;
}
.news-block svg{
    width:30px;
    height:30px;
}
.news-block.prev svg{
    position:absolute;
    top:0px;
    left:0px;
}

.news-block h3{
    font-size:1.5rem;
}

.news-block a{
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
.neighbors{
    flex-wrap:no-wrap;
    justify-content:space-between;
}
.neighbors .link-prev:hover a, .neighbors .link-next:hover a, .neighbors .link-up:hover a{
    background:var(--main-hover-color);
    color:#ffffff;
}
@media (max-width: 520.98px) {
    .neighbors{
        flex-wrap:wrap;
        justify-content:center;
    }
    .neighbors a{
        margin:2px 0;
    }
    .neighbors .link-up{
        order: 3;
    }
    .neighbors .link-prev{
        order: 1;
    }
    .neighbors .link-next{
        order: 2;
    }
    .neighbors .link-up, .neighbors .link-up a{
        width:100%;
    }
}