.social-share {
    margin-top: 15px;
}
.share-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .2s ease;
    overflow: hidden;
}
.share-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.share-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    color: #fff;
}
