.spotify-placeholder {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 80px;
    border-radius: 12px;
    background-color: #121212;
    color: white;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
    margin: 0 auto 2rem auto;
    min-height: 80px;
}

.spotify-placeholder:hover {
    background-color: #1db954;
}

.spotify-placeholder.loaded .spotify-embed {
    opacity: 1;
}

.spotify-content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 1rem;
    overflow: hidden;
}

.spotify-cover {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    flex-shrink: 0;
}

.spotify-text {
    flex-grow: 1;
    overflow: hidden;
}

.spotify-title {
    font-size: 0.95rem;
    font-weight: bold;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: white;
}

.spotify-subtitle {
    font-size: 0.8rem;
    margin: 0.25rem 0 0;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spotify-logo {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.spotify-logo svg,
.spotify-logo img {
    width: 28px;
    height: 28px;
    display: block;
    fill: white;
}

.spotify-embed-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.spotify-embed {
    width: 100%;
    height: 80px;
    border: none;
    border-radius: 12px;
    display: block;
    margin: 0 auto 2rem auto;
    z-index:10;
}

.spotify-embed-blog {
    top: 0;
    left: 0;
    width: 100%;
    height: 80px !important;
    border: none;
    border-radius: 12px;
    z-index: 10;
}