diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index e0034882439c3ab16fc33444a7bf6e761d4ed1ea..883b56a3311918cfadc9fce584bda0556f412dea 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -2176,7 +2176,7 @@ window.supplyPoliciesReport = function(NPCclass) {
 	if (overSupply > 0) {
 		r += ` and the arcology provides ${overSupply/10}% more sexual services than required which <span class='red'>drives prices down</span>`;
 	}
- r += `, ${V.NPCMarketShare[varName]/10 === V.sexDemandResult[varName]/10 ? `the entire` : `${V.NPCMarketShare[varName]/10}% of the`} market is serviced by other suppliers operating inside your arcology.<br></i>`;
+ r += `, ${V.NPCMarketShare[varName]/10 === V.sexDemandResult[varName]/10 ? `the entire` : `${V.NPCMarketShare[varName]/10}% of the`} market is serviced by other suppliers operating inside your arcology.</i><br>`;
 
 	// charge supply barriers (unreported, since it's a flat amount that you were told when you enacted the policy)
 	const supplyCosts = [0, 1000, 5000, 20000, 60000];
@@ -2186,14 +2186,14 @@ window.supplyPoliciesReport = function(NPCclass) {
 	if (V.sexSubsidies[varName] > 0) {
 		const severity = ["none", "minor", "moderate", "substantial", "gratuitous"];
 		const subsidyCost = forceNeg(Math.trunc(V.NPCSexSupply[varName] * Math.pow(V.sexSubsidies[varName], 2) * 0.25));
-		r += `<i><br>&nbsp;Your ${severity[V.sexSubsidies[varName]]} subsidies of ${NPCclass} class sex supply cost you ${cashFormatColor(subsidyCost)} this week.</i>`;
+		r += `<i>&nbsp;Your ${severity[V.sexSubsidies[varName]]} subsidy costs ${cashFormatColor(subsidyCost)} this week</i>`;
 		cashX(subsidyCost, "policies");
 
 		// warn about conflicting policies
 		if (V.sexSupplyBarriers[varName] > 0) {
-			r += `<i><br>&nbsp;The supply barriers you are imposing on ${NPCclass} class sex supply <span class="red">reduce the effectiveness</span> of your subsidies and <span class="red">increase your costs.</span> </i>`;
+			r += `<i>, however the barriers that are also in place <span class="red">reduce it's effectiveness and increase</span> your costs</i>`;
 		}
-		r += `<br>`;
+		r += `.<br>`;
 	}
 
 	return r;