For the moment, just to solve this quick, Ill use this javascript code to add my class to the div of the related products section:
// Select all elements that have the class ‘target-class’
const elements = document.querySelectorAll(‘.target-class’);
// Loop through each element and add the new class ‘new-class’
elements.forEach(element =>
{ element.classList.add(‘new-class’);
});