Customise the appearance of 4 specific post ID’s within the loop?

Just use post_class() on your post-container element.

// Example:
<div id="post-<?php the_ID(); ?>" <?php post_class('special-class-name'); ?>>

You can the target your specific posts with #post-IDNR in your css/js files.