/* V10: accessible creator profile links; existing site styling is unchanged. */
.creator-story .creator-profile-link {
  color: #8feaff;
  text-decoration-line: underline;
  text-decoration-color: rgba(143, 234, 255, .6);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(40, 216, 255, .2);
  transition: color .18s ease, text-shadow .18s ease, text-decoration-color .18s ease, background-color .18s ease;
}
.creator-story .creator-profile-link:hover,
.creator-story .creator-profile-link:focus-visible {
  color: #ffffff;
  background-color: rgba(40, 216, 255, .08);
  text-decoration-color: #28d8ff;
  text-shadow: 0 0 12px rgba(40, 216, 255, .65);
}
.creator-story .creator-profile-link:focus-visible {
  outline: 2px solid #28d8ff;
  outline-offset: 4px;
}
.creator-story .creator-profile-link:active {
  color: #28d8ff;
}
.creator-link-arrow {
  display: inline-block;
  margin-left: .22em;
  font-size: .85em;
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  .creator-story .creator-profile-link { transition: none; }
}
