/**
 * Spacing for the plugin's own blocks.
 *
 * Deliberately tiny. This plugin does not style anybody's site — fonts,
 * colours and list markers are all left to the theme. The one thing it does
 * claim is the gap between its intro paragraph and the list that paragraph
 * introduces, because otherwise the two run together and the block reads as
 * one broken lump.
 *
 * Elementor's Site Settings write `.elementor-kit-NNN p { margin-block-end: 0 }`
 * on every paragraph site-wide, which is specificity 0,1,1 — enough to beat a
 * bare `.ilink-areas-intro`. Scoping through the wrapper takes this to 0,2,1
 * so it wins on specificity rather than on which stylesheet happens to load
 * last.
 */

.ilink-related p.ilink-related-intro,
.ilink-areas p.ilink-areas-intro {
	margin-bottom: 16px;
	margin-block-end: 16px;
}
