/* ============================================================
   AFF — Footer  (footer.css)
   ============================================================ */
.aff-footer {
  background: var(--aff-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 48px 24px 28px;
  margin-top: 64px;
}
.aff-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.aff-footer__logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--aff-white);
  text-decoration: none;
  letter-spacing: -.4px;
}
.aff-footer__logo:hover { color: var(--aff-sky); }
.aff-footer__tagline {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--aff-muted);
}
.aff-footer__nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 20px;
}
.aff-footer__nav-list li a {
  font-size: 13px;
  color: rgba(255,255,255,.60);
  text-decoration: none;
  transition: color 0.2s;
}
.aff-footer__nav-list li a:hover { color: var(--aff-white); }
.aff-footer__copy {
  font-size: 12px;
  color: var(--aff-muted);
  margin: 0;
  line-height: 1.6;
}
