﻿.news-feed-wrap-index {
    margin-top: 40px;
    max-width: min(1110px, 90%);
    margin: 0px auto;
    margin-bottom: 50px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 40px;
    width: 100%;
    padding-left: 0px;
}

    .news-feed-wrap-index .item-wrap .image-wrap {
        background-color: #005f86;
        border-radius: 6px;
        margin-bottom: 15px;
    }

        .news-feed-wrap-index .item-wrap .image-wrap img {
            max-width: 100%;
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 6px;
        }

    .news-feed-wrap-index .item-wrap .image-wrap.default-thumbnail {
        background-color: #fff;
        border: solid 1px #efefef;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        height: 220px;
    }

        .news-feed-wrap-index .item-wrap .image-wrap.default-thumbnail img {
            width: 75%;
            height: auto;
            object-fit: unset;
        }

    .news-feed-wrap-index .item-wrap .text-content h3 {
        font-size: 18px;
        font-weight: bold;        
        line-height: 22px;
    }

        .news-feed-wrap-index .item-wrap .text-content h3 a {
            color: rgba(45,41,38,1);
            text-decoration: none;
            font-family: PROXIMANOVA-BOLD;
        }

            .news-feed-wrap-index .item-wrap .text-content h3 a:hover {
                color: #005f86;
                text-decoration: underline;
            }


    .news-feed-wrap-index .item-wrap .text-content .title-wrap {
        overflow: hidden;
        max-height: 48px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        margin-bottom: 20px;
    }

    .news-feed-wrap-index .item-wrap .text-content .title-wrap img {
        width: 16px;
        height: 16px;
        margin-left: 6px;
    }

    .news-feed-wrap-index .item-wrap .text-content .desc {
        line-height: 25px;
        max-height: 75px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }


    @media only screen and (max-width: 991px) {
        .news-feed-wrap-index {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

        .news-feed-wrap-index .item-wrap .image-wrap img {
            height: 270px;
        }

        .news-feed-wrap-index .item-wrap .text-content h3 {
            min-height: 0px;
        }
            .news-feed-wrap-index .item-wrap .image-wrap.default-thumbnail {
                height: 270px;
            }
}

@media only screen and (max-width: 450px) {

    .news-feed-wrap-index .item-wrap .image-wrap img {
        height: 220px;
    }

    .news-feed-wrap-index .item-wrap .image-wrap.default-thumbnail {
        height: 220px;
    }
}