
/* BLOG */

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

.blog-title{
font-size:40px;
margin-bottom:40px;
text-align:center;
}

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

.blog-card{
background:#fff;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
overflow:hidden;
padding:20px;
transition:0.3s;
}

.blog-card:hover{
transform:translateY(-5px);
}

.blog-card img{
width:100%;
height:auto;
border-radius:6px;
margin-bottom:15px;
}

.blog-post-title{
font-size:22px;
margin-bottom:10px;
}

.blog-post-title a{
text-decoration:none;
color:#222;
}

.blog-excerpt{
color:#666;
margin-bottom:15px;
}

.read-more{
text-decoration:none;
color:#ee7518;
font-weight:600;
}

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

