body[data-page="home"] .site-footer .footer-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 50px;
  padding: 12px 19px;
  border: 1px solid rgba(23,32,28,.22);
  border-radius: 999px;
  color: var(--ink);
  font-size: .83rem;
  font-weight: 800;
  transition: background-color .36s cubic-bezier(.16,1,.3,1), color .36s cubic-bezier(.16,1,.3,1), transform .36s cubic-bezier(.16,1,.3,1) !important;
}

body[data-page="home"] .site-footer .footer-about-icon {
  position: relative;
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  overflow: hidden;
  transform-origin: center;
  transition: transform .42s cubic-bezier(.16,1,.3,1) !important;
}

body[data-page="home"] .site-footer .footer-about-icon img {
  position: absolute;
  width: 18px;
  height: 18px;
  object-fit: contain;
  pointer-events: none;
  transform-origin: center;
  will-change: opacity, transform;
  transition: opacity .26s ease, transform .42s cubic-bezier(.16,1,.3,1) !important;
}

body[data-page="home"] .site-footer .footer-about-icon-hover {
  opacity: 0;
  transform: scale(.7) rotate(-10deg);
}

@media (hover: hover) and (pointer: fine) {
  body[data-page="home"] .site-footer .footer-about:hover {
    border-color: var(--ink);
    background: rgba(23,32,28,.08);
    color: var(--ink);
    transform: scale(1.035);
  }

  body[data-page="home"] .site-footer .footer-about:hover .footer-about-icon {
    transform: scale(1.08);
  }

  body[data-page="home"] .site-footer .footer-about:hover .footer-about-icon-default {
    opacity: 0;
    transform: scale(.72) rotate(10deg);
  }

  body[data-page="home"] .site-footer .footer-about:hover .footer-about-icon-hover {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .site-footer .footer-about { max-width: 100%; }
}
