.tool-account .tool-account-icon__link{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:6px;
}
.tool-account .tool-account-icon__link .tool-account-icon__label{
    font:500 13px/100% Outfit;
    color:var(--color-quaternary);
}
/* Hover: azul de marca en texto e icono. El SVG usa fill fijo (#21274A),
   por eso hay que teñir explícitamente el <path>. */
.tool-account .tool-account-icon__link .tool-account-icon__label,
.tool-account .tool-account-icon__link svg path { transition: color .2s ease, fill .2s ease; }
.tool-account .tool-account-icon__link:hover,
.tool-account .tool-account-icon__link:focus-visible { color: #1440FF; }
.tool-account .tool-account-icon__link:hover .tool-account-icon__label,
.tool-account .tool-account-icon__link:focus-visible .tool-account-icon__label { color: #1440FF; }
.tool-account .tool-account-icon__link:hover svg path,
.tool-account .tool-account-icon__link:focus-visible svg path { fill: #1440FF; }
