/**
 * WP Markdown – Callout (Typora-style / GitHub-style alerts)
 * NOTE, IMPORTANT, WARNING, TIP, CAUTION
 */

.wp-markdown-callout {
	margin: 1.25em 0;
	padding: 0;
	border-radius: 6px;
	border: 1px solid #e1e4e8;
	border-left: 4px solid #555;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	overflow: hidden;
}

.wp-markdown-callout .callout-title {
	position: relative;
	font-weight: 700;
	font-size: 1em;
	margin: 0;
	padding: 0.75em 1.25em 0.5em 1.25em;
	line-height: 1.4;
}

.wp-markdown-callout .callout-title::before {
	display: inline-block;
	margin-right: 0.5em;
	font-style: normal;
	vertical-align: middle;
}

.wp-markdown-callout > p:not(.callout-title) {
	margin: 0;
	padding: 0 1.25em 1em 1.25em;
	line-height: 1.6;
}

.wp-markdown-callout > p:not(.callout-title):last-child {
	padding-bottom: 1em;
}

/* NOTE – light blue, info icon (circled i) */
.wp-markdown-callout.callout-note {
	border-left-color: #0969da;
}

.wp-markdown-callout.callout-note .callout-title {
	color: #0969da;
}

.wp-markdown-callout.callout-note .callout-title::before {
	content: "\2139"; /* ℹ */
}

/* IMPORTANT – purple, exclamation in bubble */
.wp-markdown-callout.callout-important {
	border-left-color: #8250df;
}

.wp-markdown-callout.callout-important .callout-title {
	color: #8250df;
}

.wp-markdown-callout.callout-important .callout-title::before {
	content: "\2757"; /* ❗ */
}

/* WARNING – orange/brown, triangle warning */
.wp-markdown-callout.callout-warning {
	border-left-color: #9a6700;
}

.wp-markdown-callout.callout-warning .callout-title {
	color: #9a6700;
}

.wp-markdown-callout.callout-warning .callout-title::before {
	content: "\26A0"; /* ⚠ */
}

/* TIP – light green, lightbulb */
.wp-markdown-callout.callout-tip {
	border-left-color: #2da44e;
}

.wp-markdown-callout.callout-tip .callout-title {
	color: #2da44e;
}

.wp-markdown-callout.callout-tip .callout-title::before {
	content: "\1F4A1 "; /* 💡 */
}

/* CAUTION – red, circled exclamation (Typora style) */
.wp-markdown-callout.callout-caution {
	border-left-color: #cf222e;
}

.wp-markdown-callout.callout-caution .callout-title {
	color: #cf222e;
}

.wp-markdown-callout.callout-caution .callout-title::before {
	content: "\2757"; /* ❗ */
}
