{% set title = _args.title|default('—') %}
{% set subtitle = _args.subtitle|default(null) %}
{% set action = _args.action|default(null) %}
{% set content = _args.content %}
<span class="h1 mb-0 text-medium d-block">{{- title -}}</span>
{% if subtitle is not empty %}
<span class="d-block text-semibold">
{{ subtitle }}
{% if action is not empty %}
<a class="text-medium font-14 text-body text-underline" href="{{- action.link|default('#') -}}">
{{- action.text -}}
</a>
{% endif %}
</span>
{% endif %}
{% if content is not empty %}
<span class="font-13 text-medium">
{{- content -}}
</span>
{% endif %}