/* ========================================
   首页 - 最新动态区块
   ======================================== */
.home-news {
  background: #F7F9FC;
  padding: 56px 24px;
}
.home-news__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-news__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.home-news__title {
  font-size: 28px;
  font-weight: 800;
  color: #0A1628;
  position: relative;
  padding-left: 14px;
}
.home-news__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  border-radius: 3px;
  background: #014DB2;
}
.home-news__more {
  font-size: 14px;
  color: #014DB2;
  text-decoration: none;
  font-weight: 600;
}
.home-news__more:hover { text-decoration: underline; }

.home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.home-news__card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(1, 27, 77, 0.06);
  border: 1px solid #EEF1F6;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-news__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(1, 77, 178, 0.14);
}
.home-news__cover {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #E8EDF4;
  display: block;
}
.home-news__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-news__badge {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}
.home-news__badge--blue { background: #E6F1FB; color: #185FA5; }
.home-news__badge--green { background: #EAF3DE; color: #3B6D11; }
.home-news__badge--amber { background: #FAEEDA; color: #854F0B; }
.home-news__t {
  font-size: 16px;
  font-weight: 700;
  color: #0A1628;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-news__date {
  font-size: 12px;
  color: #AAB4C4;
  margin-top: auto;
}
.home-news__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #9AA4B4;
  font-size: 15px;
  padding: 30px 0;
}
/* 无封面图的新闻卡片：顶部品牌色条做视觉区分，高度仍与同行有图卡片一致（Grid 默认拉伸） */
.home-news__card--noco { border-top: 3px solid #014DB2; }

@media (max-width: 1024px) {
  .home-news__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .home-news__grid { grid-template-columns: 1fr; }
}
