/* 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-formation-title__shell {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-block: 1.5rem;
  --section-container-bg: var(--wp--preset--color--lila-light);
  position: relative;
}
.s-formation-title__shell::before {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 2;
  width: var(--global-deco-pixel-size);
  height: var(--global-deco-pixel-size);
  top: calc(-1 * var(--global-deco-pixel-size));
  right: calc(-1 * var(--global-deco-pixel-size));
  background-color: var(--section-container-bg);
}
@media screen and (max-width: 991px) {
  .s-formation-title__shell {
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .s-formation-title__shell {
    margin-block: 2.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .s-formation-title__shell {
    padding: 2.25rem;
    margin-block: 3rem;
  }
}
.s-formation-title__breadcrumb {
  position: relative;
  z-index: 2;
  width: 100%;
  color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
  --section-link-color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
  --section-link-hover-color: var(--wp--preset--color--black);
  font-family: "paralucent-condensed", sans-serif;
}
@media screen and (max-width: 991px) {
  .s-formation-title__breadcrumb {
    margin-bottom: 1rem;
  }
}
.s-formation-title__breadcrumb > span {
  display: flex;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 300;
}
.s-formation-title__breadcrumb span > a,
.s-formation-title__breadcrumb span > span {
  color: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
}
.s-formation-title__breadcrumb span > a {
  text-decoration: underline;
}
.s-formation-title__breadcrumb svg path,
.s-formation-title__breadcrumb svg circle {
  fill: color-mix(in srgb, var(--wp--preset--color--black) 70%, transparent);
}
.s-formation-title__breadcrumb span > svg:not(:last-of-type) {
  opacity: 0.65;
}
.s-formation-title--with-cta .s-formation-title__cta {
  padding-left: 1.5rem;
  border-left: 1px solid var(--wp--preset--color--lila-rvb);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: max-content;
  width: max-content;
}
.s-formation-title--with-cta .s-formation-title__cta_title {
  font-family: "paralucent-condensed", sans-serif;
  font-weight: 500;
  font-size: 1.0625rem;
}
.s-formation-title--with-cta .s-formation-title__cta .c-btn {
  padding: 0.5rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .s-formation-title--with-cta .s-formation-title__cta {
    padding-left: 0;
    border-left: none;
    width: 100%;
  }
}
.s-formation-title__title {
  margin: 0;
  font-family: "paralucent", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.1;
  text-transform: none;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
@media screen and (max-width: 991px) {
  .s-formation-title__title {
    font-size: 1.625rem;
  }
}
.s-formation-title__hint {
  margin: 0;
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--lila-rvb);
}