/* FAQ overlap fixes (Process page) */

/* Convert details-based styles to also support the fallback markup */
#process-faq .faq-item {
  position: relative;
  z-index: 1;
}

#process-faq .faq-summary {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  letter-spacing: inherit;
  padding: 0;
}

#process-faq .faq-summary:focus {
  outline: 2px solid rgba(200, 169, 106, 0.6);
  outline-offset: 4px;
}

#process-faq .faq-answer {
  display: none;
}

#process-faq .faq-item[data-open="true"] .faq-answer {
  display: block;
}

#process-faq .faq-icon {
  color: #c8a96a;
}

