/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* Apply hover styles only on devices with real hover support (mouse/trackpad) */
/* Apply hover styles only on devices with real hover support (mouse/trackpad) */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-text-list__shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media screen and (min-width: 1920px) {
  .s-text-list__shell {
    gap: 7.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-text-list__shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.s-text-list__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.s-text-list__text, .s-text-list__text p {
  font-weight: 300;
}
.s-text-list__footer {
  margin-top: 0.5rem;
}
.s-text-list__btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.s-text-list__list, .s-text-list__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s-text-list__item, .s-text-list__content ul li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background-color: var(--wp--preset--color--white);
}
@media screen and (min-width: 1280px) {
  .s-text-list__item, .s-text-list__content ul li {
    gap: 1.125rem;
    padding: 1.125rem;
  }
}
.s-text-list__item, .s-text-list__item p, .s-text-list__content ul li, .s-text-list__content ul li p {
  font-family: "paralucent", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.1;
}
.s-text-list__item p, .s-text-list__content ul li p {
  margin: 0 0 0.5rem;
}
.s-text-list__item p:last-child, .s-text-list__content ul li p:last-child {
  margin-bottom: 0;
}
.s-text-list__item::before, .s-text-list__content ul li::before {
  content: "";
  flex-shrink: 0;
  width: 0.75em;
  height: 0.75em;
  background: var(--wp--preset--color--capucine);
  display: inline-block;
  position: static;
  margin: 0;
}
@media screen and (min-width: 1280px) {
  .s-text-list__item::before, .s-text-list__content ul li::before {
    width: 0.875em;
    height: 0.875em;
  }
}