.news,
.news * {
    box-sizing: border-box;
}

.news {
    position: relative;

    display: flex;
    flex-direction: column;
    background-color: white;
}

.news__image {
    position: relative;
    display: block;
    width: 100%;
    flex-shrink: 0;
    height: 0;
    padding-bottom: 59.69%;
}

.news__image img {
    position: absolute;
    inset: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    object-fit: contain;
}

.news__image img.lazy--loaded {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.news__image img.no-image {
    width: 100%;
    height: 100%;
    margin: 0;
    border: 1px solid #C6C8CD;
    object-fit: cover;
}

.news__name {
    margin-bottom: 8px;

    text-decoration: none;
    color: #242831;
    font-size: 18px;
    line-height: 1.27em;
    font-family: robotobold, sans-serif;
}

.news__name::before {
    content: "";
    position: absolute;
    inset: 0;
}

.news__info {
    position: relative;

    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
}

.news__link {
    margin-top: auto;
    align-self: flex-end;
}

.news-link {
    display: flex;
    align-items: center;

    font-size: 14px;
    line-height: 1.5em;
    color: #0064B8;

    transition: all 250ms ease;
}

.news-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 38px;
    height: 38px;

    border: 1px solid #E1E9F0;
    border-radius: 2px;
    transition: all 250ms ease;
}

.news-link__icon svg {
    width: 20px;
    height: 15px;
    fill: #0064B8;
    transition: fill 250ms ease;
}

@media (hover: hover) {
    .news:hover .news-link__icon {
        background-color: #0064B8;
        border-color: #0064B8;
    }

    .news:hover .news-link__icon svg {
        fill: white;
    }
}

.news__preview {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.5em;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news__date {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #0064B8;
    font-size: 14px;
    line-height: 16px;
    font-family: robotoregular, sans-serif;
}

.news__date::before {
    content: "";
    display: block;
    width: 14px;
    height: 16px;
    margin-right: 10px;

    background-image: url("data:image/svg+xml,%3Csvg width='16' height='18' viewBox='0 0 16 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='2.22607' width='15' height='15' rx='1.5' stroke='%230064B8'/%3E%3Cpath d='M11.2467 9.80892L8.07472 12.9809C7.68419 13.3714 7.05103 13.3714 6.6605 12.9809L5.42661 11.747' stroke='%230064B8' stroke-linecap='round'/%3E%3Cline y1='6.57764' x2='16' y2='6.57764' stroke='%230064B8'/%3E%3Cline x1='3.5' y1='3.77002' x2='3.5' y2='0.77002' stroke='%230064B8' stroke-linecap='round'/%3E%3Cline x1='12.5' y1='3.77002' x2='12.5' y2='0.77002' stroke='%230064B8' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .news__info {
        padding: 20px;
    }

    .news__date {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 20px;
    }

    .news__date::before {
        width: 16px;
        height: 18px;
    }

    .news-link__icon {
        width: 44px;
        height: 44px;
    }

    .news-link__icon svg {
        width: 24px;
        height: 18px;
    }
}

@media (min-width: 1200px) {
    .news__info {
        padding: 24px;
    }
    .news__name {
        font-size: 20px;
    }
    .news__preview {
        font-size: 16px;
    }
}