/* Wrapper */
.wtc-faq-wrapper {
  margin: 2em 0;
  border-top: 1px solid #e0e0e0;
  font-family: inherit;
}

/* Each item */
.wtc-faq-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.8em 0;
}

/* Question row */
.wtc-faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--wp--preset--color--foreground, #222);
  gap: 10px;
  padding: 0.5em 0.2em;
  transition: background 0.2s ease, color 0.2s ease;
}

.wtc-faq-question:hover {
  color: var(--wp--preset--color--primary, #0073aa);
}

/* Icon */
.wtc-faq-icon {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--wp--preset--color--primary, #0073aa);
  width: 20px;
  text-align: center;
  transition: transform 0.2s ease;
}

/* Rotate icon when active */
.wtc-faq-item.active .wtc-faq-icon {
  transform: rotate(90deg);
}

/* Title */
.wtc-faq-title {
  flex: 1;
}

/* Answer section */
.wtc-faq-answer {
  display: none;
  margin-top: 0.6em;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--wp--preset--color--foreground, #444);
  padding-left: 25px;
}

.wtc-faq-answer p {
  margin: 0 0 0.8em;
}
