{% sw_extends '@Storefront/storefront/page/content/detail.html.twig' %}
{% block page_content_section %}
<div class="cms-section {{ sectionClasses|join(' ') }}"
style="{% if sectionBgColor %}background-color: {{ sectionBgColor }};{% endif %}">
{% if section.backgroundMedia %}
<style>
.hero-tiles-media-section-{{ section.id }} img {
position: absolute;
pointer-events: none;
width: 100%;
height: 100%;
z-index: -1;
object-fit: cover;
}
</style>
{% sw_include "@Storefront/storefront/component/cms-hero-tiles-media/image.html.twig" with {
media: section.backgroundMedia,
classes: "hero-tiles-media-section-" ~ section.id
} %}
{% endif %}
{% sw_include "@Storefront/storefront/section/cms-section-" ~ section.type ~ ".html.twig" %}
</div>
{% endblock %}