/* Small deltas on top of forum.css's topic-list/topic-row for the news feed. */
.news-row { align-items: center; }
.news-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.news-row:hover .news-side { color: var(--primary-ink); border-color: rgba(255, 85, 12, 0.45); }
