A classe Div BeautifulSoup retorna em branco

Verifiquei perguntas semelhantes, mas não consegui encontrar uma solução ...

Estou tentando raspar os minutos do tempo extra de viagem (46) na seguinte página:https://www.tomtom.com/en_gb/trafficindex/city/istanbul

Eu tentei por 2 métodos (Xpath & find class), mas ambos dão um retorno vazio.

import requests
from bs4 import BeautifulSoup
from lxml.html import fromstring

page = requests.get("https://www.tomtom.com/en_gb/trafficindex/city/istanbul")
tree = fromstring(page.content)

soup = BeautifulSoup(page.content, 'html.parser')



#print([type(item) for item in list(soup.children)])

html = list(soup.children)[2]

g_data = soup.find_all("div", {"class_": "big.ng-binding"})

congestion = tree.xpath("/html/body/div/div[2]/div[2]/div[2]/section[2]/div/div[2]/div/div[2]/div/div[2]/div[1]/div[1]/text()")
print(congestion)
print(len(g_data))

Estou perdendo algo óbvio?

Muito obrigado por ajudar!

questionAnswers(1)

yourAnswerToTheQuestion