.site-footer {
  padding: 64px 0 32px;
  background: #0b0b0b;
  color: #fff;
  font: 400 16px/1.55 "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-footer .footer-wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.site-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, .6fr));
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-footer .footer-logo {
  display: inline-flex;
  min-height: 44px;
  margin-bottom: 22px;
  align-items: center;
}

.site-footer .footer-logo img {
  display: block;
  width: 132px;
  max-width: 100%;
  height: auto;
}

.site-footer .footer-brand p {
  max-width: 500px;
  margin: 13px 0;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  line-height: 1.65;
}

.site-footer .footer-column > span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .62);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.site-footer .footer-column a {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
  text-decoration: none;
  text-underline-offset: 4px;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
}

.site-footer a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255, 255, 255, .64);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-footer .footer-wrap { width: min(1000px, calc(100% - 48px)); }
}

@media (max-width: 860px) {
  .site-footer .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .site-footer .footer-column a {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    margin-bottom: 0;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-wrap { width: calc(100% - 28px); }
  .site-footer .footer-logo img { width: 118px; }
  .site-footer .footer-main { grid-template-columns: minmax(0, 1fr); }
  .site-footer .footer-brand { grid-column: auto; }
  .site-footer .footer-bottom { flex-direction: column; }
}
