.nh-faq__heading {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  margin: 0 0 3.2rem;
  letter-spacing: -0.02em;
  color: var(--nh-charcoal);
}

.nh-faq {
  max-width: 84rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.nh-faq__item {
  background: var(--nh-white);
  border: 1px solid var(--nh-border);
  border-radius: var(--nh-radius-md);
  padding: 0 2.4rem;
}

.nh-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.9rem 0;
  list-style: none;
}

.nh-faq__item summary::-webkit-details-marker {
  display: none;
}

.nh-faq__question {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--nh-charcoal);
}

.nh-faq__item .icon-caret {
  position: static;
  flex-shrink: 0;
  width: 1.2rem;
  color: var(--nh-charcoal);
  transition: transform 0.2s ease;
}

.nh-faq__item[open] > summary .icon-caret {
  transform: rotate(180deg);
}

.nh-faq__answer {
  padding: 0 0 2rem;
  margin: -0.6rem 0 0;
  color: var(--nh-muted);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.nh-faq__answer > *:first-child {
  margin-top: 0;
}

.nh-faq__answer > *:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 749px) {
  .nh-faq__heading {
    font-size: 2.2rem;
    margin-bottom: 2.4rem;
  }

  .nh-faq__item {
    padding: 0 1.6rem;
  }

  .nh-faq__question {
    font-size: 1.4rem;
  }
}
