/* 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-icon-cards-grid__header {
  text-align: center;
  margin-bottom: 4rem;
}
.s-icon-cards-grid__title {
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
  color: var(--wp--preset--color--txt-secondary-dark);
}
.s-icon-cards-grid__grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.s-icon-cards-grid-card {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
}
.s-icon-cards-grid-card__title {
  font-size: 2rem;
  line-height: 1.09;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
  margin-top: 1.5rem;
  color: var(--color, var(--wp--preset--color--txt-gray-dark));
  text-align: center;
}
.s-icon-cards-grid-card__text {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .s-icon-cards-grid__header {
    margin-bottom: 2.5rem;
  }
  .s-icon-cards-grid__grid {
    gap: 1.5rem;
  }
  .s-icon-cards-grid__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-icon-cards-grid__grid {
    flex-wrap: wrap;
  }
  .s-icon-cards-grid-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 13.75rem;
  }
  .s-icon-cards-grid-card__icon-wrap {
    max-width: 5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-icon-cards-grid__header {
    margin-bottom: 2rem;
  }
  .s-icon-cards-grid__grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .s-icon-cards-grid__title {
    font-size: 2rem;
  }
  .s-icon-cards-grid-card {
    flex: none;
    width: 100%;
    max-width: 22.5rem;
  }
  .s-icon-cards-grid-card__title {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  .s-icon-cards-grid-card__text {
    margin-top: 0.75rem;
  }
}