@charset "UTF-8";
/* Text utility */
/* Mobile utility */
/* Hover / transitions — desktop pointer devices only (avoids sticky :hover on touch) */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.hero-background-img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--wp--preset--color--txt-white);
  /* Figma 1528:7562 — fil d’Ariane : left 32px vs bloc titre 64px → léger décalage */
}
.hero-background-img .l-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-background-img .l-container {
  position: relative;
  z-index: 1;
}
.hero-background-img__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  min-height: 30.75rem;
  padding-top: 6.25rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 991px) {
  .hero-background-img__shell {
    min-height: 23.75rem;
    padding-top: 5.625rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .hero-background-img__shell {
    min-height: 20rem;
    padding-top: 6.25rem;
    padding-bottom: 2rem;
  }
}
.hero-background-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-background-img__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-background-img__bg-placeholder {
  width: 100%;
  height: 100%;
  min-height: 17.5rem;
  background-color: color-mix(in srgb, var(--wp--preset--color--bg-black) 35%, transparent);
}
.hero-background-img__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, color-mix(in srgb, var(--wp--preset--color--bg-black) 88%, transparent) 0%, color-mix(in srgb, var(--wp--preset--color--bg-black) 45%, transparent) 38%, transparent 72%);
}
.hero-background-img__breadcrumb {
  margin: 0 0 1rem;
  color: var(--wp--preset--color--eb-breadcrumb-muted);
  position: relative;
  top: -0.3125rem;
}
.hero-background-img__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  .hero-background-img__content {
    padding-left: 2.5rem;
  }
}
.hero-background-img__title {
  margin: 0;
  max-width: 33.125rem;
  font-family: "Liter", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--wp--preset--color--txt-white);
  text-transform: none;
}
@media screen and (max-width: 991px) {
  .hero-background-img__title {
    font-size: 2.5rem;
    max-width: none;
  }
}
@media screen and (max-width: 580px) {
  .hero-background-img__title {
    font-size: 1.75rem;
  }
}
.hero-background-img__text {
  max-width: 29rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--wp--preset--color--txt-white);
}
@media screen and (max-width: 991px) {
  .hero-background-img__text {
    max-width: none;
  }
}
.hero-background-img__text p {
  margin: 0 0 0.75rem;
}
.hero-background-img__text p:last-child {
  margin-bottom: 0;
}
.hero-background-img__text ul,
.hero-background-img__text ol {
  margin: 0 0 0.75rem;
  padding-left: 1.25rem;
}
.hero-background-img__hint {
  margin: 0;
  max-width: 29rem;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--eb-breadcrumb-muted);
}