.artech-site-footer {
  --artech-footer-fg: #7d7f7f;
  --artech-footer-fg-strong: #c7c7c7;
  --artech-footer-line: #242627;
  --artech-footer-bg: #000000;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 2rem 1.5rem;
  background: var(--artech-footer-bg);
  border-top: 1px solid var(--artech-footer-line);
  color: var(--artech-footer-fg);
  font-family: "Satoshi", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
}

.artech-site-footer__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
}

.artech-site-footer__brand {
  margin: 0;
  color: var(--artech-footer-fg-strong);
  font-family: "ClashDisplay", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.artech-site-footer__meta,
.artech-site-footer__nav {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.artech-site-footer a {
  color: var(--artech-footer-fg);
  text-decoration: none;
  transition: color 0.15s ease;
}

.artech-site-footer a:hover,
.artech-site-footer a:focus-visible {
  color: #ffffff;
}

.artech-site-footer__copy {
  margin: 0;
}

@media (max-width: 767px) {
  .artech-site-footer {
    padding: 1.5rem 1rem;
  }

  .artech-site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
