<!DOCTYPE html>
<html lang="en">
	<head>
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link href="/assets/styles/reset.css" rel="stylesheet">
		<link href="setup.css" rel="stylesheet">
	</head>
	<body>
		<section>
			<h2>Heading w/combo/slashed words</h2>
		</section>
		<section>
			<h2>Heading w/<wbr>combo/<wbr>slashed words</h2>
		</section>
	</body>
</html>
body {
	--base: 20px;

	display: grid;
	font-family: 'Helvetica', sans-serif;
	gap: var(--base);
	padding: var(--base);
}

section {
	background-color: gold;
	padding: calc(var(--base) / 2);
}

h2 { font-size: calc(var(--base) * 3); }