.footer-compliance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-compliance p {
  margin: 0;
}

.filing-link {
  color: rgb(255 255 255 / 65%);
  text-decoration: none;
  transition: color 0.2s ease;
}

.filing-link:hover,
.filing-link:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
}

.back-to-top {
  color: var(--gold-light);
  justify-self: end;
}

@media (max-width: 820px) {
  .footer-compliance {
    justify-content: flex-end;
  }

  .footer-compliance p {
    display: none;
  }
}

@media (max-width: 520px) {
  .footer-compliance {
    justify-content: center;
  }

  .back-to-top {
    justify-self: center;
  }
}
