Categories in sidebar on mobile devices

Is there a way to remove the categories widget in the sidebar when viewing a post on a mobile device?
ensurtec.com/blog

Hello there,

I hope you are doing well today.

You can use the following CSS code to remove the categories widget on mobile by going to Appearance > Customize > Additional CSS and pasting it there.

@media screen and (max-width: 699px) {
div#categories-3 {
display: none;
}
}

Best Regards,
Support