/* Visible affordance without changing the text flow of multi-line names. */
.facts-card dd a {
  border-radius: 4px;
  text-decoration-line: underline;
  text-decoration-color: rgba(231, 174, 74, .4);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease, text-shadow .18s ease;
}
.facts-card dd a:hover,
.facts-card dd a:focus-visible {
  color: #ffd889;
  background-color: rgba(231, 174, 74, .12);
  text-decoration-color: #e7ae4a;
  text-shadow: 0 0 10px rgba(255, 199, 99, .45);
  box-shadow: 0 0 0 3px rgba(231, 174, 74, .1), 0 0 16px rgba(231, 174, 74, .22);
}
.facts-card dd a:focus-visible {
  outline: 2px solid #e7ae4a;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .facts-card dd a { transition: none; }
}
