body{
font-family:Poppins,Arial,sans-serif;
background:#f8fafc;
margin:0;
color:#1f2937;
}

.container{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

.blog-header{
text-align:center;
margin-bottom:50px;
}

.blog-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.blog-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,.05);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-6px);
}

.blog-card img{
width:100%;
height:200px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.blog-title{
font-size:20px;
font-weight:600;
margin-bottom:10px;
}

.blog-desc{
color:#6b7280;
font-size:14px;
margin-bottom:15px;
}

.read-btn{
background:#4f46e5;
color:white;
padding:8px 16px;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.breadcrumbs{
font-size:14px;
margin-bottom:20px;
color:#6b7280;
}

.post-content{
max-width:800px;
margin:auto;
line-height:1.8;
}

.related-posts{
margin-top:60px;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.related-card{
background:white;
padding:15px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,.05);
}

.related-card a{
text-decoration:none;
color:#4f46e5;
font-weight:500;
}



/*monetag style code*/
#popupIframe{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
z-index:9999;
}

.popup-content{
background:#fff;
width:350px;
padding:30px;
margin:15% auto;
text-align:center;
border-radius:8px;
position:relative;
}

.closePopup{
position:absolute;
top:10px;
right:15px;
cursor:pointer;
font-size:22px;
font-weight:bold;
}