/* Animated email underlines in the investment platforms only. */
#platforms a[href="mailto:debt@theardentcompanies.com"],
#platforms a[href="mailto:equity@theardentcompanies.com"] {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 250ms ease;
}
#platforms a[href="mailto:debt@theardentcompanies.com"]:hover,
#platforms a[href="mailto:equity@theardentcompanies.com"]:hover {
  background-size: 100% 1px;
}
@media (prefers-reduced-motion: reduce) {
  #platforms a[href^="mailto:"] { transition: none; }
}