.simple-footer {
  font-size: 0.875rem;
  color: var(--text-main);
  text-align: center;
  padding: 2rem 0;
  width: 100%;
}
.footer-inline {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  font-size: 0.9rem;
}
.footer-inline > *:not(:last-child)::after {
  content: " |";
  margin-left: 0.5em;
}
.footer-links a:first-child::after {
  content: " |";
  margin: 0 0.5em;
}
@media (max-width: 768px) {
  .footer-inline {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  .footer-inline > *:not(:last-child)::after {
    content: none;
  }
  .footer-links {
    display: flex;
    align-items: center;
  }
  .footer-links a:first-child::after {
    content: " |";
    margin: 0 0.5em;
    color: var(--text-muted);
  }
}