It’s time to improve the accessibility of modal dialogs too! Add an event listener that waits when the ESC button is pressed and then runs the same action as the .modal__closeclass:
// close CTA section on the ESC button
document.body.addEventListener('keydown', function (e) {
if (e.key === 'Escape') {
document.querySelector('.modal__close').click();
}
});