.footer-legal {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  width: 100%;
  gap: 10px 24px;
  margin: 4px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}

.footer-legal .footer-copyright,
.footer-legal .footer-credit {
  grid-column: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: center;
}

.footer-legal .footer-credit a {
  color: inherit;
  font-weight: 700;
}

@media (max-width: 860px) {
  .footer-legal {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
