
/* Article / Blog Page Styles */
.article-header {
	padding: 8rem 2rem 4rem;
	text-align: center;
	background-color: var(--terra-bg);
	color: var(--light-text);
}

.article-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 2rem;
	background-color: #fff;
}

.article-content {
	font-family: 'Cormorant Garamond', serif; /* Using the serif font for reading */
	font-size: 1.25rem;
	line-height: 1.8;
	color: var(--text-color);
}

.article-content h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.5rem;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--terra-bg);
}

.article-content h3 {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.article-content p {
	margin-bottom: 1.5rem;
}

.article-content ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 2rem;
}

.article-content ul li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.article-content ul li::before {
	content: '•';
	color: var(--terra-bg);
	position: absolute;
	left: 0;
	font-weight: bold;
}

.article-content a {
	color: var(--terra-bg);
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: color 0.3s ease;
}

.article-content a:hover {
	color: var(--olive-bg);
}

.article-cta {
	margin-top: 4rem;
	padding: 3rem;
	background-color: #f9f9f9;
	text-align: center;
	border: 1px solid #eee;
}

.article-cta h3 {
	margin-top: 0;
}

.article-cta .button {
	background-color: var(--terra-bg);
	color: var(--light-text);
	border-color: var(--terra-bg);
	margin-top: 1.5rem;
	text-decoration: none;
}

.article-cta .button:hover {
	background-color: var(--olive-bg);
	border-color: var(--olive-bg);
	color: #fff;
}

