.news-item {
    border: 1px solid #dddddd;
    font-size: 15px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all .5s;
}

.news-item:hover {
    box-shadow: 0 0 15px rgb(0 0 0 / 20%);
    margin-left: 15px;
}

.news-item a {
    color: #999;
    text-decoration: none;
}

.news-item-body {
    display: flex;
}

.news-item-image {
    width: 28%;
}

.news-item-image img {
    width: 100%;
    height: 100%;
}

.news-item-content {
    /* width: 51%; */
    width: 72%;
    padding: 0px 35px;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: space-evenly;
}

.news-item-date {
    width: 21%;
    padding-left: 10px;
    border-left: 1px solid #dddddd;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.news-item-title {
    color: #000;
    font-size: 28px;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    margin-bottom: 10px;
}

.news-item-desc {
    max-width: 100%;
    font-size: 16px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
}

.news-item-month {
    font-size: 30px;
    margin-bottom: 3%;
}

.news-item-year {
    font-size: 18px;
}

@media screen and (max-width: 700px) {
    .news-item-month {
        font-size: 22px;
    }

    .news-item-year {
        font-size: 16px;
    }
    .news-item-desc {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
}

@media screen and (max-width: 500px) {
    .news-item-month {
        font-size: 18px;
    }
    .news-item-year {
        font-size: 15px;
    }
    .news-item-content {
        padding: 0px 10px;
        padding-right: 5px;
    }
    .news-item-date {
        padding-left: 5px;
    }
    .news-item {
        padding: 10px;
        margin-bottom: 10px;
    }
    .news-item-desc {
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
}


@media screen and (max-width: 350px) {
    .news-item-date {
        display: none;
    }
    .news-item-content {
        width: 55%;
    }
    .news-item-image {
        width: 45%;
    }
    .news-item-desc {
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
}