You are given a list of songs, where each song is represented by a unique identifier and has an associated genre. Your task is to implement a function that shuffles the playlist such that no two consecutive songs belong to the same genre.
The function should:
Example structure for a song object:
{
"id": "song1",
"genre": "rock"
}
You can assume that the input contains a mix of genres and that there may be varying counts for each genre. Focus on writing clean, efficient code and include comments where appropriate.
Note: You do not need to worry about multi-threaded environments or persistence; the scope of this exercise is limited to the in-memory reordering of the provided list.