{% if editmode %}
<style>
.services .pimcore_editable_block { display: flex; flex-wrap: wrap; width: 100%; justify-content: center; }
.services .pimcore_editable_block .pimcore_block_entry { width: calc(100% / 3); padding: 0 12px; }
.services .services-box { max-width: none; }
</style>
{% endif %}
<div class="services standard-component mb-7">
<h2 class="text-center mb-5">{{ pimcore_input('services-title') }}</h2>
<div class="d-flex flex-column flex-md-row justify-content-md-center gap-4">
{% for i in pimcore_iterate_block(pimcore_block('service-cards', { limit: 3 } )) %}
<div class="services-box border border-bmw-light-60 p-3">
{% include "./partials/_news-card.html.twig" %}
</div>
{% endfor %}
</div>
</div>