/* SVG-backed icons retain both colors and scale with font-size. */
.ka {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -.125em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.ka-sparkles { background-image: url("../icons/kady-spark.svg"); }
.ka-sparkles.ka-animated { animation: ka-spark-float 6s ease-in-out infinite; }
@keyframes ka-spark-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.035); }
}
@media (prefers-reduced-motion: reduce) {
    .ka-sparkles.ka-animated { animation: none; }
}
