  .news_list {
     display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
        }

        .news_item {
        }

            .news_item:nth-child(3n) {
                margin-right: 0;
            }

            .news_item:last-child {
                margin-right: 0;
            }

            .news_item a {
                display: block;
                text-decoration: none;
                color: #353535;
                transition: all 0.3s;
            }
.news_itm_img {
    margin-bottom: 15px;
    overflow: hidden;
    height: 250px;
}
        .news_itm_img img {
          width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s;
        }

        .news_item a:hover .news_itm_img img {
            transform: scale(1.1, 1.1);
        }

        .news_itm_ttl {
			font-size: 17px;
            color: #000;
            line-height: 1.5em;
            font-weight: 700;
            margin: 0 0 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news_itm_img {
            margin-bottom: 15px;
            overflow: hidden;
        }

        .news_itm_date {
            font-size: 13px;
            position: relative;
            padding-left: 20px;
        }

            .news_itm_date:before {
               content: '';
    position: absolute;
    background: url(/Images/news_icon02.png) no-repeat center center / 100% auto;
    width: 15px;
    height: 20px;
    left: 0;
            }

        .news_itm_txt {
          display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    color: #000;
    font-size: 15px;
        }

        .news_item a:hover {
            opacity: 0.7;
        }

        @media screen and (max-width:768px) {
            .news_list {
               grid-template-columns: repeat(2, 1fr);
				gap: 10px;
            }
			
        }
		
		  @media screen and (max-width:480px) {
            .news_list {
               grid-template-columns: repeat(1, 1fr);
				gap: 10px;
            }
			
        }