/* Coherence Foundry Authority Engine — frontend */

.cfae-faq {
  display: block;
  margin: 2rem 0;
}

.cfae-faq__item {
  border-bottom: 1px solid var(--cc-border, #e8e4d9);
  padding: 16px 0;
}

.cfae-faq__item[open] .cfae-faq__q::after {
  transform: rotate(45deg);
}

.cfae-faq__q {
  cursor: pointer;
  font-family: var(--cc-font-serif, Georgia, serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--cc-navy, #1B2B4B);
  list-style: none;
  position: relative;
  padding-right: 32px;
  outline: none;
}

.cfae-faq__q::-webkit-details-marker { display: none; }

.cfae-faq__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--cc-gold, #C9A84C);
  transition: transform 0.2s ease;
}

.cfae-faq__a {
  margin-top: 12px;
  color: var(--cc-text-mid, #4a5568);
  line-height: 1.7;
  font-size: 15px;
}

.cfae-faq__a p:last-child { margin-bottom: 0; }
