.news-share{
    margin:40px 0;
    padding:24px 0;
    border-top:1px solid #e9ecef;
}

.share-heading{
    font-size:20px;
    font-weight:700;
    margin-bottom:18px;
    color:#1f2937;
}

.share-icons{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.share-btn{
    width:52px;
    height:52px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    border:none;

    color:#fff;
    text-decoration:none;

    font-size:20px;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(0,0,0,.08);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;

    position:relative;
}

.share-btn:hover{

    transform:translateY(-5px) scale(1.08);

    box-shadow:0 10px 24px rgba(0,0,0,.18);

    filter:brightness(1.05);
    
    text-decoration: none;

}

.share-btn:active{

    transform:scale(.95);

}

.share-btn i{

    transition:transform .25s;

}

.share-btn:hover i{

    transform:scale(1.15);

}
.whatsapp{
    background:#25D366;
}

.facebook{
    background:#1877F2;
}

.twitter{
    background:#000;
}

.telegram{
    background:#229ED9;
}

.linkedin{
    background:#0A66C2;
}

.copy-link{
    background:#6b7280;
}

.native-share{
    background:linear-gradient(135deg,#ff6a00,#ff3d00);
}