/* 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-container__inner {
  width: 100%;
}
.s-container__blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.s-container__blocks > .block-editor-inner-blocks,
.s-container__blocks > .block-editor-block-list__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.s-container__blocks :where(.wp-block-paragraph) {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.s-container__blocks :where(.wp-block-paragraph) {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-container__blocks :where(.wp-block-paragraph) {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-container__blocks :where(.wp-block-paragraph) {
    font-size: 0.875rem;
  }
}
.s-container.has-bg-black-background-color {
  color: var(--wp--preset--color--txt-white);
}