How can I hide an empty section in the Dawn theme?

Hi community I’m new here and have one question.

I working with with dawn theme and is some way I added Custom Liquid and added that code which you see in photo, to shoe below the picture description.

Is some way to add code in edit code section to hide this section if I don’t put here any information? Because If I don’t write any description for me show that title Description

Thanks for the help.

Hello Camila123!

Please enter the HTML code below.

{% if product.description != blank %}
 
	

		## Description
		{{ product.description }}
	

 

{% endif %}

@codewiser thanks.