body {
	font-family: "Inter", sans-serif;
	background-color: #f8eae1;
	color: #3b2f2f;
	margin: 0;
	padding: 0;
}

.blog-header {
	text-align: center;
	padding: 60px 20px 40px;
}

.blog-header h1 {
	font-family: "Playfair Display", serif;
	font-size: 40px;
	margin-bottom: 30px;
}

.author-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	max-width: 800px;
	margin: 0 auto;
}

.author-img {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 4px solid #a65a3a;
	object-fit: cover;
}

.author-info h2 {
	margin: 10px 0 4px;
	font-size: 22px;
	font-weight: 600;
}

.author-info p {
	margin: 4px 0;
	font-size: 15px;
	line-height: 1.6;
}

.blog-posts {
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-posts h3 {
	font-size: 24px;
	margin-bottom: 24px;
	text-align: left;
	font-weight: 600;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.blog-card {
	background-color: #fff3ea;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.blog-card img {
	width: 100%;
	height: auto;
	display: block;
}

.post-content {
	padding: 20px;
}

.post-category {
	font-size: 12px;
	font-weight: bold;
	color: #6a4d2c;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
}

.blog-card h4 {
	font-size: 18px;
	margin: 0 0 10px;
	line-height: 1.4;
}

.post-date {
	font-size: 14px;
	color: #6a4d2c;
}

.blog-cta {
	margin: 60px auto;
	text-align: center;
}

.blog-cta p {
	font-size: 18px;
	margin-bottom: 16px;
	color: #3b2f2f;
}

.btn-read {
	background-color: #3b2f2f;
	color: #fff;
	padding: 12px 24px;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}

.btn-read:hover {
	background-color: #2d2424;
}
