/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* Apply hover styles only on devices with real hover support (mouse/trackpad) */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-hero-img {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--wp--preset--color--white);
}
.s-hero-img .l-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 0 !important;
  padding-top: var(--l-site-header-base-offset) !important;
}
.s-hero-img .l-wrapper > .l-container {
  position: relative;
  z-index: 2;
}
.s-hero-img__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 1rem;
  padding-block: 1rem !important;
}
.s-hero-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  pointer-events: none;
}
.s-hero-img__bg-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s-hero-img__bg-placeholder {
  width: 100%;
  height: 100%;
  min-height: 17.5rem;
  background: color-mix(in srgb, var(--wp--preset--color--black) 40%, transparent);
}
.s-hero-img__gradient::after, .s-hero-img__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  left: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.s-hero-img__gradient::before {
  width: 55%;
  background: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
  mask: linear-gradient(270deg, color-mix(in srgb, var(--wp--preset--color--black) 0%, transparent) 0%, color-mix(in srgb, var(--wp--preset--color--black) 50%, transparent) 100%);
  backdrop-filter: blur(20px);
}
.s-hero-img__gradient::after {
  width: 80%;
  background: linear-gradient(270deg, color-mix(in srgb, var(--wp--preset--color--black) 0%, transparent) 0%, color-mix(in srgb, var(--wp--preset--color--black) 50%, transparent) 100%);
}
.s-hero-img__breadcrumb {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 29rem;
  margin: 0 0 auto;
  color: var(--wp--preset--color--white);
  --section-link-color: var(--wp--preset--color--white);
  --section-link-hover-color: var(--wp--preset--color--white);
  font-family: "paralucent-condensed", sans-serif;
}
@media screen and (max-width: 991px) {
  .s-hero-img__breadcrumb {
    margin-bottom: 1rem;
  }
}
.s-hero-img__breadcrumb > span {
  display: flex;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 300;
}
.s-hero-img__breadcrumb span > a,
.s-hero-img__breadcrumb span > span {
  color: var(--wp--preset--color--white);
}
.s-hero-img__breadcrumb span > a {
  text-decoration: underline;
}
.s-hero-img__breadcrumb svg path,
.s-hero-img__breadcrumb svg circle {
  fill: var(--wp--preset--color--white);
}
.s-hero-img__breadcrumb span > svg:not(:last-of-type) {
  opacity: 0.65;
}
.s-hero-img__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
  pointer-events: auto;
  min-height: 25rem;
  padding-block: 3rem !important;
}
@media screen and (max-width: 991px) {
  .s-hero-img__content {
    min-height: 20rem;
    padding-block: 2.5rem !important;
  }
}
@media screen and (max-width: 580px) {
  .s-hero-img__content {
    min-height: 16.25rem;
    padding-block: 2rem !important;
  }
}
.s-hero-img__title {
  margin: 0;
  max-width: 33.125rem;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--wp--preset--color--white);
  text-transform: none;
}
@media screen and (max-width: 991px) {
  .s-hero-img__title {
    font-size: 2rem;
    max-width: none;
  }
}
@media screen and (max-width: 580px) {
  .s-hero-img__title {
    font-size: 1.625rem;
  }
}
.s-hero-img__text {
  max-width: 34.375rem;
  color: var(--wp--preset--color--white);
}
.s-hero-img__text,
.s-hero-img__text p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .s-hero-img__text {
    max-width: none;
  }
}
.s-hero-img__buttons .btn-wrap {
  margin: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}
.s-hero-img__hint {
  margin: 0;
  max-width: 29rem;
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--lila-rvb);
}