body:not(.home) .hero {
    border-bottom: 4px solid var(--wp--preset--color--secondary);
}

.hero {
  padding-top: var(--wp--preset--spacing--x-large);
  padding-bottom: var(--wp--preset--spacing--x-large);
  background-color: var(--wp--preset--color--primary-accent);
  position: relative;

  .hero__titre {
    font-size: 3.25rem;
    color: var(--wp--preset--color--main);
    margin: 0;

    @media (max-width: 781px) {
		  font-size: 2.5rem;
    }
  }

  .hero__titre--accent {
    color: var(--wp--preset--color--primary);
  }

  .hero__content {
    position: relative;
    z-index: 1;
    padding: var(--wp--preset--spacing--large) 0;

    #breadcrumbs {
      color: #fff;

      a {
        color: #fff;
      }
    }
  }

  .hero__texte {
    margin: 0;
    font-size: 1.5rem;
    font-weight: var(--wp--custom--font-weight--regular);

    p {
      color: var(--wp--preset--color--tertiary) !important;
    }
  }

  &:not(.hero--split) .hero__content {
    background-color: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--wp--custom--radius--sm);
    padding: 32px 24px;
  }

  .hero__video,
  .hero__image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;

    &:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    }
  }

  .hero__image {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }


  &.alignfull,
  &.alignwide {
    .hero__content {
      max-width: var(--wp--style--global--content-size);
      margin: 0 auto;
    }
  }

}

/* Hero - Style Split (Homepage) */
.hero.hero--split {
  background-color: var(--wp--preset--color--base);
  padding-top: var(--wp--preset--spacing--large);
  padding-bottom: 0;

  .hero__titre {
    color: var(--wp--preset--color--main);
    font-size: 3.25rem;
    line-height: var(--wp--custom--line-height--tight);
  }

  .hero__arguments {
    list-style: none;
    padding: 0;
    margin: var(--wp--preset--spacing--medium) 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero__arguments__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .hero__arguments__icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../../../assets/icons/check-circle.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
    border-radius: 0;
    background-color: transparent;
  }

  .hero__arguments__text {
    font-size: var(--wp--preset--font-size--small);
    color: var(--wp--preset--color--primary-darken);
  }

  .hero__image-split {
    position: relative;
    border-radius: var(--wp--custom--radius--sm);
    overflow: hidden;
    box-shadow: 10px 14px 40px rgba(9, 116, 230, 0.15);
    margin-top: 40px;

    img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      display: block;
    }
  }

  .hero__btn {
    margin-top: var(--wp--preset--spacing--medium);
  }

  @media (width < 992px) {
    .hero__image-split {
      margin-top: var(--wp--preset--spacing--medium);
    }
  }
}

.home .entry-content>.hero {
  position: relative;
  overflow: visible;
}

.home .entry-content>.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 100vw;
  height: 200px;
  background-image: url('../../../assets/svg/hero-wave.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
  z-index: 10;
}