/* Slim site footer bar — sits below the closing/contact section on the
   front page, and below whatever else on other pages. */

.site-footer {
  background: var(--theme-color-inverse-background);
  color: var(--theme-color-inverse-text);
  padding-block: 22px;
}

.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 30px;
  max-width: var(--theme-layout-maxw);
  margin: 0 auto;
  padding-inline: var(--theme-layout-gutter);
  font-family: var(--theme-font-body);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--theme-color-inverse-text-muted);
}

.site-footer__bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer__bar a {
  color: var(--theme-color-inverse-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__bar a:hover {
  color: var(--theme-color-inverse-text);
}
