/* footer.css -- extracted from xanguard.tech blog posts */

.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__logo-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; color: #000;
}

.footer__copy { font-size: 13px; color: var(--text-muted); }

.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }

.footer__links a {
  font-size: 13px; color: var(--text-muted); transition: color 0.2s;
}

.footer__links a:hover { color: var(--text-primary); }

@media (max-width: 768px) {
  .footer .container { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

.footer__links {
  display: flex;
  gap: 24px;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
