/* 通用富文本编辑器（文章正文等） */

.gf-rte-wrap {
  margin-top: 4px;
}

.gf-rte-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.gf-rte-toolbar .btn {
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.3;
}

.gf-rte-editor {
  min-height: 220px;
  max-height: 420px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.65;
  outline: none;
}

.gf-rte-editor:focus {
  border-color: var(--accent-primary);
}

.gf-rte-editor:empty::before {
  content: attr(data-placeholder);
  color: var(--text-muted);
  pointer-events: none;
}

.gf-rte-editor img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 8px 0;
}

.gf-rte-editor h2,
.gf-rte-editor h3 {
  margin: 12px 0 8px;
  line-height: 1.35;
}

.gf-rte-editor h2 { font-size: 18px; }
.gf-rte-editor h3 { font-size: 16px; }

.gf-rte-editor ul,
.gf-rte-editor ol {
  margin: 8px 0;
  padding-left: 1.5em;
}

.gf-rte-editor blockquote {
  margin: 8px 0;
  padding: 8px 12px;
  border-left: 3px solid var(--border-color);
  color: var(--text-secondary);
}

.gf-rte-editor a {
  color: var(--accent-primary);
}
