/* ==========================================================
News
========================================================== */
.news{
    background:#fff;
}
.news__list{
    margin-top:70px;
    border-top:1px solid #E5E7EB;
}
.news-item{
    display:flex;
    align-items:center;
    gap:30px;
    padding:28px 10px;
    border-bottom:1px solid #E5E7EB;
    transition:.3s;
}
.news-item:hover{
    padding-left:20px;
    background:#F8FAFC;
}
.news-date{
    width:120px;
    color:#94A3B8;
}
.news-category{
    background:#ECFDF5;
    color:var(--primary-color);
    padding:6px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}
.news-title{
    flex:1;
    font-weight:600;
}
.news__button{
    text-align:center;
    margin-top:60px;
}
@media(max-width:768px){
.news-item{
flex-direction:column;
align-items:flex-start;
gap:14px;
}
.news-date{
width:auto;
}
}