/* Minimal Vortex site footer */
.vortex-site-footer {
  background: #000;
  border-top: 0;
  padding: 4.25rem 1.5rem 3.75rem;
  padding-bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: #fff;
}

.vortex-site-footer__inner {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.35rem;
}

.vortex-site-footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vortex-site-footer__social:hover {
  background: #262626;
}

.vortex-site-footer__social svg {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.vortex-site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.75rem 3.25rem;
}

.vortex-site-footer__nav a {
  color: #fff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.vortex-site-footer__nav a:hover {
  opacity: 0.72;
}

.vortex-site-footer__copy {
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .vortex-site-footer {
    padding-top: 3.5rem;
    padding-bottom: calc(3.25rem + env(safe-area-inset-bottom, 0px));
  }

  .vortex-site-footer__nav {
    gap: 1.75rem 2rem;
  }

  .vortex-site-footer__nav a,
  .vortex-site-footer__copy {
    font-size: 0.68rem;
  }
}
