/*
MODULE: Footer Styles
RESPONSIBILITY: Visual treatment for the .site-footer block.
DEPENDS ON: tokens.css, layout.css
EXPOSES: .site-footer and its elements
*/

.site-footer {
  display: flex;
  flex-direction: column;
  row-gap: var(--space-2);
  border-top-width: var(--border-width-thin);
  border-top-style: solid;
  border-top-color: var(--color-border);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.site-footer__note {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

.site-footer__meta {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-xs);
  color: var(--color-muted);
}

@media (min-width: 768px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
