/* Site footer. */

site-footer {
  display: block;

  & .site-footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: var(--space-xl) var(--space-lg) 0;
  }

  & .site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
  }

  & .site-footer__mark {
    height: 28px;
    margin-bottom: var(--space-sm);
  }

  & .site-footer__brand p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }

  & .site-footer__links {
    display: flex;
    gap: var(--space-xl);
  }

  & .site-footer__col {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  & .site-footer__heading {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
  }

  & .site-footer__col a {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    text-decoration: none;

    &:hover { color: var(--color-text); }
  }

  & .site-footer__bottom {
    max-width: 1100px;
    margin: var(--space-lg) auto 0;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--text-sm);
  }
}
