{"id":748,"date":"2026-07-27T14:45:12","date_gmt":"2026-07-27T14:45:12","guid":{"rendered":"https:\/\/expand.temp.wevolved.pt\/arquivo-editorial\/series\/"},"modified":"2026-08-18T09:15:39","modified_gmt":"2026-08-18T09:15:39","slug":"series","status":"publish","type":"page","link":"https:\/\/expand.temp.wevolved.pt\/en\/arquivo-editorial\/series\/","title":{"rendered":"S\u00e9ries"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column][vc_column_text]\n\t<section\n\t\tid=\"expand-series-anchor-menu-104457\"\n\t\tclass=\"series-anchor-menu\"\n\t\tdata-expand-series-menu\n\t>\n\t\t<div class=\"series-anchor-menu__inner\">\n\n\t\t\t<a href=\"#todas-as-series\" class=\"series-anchor-menu__link is-active\" data-expand-series-show-all>\n\t\t\t\tAll Series\t\t\t<\/a>\n\n\t\t\t\t\t\t\t<a href=\"#ler-o-presente\" class=\"series-anchor-menu__link\">\n\t\t\t\t\tReading the Present\u2122\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a href=\"#arquitetura-omissiva\" class=\"series-anchor-menu__link\">\n\t\t\t\t\tOmissive Architecture\u2122\t\t\t\t<\/a>\n\t\t\t\t\t\t\t<a href=\"#a-margem-da-saude\" class=\"series-anchor-menu__link\">\n\t\t\t\t\tAt the Margins of Health\u2122\t\t\t\t<\/a>\n\t\t\t\n\t\t\t<form class=\"series-anchor-menu__search\" data-expand-series-search-form>\n\t\t\t\t<label class=\"screen-reader-text\" for=\"expand-series-anchor-menu-104457-search\">\n\t\t\t\t\tSearch series\t\t\t\t<\/label>\n\n\t\t\t\t<input\n\t\t\t\t\ttype=\"search\"\n\t\t\t\t\tid=\"expand-series-anchor-menu-104457-search\"\n\t\t\t\t\tclass=\"series-anchor-menu__search-input\"\n\t\t\t\t\tplaceholder=\"Search series\"\n\t\t\t\t\tautocomplete=\"off\"\n\t\t\t\t\tdata-expand-series-search-input\n\t\t\t\t>\n\n\t\t\t\t<button type=\"submit\" class=\"series-anchor-menu__search-button\" aria-label=\"Search series\">\n\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Vector-40.svg\" alt=\"\">\n\t\t\t\t<\/button>\n\t\t\t<\/form>\n\n\t\t<\/div>\n\t<\/section>\n\n\t<div\n\t\tid=\"expand-series-anchor-menu-104457-results\"\n\t\tclass=\"expand-series-search-results\"\n\t\tdata-expand-series-search-results\n\t\thidden\n\t><\/div>\n\n\t<script>\n(function () {\n\n    function initExpandSeriesPostSearch() {\n\n        const section = document.querySelector(\n            \"#expand-series-anchor-menu-104457\"\n        );\n\n        if (!section) {\n            return;\n        }\n\n\n        const links = section.querySelectorAll(\n            \".series-anchor-menu__link\"\n        );\n\n        const form = section.querySelector(\n            \"[data-expand-series-search-form]\"\n        );\n\n        const input = section.querySelector(\n            \"[data-expand-series-search-input]\"\n        );\n\n        const results = document.querySelector(\n            \"#expand-series-anchor-menu-104457-results\"\n        );\n\n        let searchTimeout = null;\n\n\n        \/* =====================================================\n           NORMALIZAR TEXTO\n        ===================================================== *\/\n\n        function normalizeText(text) {\n\n            return String(text || \"\")\n                .trim()\n                .toLowerCase()\n                .normalize(\"NFD\")\n                .replace(\/[\\u0300-\\u036f]\/g, \"\")\n                .replace(\/\u2122\/g, \"\")\n                .replace(\/[^a-z0-9]+\/g, \" \")\n                .replace(\/\\s+\/g, \" \")\n                .trim();\n\n        }\n\n\n        \/* =====================================================\n           LINK ATIVO\n        ===================================================== *\/\n\n        function setActiveLink(activeLink) {\n\n            links.forEach(function (link) {\n                link.classList.remove(\"is-active\");\n            });\n\n\n            if (activeLink) {\n                activeLink.classList.add(\"is-active\");\n            }\n\n        }\n\n\n        \/* =====================================================\n           ITEMS \/ CARDS\n        ===================================================== *\/\n\n        function getSeriesItems() {\n\n            return Array.from(\n                document.querySelectorAll(\n                    \"[data-expand-series-item]\"\n                )\n            );\n\n        }\n\n\n        function getPostCards(item) {\n\n            return Array.from(\n                item.querySelectorAll(\n                    \"[data-expand-series-post-card]\"\n                )\n            );\n\n        }\n\n\n        \/* =====================================================\n           RESULTADOS \u2014 ESCONDER\n        ===================================================== *\/\n\n        function hideResultsBox() {\n\n            if (!results) {\n                return;\n            }\n\n            results.hidden = true;\n            results.innerHTML = \"\";\n\n        }\n\n\n        \/* =====================================================\n           RESULTADOS \u2014 T\u00cdTULO\n        ===================================================== *\/\n\n       function showSearchTitle() {\n\n    if (!results) {\n        return;\n    }\n\n    results.hidden = false;\n\n    results.innerHTML = `\n        <div class=\"expand-series-search-results__title\">\n            Search Results:        <\/div>\n    `;\n\n}\n\n\n        \/* =====================================================\n           SEM RESULTADOS\n        ===================================================== *\/\n\n        function showNoResultsMessage() {\n\n            if (!results) {\n                return;\n            }\n\n            results.hidden = false;\n\n          results.innerHTML = `\n    <div class=\"expand-series-search-results__title\">\n        Search Results:    <\/div>\n\n    <div class=\"expand-series-search-results__empty\">\n        No results were found.    <\/div>\n`;\n        }\n\n\n        \/* =====================================================\n           ESTADO DEFAULT\n        ===================================================== *\/\n\n        function showDefaultState() {\n\n            hideResultsBox();\n\n\n            getSeriesItems().forEach(function (item) {\n\n                item.style.display = \"\";\n\n\n                getPostCards(item).forEach(function (card) {\n\n                    if (\n                        card.getAttribute(\n                            \"data-default-visible\"\n                        ) === \"1\"\n                    ) {\n\n                        card.style.display = \"\";\n\n                    } else {\n\n                        card.style.display = \"none\";\n\n                    }\n\n                });\n\n            });\n\n        }\n\n\n        \/* =====================================================\n           RESET PESQUISA\n        ===================================================== *\/\n\n        function resetSearch() {\n\n            if (input) {\n                input.value = \"\";\n            }\n\n            showDefaultState();\n\n        }\n\n\n        \/* =====================================================\n           FILTRAR POSTS\n        ===================================================== *\/\n\n        function filterByPostCards() {\n\n            if (!input) {\n                return;\n            }\n\n\n            const query = normalizeText(\n                input.value\n            );\n\n            const items = getSeriesItems();\n\n\n            \/*\n             * Menos de 2 caracteres:\n             * voltar ao estado original.\n             *\/\n            if (query.length < 2) {\n\n                showDefaultState();\n\n                return;\n            }\n\n\n            \/*\n             * Mostrar t\u00edtulo assim que\n             * existe uma pesquisa v\u00e1lida.\n             *\/\n            showSearchTitle();\n\n\n            let globalHasMatches = false;\n\n\n            items.forEach(function (item) {\n\n                const cards = getPostCards(item);\n\n                let itemHasMatches = false;\n\n\n                cards.forEach(function (card) {\n\n                    const searchText = normalizeText(\n                        card.getAttribute(\n                            \"data-search\"\n                        ) || \"\"\n                    );\n\n\n                    const isMatch =\n                        searchText.includes(query);\n\n\n                    if (isMatch) {\n\n                        card.style.display = \"\";\n\n                        itemHasMatches = true;\n                        globalHasMatches = true;\n\n                    } else {\n\n                        card.style.display = \"none\";\n\n                    }\n\n                });\n\n\n                if (itemHasMatches) {\n\n                    item.style.display = \"\";\n\n                } else {\n\n                    item.style.display = \"none\";\n\n                }\n\n            });\n\n\n            \/*\n             * Nenhum resultado encontrado.\n             *\/\n            if (!globalHasMatches) {\n\n                showNoResultsMessage();\n\n            }\n\n        }\n\n\n        \/* =====================================================\n           SCROLL\n        ===================================================== *\/\n\n        function scrollToElement(element) {\n\n            if (!element) {\n                return;\n            }\n\n\n            element.scrollIntoView({\n                behavior: \"smooth\",\n                block: \"start\"\n            });\n\n        }\n\n\n        \/* =====================================================\n           LINKS DO MENU\n        ===================================================== *\/\n\n        links.forEach(function (link) {\n\n            link.addEventListener(\n                \"click\",\n                function (event) {\n\n                    const hash =\n                        link.getAttribute(\"href\");\n\n\n                    event.preventDefault();\n\n\n                    resetSearch();\n\n                    setActiveLink(link);\n\n\n                    \/*\n                     * Mostrar todos.\n                     *\/\n                    if (\n                        link.hasAttribute(\n                            \"data-expand-series-show-all\"\n                        )\n                    ) {\n\n                        const overview =\n                            document.querySelector(\n                                \"[data-expand-series-overview]\"\n                            );\n\n\n                        if (overview) {\n                            scrollToElement(\n                                overview\n                            );\n                        }\n\n                        return;\n                    }\n\n\n                    \/*\n                     * Ir para s\u00e9rie espec\u00edfica.\n                     *\/\n                    if (\n                        hash &&\n                        hash.startsWith(\"#\")\n                    ) {\n\n                        const target =\n                            document.querySelector(\n                                hash\n                            );\n\n\n                        if (target) {\n                            scrollToElement(\n                                target\n                            );\n                        }\n\n                    }\n\n                }\n            );\n\n        });\n\n\n        \/* =====================================================\n           INPUT PESQUISA\n        ===================================================== *\/\n\n        if (input) {\n\n            input.addEventListener(\n                \"input\",\n                function () {\n\n                    clearTimeout(\n                        searchTimeout\n                    );\n\n\n                    searchTimeout = setTimeout(\n                        function () {\n\n                            filterByPostCards();\n\n                        },\n                        500\n                    );\n\n                }\n            );\n\n        }\n\n\n        \/* =====================================================\n           SUBMIT PESQUISA\n        ===================================================== *\/\n\n        if (form) {\n\n            form.addEventListener(\n                \"submit\",\n                function (event) {\n\n                    event.preventDefault();\n\n\n                    clearTimeout(\n                        searchTimeout\n                    );\n\n\n                    filterByPostCards();\n\n                }\n            );\n\n        }\n\n\n        \/* =====================================================\n           ESTADO INICIAL\n        ===================================================== *\/\n\n        showDefaultState();\n\n    }\n\n\n    if (\n        document.readyState === \"loading\"\n    ) {\n\n        document.addEventListener(\n            \"DOMContentLoaded\",\n            initExpandSeriesPostSearch\n        );\n\n    } else {\n\n        initExpandSeriesPostSearch();\n\n    }\n\n})();\n<\/script>\n\n\t[\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text]\n\t<section class=\"expand-series-overview\" data-expand-series-overview>\n\n\t\t\t\t\t\n\t\t\t<article\n\t\t\t\tid=\"ler-o-presente\"\n\t\t\t\tclass=\"expand-series-overview__item\"\n\t\t\t\tdata-expand-series-item\n\t\t\t>\n\n\t\t\t\t<div class=\"expand-series-overview__left\">\n\n\t\t\t\t\t<p class=\"expand-series-overview__title\">\n\t\t\t\t\t\tReading the Present<sup class=\"expand-tm\">\u2122<\/sup>\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__description\">\n\t\t\t\t\t\t\t<p>Contemporary developments examined through the lens of institutional capacity, decision architecture and the performance of complex systems.<\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"expand-series-overview__meta\">\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__count\">\n\t\t\t\t\t\t\t19\t\t\t\t\t\t\tPieces\u2122\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__status\">\n\t\t\t\t\t\t\tSeries in Development\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"page-featured-image__button\">\n\t\t\t\t\t\t<a href=\"https:\/\/expand.temp.wevolved.pt\/en\/arquivo-editorial\/series\/ler-o-presente\/\" class=\"expand-series-overview__link\">\n\t\t\t\t\t\t\t<span>See full series<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"expand-series-overview__right\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/expand.temp.wevolved.pt\/wp-content\/uploads\/2026\/08\/imagem_2026-08-19_113013616.png\" alt=\"Reading the Present\u2122\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__posts\" data-expand-series-posts>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/08\/31\/peca-19\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 19 When Knowing Is Not Yet Anticipating Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 19\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Knowing Is Not Yet Anticipating\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t6 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/08\/02\/peca-18\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 18 When Responsibility Extends Beyond Control Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 18\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Responsibility Extends Beyond Control\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/07\/30\/peca-17\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 17 When Coordination Becomes a Capacity for Government Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 17\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJULY 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Coordination Becomes a Capacity for Government\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/07\/29\/peca-16\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 16 When Trust Becomes Visible Institutional Capacity Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 16\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJULY 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Trust Becomes Visible Institutional Capacity\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/06\/02\/peca-15\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 15 When Modernisation Encounters Administrative Capacity Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 15\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJUNE 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Modernisation Encounters Administrative Capacity\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/06\/02\/peca-14\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 14 When Strategic Compression Shapes Decision-Making Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 14\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJUNE 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Strategic Compression Shapes Decision-Making\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/06\/01\/peca-13\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 13 When Responding No Longer Means Recovering Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 13\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJUNE 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Responding No Longer Means Recovering\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t5 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/05\/31\/peca-12\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 12 When Governance Becomes Strategic Navigation Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 12\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMAY 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Governance Becomes Strategic Navigation\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/05\/31\/peca-11\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 11 When Public Spending Becomes Economic Policy Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 11\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMAY 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Public Spending Becomes Economic Policy\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/04\/03\/peca-9\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 9 When Volatility Defines the Limits of Decision Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 9\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAPRIL 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Volatility Defines the Limits of Decision\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/04\/03\/peca-8\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 8 When Accountability Loses Its Human Anchor Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 8\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAPRIL 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Accountability Loses Its Human Anchor\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/04\/02\/peca-10\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 10 When Activity Does Not Translate into Impact Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 10\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAPRIL 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Activity Does Not Translate into Impact\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/04\/02\/peca-7\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 7 When Reform Obscures Governance Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 7\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAPRIL 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Reform Obscures Governance\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/31\/peca-6\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 6 When Resources Do Not Translate into Results Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 6\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Resources Do Not Translate into Results\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/31\/peca-5\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 5 Healthcare Capacity and Institutional Adaptation Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 5\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tHealthcare Capacity and Institutional Adaptation\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/31\/peca-4\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 4 Health Workforce and Strategic Capacity Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 4\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tHealth Workforce and Strategic Capacity\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/02\/peca-2\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 2 The Hidden Geometry of Growth Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 2\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Hidden Geometry of Growth\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t3 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/02\/peca-3\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 3 Reform and System Resistance Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 3\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tReform and System Resistance\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/01\/peca-1\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Piece 1 When Coordination Becomes a Capacity for Government Reading the Present\u2122 Series\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tPiece 1\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tWhen Coordination Becomes a Capacity for Government\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t2 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t<\/article>\n\n\t\t\t\t\t\n\t\t\t<article\n\t\t\t\tid=\"arquitetura-omissiva\"\n\t\t\t\tclass=\"expand-series-overview__item\"\n\t\t\t\tdata-expand-series-item\n\t\t\t>\n\n\t\t\t\t<div class=\"expand-series-overview__left\">\n\n\t\t\t\t\t<p class=\"expand-series-overview__title\">\n\t\t\t\t\t\tOmissive Architecture<sup class=\"expand-tm\">\u2122<\/sup>\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__description\">\n\t\t\t\t\t\t\t<p>Critical fragments informed by institutional thought and organisational observation, examining structures that persist without direction.<\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"expand-series-overview__meta\">\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__count\">\n\t\t\t\t\t\t\t10\t\t\t\t\t\t\tFragments\u2122\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__status\">\n\t\t\t\t\t\t\tSeries Completed\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"page-featured-image__button\">\n\t\t\t\t\t\t<a href=\"https:\/\/expand.temp.wevolved.pt\/en\/arquivo-editorial\/series\/arquitetura-omissiva\/\" class=\"expand-series-overview__link\">\n\t\t\t\t\t\t\t<span>See full series<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"expand-series-overview__right\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/expand.temp.wevolved.pt\/wp-content\/uploads\/2026\/08\/imagem_2026-08-17_115948396.png\" alt=\"Omissive Architecture\u2122\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__posts\" data-expand-series-posts>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/03\/fragmento-10\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 10 The Politics of Administrative Time Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 10\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Politics of Administrative Time\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t5 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/03\/fragmento-9\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 9 The Intelligence Missing from Technology Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 9\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Intelligence Missing from Technology\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t5 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2026\/03\/03\/fragmento-8\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 8 The Inflation of the Word \u201cLeadership&quot; Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 8\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMARCH 2026\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Inflation of the Word \u201cLeadership&quot;\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/11\/03\/fragmento-7\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 7 The System\u2019s Illness Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 7\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tNOVEMBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe System\u2019s Illness\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/10\/05\/fragmento-6\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 6 Compliance as a Criterion Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 6\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tOCTOBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tCompliance as a Criterion\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/10\/03\/fragmento-5\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 5 Ambiguity as Method Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 5\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tOCTOBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tAmbiguity as Method\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t5 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/10\/03\/fragmento-4\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 4 The Archive as Shield Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 4\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tOCTOBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Archive as Shield\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/09\/30\/fragmento-2\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 2 The Position as Reward Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 2\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tSEPTEMBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Position as Reward\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/09\/03\/fragmento-3\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 3 Self-Justifying Functions Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 3\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tSEPTEMBER 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tSelf-Justifying Functions\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/08\/27\/fragmento-1\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"Fragment 1 The Tacit Criterion Series Omissive Architecture\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tFragment 1\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Tacit Criterion\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t4 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t<\/article>\n\n\t\t\t\t\t\n\t\t\t<article\n\t\t\t\tid=\"a-margem-da-saude\"\n\t\t\t\tclass=\"expand-series-overview__item\"\n\t\t\t\tdata-expand-series-item\n\t\t\t>\n\n\t\t\t\t<div class=\"expand-series-overview__left\">\n\n\t\t\t\t\t<p class=\"expand-series-overview__title\">\n\t\t\t\t\t\tAt the Margins of Health<sup class=\"expand-tm\">\u2122<\/sup>\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__description\">\n\t\t\t\t\t\t\t<p>A strategic reading informed by experience and comparative observation of the decisions, structures and absences that shape the real functioning of health systems.<\/p>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"expand-series-overview__meta\">\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__count\">\n\t\t\t\t\t\t\t10\t\t\t\t\t\t\t Strategic Notes\u2122\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t<span class=\"expand-series-overview__status\">\n\t\t\t\t\t\t\tSeries Completed\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t<\/div>\n\n\t\t\t\t\t<div class=\"page-featured-image__button\">\n\t\t\t\t\t\t<a href=\"https:\/\/expand.temp.wevolved.pt\/en\/arquivo-editorial\/series\/a-margem-da-saude\/\" class=\"expand-series-overview__link\">\n\t\t\t\t\t\t\t<span>See full series<\/span>\n\t\t\t\t\t\t<\/a>\n\t\t\t\t\t<\/div>\n\n\t\t\t\t<\/div>\n\n\t\t\t\t<div class=\"expand-series-overview__right\">\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__image\">\n\t\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/expand.temp.wevolved.pt\/wp-content\/uploads\/2026\/08\/imagem_2026-08-14_115316655.png\" alt=\"At the Margins of Health\u2122\">\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\n\n\t\t\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__posts\" data-expand-series-posts>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/08\/03\/nota-10\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba10 The Invisible Criterion Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba10\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Invisible Criterion\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t13 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/08\/03\/nota-9\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba9 Permanence without Function Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba9\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tPermanence without Function\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t10 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/08\/03\/nota-8\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"1\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba8 The Politics of Time in Decision Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba8\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Politics of Time in Decision\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t13 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/08\/03\/nota-7\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba7 Trust as a Pillar of Governance Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba7\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tAUGUST 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tTrust as a Pillar of Governance\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t15 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/07\/03\/nota-6\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba6 The Materiality of Trust Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba6\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJULY 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Materiality of Trust\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t11 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/07\/03\/nota-5\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba5 Safety as Return Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba5\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJULY 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tSafety as Return\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t12 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/06\/30\/nota-3\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba3 Hospital Logistics Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba3\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJUNE 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tHospital Logistics\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t10 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/06\/03\/nota-4\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba4 The Consumables Paradox Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba4\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tJUNE 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Consumables Paradox\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t12 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/05\/30\/nota-2\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N.\u00ba2 The Paradox of Clinical Autonomy Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N.\u00ba2\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMAY 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tThe Paradox of Clinical Autonomy\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t8 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t<a\n\t\t\t\t\t\t\t\t\thref=\"https:\/\/expand.temp.wevolved.pt\/en\/2025\/05\/30\/nota-1\/\"\n\t\t\t\t\t\t\t\t\tclass=\"expand-series-overview__post-card\"\n\t\t\t\t\t\t\t\t\tdata-expand-series-post-card\n\t\t\t\t\t\t\t\t\tdata-default-visible=\"0\"\n\t\t\t\t\t\t\t\t\tdata-search=\"NOTE N\u00ba1 Architectures that Betray Excellence Series At the Margins of Health\u2122\"\n\t\t\t\t\t\t\t\t\tstyle=\"display:none;\"\t\t\t\t\t\t\t\t>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-top\">\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-note\">\n\t\t\t\t\t\t\t\t\t\t\tNOTE N\u00ba1\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-separator\">\u00b7<\/span>\n\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-date\">\n\t\t\t\t\t\t\t\t\t\t\tMAY 2025\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t\t<p class=\"expand-series-overview__post-title\">\n\t\t\t\t\t\t\t\t\t\tArchitectures that Betray Excellence\t\t\t\t\t\t\t\t\t<\/p>\n\n\t\t\t\t\t\t\t\t\t<div class=\"expand-series-overview__post-bottom\">\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-reading\">\n\t\t\t\t\t\t\t\t\t\t\t\t10 min Read\t\t\t\t\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t<span class=\"expand-series-overview__post-arrow\" aria-hidden=\"true\">\n\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" src=\"\/wp-content\/uploads\/2026\/07\/Botao-seta-3.svg\" alt=\"seta\">\n\t\t\t\t\t\t\t\t\t\t<\/span>\n\n\t\t\t\t\t\t\t\t\t<\/div>\n\n\t\t\t\t\t\t\t\t<\/a>\n\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t\n\t\t\t\t<\/div>\n\n\t\t\t<\/article>\n\n\t\t\n\t<\/section>\n\n\t[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;newsletter&#8221;][vc_column][vc_row_inner el_class=&#8221;setor1&#8243;][vc_column_inner][vc_single_image image=&#8221;410&#8243; img_size=&#8221;full&#8221;][vc_column_text]<strong>EDITORIAL CORRESPONDENCE<sup>TM<\/sup><\/strong><\/p>\n<p>Occasional updates on new analyses, series, and institutional content.[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_column_text]\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f1033-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"1033\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/pages\/748#wpcf7-f1033-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"1033\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.7\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1033-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"expand-newsletter-form\">\n\t<div class=\"expand-newsletter-form__row\">\n\t\t<div class=\"expand-newsletter-form__field\">\n\t\t\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Institutional email\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span>\n\t\t\t<\/p>\n\t\t<\/div>\n\t\t<div class=\"expand-newsletter-form__submit\">\n\t\t\t<p><input class=\"wpcf7-form-control wpcf7-submit has-spinner\" type=\"submit\" value=\"RECEIVE EDITORIAL UPDATES\" \/>\n\t\t\t<\/p>\n\t\t<\/div>\n\t<\/div>\n\t<div class=\"expand-newsletter-form__acceptance\">\n\t\t<p><span class=\"wpcf7-form-control-wrap\" data-name=\"privacidade\"><span class=\"wpcf7-form-control wpcf7-acceptance\"><span class=\"wpcf7-list-item\"><label><input type=\"checkbox\" name=\"privacidade\" value=\"1\" aria-invalid=\"false\" \/><span class=\"wpcf7-list-item-label\">By subscribing to Editorial Updates, I agree to the  \n\t\t\t<a href=\"en\/politica-privacidade\/\" target=\"_blank\" rel=\"noopener\">\n\t\t\t\tExpand Strategy\u2122 Privacy Policy\n\t\t\t<\/a>.<\/span><\/label><\/span><\/span><\/span>\n\t\t<\/p>\n\t<\/div>\n<\/div><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n[\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row][vc_row el_class=&#8221;newsletter&#8221;][vc_column][vc_row_inner el_class=&#8221;setor1&#8243;][vc_column_inner][vc_single_image image=&#8221;410&#8243; img_size=&#8221;full&#8221;][vc_column_text]EDITORIAL CORRESPONDENCETM Occasional updates on new analyses, series, and institutional content.[\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n","protected":false},"author":1,"featured_media":750,"parent":726,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-748","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/pages\/748","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/comments?post=748"}],"version-history":[{"count":2,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/pages\/748\/revisions"}],"predecessor-version":[{"id":1292,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/pages\/748\/revisions\/1292"}],"up":[{"embeddable":true,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/pages\/726"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/media\/750"}],"wp:attachment":[{"href":"https:\/\/expand.temp.wevolved.pt\/en\/wp-json\/wp\/v2\/media?parent=748"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}