.footer {
  padding: 28px 0;
}

.footer-bottom.footer-simple {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-copy {
  margin: 0;
}

.footer-copy a {
  color: inherit;
  transition: color 180ms ease;
}

.footer-copy a:hover {
  color: rgba(255, 244, 230, 0.96);
}

.footer-inline-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 16px;
  min-width: 0;
  font-family: var(--font-mono, "Ioskeley Mono", monospace);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
}

.footer-inline-links a {
  color: rgba(255, 244, 230, 0.7);
  transition: color 180ms ease;
}

.footer-inline-links a:hover {
  color: rgba(255, 244, 230, 0.96);
}

@media (max-width: 760px) {
  .footer-bottom.footer-simple {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-inline-links {
    justify-content: flex-start;
    justify-self: start;
  }
}
