﻿


.news .news-list-view .article .teaser-text {display: none;}


.news-backlink-wrap {
    margin: 30px 0 10px;
}

.news-backlink-wrap a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;

    background: #00a5d3;
    color: #fff !important;

    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;

    text-transform: uppercase;
    text-decoration: none !important;

    border: 1px solid #00a5d3;
    border-radius: 4px;

    box-shadow: 0 3px 10px rgba(0,0,0,.08);

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.news-backlink-wrap a::before {
    content: "←";
    font-size: 18px;
    line-height: 1;
}

.news-backlink-wrap a:hover,
.news-backlink-wrap a:focus {
    background: #007899;
    border-color: #007899;
    color: #fff !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.news-backlink-wrap a:active {
    transform: translateY(0);
}