/* public/assets/css/app.css */

.post-content h1, .post-content h2, .post-content h3,
.post-content h4, .post-content h5, .post-content h6 {
  margin-top: 1.2rem;
  margin-bottom: .75rem;
}

.post-content p {
  line-height: 1.8;
  margin: .75rem 0;
}

.post-content ul, .post-content ol {
  padding-left: 1.2rem;
  margin: .75rem 0;
}

.post-content blockquote {
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  color: #6c757d;
  margin: 1rem 0;
}

.post-content pre {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: .5rem;
  padding: 1rem;
  overflow: auto;
}

.post-content code {
  background: #f1f3f5;
  padding: .1rem .25rem;
  border-radius: .25rem;
}

.post-content pre code {
  background: transparent;
  padding: 0;
}
/* ===== 编辑器左右分栏固定高度 ===== */

/* --- Admin Markdown Editor Layout --- */
.editor-panel {
  height: 70vh;          /* 你也可以改成 65vh/75vh */
  overflow: auto;
}

textarea.editor-panel {
  resize: vertical;      /* 允许你手动拉高，但默认是固定视窗高度 */
}


