/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.l-footer-legal {
  background-color: var(--wp--preset--color--bleu-saphyr);
  color: var(--wp--preset--color--ivory);
}
.l-footer-legal__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.l-footer-legal__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}
.l-footer-legal__copyright, .l-footer-legal__credit {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--ivory);
  line-height: 1rem;
}
.l-footer-legal__copyright, .l-footer-legal__credit-label {
  opacity: 0.5;
}
.l-footer-legal__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}
.l-footer-legal__link {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--ivory);
  opacity: 0.5;
  line-height: 1rem;
  text-decoration: none;
  text-underline-offset: 0.125rem;
  transition: opacity 0.2s ease;
}
.l-footer-legal__link:hover, .l-footer-legal__link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--blanc);
  outline: none;
}
.l-footer-legal__credit-link {
  color: var(--wp--preset--color--ivory);
  opacity: 0.5;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 0.125rem;
  transition: opacity 0.2s ease;
}
.l-footer-legal__credit-link:hover, .l-footer-legal__credit-link:focus-visible {
  opacity: 1;
  color: var(--wp--preset--color--ivory);
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--blanc);
  outline: none;
}
.l-footer-legal__social {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.3125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer-legal__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 31.25rem;
  background-color: var(--wp--preset--color--ivory);
  color: var(--wp--preset--color--bleu-saphyr);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.l-footer-legal__social-link:hover, .l-footer-legal__social-link:focus-visible {
  opacity: 0.85;
}
.l-footer-legal__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
}
.l-footer-legal__social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer-legal__social-fallback {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--bleu-saphyr);
}
@media screen and (max-width: 991px) {
  .l-footer-legal__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
  .l-footer-legal__meta {
    gap: 0.75rem 1rem;
  }
  .l-footer-legal__nav {
    gap: 0.75rem 1rem;
  }
  .l-footer-legal__social {
    align-self: flex-start;
  }
}