/* glacial/faq-item — EDITOR ONLY. The canvas edits the question in a <div class="gl-faq-summary-edit"> instead of a
   <summary> (contenteditable inside <summary> is unreliable), so mirror the shared `.gl-faq-item > summary` rules from
   blocks/assets/blocks-frontend.css here. The front end never renders this class. */
.editor-styles-wrapper .gl-faq-summary-edit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.editor-styles-wrapper .gl-faq-summary-edit > * {
  flex: 1 1 auto;
}
.editor-styles-wrapper .gl-faq-summary-edit::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-135deg); /* "open" state — the answer is always shown in the editor */
  margin-right: 4px;
}
