
/* -----  1. ОБЩИЙ СТИЛЬ  ----- */
/*  По умолчанию ссылки/пункты меню подчёркнуты */
a.menu,
.menu a,
.menu{                       /* захватываем и сам .menu, и , и  внутри .menu */
  text-decoration: underline !important;
  text-underline-offset: 2px;   /* чуть отодвигаем линию от текста, необязательно */
  transition: text-decoration .15s ease;
}

/* -----  2. ХОВЕР / ФОКУС  ----- */
a.menu:hover,
.menu a:hover,
.menu:hover,
a.menu:focus,
.menu a:focus,
.menu:focus{
  text-decoration: none !important;
}

