.blog-header {
	background: #fff;
	border-bottom: 1px solid #f0f0f0;
	padding: 2rem 0;
	text-align: center;
}
.blog-header h1 {
	font-size: 2.5rem;
	font-weight: 200;
	margin: 0;
	letter-spacing: -0.02em;
}
.blog-header p {
	color: #666;
	font-weight: 300;
	margin-top: 0.5rem;
}

.blog-content {
	max-width: 900px;
	margin: 0 auto;
	padding: 3rem 1rem;
}

.blog-latest .latest-card {
	background: #fafafa;
	border: 1px solid #f0f0f0;
	border-radius: 1.2rem;
	padding: 2.5rem 2rem;
	margin-bottom: 3rem;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
	text-align: left;
}

.latest-title {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: #000;
}
.latest-meta {
	color: #999;
	font-size: 0.95rem;
	margin-bottom: 1rem;
}
.latest-excerpt {
	color: #333;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	font-weight: 300;
}

.blog-grid {
	margin-top: 2rem;
}
.grid-title {
	font-size: 1.3rem;
	font-weight: 500;
	color: #000;
	margin-bottom: 1.5rem;
	letter-spacing: 0.01em;
}
.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}
.post-card {
	background: #fff;
	border: 1px solid #f0f0f0;
	border-radius: 1rem;
	padding: 1.5rem 1.2rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.post-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 0.5rem;
}
.post-meta {
	color: #999;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.post-excerpt {
	color: #444;
	font-size: 1rem;
	margin-bottom: 1.2rem;
	font-weight: 300;
}
.btn.primary {
	background: #000;
	color: #fff;
	border: none;
	padding: 0.7em 1.5em;
	border-radius: 2em;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s;
}
.btn.primary:hover {
	background: #222;
}
.btn.outline {
	background: transparent;
	color: #000;
	border: 1px solid #e0e0e0;
	border-radius: 2em;
	padding: 0.6em 1.2em;
	text-decoration: none;
	font-weight: 500;
	transition: border 0.2s, color 0.2s;
}
.btn.outline:hover {
	border-color: #000;
	color: #222;
}
.btn.small {
	font-size: 0.95em;
	padding: 0.4em 1em;
}
.blog-footer {
	background: #fafafa;
	border-top: 1px solid #f0f0f0;
	text-align: center;
	padding: 2rem 0;
	color: #666;
	font-size: 1rem;
}
@media (max-width: 600px) {
	.blog-header,
	.blog-content,
	.blog-footer {
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}
	.blog-latest .latest-card {
		padding: 1.2rem 0.7rem;
	}
	.posts-grid {
		grid-template-columns: 1fr;
	}
}
