The range must be within it's own 'clause' within the array so I don't believe either of those will work.
This works:
{
"query": {
"bool": {
"must": [
{
"multi_match": {
"query": "star",
"fields": [
"original_title^2",
"overview",
"tagline"
]
}
},
{
"range": {
"vote_average": {
"gt": 7
}
}
}
]
}
}
}