{% if countries|length > 0 %}
<div class="container__header">
<h2 class="container__header-title">
{{ 'Похожие страны'|trans }}
</h2>
</div>
<div class="resort-list__slider-wrapper">
<div class="resort-list__slider swiper-container">
<div class="resort-list__container swiper-wrapper">
{% for country in countries %}
<a class="resort-list__item swiper-slide" href="{{ path('app_country_search', { country: country.slug }) }}" title="{{ country.name }}">
<span class="resort-list__item-photo"
style="background-image: url('{{ country.image }}');">
<span class="resort-list__item-photo-row">
<span class="resort-list__item-photo-name">{{ country.name }}</span>
</span>
</span>
<span class="resort-list__item-info">
{% if country.description is not null %}
<p>
{{ country.description.text|raw }}
</p>
{% endif %}
{% if country.price is not null %}
<span class="resort-list__item-price">
{{ 'Туры от'|trans }} <span>{{ country.price|round|number_format(0, '', ' ') }} {{ market.currency.name }}</span>
</span>
{% endif %}
</span>
</a>
{% endfor %}
</div>
</div>
<div class="swiper-button swiper-button-prev"></div>
<div class="swiper-button swiper-button-next"></div>
</div>
{% endif %}