﻿.news-list {
    display: flex;
    flex-wrap: wrap;
}

.news-main {
}

.news-item {
    width: calc(100%/3 - 20px);
    padding: 0 0 15px;
    margin: 0 26px 40px 0px;
}

    .news-item:nth-child(3n) {
        margin-right: 0;
    }

    .news-item a {
        text-decoration: none;
    }

.news-img {
    overflow: hidden;
    border-radius: 5px;
    flex-shrink: 0;
}

.news-txt {
    color: #000;
	font-weight: 600;
    margin: 0;
    font-size: 15px;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-ttl {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 10px;
    text-transform: uppercase;
    transition: all 0.5s ease;
    font-weight: bold;
    font-size: 20px;
}

.news-item:hover .news-ttl {
    color: #ed8e22;
}

.news-img img {
    width: 100%;
    transition: all 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.news-item:hover .news-img img {
    transform: scale(1.1, 1.1);
}

.news-date {
    color: #818181;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

.news-link {
    text-align: right;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    font-size: 16px;
}

@media screen and (max-width:768px) {
}

@media screen and (max-width:480px) {
    .news-item a {
        display: block;
    }

    .news-img, .news-main {
        width: 100%
    }

    .news-list {
        display: block;
    }

    .news-item {
        width: 100%;
        padding: 0 0 20px;
        margin: 0 0 25px;
    }
}
