Transaction log VLFs do not expire, they get cleared after a Log backup. So the setting in retention of 72 hours will not make a difference of whether the VLFs clear to 0 instead of 2 on status.
You may need to issue a CHECKPOINT in your database and then see if that clears the status to 0, then you can shrink the log file.
Log backups are the only way to clear the status. The other way is to clear the log, is to change the Recovery Model to SIMPLE, but then to get FULL back you would need to change it to FULL and do a FULL Backup so that you establish the FULL recovery model. (This is not the way I would recommend for other reasons, so use this as a last resort, be patient for the log to clear after the log backups)
But if there is an open transaction at the end of the log, then it will not clear that VLF, so you basically have to wait for the transactions to wrap around to the front of the log and after the next log backup if there are no open transactions left in the end of the log then it will clear.