/*
 * R Markdown / pandoc: indent content under # / ## / ### (div.section.level1–3).
 * Used by: (1) Hugo resources/single.html <link>, (2) knitr chunk in .Rmd output.
 */
div.section.level1 > :not(h1),
div.section.level2 > :not(h2),
div.section.level3 > :not(h3),
#resource-body div.section.level1 > :not(h1),
#resource-body div.section.level2 > :not(h2),
#resource-body div.section.level3 > :not(h3) {
	margin-left: 1.15rem;
	box-sizing: border-box;
}
