/* public/assets/ui/framework/18_footer.css
   KomodUI Footer v0.1
   Replaces inline footer styles with stable classes.
*/

.site-footer {
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  text-decoration: none;
}

.site-footer__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
}

.site-footer__note {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  line-height: var(--line-height-relaxed);
}

.site-footer__title {
  font-size: var(--text-md);
  margin-bottom: var(--space-4);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-heading);
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.site-footer__link {
  color: var(--color-text-muted);
  text-decoration: none;
}

.site-footer__link:hover {
  color: var(--color-primary);
}

.site-footer__bottom {
  border-top: 1px solid var(--color-border);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  padding-top: var(--space-6);
}

.site-footer__bottom-links {
  margin-bottom: var(--space-2);
}

.site-footer__bottom-links a {
  color: var(--color-text-muted);
  text-decoration: underline;
  margin: 0 var(--space-2);
}  