.faq {
  padding-inline: var(--section-padding-x);
  /* Her call: 120 flat around Free Consultation, not the token. */
  padding-bottom: 120px;
}
@media (max-width: 988px) {
  .faq { padding-inline: var(--section-padding-x-mobile); }
}

.faq__list {
  margin-top: var(--section-name-to-section);
}

/* Figma's rules are #000, not the text token; at the secondary-text
   opacity — her call. */
.faq__item {
  border-top: 1px solid rgba(0, 0, 0, 0.7);
}
.faq__item.is-open {
  cursor: pointer;
}
.faq__item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
}

.faq__heading {
  margin: 0;
  font: inherit;
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  border: 0;
  background: none;
  color: var(--color-text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  /* Added interaction, her call: the shared flair fills a closed
     question's row accent green from the pointer; an open one stays
     plain. */
  --button-flair-color: var(--color-accent);
}
.faq__item.is-open .faq__question {
  --button-flair-color: transparent;
}

.faq__question-text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--font-size-h5-curriculum);
  line-height: 1.05;
}

.faq__arrow {
  flex: none;
}
.faq__arrow img {
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__arrow img {
  transform: rotate(90deg);
}

.faq__answer {
  margin: 0;
  padding-bottom: 30px;
  /* 753px at the real 18px; holds the frame's wrap. */
  max-width: 65ch;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(16px, calc(14.108px + 0.27027vw), 18px);
  line-height: 1.4;
  color: var(--color-text);
}
