/* 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-section-engagements--bg-white {
  background-color: #ffffff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements--bg-blue-light {
  background-color: #bfe9ff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements--bg-blue-cta {
  background-color: #004e6a;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-engagements--bg-blue-dark {
  background-color: #001a24;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-engagements--bg-green-light {
  background-color: #ecffac;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements--bg-green {
  background-color: #85cc1d;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements--bg-mid-grey {
  background-color: #d5d5d5;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements--bg-black {
  background-color: #000000;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-engagements--bg-light-grey {
  background-color: #C8C8C8;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-engagements__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

.s-section-engagements__head {
  max-width: 40.5rem;
  width: 100%;
}
.s-section-engagements__head .c-section-headline__eyebrow {
  margin: 0 0 0.25rem;
  line-height: 1;
  letter-spacing: 0.06rem;
}
.s-section-engagements__head .c-section-headline__title {
  margin: 0;
}

.s-section-engagements__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .s-section-engagements__body {
    flex-direction: column;
  }
}

.s-section-engagements__media {
  position: relative;
  flex: 0 0 33.5625rem;
  width: 33.5625rem;
  max-width: 100%;
  align-self: stretch;
  min-height: 25rem;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .s-section-engagements__media {
    flex: 0 0 auto;
    width: 100%;
    min-height: 20rem;
  }
}

.s-section-engagements__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-section-engagements__content {
  flex: 0 1 40.4375rem;
  max-width: 40.4375rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.s-section-engagements__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  opacity: 0;
  transform: translateX(var(--engagements-offset, 15.625rem));
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.s-section-engagements__item.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .s-section-engagements__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.s-section-engagements__item-title {
  font-family: "Panton", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.3125rem;
  margin: 0;
  color: inherit;
}

.s-section-engagements__item-text {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  margin: 0;
  opacity: 0.7;
  color: inherit;
}

@media screen and (max-width: 1280px) {
  .s-section-engagements__media {
    flex: 0 1 46%;
    width: auto;
  }
  .s-section-engagements__content {
    flex: 1 1 50%;
    max-width: none;
  }
  .s-section-engagements__item:not(.is-visible) {
    transform: translateX(7.5rem);
  }
}
@media screen and (max-width: 991px) {
  .s-section-engagements__inner {
    gap: 2.5rem;
  }
  .s-section-engagements__head .c-section-headline__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .s-section-engagements__content {
    gap: 2.5rem;
  }
  .s-section-engagements__item-title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .s-section-engagements__item:not(.is-visible) {
    transform: translateX(3rem);
  }
}
@media screen and (max-width: 580px) {
  .s-section-engagements__head .c-section-headline__title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .s-section-engagements__media {
    min-height: 16.25rem;
  }
  .s-section-engagements__item:not(.is-visible) {
    transform: translateX(1.5rem);
  }
}