.site-footer {
  background: var(--color-bg);
  padding: var(--space-7) 0 50px;
  border-top: 1px solid rgba(29, 27, 24, 0.08);
}

.site-footer-inner {
  display: grid;
  justify-items: center;
  gap: var(--space-3);
}

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

.site-footer-credits {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--color-accent) 18%, transparent);
  font-size: 14px;
  line-height: 1.65;
  text-align: center;
  color: var(--color-text);
}

.site-footer-credit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.22rem;
  justify-items: center;
}

.site-footer-credit-label {
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer-credit-names {
  font-weight: 500;
  font-size: 17px;
}

@media (max-width: 640px) {
  .site-footer-credits {
    gap: 1rem;
  }

}
