/*
 * Typography atoms for Pure Salmon.
 *
 * .is-style-section-label = small uppercase letter-spaced text. Used above
 * headings as a category / context line (e.g. "LAND BASED AQUACULTURE
 * SYSTEMS" above a hero title).
 */

/*
 * Selector is `.is-style-section-label` (no wp-block-paragraph prefix) so
 * the rule applies to any element with the class — core/paragraph blocks
 * AND the raw <p> the hero renders inside its own markup.
 */
.is-style-section-label {
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: var(--wp--preset--font-size--sm);
	font-weight: 700;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.is-style-section-label {
		font-size: var(--wp--preset--font-size--base);
	}
}
