Change the link color of #cart_text in the mini cart

Hi I’m struggling to do something pretty basic, we are running a special to get a free pair of socks with purchase. I want this offer to display in the mini cart and have a link in the mini cart to the socks collection. Our cart_text field already has some customisation ( a black background and white text) However when i create a link the link text is black as these are the overall mini cart settings. I would like just the #cart_text link to be blue.

Store is ciovita.co.za (only this store not any of the regional versions)

This is how it looks now

This is how i would like it to look

add css code on your site

.cart_text a {
    color: #3491a6 !important;
    display: block;
}

.cart_text a:hover {
    color: white !important;
}

Hey Tljafar, thanks for getting back to me, that has changed the link hover color, but the actual link text is still black unfortunately.