/* Social Links Styles */
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 12px;
    height: 12px;
    fill: var(--e-global-color-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}