.footer {
  background: #9c856d;
  color: #fff;
  padding: 54px 7.5vw;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.45fr) minmax(
      160px,
      0.45fr
    );
  gap: 48px;
  align-items: center;
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 44px;
}

.footer__mitre-logo {
  width: 112px;
}

.footer__collection-logo {
  width: 210px;
}

.footer__logos img {
  display: block;
  height: auto;
}

.footer__legal {
  margin: 0;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.72);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.18em;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer__social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #fff;
}

.footer__social svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

@media screen and (max-width: 89.99875em) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__logos,
  .footer__social {
    justify-content: center;
  }

  .footer__legal {
    margin: 0 auto;
  }
}

@media screen and (max-width: 39.99875em) {
  .footer {
    padding: 40px 24px;
  }

  .footer__logos {
    flex-direction: column;
    gap: 28px;
  }

  .footer__mitre-logo {
    width: 116px;
  }

  .footer__collection-logo {
    width: 220px;
  }

  .footer__legal {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}
