/* 1. Hide the mobile link by default (for Desktop) */
.mobile-only { 
    display: none !important; 
}

/* 2. Show the desktop link by default */
.desktop-only { 
    display: inline-block; 
}

/* 3. The Switch for Mobile/Shrunk Screens */
@media only screen and (max-width: 768px) {
    .desktop-only { 
        display: none !important; 
    }
    .mobile-only { 
        display: inline-block !important; 
    }
}