/* Pied de page */

.site-footer {
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
  background: rgba(14,23,48,.68);
}

.site-footer__top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding-bottom: 30px;
}

.site-footer__top p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.site-footer__top > a:last-child {
  color: var(--cyan);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font: 500 .69rem/1.5 var(--font-mono);
}

@media (max-width: 760px) {
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .site-footer__bottom {
    flex-direction: column;
  }
}


.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .82rem;
}

.site-footer__links > span {
  color: var(--muted-2);
  font: 600 .69rem/1.4 var(--font-mono);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.site-footer__links a {
  color: var(--blue);
  font-weight: 700;
}

.site-footer__links a:hover {
  color: var(--cyan);
}
