.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  line-height: 1.5;
}

.footer-copyright {
  display: flex;
  align-items: center;
  flex: 1 1 540px;
  flex-wrap: wrap;
  gap: 0 .38em;
  margin: 0;
  white-space: normal;
}

.footer-copyright-main,
.footer-reservation-note { display: inline; }

.footer-separator { flex: 0 0 auto; }

.footer-copyright > a,
.site-credits span > strong,
.site-credits span > a {
  margin-left: .3em;
}

.site-credits {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  font-size: .72rem;
  line-height: 1.5;
}

.site-credits span {
  display: inline-flex;
  align-items: center;
  min-height: 1.5em;
  margin: 0;
  white-space: nowrap;
}

.site-credits span + span::before {
  content: "·";
  flex: 0 0 auto;
  margin: 0 18px;
  font-weight: 400;
}

.site-credits strong,
.site-credits a {
  display: inline;
  line-height: inherit;
  font-weight: 700;
  text-decoration: none;
}

.site-credits a:hover,
.site-credits a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1050px) {
  .footer-bottom {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .site-credits {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 800px) {
  .site-credits {
    display: grid;
    justify-content: stretch;
    gap: 5px;
  }

  .site-credits span + span::before {
    content: none;
  }
}
