.news-meta{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
border-bottom:1px solid #eee;
padding-bottom:12px;
margin-bottom:20px;
}

.news-meta-left{
display:flex;
align-items:center;
gap:12px;
}

.news-avatar img{
width:42px;
height:42px;
border-radius:50%;
}

.news-author{
font-weight:600;
font-size:15px;
}

.news-time{
font-size:13px;
color:#666;
display:flex;
gap:10px;
flex-wrap:wrap;
}

.news-meta-right{
display:flex;
gap:8px;
flex-wrap:wrap;
margin-top: 20px;
}

.news-btn{
font-size:13px;
padding:6px 10px;
border-radius:4px;
border:none;
background:#f1f1f1;
cursor:pointer;
text-decoration:none;
}

.news-btn.fb{background:#1877f2;color:#fff;}
.news-btn.tw{background:#000;color:#fff;}
.news-btn.wa{background:#25D366;color:#fff;}

.news-toast{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#333;
color:#fff;
padding:10px 18px;
border-radius:6px;
opacity:0;
transition:0.3s;
z-index:9999;
}

.news-toast.show{
opacity:1;
}