.footer-legal {
  background-color: var(--footer-background);
  padding: 26px 20px 6px 20px;
  font-family: var(--font-inter);
  font-size: 0.7rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 28px;
}

.footer-container {
  max-width: var(--footer-max-width);
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  color: var(--footer-link);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--footer-hover);
  text-decoration: underline;
}

.separator {
  margin: 0;
}

.footer-disclaimer {
  color: #888888;
}

.footer-disclaimer strong {
  color: var(--footer-link);
}

.footer-copyright {
  padding-top: 8px;
  margin-top: 18px;
  border-top: 1px solid #333333;
  font-size: 0.6rem;
  color: #666666;
}

@media (min-width: 768px) {
  .footer-links {
    margin-bottom: 25px;
    flex-direction: row;
    justify-content: center;
  }

  .separator {
    display: block;
    margin: 0 10px;
    color: #555555;
  }

  .footer-legal {
    font-size: 0.8rem;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }
}
