/* Dasselbe dekorative Auftragssymbol wie in der Maus-Werkstatt. */
.vl-work-order::before {
  content: "";
  display: inline-block;
  flex: 0 0 1.15em;
  width: 1.15em;
  height: 1.15em;
  margin-right: .5em;
  vertical-align: -.15em;
  background: var(--gold-dark, #a68f08);
  clip-path: polygon(0 36%, 60% 36%, 60% 8%, 100% 50%, 60% 92%, 60% 64%, 0 64%);
}
.vl-work-order.vl-arrow-blink::before { animation: vl-task-arrow-blink .8s ease-in-out 3; }
@keyframes vl-task-arrow-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .vl-work-order.vl-arrow-blink::before { animation: none; }
}
