/* =========================
   News archive
   ========================= */
.news-archive{
  padding: 56px 0 90px;
}

.news-box{
  background:#fff;
  border:1px solid #eef2fb;
  border-radius:18px;
  box-shadow:0 16px 40px rgba(0,0,0,.05);
  padding: 18px 22px;
}

.news-item{
  padding: 18px 8px;
  border-bottom: 1px solid #eef2fb;
}

.news-item:last-child{
  border-bottom: 0;
}

.news-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 8px;
}

.news-date{
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

.news-tag{
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
  background:#eef5ff;
  color:#2f59a7;
  border:1px solid #e6ecff;
}

.news-title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.6;
}

.news-text{
  margin: 0;
  color: rgba(0,0,0,.72);
  line-height: 1.9;
}

.news-back{
  text-align:center;
  margin-top: 22px;
}

@media (max-width: 900px){
  .news-box{ padding: 14px 14px; }
  .news-title{ font-size: 16px; }
}