/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
.s-features-list__inner {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  width: 100%;
}
.s-features-list__header {
  width: 100%;
}
.s-features-list__header:not(:has(.wp-block-heading, .wp-block-paragraph)) {
  display: none;
}
.s-features-list__header-blocks {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3.125rem;
  width: 100%;
}
.s-features-list__header-blocks :where(h2.wp-block-heading) {
  flex: 0 1 35.5rem;
  max-width: 35.5rem;
  margin: 0;
  color: var(--wp--preset--color--taupe);
  font-family: "aptos-display", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}
.s-features-list__header-blocks :where(h2.wp-block-heading) {
  font-size: 37px;
}
@media screen and (min-width: 569px) {
  .s-features-list__header-blocks :where(h2.wp-block-heading) {
    font-size: calc(37px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-features-list__header-blocks :where(h2.wp-block-heading) {
    font-size: 2.3125rem;
  }
}
.s-features-list__header-blocks :where(.wp-block-paragraph) {
  flex: 0 1 26.875rem;
  max-width: 26.875rem;
  margin: 0;
  color: var(--wp--preset--color--white);
  opacity: 0.7;
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.s-features-list__header-blocks :where(.wp-block-paragraph) {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-features-list__header-blocks :where(.wp-block-paragraph) {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-features-list__header-blocks :where(.wp-block-paragraph) {
    font-size: 1rem;
  }
}
.s-features-list__grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.s-features-list__grid.is-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.s-features-list__grid.is-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.s-features-list__grid.is-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.s-features-list__grid.is-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.s-features-list__item {
  position: relative;
  padding: 1.25rem;
  border-radius: 0.375rem;
  background: rgba(61, 180, 255, 0.15);
}
.s-features-list__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(61, 180, 255, 0.5) 0%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.s-features-list__item-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.s-features-list__item-title {
  margin: 0;
  color: var(--wp--preset--color--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.s-features-list__item-title {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-features-list__item-title {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-features-list__item-title {
    font-size: 1rem;
  }
}
.s-features-list__bullet {
  position: relative;
  flex: 0 0 auto;
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  background-color: var(--wp--preset--color--white);
}
.s-features-list__item-text {
  margin: 0;
  color: var(--wp--preset--color--white);
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: normal;
  padding-left: 1.4375rem;
}
.s-features-list__item-text {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-features-list__item-text {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-features-list__item-text {
    font-size: 0.875rem;
  }
}
.s-features-list__empty {
  margin: 0;
  color: var(--wp--preset--color--white);
  font-family: "aptos", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.s-features-list__empty {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-features-list__empty {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-features-list__empty {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .s-features-list__inner {
    gap: 2rem;
  }
  .s-features-list__header-blocks {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .s-features-list__header-blocks :where(.wp-block-heading),
  .s-features-list__header-blocks :where(.wp-block-paragraph) {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .s-features-list__grid.is-cols-3, .s-features-list__grid.is-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .s-features-list__grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

.editor-styles-wrapper .s-features-list__header:not(:has(.wp-block-heading, .wp-block-paragraph)) {
  display: block;
}