/* Inline links inside article body copy — visible at rest, red on hover/focus. */
.article-body a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(208, 2, 27, 0.25);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.article-body a:hover,
.article-body a:focus-visible {
  color: var(--red, #D0021B);
  border-bottom-color: rgba(208, 2, 27, 0.55);
}
