/* 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-faq {
  overflow: hidden;
}
.s-faq .l-container {
  position: relative;
}
.s-faq__inner {
  position: relative;
  z-index: 2;
}
.s-faq__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 0;
}
.s-faq__header--centered {
  align-items: center;
  text-align: center;
  max-width: 42.5rem;
  margin-left: auto;
  margin-right: auto;
}
.s-faq__header--two-columns {
  display: flex;
  flex-direction: row;
  gap: 3.75rem;
}
.s-faq__header--two-columns .s-faq__header {
  width: 40%;
}
.s-faq__header--two-columns .s-faq__list {
  width: 60%;
  padding-top: 0;
}
.s-faq__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.5rem;
}
.s-faq__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);
  margin: 0;
}
.s-faq__subtitle {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.s-faq__subtitle p {
  margin-top: 0;
  margin-bottom: 1em;
}
.s-faq__subtitle p:last-child {
  margin-bottom: 0;
}
.s-faq__subtitle a {
  color: var(--wp--preset--color--txt-secondary-dark);
  text-decoration: underline;
}
.s-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}
.s-faq__item {
  background-color: var(--wp--preset--color--bg-secondary-light);
  border-radius: 1rem;
  overflow: hidden;
}
.s-faq__list--bg-primary .s-faq__item {
  background-color: var(--wp--preset--color--bg-primary);
}
.s-faq__list--bg-secondary-dark .s-faq__item {
  background-color: var(--wp--preset--color--bg-secondary-dark);
}
.s-faq__list--bg-tertiary-light .s-faq__item {
  background-color: var(--wp--preset--color--bg-tertiary-light);
}
.s-faq__list--bg-tertiary .s-faq__item {
  background-color: var(--wp--preset--color--bg-tertiary);
}
.s-faq__list--bg-quaternary .s-faq__item {
  background-color: var(--wp--preset--color--bg-quaternary);
}
.s-faq__list--bg-quaternary .s-faq__item p,
.s-faq__list--bg-quaternary .s-faq__item .s-faq__question-text {
  color: var(--wp--preset--color--txt-white);
}
.s-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.5rem;
  width: 100%;
  padding: 1rem 1rem 1rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.s-faq__item.is-open .s-faq__question {
  padding: 1rem 1.5rem 1rem 2.5rem;
}
.s-faq__question-text {
  font-family: "Inter", "sans-serif";
  font-size: 1.5rem;
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
  color: var(--wp--preset--color--txt-gray-dark);
  flex: 1;
  min-width: 0;
}
.s-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3.5rem;
  border: 1px solid transparent;
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-gray-dark);
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.s-faq__toggle:hover {
  border-color: rgba(0, 0, 0, 0.15);
}
.s-faq__icon--minus {
  display: none;
}
.s-faq__item.is-open .s-faq__icon--plus {
  display: none;
}
.s-faq__item.is-open .s-faq__icon--minus {
  display: block;
}
.s-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.s-faq__answer-inner {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: var(--wp--preset--color--txt-gray-dark);
  padding: 0 1.5rem 2rem 2.5rem;
  max-width: 90%;
}
.s-faq__answer-inner p {
  margin-top: 0;
  margin-bottom: 1em;
}
.s-faq__answer-inner p:last-child {
  margin-bottom: 0;
}
.s-faq__answer-inner ul,
.s-faq__answer-inner ol {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 1.25rem;
}
.s-faq__answer-inner a {
  color: var(--wp--preset--color--txt-secondary-dark);
  text-decoration: underline;
}
.s-faq__stars.stars-trio {
  right: -10%;
  transform: translate(0, -50%);
  top: 50%;
  width: 22%;
  height: 20%;
  z-index: 1;
}
.s-faq__stars.stars-trio svg path {
  fill: #000;
}
@media screen and (max-width: 1024px) {
  .s-faq__title {
    font-size: 2.5rem;
  }
  .s-faq__title-wrap {
    gap: 2rem;
  }
  .s-faq__question {
    gap: 2rem;
  }
  .s-faq__header--two-columns {
    gap: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .s-faq__inner {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .s-faq__header, .s-faq__title-wrap {
    display: contents;
  }
  .s-faq .btn-wrap {
    order: 10;
  }
  .s-faq__question {
    gap: 1rem;
    padding: 0.875rem 0.875rem 0.875rem 1.5rem;
  }
  .s-faq__item.is-open .s-faq__question {
    padding: 0.875rem 0.875rem 0.875rem 1.5rem;
  }
  .s-faq__question-text {
    font-size: 1.25rem;
  }
  .s-faq__toggle {
    width: 2.75rem;
    height: 2.75rem;
  }
  .s-faq__answer-inner {
    padding: 0 1.25rem 1.5rem 1.5rem;
    max-width: 100%;
  }
  .s-faq__header--two-columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .s-faq__header--two-columns .s-faq__header {
    width: 100%;
  }
  .s-faq__header--two-columns .s-faq__list {
    width: 100%;
  }
  .s-faq__stars.stars-trio {
    display: none;
  }
}
@media screen and (max-width: 580px) {
  .s-faq__title {
    font-size: 2rem;
  }
  .s-faq__list {
    gap: 0.75rem;
  }
  .s-faq__question {
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
    gap: 0.75rem;
  }
  .s-faq__item.is-open .s-faq__question {
    padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  }
  .s-faq__question-text {
    font-size: 1.125rem;
  }
  .s-faq__toggle {
    width: 2.5rem;
    height: 2.5rem;
  }
  .s-faq__answer-inner {
    padding: 0 1rem 1.25rem 1.25rem;
  }
}