a.interne-link {
    display: flex;
    
    text-decoration: none;
    align-items: center;
    gap: .8125rem;
    transition: all .2s;

    &::before {
        display: flex;
        content: "";
        border-top: 1px solid var(--white);
        width: 1.8125rem;
        transition: all .2s;
    }

    &:hover {
        &::before {
            width: 3.3125rem;
        }
    }
}