.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-inverse);
  /* border-top: 4px solid var(--color-primary); */
  font-family: 'Exo 2', 'Kanit', sans-serif; 
  padding: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
}

.footer-brand strong {
  color: var(--text-inverse);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: var(--text-inverse);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 30px;
  border-top: 1px solid var(--text-primary);
  padding-top: 20px;
}

.site-footer .block {
  margin: 0;
  border: none;
}

.site-footer__bottom {
  margin-top: 20px;
}