.blog-section{
padding:60px 6%;
background:#fff;
}

.blog-header{
text-align:center;
margin-bottom:40px;
}

.blog-header h1{
font-size:30px;
margin-bottom:10px;
}

.blog-header p{
color:#777;
font-size:14px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.blog-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
transition:0.3s;
}

.blog-card img{
width:100%;
height:350px;
border-radius: 10px;
object-fit:cover;
}

.blog-content{
padding:15px;
}

.category{
font-size:11px;
color:#b48a4c;
font-weight:600;
}

.blog-content h3{
font-size:15px;
margin:8px 0;
}

.blog-content p{
font-size:12px;
color:#666;
line-height:1.5;
}

.read-more{
font-size:12px;
font-weight:600;
text-decoration:none;
color:#000;
}