/* wn-inline-link.css
   Inline text-links inside "What's New" card bodies (Release Dashboard /
   Release Health Snapshot triggers). Permanent underline via native
   text-decoration rather than a ::after pseudo-element, since the
   pseudo-element approach only draws under the last line of a wrapped
   multi-line link (visible as a partial underline in testing) —
   text-decoration renders correctly under every wrapped line.
   Added: 13-08-2026, IW ref: n/a (minor fix, no Jira ticket)
*/

.wn-inline-link {
  color: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.wn-inline-link:hover {
  opacity: 0.75;
}