p {
	clear: both;
	font-family: var(--global--font-primary);
}

p, .p {
	font-size: var(--font-size-desktop-body);
	font-weight: var(--font-weight-desktop-body);
	letter-spacing: var(--letter-spacing-desktop-body);
	line-height: var(--line-height-desktop-body);
}

@media only screen and (max-width: var(--breakpoint)) {
	p, .p {
		font-size: var(--font-size-mobile-body);
		font-weight: var(--font-weight-mobile-body);
		letter-spacing: var(--letter-spacing-mobile-body);
		line-height: var(--line-height-mobile-body);
	}
}

