html {
	font-size: 18px;

	width: 100%;
	height: 100%;

	cursor: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='5' fill='transparent' stroke='red' stroke-width='3' /%3E%3C/svg%3E%0A")
			10 10,
		auto;
}

a:hover {
	cursor: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Ccircle cx='10' cy='10' r='5' fill='red' stroke='red' stroke-width='5' /%3E%3C/svg%3E%0A")
			10 10,
		auto;
}

body {
	font-family: freight-text-pro, serif;
	font-weight: 300;
	line-height: 1.15;

	display: grid;
	place-content: center;

	box-sizing: border-box;

	min-height:100%;

	margin: 0;
	padding: 1em;

	text-align: justify;
	hyphens:auto;
	hyphenate-limit-chars: 10 4 4;

	color: rgb(56 6 6);
	background: rgb(255 247 243);
}

/* 
.body-text {
	max-width: 30rem;
} */

main {
	display: block;

	max-width: 23rem;
	margin: 1em auto;

	text-wrap: pretty;
}


hr {
	font-size: 1em;
	font-weight: bold;

	width: 100%;
	padding:0;

	text-align: center;
	word-spacing: 25px;

	color: red;
	border:none;
	background:none;
}

hr::after {
	content: '* * * * * *';
}

h1,
h2,
h3,
h4 {
	font-family: freightdispcmp-pro, serif;
	font-size: 2em;
	font-weight: 400;
	line-height: 1;

	margin: 0 0 1rem;
}

h2,
h3,
h4 {
	font-size: 1.5em;

	margin: 0.5rem 0;
}

a,
a:visited {
	font-family:freightdispcmp-pro, freight-text-pro, serif;

	text-decoration: none;

	color: red;
}

p a,
p a:visited {
	font-weight: 700;

	text-decoration: underline;
}

ul,
ol {
	margin: 0;
}

ul ul,
ol ul,
ol ol,
ul ol {
	margin: 0;
}

ul {
	padding: 0;

	list-style-type: none;

	border-top: 1px solid red;
}

ul li {
	margin: 0;
	padding: 0;

	border-bottom: 1px solid red;
}

ul li:hover {
	background: #faefef;
}

ul li a {
	display: block;

	padding: 1rem 0;
}

details {
	padding-bottom: 2px;

	border-top: 1px solid red;
	border-bottom: 1px solid red;
}

details + details {
	border-top:0;
}

summary {
	font-family: freightdispcmp-pro, serif;
	font-size: 1.25em;
}

summary::marker {
	color: red;
}

details ul li {
	position: relative;

	padding-left: 1.25em;

	border: none;
}

details ul {
	margin:0;
	padding: 0 1em;

	border-top:none;
}

details ul li:hover {
	background: none;
}

details ul li::before {
	position: absolute;
	top:0;
	left: 0;

	width: 0.5em;
	height: .7em;

	content: ' ';

	border-bottom: 1px solid red;
}

strong.client {
	font-family: freightdispcmp-pro, serif;
	font-weight: bold;
	font-style: italic;
}

strong.client::after {
	font-weight: normal;
	font-style: normal;

	content: " ⟶";
	text-decoration: none;

	color: black;
}

strong {
	font-family:freight-text-pro, serif;
	font-weight: 700;

	/* font-style: italic; */
}