.landing-faq {
  --faq-bg: #0d0d0d;
  --faq-red: #dc3610;
  --faq-white: #f5f2ea;
  --faq-muted: #d8d1c6;
  overflow: hidden;
  background: var(--faq-bg);
  color: var(--faq-white);
  padding: 96px 0;
}

.landing-faq__inner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.landing-faq__heading {
  display: flex;
  width: min(918px, calc(100% - 48px));
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.landing-faq__eyebrow-wrap {
  display: none;
}

.landing-faq__title {
  width: min(918px, 100%);
  margin: 0;
  color: var(--faq-white);
  font-family: var(--font-display);
  font-size: var(--fs-section-title);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: 0;
}

.landing-faq__list {
  width: 100%;
}

.landing-faq__item {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--faq-red);
}

.landing-faq__question {
  display: flex;
  width: min(1290px, calc(100% - 48px));
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 0;
  color: var(--faq-white);
  font-family: var(--font-display);
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: var(--lh-heading);
  text-align: left;
  letter-spacing: 0;
}

.landing-faq__question > span:first-child {
  width: min(1219px, calc(100% - 64px));
}

.landing-faq__icon {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.landing-faq__icon::before,
.landing-faq__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  content: "";
  background: var(--faq-white);
  transform: translate(-50%, -50%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.landing-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.landing-faq__question[aria-expanded="true"] .landing-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.landing-faq__answer {
  width: min(1290px, calc(100% - 48px));
  padding: 0 71px 48px 0;
}

.landing-faq__answer p {
  width: min(840px, 100%);
  margin: 0;
  color: var(--faq-muted);
  font-family: var(--font-body);
  font-size: var(--fs-card-text);
  font-weight: var(--fw-regular);
  line-height: var(--lh-copy);
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .landing-faq__question {
    min-height: 112px;
    padding: 38px 0;
  }
}

@media (max-width: 640px) {
  .landing-faq {
    padding: 64px 0;
  }

  .landing-faq__heading,
  .landing-faq__question,
  .landing-faq__answer {
    width: min(100% - 32px, 520px);
  }

  .landing-faq__question {
    min-height: 86px;
    gap: 16px;
    padding: 26px 0;
    font-size: var(--fs-card-title);
  }

  .landing-faq__question > span:first-child {
    width: calc(100% - 48px);
  }

  .landing-faq__icon {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
  }

  .landing-faq__icon::before,
  .landing-faq__icon::after {
    width: 24px;
  }

  .landing-faq__answer {
    padding: 0 0 28px;
  }
}
