.nga-faqs {
  color: var(--text, #101828);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

.nga-faqs__search {
  margin-bottom: 36px;
}

.nga-faqs__search label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 500;
}

.nga-faqs__search input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--border-strong, #cbd5e1);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  font: inherit;
}

.nga-faqs__search input:focus {
  border-color: var(--blue-600, #2e6bd6);
  box-shadow: 0 0 0 3px var(--blue-100, #e3ecfb);
  outline: 0;
}

.nga-faqs__group {
  margin-bottom: 40px;
}

.nga-faqs__group > h2 {
  margin: 0 0 12px;
  color: var(--navy-950, #0a1322);
  font: 600 24px/1.3 "Space Grotesk", system-ui, sans-serif;
}

.nga-faq {
  border-top: 1px solid var(--border, #e4e9f0);
}

.nga-faq:last-child {
  border-bottom: 1px solid var(--border, #e4e9f0);
}

.nga-faq h3 {
  margin: 0;
}

.nga-faq__button {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 4px;
  border: 0;
  background: transparent;
  color: var(--navy-900, #101d33);
  font: 600 16px/1.4 "IBM Plex Sans", system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
}

.nga-faq__button:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--blue-600, #2e6bd6);
  outline-offset: 2px;
}

.nga-faq__chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 200ms ease-out;
}

.nga-faq__button[aria-expanded="true"] .nga-faq__chevron {
  transform: rotate(225deg);
}

.nga-faq__answer {
  overflow: hidden;
  max-height: 0;
  color: var(--text-2, #475467);
  transition: max-height 220ms ease-out;
}

.nga-faq__answer > * {
  margin-top: 0;
}

.nga-faq__answer > :last-child {
  margin-bottom: 20px;
}

.nga-faqs__empty {
  padding: 24px;
  border: 1px solid var(--border, #e4e9f0);
  border-radius: 10px;
  background: var(--bg, #f7f9fc);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .nga-faq__answer,
  .nga-faq__chevron {
    transition: none;
  }
}

