diff --git a/src/components/Maps.vue b/src/components/Maps.vue
index 13c4ad75612e36128d802c6c97ab65fe583498e7..dff9b3be5e11f063dc3ab8ffc4f8341182693968 100644
--- a/src/components/Maps.vue
+++ b/src/components/Maps.vue
@@ -11,30 +11,35 @@
         <div class="panel households-panel">
           <p v-html="mapText.paragraph1"></p>
           <img src="@/assets/images/tot_households_2022.png" alt="Choropleth map of total households in the contiguous United States aggregated at the county level where counties with the greatest total households in dark blue include Los Angeles County, California (3,363,093), Harris County, Texas (1,692,896) and  Maricopa County, Arizona (1,665,560). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <figcaption>County chloropleth map of contiguous U.S. displaying total households, using 2022 U.S. Census Bureau data, where counties with the greatest total households, in dark blue, include Los Angeles County, California (3,363,093), Harris County, Texas (1,692,896) and  Maricopa County, Arizona (1,665,560).</figcaption>
         </div>
 
         <button class="accordion latino-accordion">Hispanic populations<span class="symbol">+</span></button>
         <div class="panel">
           <p v-html="mapText.paragraph4"></p>
           <img src="@/assets/images/perc_hispanic_census_2022.png" alt="Choropleth map of percent of Hispanic or Latino in the contiguous United States aggregated at the county level where counties with the greatest percent Hispanic or Latino in dark blue include Kenedy County, Texas (96.6%), Starr County, Texas (96.2%) and Webb County, Texas (95.4%). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <figcaption>County chloropleth map of contiguous U.S. displaying percent of Hispanic populations, using 2022 U.S. Census Bureau data, where counties with the greatest percent Hispanics, in dark blue, include Kenedy County, Texas (96.6%), Starr County, Texas (96.2%) and Webb County, Texas (95.4%).</figcaption>
         </div>
 
         <button class="accordion disability-accordion">Disabled populations<span class="symbol">+</span></button>
         <div class="panel">
           <p v-html="mapText.paragraph5"></p>
-          <img src="@/assets/images/perc_disabled_census_2022.png" alt="Choropleth map of percent with a disability of total civilian noninstitutionalized population in the contiguous United States aggregated at the county level where counties with the greatest percent disable in dark blue include Catron County, New Mexico (41.2%), Mora County, New Mexico (34%) and Kinney County, Texas (34%). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <img src="@/assets/images/perc_disabled_census_2022.png" alt="Choropleth map of percent with a disability of total civilian noninstitutionalized population in the contiguous United States aggregated at the county level where counties with the greatest percent disabled in dark blue include Catron County, New Mexico (41%), Mora County, New Mexico (34%) and Kinney County, Texas (34%). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <figcaption>County chloropleth map of contiguous U.S. displaying percent with a disability of total civilian noninstitutionalized populations, using 2022 U.S. Census Bureau data, where counties with the greatest percent disabled, in dark blue, include Catron County, New Mexico (41%), Mora County, New Mexico (34%) and Kinney County, Texas (34%).</figcaption>
         </div>
 
         <button class="accordion income-accordion">Income inequalities<span class="symbol">+</span></button>
         <div class="panel">
           <p v-html="mapText.paragraph2"></p>
           <img src="@/assets/images/med_income_census_2022.png" alt="Choropleth map of median household income in the past 12 months (in 2022 inflation-adjusted dollars) in the contiguous United States aggregated at the county level where counties with the greatest median household income in dark blue include Santa Clara County, California (153,792), San Mateo County, California (149,907) and Marin County, California (142,019). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <figcaption>County chloropleth map of contiguous U.S. displaying median household income in the past 12 months (in 2022 inflation-adjusted dollars), using 2022 U.S. Census Bureau data, where counties with the greatest meidan household, in dark blue, include Santa Clara County, California (153,792), San Mateo County, California (149,907) and Marin County, California (142,019).</figcaption>
         </div>
 
         <button class="accordion renters-accordion">Renter disparities<span class="symbol">+</span></button>
         <div class="panel">
           <p v-html="mapText.paragraph3"></p>
           <img src="@/assets/images/median_rent_2022.png" alt="Choropleth map of median gross rent in the contiguous United States aggregated at the county level where counties with the greatest median gross rent in dark blue include San Mateo County, California (2,805), Santa Clara County, California (2,719) and Marin County, California (2,487). Data provided by 2022 American Community Survey, U.S. Census Bureau.">
+          <figcaption>County chloropleth map of contiguous U.S. displaying median gross rent, using 2022 U.S. Census Bureau data, where counties with the greatest meidan gross rent, in dark blue, include San Mateo County, California (2,805), Santa Clara County, California (2,719) and Marin County, California (2,487).</figcaption>
         </div>
 
         <button class="accordion health-accordion">Health case study<span class="symbol">+</span></button>
@@ -183,4 +188,17 @@ onMounted(() => {
   font-size: 32px;
   font-weight: bold;
 }
+
+figcaption {
+  background-color: white;
+  color: black;
+  padding: 16px;
+  width: 100%;
+  text-align: left;
+  line-height: 1.2;
+  font-size: 2 rem;
+  font-family: 'Source Sans Pro', sans-serif;
+  margin-top: 8px;
+}
+
 </style>