.news-list-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.news-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.news-item img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.news-item-content {
  flex: 1;
}

.news-item-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.news-item-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3b82f6;
  display: inline-block;
  padding-bottom: 5px;
}

.hot-news-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hot-news-item span {
  font-size: 24px;
  font-weight: 800;
  color: #eee;
}

.hot-news-item.top span {
  color: #3b82f6;
}

.hot-news-item h4 {
  font-size: 14px;
  font-weight: 600;
}
