.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    grid-gap: 30px;
    justify-content: space-evenly;
}

.news-container > .item {
    text-decoration: none;
    color: inherit;
}

.news-container > .item > img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news-container > .item > .box {
    padding: 14px 20px 20px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

.news-container > .item > .box > .date {
    font-size: 13px;
    color: #a0a0a0;
    margin-bottom: 6px;
}

.news-container > .item > .box > .title {
    font-size: 16px;
    font-weight: 700;
}

.news-container > .item > .box > .content {
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-container > .item > .box > .view-more {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
    text-decoration: unset;
    color: #5bb8e8;
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    border: 1px solid #5bb8e8;
    border-radius: 4px;
    background: transparent;
    transition: all 0.3s;
}

.news-container > .item .view-more:hover {
    background: #5bb8e8;
    color: #fff;
}