/* =========================================================
   新闻资讯页专用样式
   （页面 Banner / 面包屑 / 分类 Tab 样式已在 common.css 通用定义）
   ========================================================= */

/* ---------- 置顶新闻（左大图右文） ---------- */
.featured-news {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(30, 25, 20, 0.05);
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
}

.featured-news:hover {
  box-shadow: var(--shadow-hover);
}

.featured-img {
  overflow: hidden;
  min-height: 260px;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.featured-news:hover .featured-img img {
  transform: scale(1.04);
}

.featured-body {
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.news-tag {
  padding: 4px 12px;
  border-radius: 6px;
  background: rgba(255, 122, 61, 0.10);
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 600;
}

.news-date {
  font-size: 13px;
  color: #98A5B8;
}

.featured-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.5;
  margin-bottom: 14px;
}

.featured-title a {
  color: inherit;
  transition: color 0.25s ease;
}

.featured-title a:hover {
  color: var(--blue-500);
}

.featured-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ---------- 新闻列表网格 ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 61, 0.35);
  box-shadow: var(--shadow-hover);
}

.news-card .news-meta {
  margin-bottom: 12px;
}

.news-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-title);
  line-height: 1.5;
  margin-bottom: 10px;
}

.news-card-title a {
  color: inherit;
  transition: color 0.25s ease;
}

.news-card-title a:hover {
  color: var(--blue-500);
}

.news-card-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.news-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  transition: color 0.25s ease;
}

.news-more:hover {
  color: var(--cyan-400);
}

/* 响应式适配 */
@media (max-width: 992px) {
  .featured-news {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-body {
    padding: 24px 20px;
  }

  .featured-title {
    font-size: 20px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}
