/* Wacana — Editor (PRD Bagian 18, 21) */

.editor-page { max-width: 720px; margin: 0 auto; padding: var(--space-4); }

.editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-4);
}

.editor-textarea {
  width: 100%;
  min-height: 40vh;
  border: none;
  background: transparent;
  resize: none;
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-reading);
  color: var(--color-text);
}
.editor-textarea:focus { outline: none; }
.editor-textarea::placeholder { color: var(--color-text-muted); }

.editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-3);
}

.editor-counter {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
}
.editor-counter.is-near-limit { color: var(--color-warning); }
.editor-counter.is-over-limit { color: var(--color-accent); font-weight: 700; }

.editor-autosave {
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
}
.editor-toolbar-item { display: flex; align-items: center; gap: 6px; }
