Automation below value for time period trigger not working

I have two triggers based on the exact same entity value.

One triggers when the entity is above a fixed value for a period of time. This one works fine.,

The other one should trigger when the entity is below a fixed value for a period of time. This one does not ever trigger (see below).

I have tried different entities for the below trigger and different values. I have disabled the above trigger just in case.

No below for a time period seems to work. Is there a trick to this or is something not working?

alias: "automate: test"
description: ""
triggers:
  - trigger: numeric_state
    entity_id:
      - sensor.marquette_wind_speed
    for:
      hours: 0
      minutes: 5
      seconds: 0
    below: 1
conditions: []
actions:
  - action: notify.persistent_notification
    metadata: {}
    data:
      message: it worked
mode: single

Hi madtownchris,