.news-widget {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
  margin-bottom: 16px;
}
.news-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
}
.news-tab-btn {
  flex: 1;
  padding: 12px;
  background: #f9fafb;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
}
.news-tab-btn:hover {
  background: #e5e7eb;
  color: #374151;
}
.news-tab-btn.active {
  color: #4f46e5;
  background: #fff;
  border-bottom: 2px solid #4f46e5;
}
.news-tab-content {
  display: none;
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
}
.news-tab-content.active {
  display: block;
}
.news-loading,
.news-empty,
.news-error {
  text-align: center;
  padding: 24px 16px;
  font-size: 13px;
  color: #9ca3af;
}
.news-error {
  color: #dc2626;
}
.news-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}
.news-item:last-child {
  border-bottom: none;
}
.news-img {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f3f4f6;
}
.news-body {
  flex: 1;
  min-width: 0;
}
.news-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
}
.news-title a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.15s;
}
.news-title a:hover {
  color: #4f46e5;
}
.news-meta {
  font-size: 11px;
  color: #9ca3af;
}
