/* 홈페이지 스타일의 영향을 받지 않도록 격리 */
.editor-content {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

/* HTML 태그별로 강제 스타일 지정 */
.editor-content p,
.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content li {
  all: unset;
  display: block;
  margin: 0 0 10px 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* 이미지 가운데 정렬된 경우도 유지 */
.editor-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px auto;
}