/* 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 */
.s-hero-columns__shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  min-height: 25rem;
  padding-bottom: 0;
}
@media screen and (max-width: 991px) {
  .s-hero-columns__shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: 0;
  }
}
@media screen and (min-width: 1920px) {
  .s-hero-columns__shell {
    gap: 5rem;
  }
}
.s-hero-columns__text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .s-hero-columns__text-col {
    gap: 3rem;
  }
}
.s-hero-columns__breadcrumb {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 29rem;
  margin: 0;
  color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
  --section-link-color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
  --section-link-hover-color: var(--wp--preset--color--black);
  font-family: "paralucent-condensed", sans-serif;
}
@media screen and (max-width: 991px) {
  .s-hero-columns__breadcrumb {
    margin-bottom: 1rem;
  }
}
.s-hero-columns__breadcrumb > span {
  display: flex;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 300;
}
.s-hero-columns__breadcrumb span > a,
.s-hero-columns__breadcrumb span > span {
  color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
}
.s-hero-columns__breadcrumb span > a {
  text-decoration: underline;
}
.s-hero-columns__breadcrumb svg path,
.s-hero-columns__breadcrumb svg circle {
  fill: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
}
.s-hero-columns__breadcrumb span > svg:not(:last-of-type) {
  opacity: 0.65;
}
.s-hero-columns__subtitle, .s-hero-columns__text {
  margin: 0 0 3rem;
}
@media screen and (min-width: 1280px) {
  .s-hero-columns__subtitle, .s-hero-columns__text {
    margin: 0 0 4rem;
  }
}
.s-hero-columns__title {
  margin: 0 0 3rem;
}
@media screen and (min-width: 1280px) {
  .s-hero-columns__title {
    margin: 0 0 4rem;
  }
}
.s-hero-columns__title,
.s-hero-columns__title h1,
.s-hero-columns__title p,
.s-hero-columns__title h2,
.s-hero-columns__title h3 {
  font-size: 3rem;
  font-weight: 400;
  text-transform: none;
  line-height: 1.125;
}
@media screen and (min-width: 1280px) {
  .s-hero-columns__title,
  .s-hero-columns__title h1,
  .s-hero-columns__title p,
  .s-hero-columns__title h2,
  .s-hero-columns__title h3 {
    font-size: 5rem;
  }
}
@media screen and (min-width: 1920px) {
  .s-hero-columns__title,
  .s-hero-columns__title h1,
  .s-hero-columns__title p,
  .s-hero-columns__title h2,
  .s-hero-columns__title h3 {
    font-size: 6rem;
  }
}
.s-hero-columns__text,
.s-hero-columns__text p {
  font-size: 1.125rem;
}
.s-hero-columns__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.s-hero-columns__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.s-hero-columns__image-col {
  margin-top: calc(var(--global-deco-pixel-size) - 1.25rem);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: max-content;
}
.s-hero-columns__image-col::before, .s-hero-columns__image-col::after {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 2;
}
.s-hero-columns__image-col::before {
  width: calc(2 * var(--global-deco-pixel-size));
  height: calc(2 * var(--global-deco-pixel-size));
  bottom: 0;
  left: 0;
  background: url(../../../../assets/images/deco-hero-bl.svg) no-repeat bottom left/contain;
}
.s-hero-columns__image-col::after {
  width: calc(2 * var(--global-deco-pixel-size));
  height: calc(3 * var(--global-deco-pixel-size));
  top: calc(-1 * var(--global-deco-pixel-size));
  right: calc(-1 * var(--global-deco-pixel-size));
  background: url(../../../../assets/images/deco-hero-tr.svg) no-repeat top right/contain;
}
@media screen and (max-width: 991px) {
  .s-hero-columns__image-col {
    order: -1;
  }
}
.s-hero-columns__img {
  display: block;
  width: 100%;
  height: auto;
}
.s-hero-columns__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.s-hero-columns__hint {
  margin: 0;
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--lila-rvb);
}