/* ─────────────────────────────────────────────────────────────────
   Spotify Iframe — Styles UNPOP
   ───────────────────────────────────────────────────────────────── */

.unpop-spotify-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.unpop-spotify-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.unpop-spotify-iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ─── Glow au survol (orange subtil) ─────────────────────────── */
.unpop-spotify-container.has-hover-glow .unpop-spotify-wrapper:hover {
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.4),
                0 4px 12px rgba(251, 146, 60, 0.15) !important;
}

/* ─── Responsif ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .unpop-spotify-container {
        padding: 0 10px;
    }

    .unpop-spotify-wrapper {
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .unpop-spotify-wrapper {
        border-radius: 4px;
    }
}

/* ─── Animation entrée (fade-in lazy load) ──────────────────── */
@keyframes unpop-spotify-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.unpop-spotify-iframe {
    animation: unpop-spotify-fade-in 0.6s ease-in-out;
}
