/* 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 */
.content-image-text__inner {
  display: flex;
  align-items: center;
  gap: 6.5rem;
}
.content-image-text__inner.content-image-text--image-left {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .content-image-text__inner {
    flex-direction: column;
    gap: 2.5rem;
  }
  .content-image-text__inner.content-image-text--image-left {
    flex-direction: column;
  }
}
.content-image-text__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1 1 auto;
  min-width: 0;
}
.content-image-text__title {
  color: var(--wp--preset--color--txt-secondary-dark);
  font-size: 2rem;
  line-height: 1.09;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
  margin: 0;
}
.content-image-text__text {
  color: var(--wp--preset--color--txt-gray-dark);
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
}
.content-image-text__text p + p {
  margin-top: 1rem;
}
.content-image-text__media {
  flex: 0 0 30.9375rem;
  width: 30.9375rem;
  max-width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .content-image-text__media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 30.9375rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.content-image-text__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}