@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');
@import url("./orlando-core.css");
@import url("./reading-responsive.css");
@import url("../../../src/brand-system.css");

/* Keep the closing statement and end-of-page navigation as separate structural rows. */
.page-footer {
  display: block;
}

.footer-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: clamp(22px, 2.5vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links a:first-child {
  justify-self: start;
}

.footer-links a:nth-child(2),
.footer-links .back-top {
  justify-self: end;
}

@media (max-width: 760px) {
  .footer-links {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 22px;
    margin-top: 44px;
  }

  .footer-links a:first-child {
    grid-column: 1 / -1;
  }

  .footer-links a:nth-child(2) {
    justify-self: end;
  }
}
