JSFiddle - React, Tailwind, and code Playground

HTML

<div class="item">
  <a href="url">
    <img src="http://artgorbunov.ru/burosfera/images/content/150x90/c1/c19af87b60c14ba61514afc73fea78d3">
  </a>
  <div class="text">
    Вот так <a href="url">ссылка</a>
  </div>
</div>

CSS

a {
    color: blue;
}
a:hover {
    color: red;
}
.item a:hover + .text a{
    color: red;
}