.listening-card h4 {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
}

.tracklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.track {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: color-mix(in srgb, var(--soft) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
    border-radius: var(--radius);
    padding: .4rem .6rem;
    box-shadow: var(--shadow);
    transition: transform .1s ease;
}

.track:hover {
    transform: translateY(-2px);
}

.track-cover {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.track-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-title {
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.track-artist {
    margin: 0;
    font-size: .9rem;
    color: var(--muted);
}
