.h2-faq-section {
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(80px, 8.33vw, 144px) 0;
  background: var(--color-brand-accent);
  color: var(--color-text-inverse);
}

.h2-faq-section__inner {
  display: flex;
  width: min(1290px, calc(100% - (var(--section-padding-x) * 2)));
  margin: 0 auto clamp(32px, 3.33vw, 48px);
  flex-direction: column;
  align-items: center;
}

.h2-faq-section__header {
  display: flex;
  width: min(740px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.h2-faq-section__title {
  width: 100%;
  margin: 0;
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-medium);
  line-height: var(--lh-display);
  letter-spacing: 0;
  text-wrap: balance;
}

.h2-faq-section__title span {
  color: var(--color-border-light);
}

.h2-faq-section__intro {
  width: 100%;
  color: var(--color-border-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  text-align: left;
}

.h2-faq-section__intro p {
  margin: 0;
}

.h2-faq-section__intro p + p {
  margin-top: 32px;
}

.h2-faq-section__intro a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.h2-faq-section__list {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.h2-faq-section__item {
  border-bottom: 1px solid var(--color-text-inverse);
}

.h2-faq-section__item-inner {
  display: flex;
  width: min(1290px, calc(100% - (var(--section-padding-x) * 2)));
  margin: 0 auto;
  flex-direction: column;
}

.h2-faq-section__question-heading {
  margin: 0;
  font: inherit;
}

.h2-faq-section__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(32px, 3.33vw, 48px) 0;
  border: 0;
  background: transparent;
  color: var(--color-text-inverse);
  text-align: left;
  cursor: pointer;
}

.h2-faq-section__question:focus-visible {
  outline: 2px solid var(--color-text-inverse);
  outline-offset: 4px;
}

.h2-faq-section__question-text {
  flex: 1 1 auto;
  max-width: min(1219px, calc(100% - 56px));
  font-family: var(--font-display);
  font-size: clamp(22px, calc(22px + (28 - 22) * ((100vw - 360px) / (1440 - 360))), 28px);
  font-weight: var(--fw-medium);
  line-height: 1.1;
  letter-spacing: 0;
}

.h2-faq-section__icon {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.h2-faq-section__icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 1.67px solid currentColor;
  border-right: 1.67px solid currentColor;
  content: "";
  transform: translate(-50%, -35%) rotate(-135deg);
  transition: transform var(--duration-normal) var(--ease-out);
}

.h2-faq-section__question[aria-expanded="true"] .h2-faq-section__icon::before {
  transform: translate(-50%, -65%) rotate(45deg);
}

.h2-faq-section__answer {
  padding: 0 0 clamp(32px, 3.33vw, 48px);
  color: var(--color-border-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}

.h2-faq-section__answer[hidden] {
  display: none;
}

.h2-faq-section__answer p {
  max-width: min(840px, 100%);
  margin: 0;
}

.h2-faq-section__answer p + p {
  margin-top: 24px;
}

.h2-faq-section__answer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.h2-faq-section__answer h4,
.h2-faq-section__answer h5,
.h2-faq-section__answer h6 {
  max-width: min(840px, 100%);
  margin: 24px 0 12px;
  color: var(--color-text-inverse);
  font-family: var(--font-display);
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  line-height: var(--lh-display);
}

@media (max-width: 768px) {
  .h2-faq-section {
    padding: 72px 0;
  }

  .h2-faq-section__question {
    gap: 16px;
    padding: 28px 0;
  }

  .h2-faq-section__question-text {
    max-width: calc(100% - 48px);
  }

  .h2-faq-section__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .h2-faq-section__answer {
    padding-bottom: 28px;
  }
}
