/* BLOG HEADER */

.blog-header{
background:#0E0E0E;
color:white;
padding:90px 20px 70px;
display:flex;
justify-content:center;
border-bottom:1px solid rgba(255,255,255,0.08);
}

.blog-header-inner{
max-width:850px;
width:100%;
text-align:center;
}



/* CATEGORY */

.header-category{
display:inline-block;
background:#d4a017;
color:#111827;
padding:6px 14px;
border-radius:20px;
font-size:13px;
font-weight:600;
margin-bottom:20px;
}



/* TITLE */

.blog-title{
font-size:56px;
line-height:1.2;
margin-bottom:25px;
}



/* META */

.blog-meta{
display:flex;
justify-content:center;
gap:30px;
font-size:15px;
color:#cbd5f5;
}

.meta-item{
display:flex;
align-items:center;
gap:8px;
}

.meta-item i{
color:#d4a017;
}


.related-blog-date{
    background-color: #d4a017;
    color: white !important;
    padding: 5px 10px;
    border-radius: 20px;
}
/* CONTENT SECTION */

.blog-content-section{
padding:70px 20px;
background:#f8fafc;
display:flex;
justify-content:center;
}

.blog-container{
max-width:850px;
width:100%;
}



/* BACK BUTTON */

.back-btn{
display:inline-flex;
align-items:center;
gap:10px;
margin-bottom:35px;
padding:10px 20px;
border-radius:6px;
background:#d4a017;
color:white;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.back-btn i{
font-size:14px;
}

.back-btn:hover{
background:#b38a12;
}



/* ARTICLE */

.blog-main-image{
width:100%;
height:420px;
object-fit:cover;
border-radius:14px;
margin-bottom:35px;
}



/* BLOG BODY */

.blog-body{
font-size:18px;
line-height:1.9;
color:#374151;
}

.blog-body p{
margin:18px 0;
}

.blog-body h2{
margin-top:40px;
font-size:28px;
font-weight:700;
}

.blog-body h3{
margin-top:30px;
font-size:22px;
font-weight:600;
}

.blog-body ul{
margin:15px 0 15px 20px;
}

.blog-body li{
margin-bottom:10px;
}

.blog-body img{
max-width:100%;
border-radius:10px;
margin:25px 0;
}



/* KEY TAKEAWAYS */

.takeaways-box{
margin-top:50px;
padding:30px;
border-radius:12px;
background:linear-gradient(145deg,#1a1a1a,#111111);
color:#e5e7eb;
border:1px solid rgba(255,255,255,0.08);
}

.takeaways-box h3{
color:#d4a017;
margin-bottom:15px;
display:flex;
align-items:center;
gap:10px;
}

.takeaways-box ul{
margin-left:20px;
}

.takeaways-box li{
margin-bottom:10px;
}



/* RELATED BLOGS */

.related-section{
margin-top:80px;
}

.related-heading{
font-size:28px;
margin-bottom:30px;
font-weight:700;
}

.related-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.related-blog{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.3s;
}

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

.related-blog img{
width:100%;
height:160px;
object-fit:cover;
}

.related-content{
padding:15px;
}

.related-content a{
display:block;
font-size:16px;
font-weight:600;
color:#111827;
text-decoration:none;
margin-bottom:6px;
}

.related-content a:hover{
color:#d4a017;
}

.related-content span{
font-size:13px;
color:#6b7280;
}

.no-related{
color:#6b7280;
}



/* RESPONSIVE */

@media(max-width:900px){

.blog-title{
font-size:34px;
}

.blog-main-image{
height:300px;
}

.blog-body{
font-size:16px;
}

.related-heading{
font-size:24px;
}

}