﻿.newsfeedblock .news-article {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #ccc;
    height: 100%;
}


    .newsfeedblock .news-article .image-container {
        overflow: hidden;
        position: relative;
        display: inline-block;
        width: 100%;
        aspect-ratio: 1.72/1;
    }

    .newsfeedblock .news-article .image {
        background-size: cover;
        background-repeat: no-repeat;
        transition: all 0.35s;
        transform: scale3d(1.05,1.05,1);
        height: 100%;
        width: 100%;
    }

    .newsfeedblock .news-article .image-container:hover .image {
        transform: scale3d(1, 1, 1);
    }


    .newsfeedblock .news-article a,
    .newsfeedblock .news-article a:focus {
        text-decoration: none;
        display: block;
    }

    .newsfeedblock .news-article .article-content {
        padding: 20px;
        transition-duration: 0.3s;
        position: relative;
        color: #000;
        background-color: #fff;
        text-decoration: none;
    }

    .newsfeedblock .news-article .date {
        font-size: 16px;
        line-height: 20px;
        text-transform: uppercase;
        font-weight: 500;
        font-style: normal;
        margin-top: 0;
        margin-bottom: 6px;
    }

    .newsfeedblock .news-article .itemtitle {
        margin-top: 0;
        text-decoration: underline;
        color: #406e92;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 14px;
        font-family: 'Futura PT', Arial, Helvetica, sans-serif;
    }

        .newsfeedblock .news-article .itemtitle:hover {
            color: #003d6e;
        }

    .newsfeedblock .news-article .summary {
        font-size: 18px;
        margin-bottom: 6px;
        line-height: 26px;
    }
