/* 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-site-footer {
  padding-block: 3rem;
  background-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--white);
}
.l-site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.l-site-footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
}
.l-site-footer__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.l-site-footer__logo {
  display: block;
  line-height: 0;
  height: 2.5rem;
  max-width: 12.5rem;
}
.l-site-footer__logo-img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.l-site-footer__brand-text {
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  font-weight: 600;
}
.l-site-footer__brand-text {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .l-site-footer__brand-text {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-footer__brand-text {
    font-size: 0.8125rem;
  }
}
.l-site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-site-footer__nav-link, .l-site-footer__legal-link {
  color: inherit;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  font-weight: 500;
  transition: opacity 0.2s ease;
}
.l-site-footer__nav-link, .l-site-footer__legal-link {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .l-site-footer__nav-link, .l-site-footer__legal-link {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-footer__nav-link, .l-site-footer__legal-link {
    font-size: 0.8125rem;
  }
}
.l-site-footer__nav-link:hover, .l-site-footer__legal-link:hover {
  opacity: 0.75;
}
.l-site-footer__credits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0.85;
}
.l-site-footer__divider {
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.l-site-footer__credits-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}
.l-site-footer__copyright {
  margin: 0;
  font-family: "Outfit", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}
.l-site-footer__copyright {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .l-site-footer__copyright {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-footer__copyright {
    font-size: 0.75rem;
  }
}
.l-site-footer__legal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-site-footer.has-white-background-color, .l-site-footer.has-tertiary-background-color, .l-site-footer.has-gray-light-background-color {
  color: var(--wp--preset--color--gray-dark);
}
.l-site-footer.has-white-background-color .l-site-footer__divider, .l-site-footer.has-tertiary-background-color .l-site-footer__divider, .l-site-footer.has-gray-light-background-color .l-site-footer__divider {
  border-top-color: rgba(0, 0, 0, 0.15);
}
.l-site-footer.has-white-background-color {
  background-color: var(--wp--preset--color--white);
}
.l-site-footer.has-tertiary-background-color {
  background-color: var(--wp--preset--color--tertiary);
}
.l-site-footer.has-gray-light-background-color {
  background-color: var(--wp--preset--color--gray-light);
}
.l-site-footer.has-primary-background-color {
  background-color: var(--wp--preset--color--primary);
}
@media screen and (max-width: 1024px) {
  .l-site-footer__main {
    flex-direction: column;
    align-items: flex-start;
  }
  .l-site-footer__nav-list {
    justify-content: flex-start;
  }
  .l-site-footer__credits-row {
    flex-direction: column;
    align-items: flex-start;
  }
}