How to have a trigger reference two sensors

I have the below automation which is working fine. However, I would like to make I change I am not sure how to do. I want my trigger to be when the outside temp (current trigger sensor) is below a different temperature sensor (sensor.nursey_temperature). I also only want this to run once a day.

Thank you in advance

alias: Notify - Run House Fan
description: ''
trigger:
  - type: temperature
    platform: device
    device_id: 9c357436b08c967a72740a70e7d4eb50
    entity_id: sensor.home_realfeel_temperature
    domain: sensor
    below: 78
condition:
  - type: is_pm25
    condition: device
    device_id: 38ba373fac66487ee568ce65dbef26d2
    entity_id: sensor.particulate_matter_pm25
    domain: sensor
    below: 20
action:
  - service: notify.mobile_app_iphone_13_pro
    data:
      title: It's cooling down
      message: Time to run the house fan
mode: single

Use a numeric state trigger. https://www.home-assistant.io/docs/automation/trigger/#numeric-state-trigger

trigger:
  - platform: state
    entity_id: sensor.home_realfeel_temperature
    below: sensor.nursey_temperature

For the run once a day condition, there are many examples on the forum. Here’s one: