@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

.site-footer {
  width: 100%;
  background: #080808;
  color: #aaa6b2;
  border-top: 1px solid #242226;
  font: 400 11px/1.7 "Manrope", "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  clear: both;
}
.site-footer, .site-footer * { box-sizing: border-box; }
.site-footer .site-footer-inner {
  width: min(1170px, calc(100% - 80px));
  margin: 0 auto;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.site-footer a { color: inherit; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--footer-accent, #b7a1f2); }
.site-footer a:focus-visible { outline: 2px solid var(--footer-accent, #b7a1f2); outline-offset: 6px; }
.site-footer .site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f4f2f7;
  font: 500 18px/1.3 "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  white-space: nowrap;
}
.site-footer .site-footer-brand img { display: block; width: 36px; height: 36px; object-fit: contain; }
.site-footer .site-footer-copyright { margin: 0; padding: 0; font: inherit; }
.site-footer-simple .site-footer-copyright { margin-left: auto; text-align: right; }
.site-footer .site-footer-portfolio { white-space: nowrap; }
@media (max-width: 650px) {
  .site-footer .site-footer-inner { width: calc(100% - 40px); flex-wrap: wrap; gap: 18px; }
  .site-footer .site-footer-brand { width: 100%; }
}
@media (prefers-reduced-motion: reduce) { .site-footer a { transition: none; } }

.site-footer-yellow { --footer-accent: #ffbb42; }
