.share-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.share-label {
    font-weight: 600;
}

.share-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f2f2;
    transition: all 0.3s ease;
}

.share-icon svg {
    width: 18px;
    height: 18px;
    fill: #333;
}

.share-icon:hover {
    transform: translateY(-3px);
}

.share-icon.facebook:hover { background: #1877f2; }
.share-icon.twitter:hover { background: #000; }
.share-icon.linkedin:hover { background: #0a66c2; }
.share-icon.instagram:hover {
    background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}

.share-icon:hover svg {
    fill: #fff;
}
