/* Structure only — inherit typography/colors from the theme */
.mfm-faq-container{
  margin-bottom: 20px;
}

.mfm-faq-item{
  /* border-bottom: 1px solid rgba(0,0,0,.12); */
  padding: 15px 0;
}

.mfm-faq-question{
  font: inherit;
  color: inherit;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mfm-faq-question:hover{
  text-decoration: underline; /* theme-safe hover state */
}

.mfm-faq-question::after{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.mfm-faq-item.active .mfm-faq-question::after{
  transform: rotate(180deg);
}

.mfm-faq-answer{
  display: none;
  padding: 12px 0 5px 0;
  color: inherit;
  line-height: inherit;
}

.mfm-faq-item.active .mfm-faq-answer{
  display: block;
}
