.news .news-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.news .news-title {
  margin: 0;
}

.news .news-viewall {
  flex: 0 0 auto;
  font-size: var(--body-font-size-m);
  font-weight: 700;

  /* matches the heading color on mlb.com — View All renders as a bold
     near-black control there, not the standard blue text link */
  color: #000;
  text-decoration: underline;
  white-space: nowrap;
}

.news .news-viewall:hover {
  color: var(--link-hover-color);
}

.news .news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.news .news-item a {
  display: block;
  padding: 8px 0;
  color: #000;
  font-size: var(--heading-font-size-m);
  font-weight: 700;
  text-decoration: none;
}

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