/* 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-header {
  height: 5rem;
  background-color: var(--wp--preset--color--bg-black);
  color: var(--wp--preset--color--txt-white);
}
.l-site-header .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}
.l-site-header__brand {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.l-site-header__brand-text {
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-weight: 600;
}
.l-site-header__brand-text {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .l-site-header__brand-text {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header__brand-text {
    font-size: 1rem;
  }
}
.l-site-header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.l-site-header-nav__item {
  color: inherit;
  text-decoration: none;
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-weight: 500;
}
.l-site-header-nav__item {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .l-site-header-nav__item {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-nav__item {
    font-size: 0.875rem;
  }
}