/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-text-media {
  color: var(--wp--preset--color--black);
}
.s-text-media__inner {
  display: grid;
  grid-template-columns: minmax(0, 33.875rem) minmax(0, 1fr);
  gap: 5rem;
  align-items: stretch;
}
.s-text-media__media {
  margin: 0;
  min-width: 0;
  border-radius: 1rem;
  overflow: hidden;
  background-color: color-mix(in srgb, var(--wp--preset--color--bleu-saphyr) 8%, var(--wp--preset--color--blanc));
}
.s-text-media__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.s-text-media__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 17.5rem;
  padding: 1.5rem;
  border: 1px dashed color-mix(in srgb, var(--wp--preset--color--bleu-saphyr) 40%, transparent);
  border-radius: 1rem;
  color: var(--wp--preset--color--bleu-saphyr);
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
}
.s-text-media__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
}
.s-text-media__headings {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.s-text-media__title {
  margin: 0;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06rem;
  color: var(--wp--preset--color--black);
}
.s-text-media__subtitle {
  margin: 0;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.0275rem;
  color: var(--wp--preset--color--black);
  opacity: 0.5;
}
.s-text-media__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.s-text-media__body > *:first-child {
  margin-top: 0;
}
.s-text-media__body > *:last-child {
  margin-bottom: 0;
}
.s-text-media__body h1,
.s-text-media__body h2,
.s-text-media__body h3,
.s-text-media__body h4,
.s-text-media__body h5,
.s-text-media__body h6,
.s-text-media__body .wp-block-heading {
  margin: 0 0 0.5rem;
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06rem;
  color: var(--wp--preset--color--black);
}
.s-text-media__body h1:last-child,
.s-text-media__body h2:last-child,
.s-text-media__body h3:last-child,
.s-text-media__body h4:last-child,
.s-text-media__body h5:last-child,
.s-text-media__body h6:last-child,
.s-text-media__body .wp-block-heading:last-child {
  margin-bottom: 0;
}
.s-text-media__body h3,
.s-text-media__body h3.wp-block-heading {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06rem;
  color: var(--wp--preset--color--black);
}
.s-text-media__body h4,
.s-text-media__body h4.wp-block-heading,
.s-text-media__body h5,
.s-text-media__body h5.wp-block-heading,
.s-text-media__body h6,
.s-text-media__body h6.wp-block-heading {
  font-family: "HK Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: -0.0275rem;
  color: var(--wp--preset--color--black);
}
.s-text-media__body p {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: normal;
  color: var(--wp--preset--color--black);
}
.s-text-media__body p:last-child {
  margin-bottom: 0;
}
.s-text-media__body strong,
.s-text-media__body b {
  font-weight: 600;
}
.s-text-media__inner.is-image-right {
  grid-template-columns: minmax(0, 1fr) minmax(0, 33.875rem);
}
.s-text-media__inner.is-image-right .s-text-media__media {
  order: 2;
}
.s-text-media__inner.is-image-right .s-text-media__content {
  order: 1;
}
.s-text-media__inner.is-height-stretch .s-text-media__content {
  align-self: start;
}
.s-text-media__inner.is-height-stretch .s-text-media__media {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.s-text-media__inner.is-height-stretch .s-text-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}
.s-text-media__inner.is-height-stretch .s-text-media__media-placeholder {
  position: absolute;
  inset: 0;
  min-height: 0;
}
.s-text-media__inner.is-height-ratio-4-5 .s-text-media__media {
  position: relative;
  align-self: start;
  aspect-ratio: 4/5;
}
.s-text-media__inner.is-height-ratio-4-5 .s-text-media__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-text-media__inner.is-height-natural .s-text-media__media {
  align-self: start;
}
.s-text-media__inner.is-height-natural .s-text-media__img {
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .s-text-media__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .s-text-media__inner.is-image-right {
    grid-template-columns: 1fr;
  }
  .s-text-media__inner.is-image-right .s-text-media__media,
  .s-text-media__inner.is-image-right .s-text-media__content {
    order: unset;
  }
  .s-text-media__inner.is-image-mobile-before .s-text-media__media {
    order: 1;
  }
  .s-text-media__inner.is-image-mobile-before .s-text-media__content {
    order: 2;
  }
  .s-text-media__inner.is-image-mobile-after .s-text-media__media {
    order: 2;
  }
  .s-text-media__inner.is-image-mobile-after .s-text-media__content {
    order: 1;
  }
  .s-text-media__inner.is-height-stretch .s-text-media__content {
    align-self: stretch;
  }
  .s-text-media__inner.is-height-stretch .s-text-media__media {
    align-self: stretch;
    height: auto;
    min-height: 17.5rem;
    aspect-ratio: 4/5;
  }
  .s-text-media__inner.is-height-stretch .s-text-media__img {
    min-height: 0;
  }
  .s-text-media__inner.is-height-stretch .s-text-media__media-placeholder {
    position: absolute;
    inset: 0;
  }
}

.editor-styles-wrapper .s-text-media__body > .block-list-appender {
  position: static !important;
  margin-top: 0.5rem;
}