/* 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-section-faq--bg-white {
  background-color: #ffffff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--bg-blue-light {
  background-color: #bfe9ff;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--bg-blue-cta {
  background-color: #004e6a;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-faq--bg-blue-dark {
  background-color: #001a24;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-faq--bg-green-light {
  background-color: #ecffac;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--bg-green {
  background-color: #85cc1d;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--bg-mid-grey {
  background-color: #d5d5d5;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--bg-black {
  background-color: #000000;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-faq--bg-light-grey {
  background-color: #C8C8C8;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-section-faq--toggle-bg-white .s-section-faq__toggle-layer {
  background-color: #ffffff;
}

.s-section-faq--toggle-bg-blue-light .s-section-faq__toggle-layer {
  background-color: #bfe9ff;
}

.s-section-faq--toggle-bg-blue-cta .s-section-faq__toggle-layer {
  background-color: #004e6a;
}

.s-section-faq--toggle-bg-blue-dark .s-section-faq__toggle-layer {
  background-color: #001a24;
}

.s-section-faq--toggle-bg-green-light .s-section-faq__toggle-layer {
  background-color: #ecffac;
}

.s-section-faq--toggle-bg-green .s-section-faq__toggle-layer {
  background-color: #85cc1d;
}

.s-section-faq--toggle-bg-mid-grey .s-section-faq__toggle-layer {
  background-color: #d5d5d5;
}

.s-section-faq--toggle-bg-black .s-section-faq__toggle-layer {
  background-color: #000000;
}

.s-section-faq--toggle-bg-light-grey .s-section-faq__toggle-layer {
  background-color: #C8C8C8;
}

.s-section-faq--toggle-bg-blue-cta .s-section-faq__toggle-layer,
.s-section-faq--toggle-bg-blue-dark .s-section-faq__toggle-layer,
.s-section-faq--toggle-bg-black .s-section-faq__toggle-layer {
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-section-faq__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .s-section-faq__inner {
    flex-direction: column;
  }
}

.s-section-faq__aside {
  flex: 0 0 33.5625rem;
  max-width: 33.5625rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.s-section-faq__aside .c-section-headline__eyebrow {
  margin: 0 0 0.25rem;
  line-height: 1;
  letter-spacing: 0.06rem;
}
.s-section-faq__aside .c-section-headline__title {
  margin: 0;
}

.s-section-faq__list {
  flex: 0 1 40.5rem;
  max-width: 40.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.s-section-faq__item {
  border-top: 1px solid rgba(0, 26, 36, 0.1);
  padding-top: 1rem;
}
.s-section-faq__item:first-child {
  border-top: 0;
  padding-top: 0;
}

.s-section-faq__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 0.3125rem 0 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font: inherit;
}
.s-section-faq__trigger:focus-visible {
  outline: 2px solid var(--wp--preset--color--alteal-blue-cta, #004e6a);
  outline-offset: 0.25rem;
}

.s-section-faq__question {
  flex: 1 1 auto;
  min-width: 0;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625rem;
  margin: 0;
  color: inherit;
}

.s-section-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
}

.s-section-faq__toggle-layer {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 2.5rem;
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.s-section-faq__toggle-layer svg {
  width: 1rem;
  height: 1rem;
}

.s-section-faq__toggle-layer--plus {
  transform: translateY(0);
}

.s-section-faq__toggle-layer--minus {
  transform: translateY(100%);
}

.s-section-faq__item--open .s-section-faq__toggle-layer--plus {
  transform: translateY(-100%);
}

.s-section-faq__item--open .s-section-faq__toggle-layer--minus {
  transform: translateY(0);
}

.s-section-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.s-section-faq__item--open .s-section-faq__panel {
  grid-template-rows: 1fr;
}

.s-section-faq__answer {
  min-height: 0;
  overflow: hidden;
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
  padding-top: 1rem;
  color: inherit;
}
.s-section-faq__answer p {
  margin: 0 0 0.75rem;
}
.s-section-faq__answer p:last-child {
  margin-bottom: 0;
}
.s-section-faq__answer a {
  color: inherit;
  text-decoration: underline;
}

@media screen and (max-width: 1280px) {
  .s-section-faq__aside {
    flex: 0 1 30rem;
    max-width: 46%;
  }
  .s-section-faq__list {
    flex: 1 1 35rem;
    max-width: 54%;
  }
}
@media screen and (max-width: 1024px) {
  .s-section-faq__aside,
  .s-section-faq__list {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .s-section-faq__aside .c-section-headline__title {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }
}
@media screen and (max-width: 991px) {
  .s-section-faq__inner {
    gap: 2.5rem;
  }
  .s-section-faq__aside {
    gap: 2rem;
  }
  .s-section-faq__aside .c-section-headline__title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .s-section-faq__aside .c-section-headline__title {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  .s-section-faq__trigger {
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .s-section-faq__toggle-layer,
  .s-section-faq__panel {
    transition: none;
  }
}