$.fn.glow = function(delay = 1000) {
  return this.each(function() {
    let interval;
    const startGlow = () => {
      interval = setInterval(() => $(this).toggleClass('glow'), delay);
    }
    const stopGlow = () => {
      clearInterval(interval);
    }
    $(this).on('mouseenter', stopGlow);
    $(this).on('mouseleave', startGlow);
    
    startGlow();
    
    return this;
  })
}
$('.glowable').glow();subtitle размер шрифта 16 * 1.2 = 19.2px.line-height твой равен 0.225 * 19.2 = 4.32pxline-height можно почитать здесь: