After understanding your goal, I apologize for not aligning my initial solution with it. However, the specifics were not outlined in your original query. The issue was resolved by adding position:relative;
and making a few adjustments to the code. The section of code within the @media selector now appears as follows:
.sports-title {
white-space: nowrap;
overflow: hidden !important;
text-overflow:ellipsis;
max-width:100px;
position:relative;
left: 5px;
}
I hope this modification addresses your needs.