/* News feed */
#news-feed {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  transition: box-shadow 0.2s ease;
  display: flex;
  gap: 16px;
}

.news-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.news-date {
  font-size: 14px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.source-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-thumbnail {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
