/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.l-site-header {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.l-site-header.is-scrolled {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
}
.l-site-header.is-scrolled .custom-logo {
  filter: none;
}
.l-site-header.has-open-panel {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
  border-bottom-color: transparent;
}
.l-site-header.has-open-panel::after {
  content: "";
  position: fixed;
  inset: 4.625rem 0 0;
  background-color: rgba(19, 19, 19, 0.6);
  z-index: -1;
}
.l-site-header__inner {
  height: 4.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.l-site-header__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-site-header__brand a {
  display: inline-flex;
  align-items: center;
}
.l-site-header__brand svg {
  width: auto;
  max-height: 1.375rem;
  display: block;
  margin: auto;
  filter: none;
  transition: filter 0.2s ease;
}
.l-site-header__site-name {
  font-weight: 700;
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  color: inherit;
}
.l-site-header__site-name {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .l-site-header__site-name {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header__site-name {
    font-size: 1.5rem;
  }
}
.l-site-header__burger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0.625rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: inherit;
  flex-shrink: 0;
  margin-left: auto;
}
.l-site-header__burger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.l-site-header__burger-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}
.l-site-header__burger-icon path {
  stroke: currentColor;
}
.l-site-header__burger-icon--close {
  display: none;
}
.l-site-header.is-mobile-nav-open .l-site-header__burger-icon--open {
  display: none;
}
.l-site-header.is-mobile-nav-open .l-site-header__burger-icon--close {
  display: inline-flex;
}
.l-site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.l-site-header__item {
  position: relative;
  display: flex;
  align-items: center;
}
.l-site-header__toggle, .l-site-header__link {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  color: inherit;
  text-decoration: none;
  padding: 0.625rem 0;
  transition: opacity 0.2s ease;
}
.l-site-header__toggle, .l-site-header__link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .l-site-header__toggle, .l-site-header__link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header__toggle, .l-site-header__link {
    font-size: 0.875rem;
  }
}
.l-site-header__item:not(.l-site-header__item--cta) .l-site-header__toggle:hover, .l-site-header__item:not(.l-site-header__item--cta) .l-site-header__link:hover, .l-site-header__item:not(.l-site-header__item--cta) .l-site-header__toggle:focus-visible, .l-site-header__item:not(.l-site-header__item--cta) .l-site-header__link:focus-visible {
  opacity: 1;
}
.l-site-header__item.is-open .l-site-header__toggle, .l-site-header__item.is-open .l-site-header__link {
  opacity: 1;
}
.l-site-header__item--cta .l-site-header__toggle, .l-site-header__item--cta .l-site-header__link {
  border: 1px solid rgba(19, 19, 19, 0.2);
  border-radius: 1.875rem;
  padding: 0.625rem 1.125rem;
  opacity: 1;
  line-height: 1.3;
  white-space: nowrap;
}
.l-site-header__item--cta-primary .l-site-header__toggle, .l-site-header__item--cta-primary .l-site-header__link {
  background-color: var(--wp--preset--color--bg-primary);
  border-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
}
.l-site-header__item--cta-secondary .l-site-header__toggle, .l-site-header__item--cta-secondary .l-site-header__link {
  background-color: transparent;
  border-color: rgba(19, 19, 19, 0.2);
  color: var(--wp--preset--color--txt-black);
}
.l-site-header.is-scrolled .l-site-header__item--cta-secondary .l-site-header__toggle:not(:hover), .l-site-header.is-scrolled .l-site-header__item--cta-secondary .l-site-header__link:not(:hover), .l-site-header.has-open-panel .l-site-header__item--cta-secondary .l-site-header__toggle:not(:hover), .l-site-header.has-open-panel .l-site-header__item--cta-secondary .l-site-header__link:not(:hover) {
  border-color: rgba(19, 19, 19, 0.2);
  color: var(--wp--preset--color--txt-black);
}
.l-site-header__item--cta .l-site-header__toggle:hover, .l-site-header__item--cta .l-site-header__link:hover, .l-site-header__item--cta .l-site-header__toggle:focus-visible, .l-site-header__item--cta .l-site-header__link:focus-visible {
  opacity: 1;
  text-decoration: none;
}
.l-site-header__link--cta-primary {
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
}
.l-site-header__link--cta-primary:hover {
  border: 1px solid #131313;
  background-color: #131313;
  color: var(--wp--preset--color--txt-white);
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
}
.l-site-header__link--cta-secondary {
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
}
.l-site-header__link--cta-secondary:hover {
  border: 1px solid var(--wp--preset--color--bg-primary);
  background-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
  transition: background-color 0.2s ease, border 0.2s ease, color 0.2s ease;
}
.l-site-header__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
}
.l-site-header__chevron {
  display: inline-flex;
  transition: transform 0.2s ease;
}
.l-site-header__chevron svg {
  width: 0.625rem;
  height: 0.4375rem;
}
.l-site-header__chevron path {
  fill: currentColor;
}
.l-site-header__item.is-open .l-site-header__chevron {
  transform: rotate(180deg);
}
.l-site-header__panel {
  position: fixed;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  top: 4.625rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 2;
  background-color: var(--wp--preset--color--bg-white);
}
.l-site-header__item.is-open .l-site-header__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-site-header__panel-inner {
  padding: 1.375rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 1.5rem;
  margin-inline: auto;
  max-width: calc(75rem + 1.875rem * 2);
}
.l-site-header__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.75rem;
  border: 1px solid var(--wp--preset--color--bg-gray-light);
  border-radius: 0.75rem;
  padding: 2rem;
}
.l-site-header__group-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--wp--preset--color--txt-black);
  text-decoration: none;
  border: 0.0625rem solid transparent;
}
.l-site-header__group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.l-site-header__groups--single .l-site-header__group--split-secondary {
  padding-top: 2.9375rem;
}
.l-site-header__group-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.l-site-header__group-links a {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--wp--preset--color--txt-black);
  line-height: 1.2;
  text-decoration: none;
}
.l-site-header__featured {
  background-color: var(--wp--preset--color--bg-tertiary);
  border-radius: 0.75rem;
  padding: 2rem;
  min-height: 16.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.l-site-header__featured-thumb {
  border-radius: 0.5rem;
  height: 8rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0.875rem;
  display: block;
}
.l-site-header__featured-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  color: var(--wp--preset--color--txt-black);
}
.l-site-header__featured-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.l-site-header__featured-title {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--wp--preset--color--txt-black);
  line-height: 1.3;
  letter-spacing: -0.025rem;
}
.l-site-header__featured-link {
  margin-top: auto;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--wp--preset--color--txt-black);
  line-height: 1.3;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 1024px) {
  .l-site-header__burger {
    display: flex;
  }
  .l-site-header__nav {
    display: none;
  }
  .l-site-header.is-mobile-nav-open {
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
    border-bottom-color: rgba(19, 19, 19, 0.15);
  }
  .l-site-header.is-mobile-nav-open .l-site-header__brand svg, .l-site-header.is-mobile-nav-open .custom-logo {
    filter: none;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 4.625rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    gap: 0;
    padding: 0.25rem 1.25rem 0;
    background-color: var(--wp--preset--color--bg-white);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    border-bottom: 1px solid rgba(19, 19, 19, 0.1);
    flex-shrink: 0;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item--cta {
    position: sticky;
    z-index: 3;
    border-bottom: 0;
    background-color: var(--wp--preset--color--bg-white);
    box-shadow: 0 -0.75rem 1.25rem rgba(255, 255, 255, 0.85);
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item--cta-secondary {
    margin-top: 1.25rem;
    bottom: calc(3.625rem + env(safe-area-inset-bottom, 0px));
    padding-top: 0.5rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item--cta-primary {
    bottom: env(safe-area-inset-bottom, 0px);
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    margin-top: 0.625rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__toggle, .l-site-header.is-mobile-nav-open .l-site-header__link:not(.l-site-header__link--cta) {
    width: 100%;
    justify-content: space-between;
    padding: 1.125rem 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.25;
    opacity: 1;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__toggle {
    justify-content: space-between;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__chevron svg {
    width: 0.75rem;
    height: 0.5rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item--cta .l-site-header__link, .l-site-header.is-mobile-nav-open .l-site-header__item--cta .l-site-header__toggle {
    display: flex;
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__panel {
    position: static;
    left: auto;
    transform: none;
    top: auto;
    width: 100%;
    opacity: 1;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, visibility 0.25s ease;
    background-color: transparent;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__item.is-open .l-site-header__panel {
    visibility: visible;
    max-height: 312.5rem;
    overflow: visible;
    pointer-events: auto;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__panel-inner {
    grid-template-columns: 1fr;
    padding: 0 0 0.5rem;
    gap: 0.5rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__featured, .l-site-header.is-mobile-nav-open .l-site-header__featured--empty {
    display: none;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__groups {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    padding: 0 0 0.25rem;
    gap: 0.75rem;
    background-color: transparent;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__groups--single {
    gap: 0.5rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__groups--single .l-site-header__group--split-secondary {
    border-top: 1px solid rgba(19, 19, 19, 0.08);
    padding-top: 0.5rem;
    margin-top: 0.25rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__group {
    gap: 0.5rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__group-title {
    font-size: 0.6875rem;
    margin-bottom: 0.125rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__group-links {
    gap: 0.125rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__group-links a {
    font-size: 0.9375rem;
    line-height: 1.35;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
  }
  .l-site-header.has-open-panel::after {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .l-site-header.is-mobile-nav-open .l-site-header__nav {
    padding-inline: 1rem;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__toggle, .l-site-header.is-mobile-nav-open .l-site-header__link:not(.l-site-header__link--cta) {
    font-size: 1.0625rem;
    padding: 1rem 0;
  }
  .l-site-header.is-mobile-nav-open .l-site-header__group-links a {
    font-size: 0.875rem;
    padding: 0.4375rem 0;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1100px) {
  .l-site-header__nav {
    gap: 1rem;
  }
  .l-site-header__item--cta .l-site-header__link,
  .l-site-header__item--cta .l-site-header__toggle {
    padding: 0.625rem 1rem;
  }
}
body.is-mobile-nav-open {
  overflow: hidden;
}

@media screen and (max-width: 782px) {
  body.admin-bar .l-site-header.is-mobile-nav-open .l-site-header__nav {
    top: calc(4.625rem);
  }
}
.editor-styles-wrapper .l-site-header {
  position: relative;
  top: 0 !important;
}

body.has-header-transparent-light .l-site-header {
  background-color: transparent;
  color: var(--wp--preset--color--txt-white);
  border-bottom-color: transparent;
}
body.has-header-transparent-light .l-site-header__brand svg {
  filter: brightness(0) invert(1);
}
body.has-header-transparent-light .l-site-header__item--cta body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header__item--cta body.has-header-transparent-light .l-site-header__link {
  border-color: rgba(255, 255, 255, 0.4);
}
body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__link {
  background-color: var(--wp--preset--color--bg-white);
  border-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
}
body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__link {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--wp--preset--color--txt-white);
}
body.has-header-transparent-light .l-site-header.is-scrolled, body.has-header-transparent-light .l-site-header.has-open-panel, body.has-header-transparent-light .l-site-header.is-mobile-nav-open {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
}
body.has-header-transparent-light .l-site-header.is-scrolled body.has-header-transparent-light .l-site-header__brand svg, body.has-header-transparent-light .l-site-header.has-open-panel body.has-header-transparent-light .l-site-header__brand svg, body.has-header-transparent-light .l-site-header.is-mobile-nav-open body.has-header-transparent-light .l-site-header__brand svg {
  filter: none;
}
body.has-header-transparent-light .l-site-header.is-scrolled body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.is-scrolled body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__link, body.has-header-transparent-light .l-site-header.has-open-panel body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.has-open-panel body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__link, body.has-header-transparent-light .l-site-header.is-mobile-nav-open body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.is-mobile-nav-open body.has-header-transparent-light .l-site-header__item--cta-primary body.has-header-transparent-light .l-site-header__link {
  background-color: var(--wp--preset--color--bg-primary);
  border-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
}
body.has-header-transparent-light .l-site-header.is-scrolled body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.is-scrolled body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__link, body.has-header-transparent-light .l-site-header.has-open-panel body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.has-open-panel body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__link, body.has-header-transparent-light .l-site-header.is-mobile-nav-open body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__toggle, body.has-header-transparent-light .l-site-header.is-mobile-nav-open body.has-header-transparent-light .l-site-header__item--cta-secondary body.has-header-transparent-light .l-site-header__link {
  border-color: rgba(19, 19, 19, 0.2);
  color: var(--wp--preset--color--txt-black);
}

body.has-header-transparent-light .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__burger {
  color: var(--wp--preset--color--txt-white);
}

body.has-header-solid-dark main.site-main {
  padding-top: 4.625rem;
}

.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__toggle,
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__toggle,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__toggle,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link {
  opacity: 1;
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__burger,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__burger,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__burger {
  color: var(--wp--preset--color--txt-white);
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:not(:hover),
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:not(:hover),
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:not(:hover) {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--wp--preset--color--txt-white);
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:hover,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:hover,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-secondary:hover {
  border-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:not(:hover),
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:not(:hover),
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:not(:hover) {
  color: var(--wp--preset--color--txt-black);
  background-color: var(--wp--preset--color--bg-white);
  border-color: var(--wp--preset--color--bg-white);
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:hover,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:hover,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled):not(.has-open-panel):not(.is-mobile-nav-open) .l-site-header__link--cta-primary:hover {
  color: var(--wp--preset--color--txt-white);
  background-color: var(--wp--preset--color--bg-primary);
  border-color: var(--wp--preset--color--bg-primary);
}
.wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled).has-open-panel .l-site-header__brand svg, .wp-site-blocks:has(main > .entry-content > .s-hero-home:first-child) .l-site-header:not(.is-scrolled).is-mobile-nav-open .l-site-header__brand svg,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled).has-open-panel .l-site-header__brand svg,
.single:has(main > .market-single__content > .s-hero-bandeau:first-child) .l-site-header:not(.is-scrolled).is-mobile-nav-open .l-site-header__brand svg,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled).has-open-panel .l-site-header__brand svg,
.wp-site-blocks:has(main > .entry-content > .s-hero-background-media:first-child) .l-site-header:not(.is-scrolled).is-mobile-nav-open .l-site-header__brand svg {
  filter: none;
}