Enlarge The Product Images In My Search Results

My site serch results, speacially on mobile images are very small, im ussing not official shopify theme, but maybe someone can help me to edit it?

{% assign grid_results = false %}

{% assign respond_js_secret_key = shop.domain | md5 %}
{% unless search.terms == respond_js_secret_key %}

{% if search.performed %}

{% paginate search.results by 10 %}

{% if search.results_count == 0 %}

{{ 'general.search.no_results_html' | t: terms: search.terms }}

{% include 'search-bar' %}

{% else %}

{{ 'general.search.results_for_html' | t: terms: search.terms }}

{% include 'search-bar' %}

{% comment %}
Each result template, based on the grid_layout variable above
{% endcomment %}
{% if grid_results == false %}

{% for item in search.results %}
{% include ‘search-result’ %}
{% endfor %}

{% else %}

{% for item in search.results %} {% include 'search-result-grid' %} {% endfor %}

{% endif %}

{% endif %}

{% if paginate.pages > 1 %}

{% include 'pagination-custom' %}
{% endif %}

{% endpaginate %}

{% else %}

{% comment %}
If search.performed is false, someone either accessed the page without
the q parameter, or it was blank.
Be sure to show a search form here, along with anything else you want to showcase.
{% endcomment %}

{{ 'general.search.title' | t }}

{% include 'search-bar' %}

{% endif %}

{% else %}
{% include ‘respond’ %}
{% layout none %}
{% endunless %}