/* Kućni red — house-rules checklist. Rebuilds the old site's iconed list
   ([trx_list style="iconed"] with icon-checkbox items) that the migration
   flattened into a single paragraph. Scoped to .kucni-red (baked into the
   page's blocks), so it's slug-independent. */

.kucni-red__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kucni-red__list li {
	position: relative;
	padding-left: 2.5rem;
	line-height: var(--line-height-base);
}

.kucni-red__list li + li {
	margin-top: var(--space-sm);
}

/* Checkbox icon, coral, aligned to the first line — same accent-tinted mask
   technique as the groups-page icons (KSES strips inline SVG, so the art is a
   theme file applied via CSS). */
.kucni-red__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--color-coral);
	-webkit-mask: url(../images/checklist-check.svg) no-repeat center / contain;
	mask: url(../images/checklist-check.svg) no-repeat center / contain;
}
