/*
 * Tiptap Editor Styles
 */
.ProseMirror {
  outline: none;
}

.ProseMirror p.is-editor-empty:first-child::before {
  content: attr(data-placeholder);
  float: left;
  color: #adb5bd;
  pointer-events: none;
  height: 0;
}

/* 첫 번째 블록 = 제목 스타일 */
.ProseMirror > *:first-child {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.ProseMirror > *:first-child.is-empty::before {
  font-size: 2.25rem;
  font-weight: 700;
}

/* 나머지 블록 기본 스타일 */
.ProseMirror > *:not(:first-child) {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}

/* 리스트 스타일 */
.ProseMirror ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

.ProseMirror ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

/* 코드 블록 */
.ProseMirror pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
}

.ProseMirror code {
  background: #f3f4f6;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.ProseMirror pre code {
  background: none;
  padding: 0;
}

/* 인용문 */
.ProseMirror blockquote {
  border-left: 3px solid #e5e7eb;
  padding-left: 1rem;
  color: #6b7280;
  font-style: italic;
}

/* 헤딩 (첫 번째 블록이 아닌 경우) */
.ProseMirror > h1:not(:first-child) {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.ProseMirror > h2:not(:first-child) {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.ProseMirror > h3:not(:first-child) {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
