{% comment %} Inner text-only block of a page header — eyebrow + title + subtitle. Use when a page needs the standard header chrome but with custom CTAs / widgets that don't fit page_header.html's single-cta slot. Wrap this in your own flex container, e.g.:
{% include "components/page_header_text.html" with eyebrow="…" title="…" subtitle="…" %}
…custom CTAs…
Params: eyebrow — optional uppercase kicker above the title title — required h1 text subtitle — optional supporting paragraph size — "lg" → text-3xl, otherwise text-2xl with_glyph — show the ◆ glyph next to eyebrow (default True) {% endcomment %}
{% if eyebrow %}

{% if with_glyph|default_if_none:True %} {% endif %}{{ eyebrow }}

{% endif %}

{{ title }}

{% if subtitle %}

{{ subtitle }}

{% endif %}