/* 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-formations .l-wrapper {
  position: relative;
  padding-bottom: calc(2.1 * var(--global-deco-pixel-size)) !important;
}
.s-formations .l-wrapper::before {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 0;
  width: calc(1.5 * var(--global-deco-pixel-size));
  height: calc(2.25 * var(--global-deco-pixel-size) + 1px);
  bottom: -1px;
  left: 0;
  mask: url(../../../../assets/images/deco-1.svg) no-repeat bottom right/contain;
  background-color: var(--wp--preset--color--lila-light);
}
.s-formations__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.s-formations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 1fr));
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .s-formations__grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}
@media screen and (max-width: 991px) {
  .s-formations__grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
}
@media screen and (max-width: 580px) {
  .s-formations__grid {
    grid-template-columns: 1fr;
  }
}
.s-formations__grid_item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.s-formations__grid_item.grid_item--button .c-btn {
  height: 100%;
  width: 100%;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.625rem;
  --btn-hover-bg: var(--btn-bg);
  --btn-hover-border-color: var(--btn-border-color);
  --btn-hover-color: var(--btn-color);
  --btn-arrow-hover-bg: var(--btn-arrow-bg);
  --btn-arrow-hover-color: var(--btn-arrow-color);
}
@media screen and (max-width: 991px) {
  .s-formations__grid_item.grid_item--button .c-btn {
    padding: 1rem;
  }
}
.s-formations__grid_item.grid_item--button .c-btn .btn-label {
  font-size: 1.375rem;
  max-width: 65%;
  line-height: 1.25;
}
.s-formations__footer {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.s-formations__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}