{# event-list override — cream event cards / rows on paper; terracotta dates, moss titles. Fields mirror builtin: heading, intro, layout, events[].past/.media/.datetime/.start/.end/.timezone/.title/.venue/.description/.link/.linkLabel, hidePast. Wiring preserved. #}
{% if heading %}

{{ heading }}

{% endif %} {% if intro %}

{{ intro }}

{% endif %} {% if layout == "cards" %}
{% for event in events %}{% if not (hidePast and event.past) %}
{% if event.media %}
{% img event.media alt=event.title class="h-full w-full object-cover" %}
{% endif %}
{{ event.start }}{% if event.end %} – {{ event.end }}{% endif %}{% if event.timezone %} {{ event.timezone }}{% endif %}

{{ event.title }}

{% if event.venue %}

{{ event.venue }}

{% endif %} {% if event.description %}

{{ event.description }}

{% endif %} {% if event.link %}{{ event.linkLabel|default:"Details" }}{% endif %}
{% endif %}{% endfor %}
{% else %} {% endif %}