.related-article {
  display: flex;
  gap: 1em;
  flex-direction: row;
  margin-top: var(--spacer);
  margin-bottom: var(--spacer);
  padding: 1em 0;
  align-items: center;
  justify-content: space-between;
}

.related-article:hover {
  color: var(--contrast);
}

.related-article .label {
  font-weight: 600;
  background-color: var(--accent);
  color: var(--base-3);
  padding: 10px;
  border-radius: var(--border-radius);
}

.related-article .title {
  font-size: .9em;
}

.related-article .icon {
  flex-shrink: 0;
}