.related-posts{
    margin-top:50px;
}

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

.related-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

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

.related-card h3{
    padding:15px;
    font-size:18px;
    line-height:1.5;
}

.related-card h3 a{
    color:#222;
    text-decoration:none;
}

.related-card h3 a:hover{
    color:#d60000;
}

@media(max-width:992px){
    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .related-grid{
        grid-template-columns:1fr;
        
        .breadcrumb{
margin:20px 0;
font-size:14px;
color:#666;
}

.breadcrumb a{
color:#d60000;
text-decoration:none;
}

.entry-meta{
margin:15px 0;
color:#666;
display:flex;
gap:10px;
flex-wrap:wrap;
}
    }
}

.author-box{
display:flex;
gap:20px;
align-items:center;
padding:25px;
margin:40px 0;
background:#fff;
border:1px solid #eee;
border-radius:10px;
}

.author-avatar img{
border-radius:50%;
}

.author-info{
flex:1;
}

.author-info h3{
margin-bottom:10px;
font-size:24px;
}

.author-info p{
margin-bottom:15px;
line-height:1.7;
color:#555;
}

.author-link{
display:inline-block;
padding:8px 16px;
background:#d60000;
color:#fff;
text-decoration:none;
border-radius:6px;
}

.author-link:hover{
background:#b50000;
}

@media(max-width:768px){

.author-box{
flex-direction:column;
text-align:center;
}

}

.social-share{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:10px;
margin:30px 0;
}

.social-share span{
font-weight:700;
}

.social-share a{
padding:8px 15px;
border-radius:5px;
color:#fff;
text-decoration:none;
font-size:14px;
}

.facebook{
background:#1877F2;
}

.x{
background:#000;
}

.whatsapp{
background:#25D366;
}

.telegram{
background:#0088cc;
}