.footer {
  background: black;
  --text-color: rgba(255, 255, 255, 0.84);
  display: flex;
  justify-content: center;
  padding: 20px var(--page-padding) 34px;
}

.footer-content {
  width: min(100%, var(--max-content-width));
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 40px;
}

.footer-section p {
  margin-top: 0.55rem;
}

.footer p.corps-gras {
  text-align: right;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-section--logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-complet {
  display: block;
  width: clamp(140px, 32vw, 240px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 900px) {
  .footer-section--logo {
    justify-content: center;
    align-items: center;
  }

  .logo-complet {
    width: clamp(160px, 16vw, 260px);
  }
}
