/**
 * Notion Blog Composer — front-end support for converted blocks.
 *
 * Only the callout wrapper needs styling; everything else maps onto core blocks
 * your theme already handles.
 */

.nbc-callout {
	padding: 16px 20px;
	margin: 1.5em 0;
	border-radius: 6px;
	border-left: 4px solid currentColor;
	background: rgba(127, 127, 127, 0.08);
}

.nbc-callout > *:first-child {
	margin-top: 0;
}

.nbc-callout > *:last-child {
	margin-bottom: 0;
}

/* Brand furniture ----------------------------------------------------------
   Deliberately restrained: colours are inherited from the theme via
   currentColor, so these blocks pick up any palette instead of imposing one.
   Only structure and spacing are set here. */

.nbc-quick-answer {
	border-left: 4px solid currentColor;
	padding: 1em 1.25em;
	margin-block: 1.5em;
	background: rgba(127, 127, 127, 0.06);
}

.nbc-quick-answer > :first-child,
.nbc-why-choose > :first-child,
.nbc-cta > :first-child {
	margin-top: 0;
}

.nbc-quick-answer > :last-child,
.nbc-why-choose > :last-child,
.nbc-cta > :last-child {
	margin-bottom: 0;
}

.nbc-quick-answer h2 {
	font-size: 1rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.75;
}

.nbc-why-choose {
	margin-block: 2em;
}

.nbc-why-choose li + li {
	margin-top: 0.5em;
}

.nbc-cta {
	border: 1px solid rgba(127, 127, 127, 0.35);
	border-radius: 6px;
	padding: 1.5em;
	margin-block: 2em;
	text-align: center;
}
