.news-feed {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 8px;
  padding: 0.5em;
  background: var(--background-color, #fafafa);
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
}

.news-feed::-webkit-scrollbar { width: 6px; }
.news-feed::-webkit-scrollbar-thumb { background: #888; border-radius: 3px; }

.news-item {
  background: var(--background-color, #fff);
  border: 1px solid var(--border-color, #e0e0e0);
  border-radius: 6px;
  padding: 0.75em 1em;
  margin-bottom: 0.5em;
  font-size: 0.95em;
  line-height: 1.5;
  color: var(--text-color, #333);
}

.news-item:last-child { margin-bottom: 0; }
.news-date { font-weight: 700; margin-right: 0.3em; color: var(--text-color, #333); }
