.footer-brand-link {
  display: inline-flex !important;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  white-space: nowrap;
}

.footer-dog {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  max-width: none !important;
  flex: 0 0 18px;
}

.footer-brand-link:hover .footer-dog,
.footer-brand-link:focus-visible .footer-dog,
.footer-brand-link.is-barking .footer-dog {
  animation: footer-dog-bark 0.44s ease 3;
}

@keyframes footer-dog-bark {
  0%,
  100% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.12) rotate(-4deg) translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-brand-link:hover .footer-dog,
  .footer-brand-link:focus-visible .footer-dog,
  .footer-brand-link.is-barking .footer-dog {
    animation: none;
  }
}
