/* Masquer la playlist Spotify sur mobile et tablette */
@media (max-width: 768px) {
    .home-spotify-player {
        display: none !important;
    }
}

/* Pour tablettes en mode portrait */
@media (max-width: 1024px) and (orientation: portrait) {
    .home-spotify-player {
        display: none !important;
    }
}

/* Pour petites tablettes */
@media (max-width: 834px) {
    .home-spotify-player {
        display: none !important;
    }
}