.news_item {
    width: 100%;
    height: 215px;
    border: 1px solid #e5e5e5;
    margin-bottom: 25px;
    padding: 45px;
    box-sizing: border-box;
    transition: 400ms;
    cursor: pointer;
}
.header_nav ul{
    margin-bottom: 0;
}
.news_item_date {
    width: 115px;
    height: 106px;
    background-color: #767676;
    transition: 400ms;
}

.news_item_date .year {
    color: #aaa;
    font-size: 14px;
    display: block;
    transition: 400ms;
}

.news_item_date .month {
    color: #fff;
    font-size: 25px;
    display: block;
}

.news_item_content {
    width: 560px;
    height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news_item_content h3 {
    font-size: 16px;
    color: #1b1b1b;
    transition: 400ms;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_item_content .detail_news_sescribe {
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news_item_img {
    width: 282px;
    height: 120px;
    object-fit: cover;
}

.news_item:hover {
    border: 1px solid #0073e5;
}

.news_item:hover .news_item_date {
    background-color: #0073e5;
}

.news_item:hover .year {
    color: #fff;
}

.news_item:hover h3 {
    color: #0073e5;
}

.article_title {
    font-size: 28px;
    color: #1b1b1b;
}

.article_date {
    font-size: 16px;
    margin-top: 20px;
    color: #666;
}

hr {
    width: 100%;
    margin: 10px 0;
    height: 1px;
    background-color: #cdcdcd;
    border: none;
}

.article_img {
    width: 600px;
    height: 350px;
}


.article_content p {
    margin-top: 20px;
    line-height: 26px;
}

.article_content h1,
.article_content h2,
.article_content h3 {
    margin-top: 20px;

}

.article_content {
    margin-top: 20px;
}
#newsItemsContainer{
    display: flex;
    flex-wrap: wrap;
}
.index_news_botween_card{
    margin: 0 10px 20px 10px;
}
.ui.container{
    width: max-content!important;
}
@media (max-width: 1000px) {
    .news_item_img {
        display: none;
    }

    .news_item {
        padding: 10px;
        height: auto;
    }
    .index_news_botween_card{
        margin: 0 ;
    }
    .news_item {
        flex-direction: column;
    }

    .news_item_content {
        width: 100%;
        height: auto;
    }

    .phone_date {
        display: flex;
        align-items: center;
    }

    .news_item_date .year {
        color: #fff;
        font-size: 20px;
        margin-left: 10px;
        order: 2;
    }

    .news_item_date {
        width: auto;
        height: auto;
        transition: 400ms;
        padding: 10px;
    }

    .news_item_date .month {
        font-size: 20px;
        order: 1;
    }

    .news_item_content h3 {
        margin-top: 10px;
    }

    .news_item_content .detail_news_sescribe {
        margin-top: 10px;
    }

    .news_item .news_item_date {
        background-color: #0073e5;
    }
    .article_img {
        width: 100%;
        height: auto;
    }
    .article_title {
        font-size: 22px;
        color: #1b1b1b;
        text-align: center;
    }
    .article_date {
        font-size: 15px;
        margin-top: 10px;
        color: #666;
    }
    hr {
        margin: 5px 0;
    }
    .article_content p {
        margin-top: 15px;
        line-height: 24px;
        font-size: 15px;
    }
    .article_content {
        margin-top: 0px;
    }
    .article_content h2{
        font-size: 18px;
    }
}