/* ============================================
   Gadgets-X Global Footer
   ============================================ */

.gx-footer {
  background: var(--gx-dark-2);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-top: 1px solid var(--gx-mid);
}

.gx-footer__inner {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}

.gx-footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.gx-footer__links a,
.gx-footer__link {
  color: var(--gx-gray);
  font-size: var(--fs-xs);
  text-decoration: underline transparent;
  text-underline-offset: 3px;
  transition: color 200ms ease-out, text-decoration-color 200ms ease-out;
}

.gx-footer__links a:hover,
.gx-footer__link:hover {
  color: var(--gx-accent-light);
  text-decoration-color: var(--gx-accent-light);
}

.gx-footer__copy {
  color: var(--gx-gray);
  font-size: var(--fs-xs);
}
