/* One footer shared by every AIWEYOU public page. */
.global-footer {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px !important;
  height: 48px;
  box-sizing: border-box;
  padding: 0 29px !important;
  background: #f8f8f8 !important;
  border-top: 1px solid #eee !important;
  color: #929292 !important;
  font: 10px "DM Mono", monospace !important;
}

.global-footer .social-links,
.global-footer .footer-links {
  display: flex;
  align-items: center;
}

.global-footer .social-links { gap: 9px; }
.global-footer .footer-links { gap: 18px; }

.global-footer a {
  color: #6e6e6e !important;
  font-size: 10px;
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}

.global-footer .footer-links a:hover { color: #df2029 !important; }

.global-footer .social-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid #aaa;
  border-radius: 50%;
}

.global-footer .social-icon:hover {
  border-color: #df2029;
  background: #df2029;
  color: #fff !important;
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .global-footer {
    flex-basis: 40px;
    min-height: 40px !important;
    height: 40px;
    padding: 0 16px !important;
    font-size: 8px !important;
  }

  .global-footer .footer-links { display: none; }
  .global-footer .social-links { gap: 8px; }
  .global-footer .social-icon { width: 20px; height: 20px; font-size: 8px; }
}
