.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  padding: 16px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  display: block;
  font-size: 0.9em;
  opacity: 0.7;
  margin-bottom: 4px;
}

.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.news-title {
  margin: 0 0 6px;
  flex: 1;
}

.news-text {
  margin: 0;
}

.news-text a {
  color: var(--text);
  text-decoration: underline;
}

.news-text a:hover {
  color: var(--base);
  transition: color 0.2s ease;
}

.news-item-icon {
  display: none;
}
