/* 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-video-text__inner {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  align-items: center;
  border-radius: 1.25rem;
}
.s-video-text--reverse .s-video-text__media-col {
  order: 2;
}
.s-video-text--reverse .s-video-text__content {
  order: 1;
}
.s-video-text__media-col {
  min-width: 0;
  flex: 0 0 50%;
  width: 50%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
}
.s-video-text__media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--wp--preset--color--bg-gray-light);
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 16/10;
}
.s-video-text__media img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.s-video-text__media-placeholder {
  min-height: 13.75rem;
  border: 1px dashed var(--wp--preset--color--txt-gray-light);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--wp--preset--color--txt-black);
  background-color: var(--wp--preset--color--bg-gray-light);
}
.s-video-text__media-placeholder {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-video-text__media-placeholder {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-video-text__media-placeholder {
    font-size: 1rem;
  }
}
.s-video-text__caption {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
  color: var(--wp--preset--color--txt-black);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: calc(100% + 0.75rem);
  width: 100%;
}
.s-video-text__content {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.s-video-text__picto-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.s-video-text__picto {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin: 0.75rem;
}
.s-video-text__title {
  color: var(--wp--preset--color--txt-black);
  margin: 0;
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.07rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1024px) {
  .s-video-text__title {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 991px) {
  .s-video-text__title {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 580px) {
  .s-video-text__title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
.s-video-text__title u {
  text-decoration-color: var(--wp--preset--color--bg-secondary);
  text-underline-offset: 0.75rem;
  text-decoration-skip-ink: none;
}
.s-video-text__text {
  color: var(--wp--preset--color--txt-black);
}
.s-video-text__text p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.375;
}
.s-video-text__text p:last-child {
  margin-bottom: 0;
}
.s-video-text__text i,
.s-video-text__text em {
  color: var(--wp--preset--color--bg-primary);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.0225rem;
  font-style: normal;
}
.s-video-text__text i,
.s-video-text__text em {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-video-text__text i,
  .s-video-text__text em {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-video-text__text i,
  .s-video-text__text em {
    font-size: 1.125rem;
  }
}
.s-video-text__text p:first-child {
  margin-top: 0;
}
.s-video-text__text p:last-child {
  margin-bottom: 1.5rem;
}
.s-video-text__buttons {
  margin-top: 0.5rem;
}
.s-video-text__video-trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.s-video-text__poster, .s-video-text__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-video-text__play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: var(--wp--preset--color--bg-secondary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 300ms ease;
}
.s-video-text__play-button svg {
  fill: var(--wp--preset--color--bg-white);
}
.s-video-text__video-trigger:hover .s-video-text__play-button {
  transform: translate(-50%, -50%) scale(1.08);
}
@media screen and (max-width: 1024px) {
  .s-video-text__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }
  .s-video-text__media-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .s-video-text--mobile-image-second .s-video-text__media-col {
    order: 2;
  }
  .s-video-text--mobile-image-second .s-video-text__content {
    order: 1;
  }
}
@media screen and (max-width: 991px) {
  .s-video-text {
    overflow-x: clip;
  }
  .s-video-text__inner {
    gap: 1.75rem;
    padding-inline: 1.25rem;
    box-sizing: border-box;
  }
  .s-video-text__content {
    width: 100%;
    max-width: 100%;
  }
  .s-video-text__title {
    margin-bottom: 1.25rem;
  }
  .s-video-text__title u {
    text-underline-offset: 0.5rem;
  }
  .s-video-text__text {
    font-size: 1rem;
    line-height: 1.5;
  }
  .s-video-text__text p {
    overflow-wrap: anywhere;
  }
  .s-video-text__text p:last-child {
    margin-bottom: 1.25rem;
  }
  .s-video-text__buttons {
    width: 100%;
    margin-top: 0.25rem;
  }
  .s-video-text__buttons .btn-wrap {
    width: 100%;
  }
  .s-video-text__media {
    aspect-ratio: 16/10;
    border-radius: 1rem;
  }
  .s-video-text__caption {
    position: static;
    margin-top: 0.75rem;
    width: 100%;
  }
  .s-video-text__play-button {
    width: 3.25rem;
    height: 3.25rem;
  }
  .s-video-text--mobile-image-second .s-video-text__media-col {
    order: 2;
  }
  .s-video-text--mobile-image-second .s-video-text__content {
    order: 1;
  }
}
@media screen and (max-width: 580px) {
  .s-video-text__inner {
    gap: 1.5rem;
    padding-inline: 1rem;
  }
  .s-video-text__title u {
    text-underline-offset: 0.375rem;
  }
  .s-video-text__text {
    font-size: 0.9375rem;
    line-height: 1.45;
  }
  .s-video-text__media {
    aspect-ratio: 4/3;
  }
}