/* Phase 4 — SVG motion */

.sc361-svg-motion path,
.sc361-svg-motion line,
.sc361-svg-motion polyline {
	fill: transparent;
	stroke: currentColor;
	stroke-width: 1.5;
}

.sc361-svg-path {
	transition: stroke-dashoffset 0.1s linear;
}

.sc361-motion--svg .sc361-card:hover .sc361-svg-path {
	animation: sc361-svg-loop 2s ease-in-out infinite alternate;
}

@keyframes sc361-svg-loop {
	to {
		stroke-dashoffset: 0;
	}
}
