/* Blog post article styles */
.blog-article {
	max-width: 700px;
	margin: 0 auto;
	padding: 0 2rem;
}

.blog-article h1 {
	font-family: var(--font-serif);
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	line-height: 1.2;
}

.blog-article .blog-date {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border);
}

.blog-article h2 {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.blog-article h3 {
	font-size: 1.15rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.blog-article p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.blog-article code {
	background: rgba(255, 255, 255, 0.06);
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	font-size: 0.85rem;
	border: 1px solid var(--border);
}

.blog-article pre {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 1.25rem;
	overflow-x: auto;
	margin-bottom: 1.5rem;
}

.blog-article pre code {
	background: none;
	border: none;
	padding: 0;
}

.blog-article blockquote {
	border-left: 3px solid var(--accent);
	padding-left: 1.25rem;
	margin: 1.5rem 0;
	color: var(--text-muted);
	font-style: italic;
}

.blog-article ul,
.blog-article ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.blog-article li {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.blog-article h1 {
		font-size: 1.75rem;
	}
}
