/* =========================================
  1. News List Section
  ========================================= */
.news-section {
  padding: 80px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  padding: 0 30px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(43, 85, 206, 0.3);
  border-color: rgba(43, 85, 206, 0.5);
}

.news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
}

.news-date {
  display: inline-block;
  background: linear-gradient(135deg, #2b55ce, #6432ff);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
}

.news-title {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #2b55ce;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #6432ff;
  gap: 15px;
}

/* =========================================
  2. News Hero
  ========================================= */
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

/* =========================================
  3. 响应式
  ========================================= */
@media (max-width: 768px) {
  .page-banner {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 30px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 1024px) {
  .hero-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 40px;
  }
}