.site-footer {
  padding: 13px 0 12px;
  border-top: 1px solid var(--swift-line);
  background: #fbfcff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  margin: 0;
  color: #8791a6;
  font-size: .68rem;
  font-weight: 400;
  white-space: nowrap;
}

.footer-copyright-short {
  display: none;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 16px;
}

.footer-links a,
.footer-email {
  color: #43516d;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: var(--swift-blue-deep);
  text-decoration: underline;
}

.footer-contact-mark {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-email {
  color: #7a859c;
  font-size: .74rem;
  font-weight: 600;
  white-space: nowrap;
}

.footer-bird {
  flex: 0 0 auto;
  width: 34px;
  height: 40px;
  background: #1138df;
  -webkit-mask: url("../images/swift-bird.svg") center / contain no-repeat;
  mask: url("../images/swift-bird.svg") center / contain no-repeat;
}

.xero-legal {
  align-self: flex-end;
  margin: auto 0 0;
  padding-top: 12px;
  color: #929caf !important;
  font-size: .66rem !important;
  line-height: 1.35;
  text-align: right;
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "links contact"
      "copyright copyright";
    row-gap: 6px;
  }

  .footer-copyright {
    grid-area: copyright;
  }

  .footer-links {
    grid-area: links;
    justify-content: flex-start;
  }

  .footer-contact-mark {
    grid-area: contact;
  }
}

@media (max-width: 700px) {
  .site-footer {
    padding: 12px 0 11px;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "links links"
      "copyright contact";
    align-items: center;
    column-gap: 12px;
    row-gap: 9px;
  }

  .footer-links {
    justify-content: center;
    gap: 6px 13px;
  }

  .footer-links a {
    font-size: .78rem;
  }

  .footer-contact-mark {
    justify-self: end;
    gap: 8px;
  }

  .footer-email,
  .footer-copyright {
    font-size: .69rem;
  }

  .footer-copyright {
    min-width: 0;
    white-space: nowrap;
  }

  .footer-copyright-long {
    display: none;
  }

  .footer-copyright-short {
    display: inline;
  }

  .footer-bird {
    width: 29px;
    height: 34px;
  }

  .xero-legal {
    padding-top: 10px;
    font-size: .63rem !important;
  }
}
