{"id":944,"date":"2026-07-16T07:09:56","date_gmt":"2026-07-16T07:09:56","guid":{"rendered":"https:\/\/samutsari.org\/iteration1\/?page_id=944"},"modified":"2026-09-06T21:08:03","modified_gmt":"2026-09-06T21:08:03","slug":"home","status":"publish","type":"page","link":"https:\/\/samutsari.org\/iteration1\/","title":{"rendered":"Home"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-page\" data-elementor-id=\"944\" class=\"elementor elementor-944\">\n\t\t\t\t<div class=\"elementor-element elementor-element-72ba939 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-parent\" data-id=\"72ba939\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-b978ece e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"b978ece\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-35e5de2 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"35e5de2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-6b46f60 elementor-widget elementor-widget-spacer\" data-id=\"6b46f60\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3255415 continuous-slide-image elementor-widget elementor-widget-image\" data-id=\"3255415\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"1634\" height=\"364\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo.png\" class=\"attachment-full size-full wp-image-12\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo.png 1634w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo-300x67.png 300w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo-1024x228.png 1024w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo-768x171.png 768w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/03\/samutsari-logo-1536x342.png 1536w\" sizes=\"auto, (max-width: 1634px) 100vw, 1634px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-52042be elementor-widget elementor-widget-html\" data-id=\"52042be\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"html.default\">\n\t\t\t\t\t<style>\n.continuous-slide-image {\n    will-change: transform;\n    \/* Clean transition tracking for both position and size changes *\/\n    transition: transform 0.05s linear; \n}\n.elementor-widget, .elementor-widget-container {\n    overflow: visible !important;\n}\n<\/style>\n\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function () {\n    const targetImage = document.querySelector('.continuous-slide-image');\n    if (!targetImage) return;\n\n    window.addEventListener('scroll', function () {\n        let scrollTop = window.scrollY || document.documentElement.scrollTop;\n        let windowWidth = window.innerWidth;\n\n        \/\/ ========================================================\n        \/\/ RESPONSIVE CONFIGURATION: SIZES ADJUST BASED ON SCREEN\n        \/\/ ========================================================\n        let startMovingAt, lockPoint, speedFactor, minScale;\n        let startScale = 1.0; \n\n        if (windowWidth > 1024) {\n            \/\/ DESKTOP CONFIGURATION\n            startMovingAt = 250;   \n            lockPoint = 860;     \n            speedFactor = 1.35;    \n            minScale = 0.60;       \n        } else if (windowWidth <= 1024 && windowWidth >= 768) {\n            \/\/ TABLET CONFIGURATION\n            startMovingAt = 150;   \/\/ Starts earlier on smaller screens\n            lockPoint = 500;     \/\/ Stops earlier\n            speedFactor = 1.5;     \/\/ Slower speed to match shorter page height\n            minScale = 0.70;       \/\/ Shrinks less so it stays legible\n        } else {\n            \/\/ MOBILE CONFIGURATION (Optional: set minScale to 1.0 if you want to turn off shrinking entirely)\n            startMovingAt = 70;    \n            lockPoint = 230;     \n            speedFactor = 1.8;     \n            minScale = 1;       \n        }\n\n        \/\/ Calculate total scroll span of the animation zone\n        let totalScrollSpan = lockPoint - startMovingAt;\n\n        \/\/ 1. Before animation starts: keep at original size and position\n        if (scrollTop < startMovingAt) {\n            targetImage.style.transform = `translateY(0px) scale(${startScale})`;\n        } \n        \n        \/\/ 2. Active Shrink & Slide Zone\n        else if (scrollTop >= startMovingAt && scrollTop <= lockPoint) {\n            let relativeScroll = scrollTop - startMovingAt;\n            \n            \/\/ Calculate distance\n            let slideDistance = relativeScroll * speedFactor;\n            \n            \/\/ Calculate shrinking scale (progresses from 1.0 down to your minScale)\n            let progress = relativeScroll \/ totalScrollSpan;\n            let currentScale = startScale - (progress * (startScale - minScale));\n            \n            \/\/ Apply both transforms together\n            targetImage.style.transform = `translateY(${slideDistance}px) scale(${currentScale})`;\n        } \n        \n        \/\/ 3. Lock Zone: Freeze at final position and smallest size\n        else if (scrollTop > lockPoint) {\n            let maxSlideDistance = totalScrollSpan * speedFactor;\n            \n            targetImage.style.transform = `translateY(${maxSlideDistance}px) scale(${minScale})`;\n        }\n    });\n});\n<\/script>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-cddd3f2 e-con-full my-second-container e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"cddd3f2\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-897bfba elementor-widget elementor-widget-spacer\" data-id=\"897bfba\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8580f5e elementor-widget elementor-widget-heading\" data-id=\"8580f5e\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">What is<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-e366db5 elementor-widget elementor-widget-spacer\" data-id=\"e366db5\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1d719ff elementor-hidden-mobile e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1d719ff\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-aeea126 e-con-full marquee-preload e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"aeea126\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6965eef e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"6965eef\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"1763396\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;1763396&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-1763396 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"1763396\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-1763396\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-1763396\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-1763396\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"32b9eab\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;32b9eab&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-32b9eab e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"32b9eab\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-32b9eab\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-32b9eab\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-32b9eab\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys are one of the Philippines' greatest examples of maximalism.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"ddd6360\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;ddd6360&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-ddd6360 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"ddd6360\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-ddd6360\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-ddd6360\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-ddd6360\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tThe Black Nazarene is a symbol of Filipino resilience and sentimentality.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"0fbed7d\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;0fbed7d&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-0fbed7d e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"0fbed7d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-0fbed7d\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-0fbed7d\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-0fbed7d\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCollectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"2bd0aa3\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;2bd0aa3&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-2bd0aa3 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"2bd0aa3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-2bd0aa3\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-2bd0aa3\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-2bd0aa3\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tTracing back to our Spanish roots, parols are Filipino's maximalist way of celebrating Christmas!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-062fba9 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"062fba9\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"7ede934\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;7ede934&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-7ede934 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"7ede934\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-7ede934\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-7ede934\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-7ede934\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo's roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"25ba767\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;25ba767&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-25ba767 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"25ba767\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-25ba767\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-25ba767\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-25ba767\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys were originally made from recycled parts from WW2, transforming pieces from our struggles into transportation.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"40949d2\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;40949d2&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-40949d2 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"40949d2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-40949d2\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-40949d2\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-40949d2\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCreated four centuries ago, the Black Nazarene has survived all kinds of disasters, yet we Filipinos still treasure its importance, despite the damage.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"74f09e1\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;74f09e1&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-74f09e1 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"74f09e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-74f09e1\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-74f09e1\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-74f09e1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tFigurines, magnets and food supplies are some of the most commonly collected items in Filipino households.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"c932ed5\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;c932ed5&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-c932ed5 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"c932ed5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-c932ed5\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-c932ed5\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-c932ed5\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tParols were created in 1908 to light the way during the Simbang Gabi!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bf049ce e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"bf049ce\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"c60a64d\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;c60a64d&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-c60a64d e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"c60a64d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-c60a64d\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-c60a64d\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-c60a64d\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, halo-halo is a Filipino icon, as a representation of our creativity and affinity for sweets.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"77d5b41\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;77d5b41&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-77d5b41 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"77d5b41\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-77d5b41\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-77d5b41\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-77d5b41\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, there are over 240,000 jeepneys in the Philippines, with each decorated and customized in their own \t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"4257ee2\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;4257ee2&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-4257ee2 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"4257ee2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-4257ee2\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-4257ee2\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-4257ee2\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNowadays, Filipinos keep miniature replicas of the Black Nazarene to commemorate it, while thousands still participate in the Traslaci\u00f3n.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"b9608ce\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;b9608ce&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-b9608ce e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"b9608ce\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-b9608ce\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-b9608ce\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-b9608ce\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tEach collection of items in a Filipino household represents their history, their interests and who they are, in a simple, tangible way.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"9307878\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;9307878&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-9307878 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"9307878\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-9307878\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-9307878\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-9307878\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNow, parols are a common sight in the holiday season, using LEDs and motors to light up the holidays!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c5d32b4 elementor-widget__width-initial elementor-widget elementor-widget-text-editor\" data-id=\"c5d32b4\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><strong>Samu&#8217;t Sari<\/strong> is our love letter to <strong>Filipino Maximalism<\/strong>, or the cultural trait to maximalize everything in our lives, from the way our furniture is arranged to the keepsakes we hold on to so sentimentally.<\/p><p><span class=\"a_GcMg font-feature-liga-off font-feature-clig-off font-feature-calt-off text-decoration-none text-strikethrough-none\">Samu\u2019t Sari is dedicated to the celebration of Filipino Maximalism, and to our sentimentality, ingenuity, and natural creativity. Taking our name from the Filipino phrase &#8216;<strong>samot-sari<\/strong>,&#8217; or \u2018a diverse array of items,\u2019 Samu\u2019t Sari embraces its namesake by incorporating a wide array of multimedia outputs to introduce you to the wonderful mindset of Filipino Maximalism.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-374ceda elementor-widget elementor-widget-spacer\" data-id=\"374ceda\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-90ae431 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"90ae431\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-b0b5b82 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"b0b5b82\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ae4d64c elementor-widget elementor-widget-heading\" data-id=\"ae4d64c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Watch the SamutSari Documentary!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0fb2e1c elementor-widget elementor-widget-text-editor\" data-id=\"0fb2e1c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p>Want to learn about Filipino Maximalism? Our documentary is the best place to start! With engaging interviews with experts and real-life maximalists, we&#8217;ll explain all you need to know about this side of Filipino culture.<\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-31eba22 elementor-widget elementor-widget-button\" data-id=\"31eba22\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm elementor-animation-grow\" href=\"https:\/\/samutsari.org\/iteration1\/documentary\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Click Here!<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-39ffca1 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"39ffca1\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-d6fb265 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"d6fb265\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-76fc129 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"76fc129\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-bdd5760 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"bdd5760\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7971392 e-con-full elementor-hidden-mobile e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"7971392\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-331a24c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"331a24c\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3bf3fda e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"3bf3fda\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8049e5d elementor-widget elementor-widget-spacer\" data-id=\"8049e5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-b16666f e-con-full elementor-hidden-mobile e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"b16666f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-26ed480 e-con-full marquee-preload e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"26ed480\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-00d3742 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"00d3742\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"d72e4b3\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;d72e4b3&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-d72e4b3 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"d72e4b3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-d72e4b3\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-d72e4b3\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-d72e4b3\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"f1e16ed\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;f1e16ed&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-f1e16ed e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"f1e16ed\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-f1e16ed\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-f1e16ed\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-f1e16ed\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys are one of the Philippines' greatest examples of maximalism.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"7ed94f5\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;7ed94f5&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-7ed94f5 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"7ed94f5\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-7ed94f5\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-7ed94f5\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-7ed94f5\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tThe Black Nazarene is a symbol of Filipino resilience and sentimentality.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"1a47077\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;1a47077&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-1a47077 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"1a47077\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-1a47077\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-1a47077\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-1a47077\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCollectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"31b421f\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;31b421f&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-31b421f e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"31b421f\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-31b421f\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-31b421f\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-31b421f\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tTracing back to our Spanish roots, parols are Filipino's maximalist way of celebrating Christmas!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-db330f4 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"db330f4\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"a8ce991\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;a8ce991&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-a8ce991 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"a8ce991\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-a8ce991\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-a8ce991\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-a8ce991\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo's roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"712632c\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;712632c&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-712632c e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"712632c\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-712632c\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-712632c\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-712632c\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys were originally made from recycled parts from WW2, transforming pieces from our struggles into transportation.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"5667eba\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;5667eba&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-5667eba e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"5667eba\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-5667eba\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-5667eba\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-5667eba\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCreated four centuries ago, the Black Nazarene has survived all kinds of disasters, yet we Filipinos still treasure its importance, despite the damage.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"4a727a3\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;4a727a3&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-4a727a3 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"4a727a3\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-4a727a3\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-4a727a3\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-4a727a3\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tFigurines, magnets and food supplies are some of the most commonly collected items in Filipino households.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"c8cfc99\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;c8cfc99&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-c8cfc99 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"c8cfc99\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-c8cfc99\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-c8cfc99\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-c8cfc99\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tParols were created in 1908 to light the way during the Simbang Gabi!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d246cfb e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"d246cfb\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"205b2cf\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;205b2cf&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-205b2cf e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"205b2cf\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-205b2cf\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-205b2cf\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-205b2cf\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, halo-halo is a Filipino icon, as a representation of our creativity and affinity for sweets.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"3975cfa\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;3975cfa&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-3975cfa e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"3975cfa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-3975cfa\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-3975cfa\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-3975cfa\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, there are over 240,000 jeepneys in the Philippines, with each decorated and customized in their own \t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"90636e1\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;90636e1&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-90636e1 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"90636e1\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-90636e1\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-90636e1\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-90636e1\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNowadays, Filipinos keep miniature replicas of the Black Nazarene to commemorate it, while thousands still participate in the Traslaci\u00f3n.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"26084ed\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;26084ed&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-26084ed e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"26084ed\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-26084ed\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-26084ed\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-26084ed\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tEach collection of items in a Filipino household represents their history, their interests and who they are, in a simple, tangible way.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"a04a0d0\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;a04a0d0&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-a04a0d0 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"a04a0d0\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-a04a0d0\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-a04a0d0\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-a04a0d0\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNow, parols are a common sight in the holiday season, using LEDs and motors to light up the holidays!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-4f447cf elementor-widget elementor-widget-spacer\" data-id=\"4f447cf\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-29f3607 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"29f3607\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-4d82758 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"4d82758\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-8bee147 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"8bee147\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-ac5082b e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"ac5082b\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-ef6cd67 wpr-advanced-text-style-animated wpr-fancy-text-typing wpr-animated-text-infinite-yes elementor-widget elementor-widget-wpr-advanced-text\" data-id=\"ef6cd67\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;anim_loop&quot;:&quot;yes&quot;}\" data-widget_type=\"wpr-advanced-text.default\">\n\t\t\t\t\t\n\t\t<h3 class=\"wpr-advanced-text\">\n\n\t\t\t\t\t\n\t\t\t\n\t\t<span class=\"wpr-anim-text wpr-anim-text-type-typing wpr-anim-text-letters\" data-anim-duration=\"200,5000\" data-anim-loop=\"yes\">\n\t\t\t<span class=\"wpr-anim-text-inner\">\n\t\t\t\t\t\t\t\t\t<b>Browse Articles<\/b>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t<span class=\"wpr-anim-text-cursor\">|<\/span>\t\t<\/span>\n\n\t\t\t\t\n\t\t<\/h3>\n\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-251d6f7 elementor-widget elementor-widget-heading\" data-id=\"251d6f7\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Discover how Maximalism and Filipino culture go hand in hand with our curated collection of articles.\n<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-9b07905 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"9b07905\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-aeec08f elementor-widget elementor-widget-button\" data-id=\"aeec08f\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm elementor-animation-grow\" href=\"https:\/\/samutsari.org\/iteration1\/articles\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Explore More Here<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-15158f5 e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"15158f5\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-b0d3b13 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"b0d3b13\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-6713a13 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"6713a13\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-f748511 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"f748511\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-89b6567 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"89b6567\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-e296433 elementor-widget elementor-widget-heading\" data-id=\"e296433\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-the-philippines-a-place-for-maximalism\">The Philippines: A Place for Maximalism<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-8322108 elementor-widget elementor-widget-text-editor\" data-id=\"8322108\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">May kakaiba talaga sa ating mga Pilipino tungkol sa ating mga paraan sa buhay, sinasadya man o sadyang nakasanayan lang. Makikita natin ito kahit sa ating mismong tahanan: mula sa sofa na may mga kumot at unan na iba-iba ang disenyo, sa mga shelf na puno ng mga plato at abubot, hanggang sa mga kabinet at drawer na may lamang mga karton at plastic utensils galing sa takeout. Ito ang tinatawag nating maximalism&#8230;<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-383d68e e-transform e-transform elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"383d68e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-5,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-d55e123 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"d55e123\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-66a985a e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"66a985a\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c6b1e47 elementor-widget elementor-widget-heading\" data-id=\"c6b1e47\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-horror-vacui-and-what-is-having-and-hoarding\">Horror Vacui, and What is Having and Hoarding<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-b9e6f18 elementor-widget elementor-widget-text-editor\" data-id=\"b9e6f18\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Ang hoarding ay kadalasan itinuturing bilang makasarili at ipinagbabawal, ngunit dito sa Pilipinas, ito ay rasyonal na gawain, dahil ang bansa ay kadalasang&#8230;<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3f8159f e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"3f8159f\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-5a0fa07 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"5a0fa07\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-2509e7e e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"2509e7e\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-2f4248c elementor-widget elementor-widget-heading\" data-id=\"2f4248c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-the-jeepney-a-servant-and-symbol-of-the-people\">The Jeepney: A Servant and Symbol of the People <\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-6881faa e-transform e-transform elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"6881faa\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-4,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:4,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-95ffba9 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"95ffba9\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t\t\t<div class=\"elementor-element elementor-element-3b94010 elementor-widget elementor-widget-heading\" data-id=\"3b94010\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-on-matters-of-maximalism-in-the-postmodern-world\">On Matters of Maximalism in the Postmodern World<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a567918 elementor-widget elementor-widget-text-editor\" data-id=\"a567918\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Sa lahat ng aspeto ng lipunan at kultura, ang mga mamamayan ng Pilipinas ay likas na mga maximalist. Ang pananaw na ito sa kung paano natin tinitingnan ang ating sarili ay nananatiling totoo kapag isinaalang-alang natin ang ating tradisyonal na kasaysayang pangkultura&#8230;<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-3ffcfb8 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"3ffcfb8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-4eee7e2 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"4eee7e2\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-2175cbc e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"2175cbc\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-fb7ec43 elementor-widget elementor-widget-heading\" data-id=\"fb7ec43\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-architecture-a-pillar-of-philippine-identity\">Architecture: A Pillar of Philippine Identity<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5f98a81 elementor-widget elementor-widget-text-editor\" data-id=\"5f98a81\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Ang arkitektura ay isang mahalagang elemento ng pagkakakilanlan ng Pilipinas, dahil ang mga gusali ay isang konkretong repleksyon kung paano&#8230;.<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-1590a51 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"1590a51\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-cedd0be e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"cedd0be\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-af59c9d elementor-widget elementor-widget-heading\" data-id=\"af59c9d\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-anik-aniks-the-shelf-and-the-self\">Anik-Aniks, The \u2018Shelf\u2019 and the Self<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-26193a7 e-transform elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-image\" data-id=\"26193a7\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-9,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" loading=\"lazy\" width=\"150\" height=\"150\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol-150x150.png\" class=\"attachment-thumbnail size-thumbnail wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-f38e078 e-con-full e-transform e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"f38e078\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.1,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\">\n\t\t<div class=\"elementor-element elementor-element-19094dd e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"19094dd\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-392c881 elementor-widget elementor-widget-heading\" data-id=\"392c881\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\"><a href=\"https:\/\/samutsari.org\/iteration1\/article-to-crave-to-create-an-artists-experience-with-maximalism\">To Crave to Create: An Artist\u2019s Experience with Maximalism<\/a><\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-c10bc9c elementor-widget elementor-widget-text-editor\" data-id=\"c10bc9c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t\t\t\t\t\t<p><span style=\"font-weight: 400;\">Bilang mga alagad ng sining,<\/span><span style=\"font-weight: 400;\"> ang ating relasyon kalakip sa maximalism ay isang napaka personal na bagay sa atin.<\/span><span style=\"font-weight: 400;\"> Ito ay sumasalamin sa ating mga sarili, at naglalahad ng mga prinsipyo na nais natin ipakita sa mundo. Ang malalim na aspetong ito ng karanasan sa sining ay nais&#8230;<\/span><\/p>\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-03d4ebe e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"03d4ebe\" data-element_type=\"container\" data-e-type=\"container\" data-settings=\"{&quot;background_background&quot;:&quot;classic&quot;}\">\n\t\t<div class=\"elementor-element elementor-element-a15287c e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"a15287c\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div class=\"elementor-element elementor-element-f68d9dd elementor-widget elementor-widget-heading\" data-id=\"f68d9dd\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"heading.default\">\n\t\t\t\t\t<h2 class=\"elementor-heading-title elementor-size-default\">Share your Filipino Maximalist experiences  and become inspired by others with our Personals!<\/h2>\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-5e6434b elementor-widget elementor-widget-button\" data-id=\"5e6434b\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"button.default\">\n\t\t\t\t\t\t\t\t\t\t<a class=\"elementor-button elementor-button-link elementor-size-sm elementor-animation-grow\" href=\"https:\/\/samutsari.org\/iteration1\/share\/\">\n\t\t\t\t\t\t<span class=\"elementor-button-content-wrapper\">\n\t\t\t\t\t\t\t\t\t<span class=\"elementor-button-text\">Click here<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/a>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-3356998 elementor-widget elementor-widget-spacer\" data-id=\"3356998\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-f5cf06c elementor-widget elementor-widget-spacer\" data-id=\"f5cf06c\" data-element_type=\"widget\" data-e-type=\"widget\" data-widget_type=\"spacer.default\">\n\t\t\t\t\t\t\t<div class=\"elementor-spacer\">\n\t\t\t<div class=\"elementor-spacer-inner\"><\/div>\n\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-36522ae elementor-hidden-mobile e-flex e-con-boxed wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"36522ae\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t\t<div class=\"e-con-inner\">\n\t\t<div class=\"elementor-element elementor-element-a178589 e-con-full marquee-preload e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"a178589\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t<div class=\"elementor-element elementor-element-9896cb8 e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"9896cb8\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"a6d1d5d\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;a6d1d5d&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-a6d1d5d e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"a6d1d5d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-a6d1d5d\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-a6d1d5d\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-a6d1d5d\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"cab8e0e\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;cab8e0e&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-cab8e0e e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"cab8e0e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-cab8e0e\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-cab8e0e\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-cab8e0e\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys are one of the Philippines' greatest examples of maximalism.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"161f961\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;161f961&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-161f961 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"161f961\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-161f961\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-161f961\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-161f961\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tThe Black Nazarene is a symbol of Filipino resilience and sentimentality.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"bf5da7e\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;bf5da7e&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-bf5da7e e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"bf5da7e\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-bf5da7e\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-bf5da7e\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-bf5da7e\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCollectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"9796ea6\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;9796ea6&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-9796ea6 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"9796ea6\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-9796ea6\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-9796ea6\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-9796ea6\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tTracing back to our Spanish roots, parols are Filipino's maximalist way of celebrating Christmas!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-a9629ac e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"a9629ac\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"7e3469b\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;7e3469b&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-7e3469b e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"7e3469b\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-7e3469b\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-7e3469b\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-7e3469b\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tHalo-halo's roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"6d554cf\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;6d554cf&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-6d554cf e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"6d554cf\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-6d554cf\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-6d554cf\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-6d554cf\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tJeepneys were originally made from recycled parts from WW2, transforming pieces from our struggles into transportation.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"cd0ed75\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;cd0ed75&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-cd0ed75 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"cd0ed75\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-cd0ed75\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-cd0ed75\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-cd0ed75\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tCreated four centuries ago, the Black Nazarene has survived all kinds of disasters, yet we Filipinos still treasure its importance, despite the damage.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"dd53c79\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;dd53c79&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-dd53c79 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"dd53c79\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-dd53c79\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-dd53c79\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-dd53c79\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tFigurines, magnets and food supplies are some of the most commonly collected items in Filipino households.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"64e5c02\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;64e5c02&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-64e5c02 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"64e5c02\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-64e5c02\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-64e5c02\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-64e5c02\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tParols were created in 1908 to light the way during the Simbang Gabi!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t<div class=\"elementor-element elementor-element-7179b1d e-con-full e-flex wpr-particle-no wpr-jarallax-no wpr-parallax-no wpr-sticky-section-no wpr-column-slider-no wpr-equal-height-no e-con e-child\" data-id=\"7179b1d\" data-element_type=\"container\" data-e-type=\"container\">\n\t\t\t\t<div data-tooltip-id=\"9cd34e2\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;9cd34e2&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-9cd34e2 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"9cd34e2\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-9cd34e2\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-9cd34e2\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-9cd34e2\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, halo-halo is a Filipino icon, as a representation of our creativity and affinity for sweets.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"181\" height=\"295\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/halo-halo.png\" class=\"attachment-medium size-medium wp-image-1359\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"474ac78\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;474ac78&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-474ac78 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"474ac78\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-474ac78\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-474ac78\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-474ac78\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tToday, there are over 240,000 jeepneys in the Philippines, with each decorated and customized in their own \t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"298\" height=\"154\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/jeepney.png\" class=\"attachment-medium size-medium wp-image-1360\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"947d282\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;947d282&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-947d282 e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"947d282\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-947d282\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-947d282\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-947d282\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNowadays, Filipinos keep miniature replicas of the Black Nazarene to commemorate it, while thousands still participate in the Traslaci\u00f3n.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"213\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png\" class=\"attachment-medium size-medium wp-image-1358\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene-213x300.png 213w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/black-nazarene.png 243w\" sizes=\"(max-width: 213px) 100vw, 213px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"903c1d8\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;top,bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;903c1d8&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-903c1d8 e-transform e-transform e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"903c1d8\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:0,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:1.2,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_scale_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-903c1d8\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-903c1d8\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-903c1d8\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tEach collection of items in a Filipino household represents their history, their interests and who they are, in a simple, tangible way.\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"224\" height=\"300\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png\" class=\"attachment-medium size-medium wp-image-1361\" alt=\"\" srcset=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet-224x300.png 224w, https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/magnet.png 253w\" sizes=\"(max-width: 224px) 100vw, 224px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<div data-tooltip-id=\"e40aa1d\" data-tooltip_settings=\"{&quot;type&quot;:&quot;text&quot;,&quot;content&quot;:&quot;&quot;,&quot;minWidth&quot;:{&quot;desktop&quot;:0,&quot;mobile&quot;:0,&quot;tablet&quot;:0},&quot;maxWidth&quot;:{&quot;desktop&quot;:null,&quot;mobile&quot;:null,&quot;tablet&quot;:null},&quot;zindex&quot;:&quot;&quot;,&quot;target&quot;:&quot;&quot;,&quot;anime&quot;:&quot;fade&quot;,&quot;trigger&quot;:&quot;hover&quot;,&quot;side&quot;:&quot;bottom&quot;,&quot;arrow&quot;:false,&quot;distance&quot;:6,&quot;duration&quot;:350,&quot;delay&quot;:10,&quot;hideOn&quot;:[],&quot;elemID&quot;:&quot;e40aa1d&quot;,&quot;follow_mouse&quot;:false}\" class=\"elementor-element elementor-element-e40aa1d e-transform premium-global-tooltips-yes elementor-widget elementor-widget-image\" data-id=\"e40aa1d\" data-element_type=\"widget\" data-e-type=\"widget\" data-settings=\"{&quot;_transform_rotateZ_effect_hover&quot;:{&quot;unit&quot;:&quot;px&quot;,&quot;size&quot;:-2,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_tablet&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]},&quot;_transform_rotateZ_effect_hover_mobile&quot;:{&quot;unit&quot;:&quot;deg&quot;,&quot;size&quot;:&quot;&quot;,&quot;sizes&quot;:[]}}\" data-widget_type=\"image.default\">\n\t\t\t\t\t<div class=\"premium-gtooltips-temp premium-global-tooltips-wrapper-temp-e40aa1d\" style=\"display: none;\">\n\t\t\t\t<div id=\"tooltip_content-e40aa1d\" class=\"premium-global-tooltip-content premium-tooltip-content-wrapper-e40aa1d\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"premium-tootltip-text\">\n\t\t\t\t\t\t\t\tNow, parols are a common sight in the holiday season, using LEDs and motors to light up the holidays!\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img loading=\"lazy\" decoding=\"async\" width=\"297\" height=\"270\" src=\"https:\/\/samutsari.org\/wp-content\/uploads\/2026\/07\/parol.png\" class=\"attachment-medium size-medium wp-image-1362\" alt=\"\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"<p>What is Halo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color. Jeepneys are one of the Philippines&#8217; greatest examples of maximalism. The Black Nazarene is a symbol of Filipino resilience and sentimentality. Collectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture. Tracing back to our Spanish roots, parols are Filipino&#8217;s maximalist way of celebrating Christmas! Halo-halo&#8217;s roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients. Jeepneys were originally made from recycled parts from WW2, transforming pieces from our struggles into transportation. Created four centuries ago, the Black Nazarene has survived all kinds of disasters, yet we Filipinos still treasure its importance, despite the damage. Figurines, magnets and food supplies are some of the most commonly collected items in Filipino households. Parols were created in 1908 to light the way during the Simbang Gabi! Today, halo-halo is a Filipino icon, as a representation of our creativity and affinity for sweets. Today, there are over 240,000 jeepneys in the Philippines, with each decorated and customized in their own Nowadays, Filipinos keep miniature replicas of the Black Nazarene to commemorate it, while thousands still participate in the Traslaci\u00f3n. Each collection of items in a Filipino household represents their history, their interests and who they are, in a simple, tangible way. Now, parols are a common sight in the holiday season, using LEDs and motors to light up the holidays! Samu&#8217;t Sari is our love letter to Filipino Maximalism, or the cultural trait to maximalize everything in our lives, from the way our furniture is arranged to the keepsakes we hold on to so sentimentally. Samu\u2019t Sari is dedicated to the celebration of Filipino Maximalism, and to our sentimentality, ingenuity, and natural creativity. Taking our name from the Filipino phrase &#8216;samot-sari,&#8217; or \u2018a diverse array of items,\u2019 Samu\u2019t Sari embraces its namesake by incorporating a wide array of multimedia outputs to introduce you to the wonderful mindset of Filipino Maximalism. Watch the SamutSari Documentary! Want to learn about Filipino Maximalism? Our documentary is the best place to start! With engaging interviews with experts and real-life maximalists, we&#8217;ll explain all you need to know about this side of Filipino culture. Click Here! Halo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color. Jeepneys are one of the Philippines&#8217; greatest examples of maximalism. The Black Nazarene is a symbol of Filipino resilience and sentimentality. Collectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture. Tracing back to our Spanish roots, parols are Filipino&#8217;s maximalist way of celebrating Christmas! Halo-halo&#8217;s roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients. Jeepneys were originally made from recycled parts from WW2, transforming pieces from our struggles into transportation. Created four centuries ago, the Black Nazarene has survived all kinds of disasters, yet we Filipinos still treasure its importance, despite the damage. Figurines, magnets and food supplies are some of the most commonly collected items in Filipino households. Parols were created in 1908 to light the way during the Simbang Gabi! Today, halo-halo is a Filipino icon, as a representation of our creativity and affinity for sweets. Today, there are over 240,000 jeepneys in the Philippines, with each decorated and customized in their own Nowadays, Filipinos keep miniature replicas of the Black Nazarene to commemorate it, while thousands still participate in the Traslaci\u00f3n. Each collection of items in a Filipino household represents their history, their interests and who they are, in a simple, tangible way. Now, parols are a common sight in the holiday season, using LEDs and motors to light up the holidays! Browse Articles | Discover how Maximalism and Filipino culture go hand in hand with our curated collection of articles. Explore More Here The Philippines: A Place for Maximalism May kakaiba talaga sa ating mga Pilipino tungkol sa ating mga paraan sa buhay, sinasadya man o sadyang nakasanayan lang. Makikita natin ito kahit sa ating mismong tahanan: mula sa sofa na may mga kumot at unan na iba-iba ang disenyo, sa mga shelf na puno ng mga plato at abubot, hanggang sa mga kabinet at drawer na may lamang mga karton at plastic utensils galing sa takeout. Ito ang tinatawag nating maximalism&#8230; Horror Vacui, and What is Having and Hoarding Ang hoarding ay kadalasan itinuturing bilang makasarili at ipinagbabawal, ngunit dito sa Pilipinas, ito ay rasyonal na gawain, dahil ang bansa ay kadalasang&#8230; The Jeepney: A Servant and Symbol of the People On Matters of Maximalism in the Postmodern World Sa lahat ng aspeto ng lipunan at kultura, ang mga mamamayan ng Pilipinas ay likas na mga maximalist. Ang pananaw na ito sa kung paano natin tinitingnan ang ating sarili ay nananatiling totoo kapag isinaalang-alang natin ang ating tradisyonal na kasaysayang pangkultura&#8230; Architecture: A Pillar of Philippine Identity Ang arkitektura ay isang mahalagang elemento ng pagkakakilanlan ng Pilipinas, dahil ang mga gusali ay isang konkretong repleksyon kung paano&#8230;. Anik-Aniks, The \u2018Shelf\u2019 and the Self To Crave to Create: An Artist\u2019s Experience with Maximalism Bilang mga alagad ng sining, ang ating relasyon kalakip sa maximalism ay isang napaka personal na bagay sa atin. Ito ay sumasalamin sa ating mga sarili, at naglalahad ng mga prinsipyo na nais natin ipakita sa mundo. Ang malalim na aspetong ito ng karanasan sa sining ay nais&#8230; Share your Filipino Maximalist experiences and become inspired by others with our Personals! Click here Halo-halo is the perfect sweet treat to represent Filipino maximalism, a cornucopia of flavors and color. Jeepneys are one of the Philippines&#8217; greatest examples of maximalism. The Black Nazarene is a symbol of Filipino resilience and sentimentality. Collectibles, or anik-anik, represent the sentimental side of Filipino maximalist culture. Tracing back to our Spanish roots, parols are Filipino&#8217;s maximalist way of celebrating Christmas! Halo-halo&#8217;s roots are traced back to a Japanese sweet called kakigori, which was then adapted by Filipinos to use local ingredients.<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-944","page","type-page","status-publish","hentry"],"_hostinger_reach_plugin_has_subscription_block":false,"_hostinger_reach_plugin_is_elementor":false,"_links":{"self":[{"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/pages\/944","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/comments?post=944"}],"version-history":[{"count":123,"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/pages\/944\/revisions"}],"predecessor-version":[{"id":2078,"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/pages\/944\/revisions\/2078"}],"wp:attachment":[{"href":"https:\/\/samutsari.org\/iteration1\/wp-json\/wp\/v2\/media?parent=944"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}