/* Layered black depth + green glow for hero headlines (Another Danger / outline titles). */
#hero-title,
#hero-title span,
.hero .wrap > h1,
.hero .wrap > h1 span,
.hero .hero-name {
  text-shadow:
    1px 2px 0 rgba(0, 0, 0, .72),
    2px 4px 3px rgba(0, 0, 0, .52),
    3px 7px 10px rgba(0, 0, 0, .38),
    0 0 28px rgba(57, 255, 20, .32),
    0 0 64px rgba(57, 255, 20, .1);
  filter:
    drop-shadow(1px 2px 1px rgba(0, 0, 0, .55))
    drop-shadow(2px 5px 8px rgba(0, 0, 0, .32));
}

.hero .hero-kicker {
  text-shadow: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  #hero-title,
  #hero-title span,
  .hero .wrap > h1,
  .hero .wrap > h1 span,
  .hero .hero-name {
    filter: none;
  }
}
