.blog-detail{
    background:#fff;
}

.blog-detail-wrapper{
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.blog-detail-header {
    margin-bottom: 15px;
    text-align: left;
}

.category-badge {
    display: inline-block;
    color: var(--primary);
    background-color: var(--primary-light, #e0f0fe); 
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(4, 107, 210, 0.2);
}

.blog-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--slate-dark);
    line-height: 1.2;
    margin: 0;
    word-wrap: break-word;
    word-break: break-word;
}
.blog-detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    justify-content:flex-start;
    margin-bottom:30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    color:var(--slate-light);
    font-size:.9rem;
}

.blog-detail-meta span{
    display:flex;
    align-items:center;
    gap:8px;
}

.blog-detail-meta i{
    color:var(--primary);
}

.blog-detail-image{
    margin-bottom:40px;
    text-align: center;
}

.blog-detail-image img{
    width:100%;
    max-height:550px;
    height:auto;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    display: block;
    object-fit: cover;
}

.blog-detail-content{
    color:var(--slate-body);
    line-height:1.9;
    font-size:1.05rem;
}

.blog-detail-content h2,
.blog-detail-content h3{
    margin-top:45px;
    margin-bottom:18px;
    color:var(--slate-dark);
    clear: both;
}

.blog-detail-content p{
    margin-bottom:22px;
}

.blog-detail-content img{
    max-width:100%;
    max-height:650px;
    width:auto;
    height:auto;
    border-radius:16px;
    margin:35px auto;
    display: block;
    box-shadow:var(--shadow-lg);
}

.blog-detail-content ul,
.blog-detail-content ol{
    margin:20px 0 20px 25px;
}

.blog-detail-content blockquote{
    border-left:4px solid var(--primary);
    padding-left:20px;
    margin:30px 0;
    color:var(--slate-light);
    font-style:italic;
}

.related-posts{
    margin-top:100px;
}

.related-posts h2{
    text-align:center;
    margin-bottom:45px;
}