/* 文书稿件篇幅统计：同时展示字数与字符数，并突出字符超限。 */
.essay-draft-stats {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.essay-draft-stats-sep {
  color: #94a3b8;
}

.essay-character-count {
  color: #475569;
  font-weight: 650;
}

.essay-character-count.is-over-limit {
  padding: 2px 7px;
  border-radius: 6px;
  background: #fce8e6;
  color: #d93025;
  font-weight: 700;
}

@media (max-width: 720px) {
  .essay-draft-stats {
    gap: 4px;
  }
}
