.blog-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 20px;
}

.blog-header {
	text-align: center;
	padding: 3rem 0;
}

.blog-title {
	font-size: 3rem;
	color: var(--dark);
	margin-bottom: 1rem;
}

.blog-subtitle {
	font-size: 1.2rem;
	color: var(--darkest);
	margin-bottom: 2rem;
}

.posts-list {
	margin-top: 2rem;
}

.post-card {
	background: var(--white);
	border-radius: 10px;
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.post-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.post-title {
	font-size: 1.8rem;
	color: var(--dark);
	margin-bottom: 0.5rem;
	text-decoration: none;
}

.post-title a {
	color: inherit;
	text-decoration: none;
}

.post-title a:hover {
	color: var(--orange);
}

.post-meta {
	color: var(--darkest);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	opacity: 0.8;
}

.post-excerpt {
	color: var(--darkest);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.read-more {
	color: var(--orange);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
}

.read-more:hover {
	color: var(--yellow);
}

.post-content {
	line-height: 1.7;
	color: var(--darkest);
}

.post-content h2 {
	color: var(--dark);
	margin: 2rem 0 1rem 0;
	font-size: 1.6rem;
}

.post-content h3 {
	color: var(--dark);
	margin: 1.5rem 0 0.75rem 0;
	font-size: 1.3rem;
}

.post-content p {
	margin-bottom: 1.2rem;
}

.post-content ul, 
.post-content ol {
	margin: 1rem 0;
	padding-left: 2rem;
}

.post-content li {
	margin-bottom: 0.5rem;
}

.post-content blockquote {
	border-left: 4px solid var(--orange);
	padding: 1rem 1.5rem;
	margin: 1.5rem 0;
	background: var(--lightest);
	font-style: italic;
}

.post-content code {
	background: var(--lightest);
	padding: 0.2rem 0.4rem;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
	.blog-title {
		font-size: 2.2rem;
	}
	
	.blog-subtitle {
		font-size: 1.1rem;
	}
	
	.post-card {
		padding: 1.5rem;
	}
	
	.post-title {
		font-size: 1.5rem;
	}
}