.news-top {
    position: relative;
    background-image: url(../img/single-top.jpg);
	background-size: cover;
    width: 100%;
    aspect-ratio: 5 / 1;
    border-radius: 0 0 0 50px;
}

.news-list {
    margin-bottom: 80px;
}

.news-top h2 {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.news-list article {
    width: 100%;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #40A629;
}
.news-list .date {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.news-list .title {
    color: #FF8001;
    text-decoration: underline;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}
.content p {
    overflow: hidden;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.8;
}

/* @media screen and (max-width: 767px) { */
@media screen and (max-width: 820px) {
    .news-list {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 5%;
    }
    .news-list .title {
        font-size: 18px;
    }
}