@charset "UTF-8";

/* 에디터 스타일 적용 */
.editor_content {
  line-height: 1.8;
  color: #333;
}

.editor_content h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 1em 0 0.5em;
  line-height: 1.3;
}

.editor_content h2 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0.9em 0 0.5em;
  line-height: 1.3;
}

.editor_content h3 {
  font-size: 1.25em;
  font-weight: bold;
  margin: 0.8em 0 0.5em;
  line-height: 1.3;
}

.editor_content h4 {
  font-size: 1.1em;
  font-weight: bold;
  margin: 0.7em 0 0.5em;
  line-height: 1.3;
}

.editor_content p {
  margin: 0.8em 0;
}

.editor_content strong,
.editor_content b {
  font-weight: bold;
}

.editor_content em,
.editor_content i {
  font-style: italic;
}

.editor_content ul,
.editor_content ol {
  margin: 1em 0;
  padding-left: 2em;
}

.editor_content ul {
  list-style-type: disc;
}

.editor_content ol {
  list-style-type: decimal;
}

.editor_content li {
  margin: 0.5em 0;
  line-height: 1.6;
}

.editor_content blockquote {
  margin: 1em 0;
  padding: 1em 1.5em;
  border-left: 4px solid #ddd;
  background-color: #f9f9f9;
  color: #666;
}

.editor_content a {
  color: #0066cc;
  text-decoration: underline;
}

.editor_content a:hover {
  color: #004499;
}

.editor_content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

.editor_content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.editor_content table th,
.editor_content table td {
  border: 1px solid #ddd;
  padding: 0.75em;
  text-align: left;
}

.editor_content table th {
  background-color: #f5f5f5;
  font-weight: bold;
}

.editor_content pre {
  background-color: #f5f5f5;
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1em 0;
}

.editor_content code {
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.editor_content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}