/* ============================================================
   HausCreative Markdown Import — Content Styles
   Applied to posts/pages containing imported markdown content.
   Works with both Gutenberg and Classic Editor.
   ============================================================ */

/* ---------- Code blocks ---------- */
.haus-md-code,
.entry-content pre.haus-md-code,
.post-content pre.haus-md-code {
	background: #1e293b;
	color: #e2e8f0;
	padding: 16px 20px;
	border-radius: 6px;
	overflow-x: auto;
	margin: 0 0 1.5em;
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.875em;
	line-height: 1.7;
}

.haus-md-code code,
.entry-content pre.haus-md-code code,
.post-content pre.haus-md-code code {
	background: none;
	padding: 0;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
	border: none;
	border-radius: 0;
}

/* ---------- Inline code ---------- */
.entry-content code:not(pre code),
.post-content code:not(pre code) {
	background: #f1f5f9;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.875em;
	color: #c7254e;
}

/* ---------- Blockquotes ---------- */
.haus-md-quote,
.entry-content blockquote.haus-md-quote,
.post-content blockquote.haus-md-quote {
	border-left: 4px solid #2271b1;
	margin: 0 0 1.5em;
	padding: 12px 20px;
	background: #f0f6ff;
	color: #374151;
	border-radius: 0 4px 4px 0;
}

.haus-md-quote p,
.entry-content blockquote.haus-md-quote p,
.post-content blockquote.haus-md-quote p {
	margin: 0;
}

/* ---------- Editor styles (Gutenberg) ---------- */
.editor-styles-wrapper .haus-md-code {
	background: #1e293b;
	color: #e2e8f0;
	padding: 16px 20px;
	border-radius: 6px;
	overflow-x: auto;
	margin: 0 0 1.5em;
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
	font-size: 0.875em;
	line-height: 1.7;
}

.editor-styles-wrapper .haus-md-code code {
	background: none;
	padding: 0;
	color: inherit;
	font-size: inherit;
	font-family: inherit;
}

.editor-styles-wrapper .haus-md-quote {
	border-left: 4px solid #2271b1;
	margin: 0 0 1.5em;
	padding: 12px 20px;
	background: #f0f6ff;
	color: #374151;
	border-radius: 0 4px 4px 0;
}
