How to place HTML below the title of the (custom) post overview

I kind of feel like I’m missing something obvious, but maybe I’m not. What about the admin_notices hook, seems like the obvious choice to me. There are some admin CSS classes available you can use, like updated, error or update-nag, or you can of course add your own styles, like asked and answered here or here.

Code:

<?php
function my_cpt_info() {
    if ('edit-my_cpt' === get_current_screen()->id) {
        ?>
        <div class="updated">
            <p>
                <?php _e('Some information about my CPT...', 'my-text-domain'); ?>
            </p>
        </div>
        <?php
    }
} // function my_cpt_info
add_action('admin_notices', 'my_cpt_info');
?>