/* Footer. */

.footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  flex-wrap: wrap;
  padding: var(--space-3) var(--space-3);
}

.footer__brand,
.footer__meta {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.2;
}

.footer__brand {
  max-width: 60%;
}

@media (max-width: 48rem) {
  .footer__inner {
    justify-content: center;
    text-align: center;
  }

  .footer__brand,
  .footer__meta {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
