/* footer.css v1.0 */
.footer-links a {
  color: var(--footer-link, #4b5563);
  transition: color .15s ease;
}
.footer-links a:hover {
  color: var(--footer-hover, #111827);
}

/* Emoji icon next to each link */
.footer-links .footer-emoji {
  display: inline-block;
  font-size: 1.1em;
  line-height: 1;
  margin-right: .35em;
  vertical-align: middle;
  color: inherit;     /* inherits link color so hover matches too */
}

/* Progressive enhancement: keep text node as fallback, but prefer data-attribute */
.footer-links .footer-emoji::before {
  content: attr(data-icon);
}
