.news-row {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  padding: 10px 0;
  align-items: center;
}

.news-title {
  color: #003F88;
  transition: color 0.2s;
}

.news-title:hover {
  color: #0056c0;
  text-decoration: underline;
}

.news-title.void-link {
  color: #616161;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}
