{% set title = _args.title %}
{% set subtitle = _args.subtitle|default(null) %}
{% set details = _args.details|default([]) %}
{% if not details is iterable %}
{% set details = [details] %}
{% endif %}
<div class="blocklist__cell blocklist_title">
<label class="blocklist__label">
{{ title }}
{% if subtitle %}
<sub>{{ subtitle }}</sub>
{% endif %}
</label>
{% if details %}
<ul class="blocklist__text clear__list">
{% for detail in details %}
<li class="text-semibold">
{{- detail -}}
</li>
{% endfor %}
</ul>
{% endif %}
</div>