diff --git a/src/components/article/ForceBubbles.svelte b/src/components/article/ForceBubbles.svelte
index e166479..3f90a09 100644
--- a/src/components/article/ForceBubbles.svelte
+++ b/src/components/article/ForceBubbles.svelte
@@ -233,6 +233,8 @@
"instagram":"Instagram profiles",
"article":"Articles"
}
+ $: chartTitle = `Sleep training opinions across ${legendText[renderedData[0].type]}`;
+ $: chartDesc = `This bubble chart visualizes the division of opinions on sleep training in ${legendText[renderedData[0].type]}. Each bubble represents a data point, with its size indicating the influence of the opinion. The bubbles are grouped into three clusters based on the position of the data point, whether Advocating, Opposed to or without a position on sleep training.`;
@@ -249,12 +251,10 @@
aria-labelledby="chartTitle chartDesc"
>
- {legendText[renderedData[0].type]} Bubble Chart
+ {chartTitle}
- This bubble chart visualizes {legendText[renderedData[0].type]}.
- Each bubble represents a data point, with its size indicating the value.
- The bubbles are grouped into clusters based on their type.
+ {chartDesc}
{#if nodes}
diff --git a/src/components/article/Map.svelte b/src/components/article/Map.svelte
index f26e44d..d23be67 100644
--- a/src/components/article/Map.svelte
+++ b/src/components/article/Map.svelte
@@ -87,7 +87,14 @@