/* Styles for (portions of) pages that are intended to have a lot of text, unlike e.g. the landing page */
.document {
	a {
		color: var(--color-some-purple);
		text-underline-offset: 2px;
		font-weight: 550;
		text-decoration: underline;
	}
	
	p, li {
		margin: 0;
		font: var(--font-body-text);
		letter-spacing: var(--fontspacing-body-text);
		max-width: var(--legible-width-body);
		line-height: 1.53; /* more legible */
	}
	
	p + p, li + li {
		margin-top: 0.5em;
	}
	
	samp {
		font-family: inherit;
		font-style: italic;
	}
	
	.secondary-info {
		color: var(--text-color-deemphasized);
	}
}
