.news-item {
    font-size: 20px;
    line-height: 30px;
}
.news-item h4 {
    font:700 18px/1.5 var(--e-global-typography-primary-font-family ), Sans-serif;
    margin: 0 0 10px;
    padding: 0 0 7px;
    border-bottom: 5px solid #f8951d;
}
.news-item h4 span {
    display: block;
    transition: top 0.3s;
    position: relative;
    top: 0;
}
.news-item .text {
    transition: top 0.3s;
    position: relative;
    font-weight: 700;
    top: 0;
}
.news-item .text p {
    margin: 0;
}
.news-item  a:hover {
    text-decoration: none;
}
.news-item  a:hover h4 span {
    top: -8px;
}
.news-item  a:hover .text {
    top: 8px;
}
@media screen and (max-width: 767px) {
    .news-item {
        font-size: 18px;
        line-height: 26px;
    }
    .news-item h4 {
        font-size: 16px;
    }
}