.inside-article a.related-article {
  display: grid;
  align-items: center;
  column-gap: .85em;
  row-gap: 0.25rem;
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
  color: var(--darkest);
  grid-template-columns: 1fr 24px;
  grid-template-rows: auto auto;
  justify-items: start;
  border-left: 2px solid var(--important);
  padding-left: 1rem;
}

.related-article>.label {
  font-weight: 600;
  color: var(--important);
  text-transform: uppercase;
}

.related-article>.label:not(.dynamic) {
  text-wrap: nowrap;
}

.related-article>.title {
  font-size: 1.05em;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: currentColor;
  text-underline-offset: .25em;
}

.inside-article a.related-article:hover > .title {
  text-decoration-thickness: 2px;
}

.related-article>.label {
  grid-column: 1 / 2;
  grid-row: 1;
}

.related-article>.title {
  grid-column: 1 / 2;
  grid-row: 2;
  text-wrap: balance;
}

.related-article>svg {
  display: none !important;
}

.related-article:hover>svg {
  color: var(--important);
}

.byline img {
  margin-top: -2px;
}