/* Animated hand-drawn marks over assets/image-3.png (circle + underline). Loaded after brands.css. */
.annot { position:relative; display:block; }
.annot > img { display:block; }
.annot-svg { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.annot-reveal { fill:none; stroke:#fff; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:1; stroke-dashoffset:1; }
.annot-reveal-1 { stroke-width:48; }
.annot-reveal-2 { stroke-width:64; }
.annot.is-drawn .annot-reveal-1 { animation:annot-draw .75s cubic-bezier(.4,0,.3,1) forwards; }
.annot.is-drawn .annot-reveal-2 { animation:annot-draw .55s cubic-bezier(.4,0,.3,1) .8s forwards; }
@keyframes annot-draw { to { stroke-dashoffset:0; } }
@media (prefers-reduced-motion:reduce) {
  .annot-reveal { stroke-dashoffset:0; animation:none !important; }
}
