.trace-host {
  position: relative;
}

.trace {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  z-index: 3;
}

.trace__line {
  fill: none;
  stroke: var(--color-brand-500);
  stroke-width: 1.5;
  stroke-linecap: round;
}

@media (prefers-reduced-motion: reduce) {
  .trace {
    transition: none;
  }
}
