.blog-posts {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 2rem 0;
}

.blog-post {
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-post h2 {
	margin: 0 0 0.5rem;
	font-size: 1.3rem;
}

.blog-post h2 a {
	color: #4ecdc4;
	text-decoration: none;
}

.blog-post h2 a:hover {
	text-decoration: underline;
}

.blog-date {
	color: #888;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.blog-excerpt {
	color: #ccc;
	margin-bottom: 1rem;
	line-height: 1.6;
}

.read-more {
	color: #4ecdc4;
	text-decoration: none;
	font-weight: 500;
}

.read-more:hover {
	text-decoration: underline;
}

.blog-content {
	margin: 2rem 0;
	line-height: 1.8;
}

.blog-content p {
	margin-bottom: 1rem;
}

.back-link {
	display: inline-block;
	margin-top: 2rem;
	color: #4ecdc4;
	text-decoration: none;
}

.back-link:hover {
	text-decoration: underline;
}
