/**
 * Default styling for the [cbox] callout shortcode.
 *
 * Background and font-size are applied inline by the shortcode (carried over
 * from the legacy theme). These rules only supply the box chrome (padding,
 * spacing, rounding) so legacy [cbox] content still looks like a callout even
 * though the old theme's CSS is gone. Everything is overridable via the
 * shortcode's `style` attribute.
 */
.c-box {
	padding: 15px 20px;
	margin: 20px 0;
	border-radius: 4px;
}

/* Inside the sidebar, drop the top margin (legacy #secondary override). */
#secondary .c-box {
	margin-top: 0;
}

.c-box > :first-child {
	margin-top: 0;
}

.c-box > :last-child {
	margin-bottom: 0;
}
