ADVERTISEMENT

Many Filipino households still one shock from poverty—PIDS

Published Mar 6, 2026 06:00 pm

Despite years of poverty reduction in the Philippines, many households—including a large share of the emerging middle class—remain highly vulnerable to economic shocks that could push them back into poverty, according to the Philippine Institute for Development Studies (PIDS).

In a policy note titled “Escaping Poverty Is Not Enough: Vulnerability, Risk, and the Fragile Middle Class in the Philippines,” published on Thursday, March 5, researchers at the state-run think tank said improvements in income poverty have not fully translated into lasting economic security for many Filipino families.

“Poverty reduction alone does not guarantee economic security... Many Filipinos who have exited poverty remain highly exposed to shocks and face a substantial risk of falling back into deprivation,” said PIDS supervising research specialist Deanne Lorraine D. Cabalfin, senior research fellow Jose Ramon G. Albert, and research analyst Mohammad A. Mahmoud.

PIDS noted that the Philippines has posted significant progress in reducing poverty over the past two decades, driven by economic growth and expanded social protection programs such as the government’s conditional cash transfer program.

While official poverty incidence declined steadily before the Covid-19 pandemic and stood at 15.5 percent in 2023 after rising temporarily during the health crisis, PIDS emphasized that many households remain clustered just above the poverty line, frequently moving in and out of poverty as economic conditions change.

“Empirical analysis... shows that a substantial share of poverty in the Philippines is transient rather than chronic, with many households clustering just above or below the poverty line and frequently crossing it over time,” the report said.

The think tank said this pattern—often described as “poverty churning”—means that improvements in household welfare are often fragile and reversible.

According to the PIDS study, vulnerability to poverty extends well beyond those currently classified as poor.

It cited that in 2023, nearly one-third of Filipino households were considered vulnerable, meaning they face a significant probability of falling into poverty in the future. Even among nonpoor households, close to one-quarter were found to be vulnerable, highlighting how economic insecurity affects a broader segment of the population.

The study found that vulnerability is especially pronounced among households just above the poverty line, many of whom form part of the country’s emerging middle class. These households often lack sufficient financial buffers to withstand disruptions such as illness, job loss, price spikes, or natural disasters.

PIDS researchers identified several structural factors that make Filipino households susceptible to falling back into poverty.

Among the most significant is widespread labor market informality, which leaves many workers without stable contracts or access to benefits such as health insurance and pensions.

Health-related shocks also remain a major risk, as out-of-pocket medical expenses can quickly erode household savings.

At the same time, the Philippines’ high exposure to typhoons, floods, and other natural disasters further compounds vulnerability, particularly for low-income and near-poor households.

Limited asset accumulation among families transitioning out of poverty also leaves them with little cushion against sudden economic setbacks, according to PIDS.

Given these risks, the PIDS researchers said sustaining poverty reduction and building a stable middle class will require policies that directly address household vulnerability.

These include strengthening shock-responsive social protection systems, expanding social insurance coverage—especially for informal workers—and supporting households as they transition out of poverty.

The report also emphasized the importance of improving livelihoods and creating more stable employment opportunities to reduce income volatility.

Ultimately, the authors argued that economic progress cannot rely solely on lifting households above the poverty line.

“The Philippines has made significant progress in reducing poverty amid historical growth in recent years, but vulnerability remains widespread,” the report said.

“Many households—including a large share of the emerging middle class—are just one shock away from poverty.”

For PIDS, durable development gains will depend on policies that address risk and protect households facing economic uncertainty.

“Escaping poverty is not enough,” the authors wrote. “Building a resilient middle class requires policies that explicitly confront risks, protect households in transition, and ensure that progress is durable rather than fragile.”

ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.