/* Site footer — load after base.css (uses :root tokens). */

.site-footer {
  position: relative;
  border-top: 1px solid var(--rule);
  padding: 32px 16px 40px;
  margin-top: 12px;
}

.site-footer::before {
  content: "✦";
  display: block;
  width: max-content;
  margin: -17px auto 20px;
  padding: 0 10px;
  font-size: 10px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.45;
  background: var(--bg);
  font-family: var(--font-serif);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 8px;
  margin-bottom: 16px;
}

.social a.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  text-decoration: none;
  padding: 10px;
  border-radius: 50%;
  line-height: 0;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social a.social-icon:hover {
  color: var(--brand-dark);
  background: var(--brand-soft);
  transform: translateY(-1px);
}

.social a.social-icon:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 2px;
}

.social a.social-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.site-footer .copyright {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.5;
}
