/* 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 */
:root {
  --s-text-cards-card-size: 200px;
}
@media screen and (min-width: 1920px) {
  :root {
    --s-text-cards-card-size: 220px;
  }
}

.s-text-cards .l-wrapper {
  padding-bottom: 0 !important;
}
.s-text-cards + .section {
  padding-top: calc(0.75 * var(--s-text-cards-card-size));
}
@media screen and (max-width: 991px) {
  .s-text-cards + .section {
    padding-top: 0;
  }
}
.s-text-cards__shell {
  display: grid;
  grid-template-columns: 1fr calc(3 * var(--s-text-cards-card-size));
  gap: 4rem;
  align-items: start;
  padding: 0 !important;
}
@media screen and (max-width: 991px) {
  .s-text-cards__shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.s-text-cards__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--l-site-header-offset) + 2rem);
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 991px) {
  .s-text-cards__left {
    position: static;
  }
}
.s-text-cards__subtitle {
  max-width: calc(3 * var(--s-text-cards-card-size));
}
.s-text-cards__title {
  max-width: calc(3 * var(--s-text-cards-card-size));
}
.s-text-cards__footer {
  margin-top: 0.5rem;
}
.s-text-cards__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.s-text-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0px;
  margin-bottom: calc(-1 * var(--s-text-cards-card-size));
}
@media screen and (max-width: 991px) {
  .s-text-cards__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 580px) {
  .s-text-cards__grid {
    grid-template-columns: 1fr;
  }
}
.s-text-cards__card:nth-child(1) {
  grid-area: 1/1/2/2;
}
.s-text-cards__card:nth-child(2) {
  grid-area: 1/2/2/3;
}
.s-text-cards__card:nth-child(3) {
  grid-area: 2/1/3/2;
}
.s-text-cards__card:nth-child(4) {
  grid-area: 2/2/3/3;
}
.s-text-cards__card:nth-child(5) {
  grid-area: 2/3/3/4;
}
.s-text-cards__card:nth-child(6) {
  grid-area: 3/2/4/3;
}
.s-text-cards__card:nth-child(7) {
  grid-area: 3/3/4/4;
}
@media screen and (max-width: 991px) {
  .s-text-cards__card:nth-child(n) {
    grid-area: auto;
  }
}
.s-text-cards__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background-color: var(--wp--preset--color--lila-light);
  color: var(--wp--preset--color--black);
  width: var(--s-text-cards-card-size);
  height: var(--s-text-cards-card-size);
}
@media screen and (max-width: 991px) {
  .s-text-cards__card {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 991px) {
  .s-text-cards__card:nth-child(1), .s-text-cards__card:nth-child(4), .s-text-cards__card:nth-child(7) {
    background-color: color-mix(in srgb, var(--wp--preset--color--white) 10%, var(--wp--preset--color--indigo-rvb) 100%);
    color: var(--wp--preset--color--white);
  }
}
@media screen and (max-width: 991px) {
  .s-text-cards__card:nth-child(odd) {
    background-color: color-mix(in srgb, var(--wp--preset--color--white) 10%, var(--wp--preset--color--indigo-rvb) 100%);
    color: var(--wp--preset--color--white);
  }
  .s-text-cards__card:nth-child(even) {
    background-color: var(--wp--preset--color--lila-light);
    color: var(--wp--preset--color--black);
  }
}
.s-text-cards__card-title {
  margin: 0;
  font-family: "paralucent", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}
.s-text-cards__card-text {
  font-family: "paralucent-text", sans-serif;
}
.s-text-cards__card-text,
.s-text-cards__card-text p {
  font-size: 0.8125rem;
  line-height: 1.35;
}
.s-text-cards__card-text p {
  margin: 0 0 0.5rem;
}
.s-text-cards__card-text p:last-child {
  margin-bottom: 0;
}
.s-text-cards__hint {
  margin: 0;
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--lila-rvb);
}