/* Typographic scale and text treatments. */

body {
	font-family: var(--font-body);
	font-size: var(--fs-body);
	line-height: var(--line-height-base);
	color: var(--color-text);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	line-height: var(--line-height-heading);
	font-weight: var(--fw-bold);
	color: var(--color-text);
	margin: 0 0 var(--space-sm);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
	margin: 0 0 var(--space-sm);
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-primary);
}

.text-muted {
	color: var(--color-text-muted);
}

.text-inverse {
	color: var(--color-text-inverse);
}

.text-center {
	text-align: center;
}

.eyebrow {
	display: inline-block;
	font-size: var(--fs-eyebrow);
	font-weight: var(--fw-semibold);
	letter-spacing: var(--letter-spacing-eyebrow);
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--space-xs);
}

.section__header--center .eyebrow {
	display: block;
}

.lede {
	font-size: 1.125rem;
	color: var(--color-text-muted);
}

.list-check {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-2xs);
}

.list-check li {
	display: flex;
	align-items: flex-start;
	gap: var(--space-2xs);
}

.list-check .icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	color: var(--color-success);
	margin-top: 0.2em;
}

.rating-stars {
	color: #F5A623;
	letter-spacing: 0.05em;
}
