{% from "macros/report_purpose.html" import report_purpose %}
{% block header %}
{{ kicker }}
{{ headline }}
{% if dek %}
{{ dek }}
{% endif %}
{% if windows %}
Comparison window
{{ windows.current | window_fmt }}
vs {{ windows.baseline | window_fmt }}
{% endif %}
{% endblock %}
{# Hero takeaway slot — the report's primary visual (e.g. score gauge).
Sits between the header and the purpose strip so the reader sees the
number, then reads the legend that decodes it. Reports without a hero
visual leave this block empty. #}
{% block hero %}{% endblock %}
{% block purpose_strip %}
{% if purpose %}{{ report_purpose(purpose, palette) }}{% endif %}
{% endblock %}
{% block content %}{% endblock %}