.emp .emp-tv{
  transform-origin:center;
  animation:emp-tv-pulse 2.9s ease-in-out infinite;
  animation-delay:calc(var(--emp-order,0) * .38s);
  will-change:transform,filter;
}
.emp .emp-card:nth-child(2) .emp-tv{animation-delay:.38s}
.emp .emp-card:nth-child(3) .emp-tv{animation-delay:.76s}
@keyframes emp-tv-pulse{
  0%,100%{transform:scale(1);filter:drop-shadow(0 0 0 rgba(54,200,77,0))}
  50%{transform:scale(1.018);filter:drop-shadow(0 7px 12px rgba(54,200,77,.18))}
}
@media(prefers-reduced-motion:reduce){.emp .emp-tv{animation:none!important;will-change:auto}}
