@media (min-width: 767px) {
  .footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 3rem 2rem 3.25rem;
  }

  .footer-left {
    flex: 0 0 min(320px, 34%);
  }

  .footer-right {
    flex: 1 1 auto;
    max-width: 62%;
  }

  .footer-links--primary {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .footer-links--legal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    padding-top: 1.15rem;
  }

  .footer-text {
    font-size: 0.82rem;
    line-height: 1.65;
  }
}

@media (min-width: 1100px) {
  .footer-links--primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .footer-container {
    padding-left: 0;
    padding-right: 0;
  }
}
