Hide page name only on search page

Hi!
On the advanced search page, it shows “search” on side of the page title.
I was trying to find some page identity to refer to it in CSS to hide that bit but couldn’t find it.
How can I achieve this? I would like to do it ONLY on the advanced search page related to one of the list views (eg. Clients).
Thanks!

You may use Page_Load server event, e.g.

$this->Subheading = " "; // Empty string does not work

It works, thank you!
I’ve used for Subheading and Heading. Tried “Breadcrumbs” and “Breadcrumb” to hide them on that page but with no luck. How should I target it?