/* Custom social icons styling based on Figma design */

.share-section .share-label {
    font-family: "Graphik LCG";
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    color: #000000;
}

.social-icon {
    text-decoration: none;
}

.social-icon .social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-icon .social-circle img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    opacity: 0.64; /* 64% opacity as in Figma design */
}

.social-icon:hover .social-circle {
    background-color: rgba(246, 246, 249, 0.7);
}

.social-icon .social-circle.linkedin-icon {
    position: relative;
}

.social-icon .social-circle.linkedin-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    opacity: 0.64;
} 