.nh-details__heading {
  font-size: 2.4rem;
  font-weight: 900;
  margin: 0 0 2rem;
  letter-spacing: -0.02em;
  color: var(--nh-charcoal);
}

.nh-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

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

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

.nh-details__summary-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nh-details__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nh-amber);
  flex-shrink: 0;
}

.nh-details__icon svg {
  width: 1.9rem;
  height: 1.9rem;
}

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

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

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

.nh-details__content {
  padding: 0 0 2.2rem;
  margin: -0.6rem 0 0;
  color: var(--nh-body);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.85;
}

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

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

.nh-details__content ul {
  margin: 0;
  padding-inline-start: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

@media screen and (max-width: 749px) {
  .nh-details__item {
    padding: 0 1.6rem;
  }

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

  .nh-details__heading {
    font-size: 2.1rem;
  }
}
