/* lite-spotify — click-to-load Spotify embed.
 * Shows a placeholder button; injects the iframe only on user interaction.
 * Prevents third-party cookies from loading until consent. */

.lite-spotify {
    position: relative;
    width: 100%;
    height: 232px;
    background: #282828;
    border-radius: 12px;
    overflow: hidden;
    contain: layout;
}

.lite-spotify iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    background: #282828;
}

.lite-spotify-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    border: none;
    background: #282828;
    color: #1db954;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: background 0.2s;
    border-radius: 12px;
}

.lite-spotify-btn:hover {
    background: #333;
}

.lite-spotify-btn span {
    color: #fff;
    font-weight: 500;
}
