/* content.css | article-style buyer pages | 2026 */
.content {
	max-width: 820px;
	margin: 0 auto;
	text-align: left;
	padding: 0 20px;
}
.content .lead { font-size: 1.15em; margin-bottom: 1.5rem; }
.content h2 { color: #013228; margin: 2.5rem 0 1rem; }
.content h3 { margin: 1.5rem 0 0.5rem; }
.content p, .content li { line-height: 1.7; margin-bottom: 0.75rem; }
.content ul, .content ol { padding-left: 1.5rem; margin-bottom: 1rem; }

/* numbered process steps */
.process { list-style: none; padding-left: 0; counter-reset: step; }
.process > li {
	counter-increment: step;
	position: relative;
	padding: 0.5rem 0 1rem 3.25rem;
	border-bottom: 1px solid #eee;
}
.process > li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 0.4rem;
	width: 2.25rem;
	height: 2.25rem;
	line-height: 2.25rem;
	text-align: center;
	background-color: #013228;
	color: #fff;
	border-radius: 50%;
	font-weight: bold;
}
.process > li h3 { margin-top: 0; color: #013228; }

/* FAQ */
.faq-item { border-bottom: 1px solid #ddd; padding: 1rem 0; }
.faq-item h3 { color: #013228; margin: 0 0 0.5rem; }

.disclaimer {
	font-size: 0.8em;
	color: #888888;
	border-top: 1px solid #ddd;
	margin-top: 2.5rem;
	padding-top: 1rem;
}
