{"id":8036,"date":"2025-11-27T06:20:22","date_gmt":"2025-11-27T05:20:22","guid":{"rendered":"https:\/\/paperwise.eu\/paperwise-co2-neutral-3rd-year-in-a-row\/"},"modified":"2026-03-17T10:09:42","modified_gmt":"2026-03-17T09:09:42","slug":"paperwise-co2-neutral-3rd-year-in-a-row","status":"publish","type":"post","link":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/","title":{"rendered":"PAPERWISE CO2-NEUTRAL FOR THE 3RD YEAR IN A ROW"},"content":{"rendered":"\n<section class=\"section-hero-paperwise text-color-dark\" >\n    <div class=\"hero-background \" style=\"background-image: url('https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg');\">\n\n        \n        <div class=\"container-fluid h-100 pt-4 pb-4\">\n            <div class=\"row h-100\">\n                <div class=\"col-12 d-flex align-items-end\">\n                    <div class=\"hero-content\">\n                                                    <h1 class=\"hero-title\">\n                                <span class=\"hero-title-highlight\">PAPERWISE CO2-NEUTRAL FOR THE 3RD<\/span> YEAR IN A ROW                            <\/h1>\n                        \n                        \n                                            <\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/div>\n<\/section>\n<script src=\"https:\/\/www.youtube.com\/iframe_api\"><\/script>\n<script src=\"https:\/\/player.vimeo.com\/api\/player.js\"><\/script>\n<script>\ndocument.addEventListener('DOMContentLoaded', function() {\n    \/\/ Vimeo can run immediately since the SDK loads synchronously enough\n    const heroVideos = document.querySelectorAll('.hero-video-wrapper iframe');\n    heroVideos.forEach(iframe => {\n        if (iframe.src.includes('vimeo.com')) {\n            const player = new Vimeo.Player(iframe);\n            player.getDuration().then(duration => {\n                player.on('timeupdate', data => {\n                    if (data.seconds >= duration - 1) {\n                        player.setCurrentTime(0).then(() => player.play());\n                    }\n                });\n            });\n        }\n    });\n\n    \/\/ Collect YouTube iframes to initialize once the API is ready\n    window._ytHeroIframes = document.querySelectorAll('.hero-video-wrapper iframe[src*=\"youtube.com\"]');\n});\n\n\/\/ This is called automatically by the YouTube API once it's fully loaded\nwindow.onYouTubeIframeAPIReady = function() {\n    if (!window._ytHeroIframes) return;\n\n    window._ytHeroIframes.forEach(iframe => {\n        const videoId = iframe.src.match(\/embed\\\/([^?&]+)\/)[1];\n        const parent = iframe.parentNode;\n        iframe.remove();\n\n        const ytDiv = document.createElement('div');\n        ytDiv.id = 'yt-hero-' + Math.floor(Math.random() * 10000);\n        ytDiv.classList.add('hero-video');\n        parent.appendChild(ytDiv);\n\n        new YT.Player(ytDiv.id, {\n            videoId: videoId,\n            playerVars: {\n                autoplay: 1,\n                controls: 0,\n                loop: 1,\n                playlist: videoId,\n                mute: 1,\n                modestbranding: 1,\n                disablekb: 1,\n                playsinline: 1\n            },\n            events: {\n                onReady: function(event) {\n                    const duration = event.target.getDuration();\n                    setInterval(() => {\n                        const current = event.target.getCurrentTime();\n                        if (current >= duration - 1) {\n                            event.target.seekTo(0);\n                            event.target.playVideo();\n                        }\n                    }, 800);\n                }\n            }\n        });\n    });\n};\n<\/script>\n<section id=\"section-text-block_c2127d579ded7adaff849e063173c612\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>To limit the effects of climate change and global warming as much as possible, CO2 reduction is essential. PaperWise is produced using green energy wherever possible, but we face unavoidable CO2 emissions throughout the entire chain. For the 3rd year in a row, PaperWise fully offsets its CO2 emissions, measured across the entire production chain. To achieve this, PaperWise is affiliated with the United Nations Carbon Offset Platform.   <\/p>\n<h2>UNITED NATIONS CARBON OFFSET PLATFORM<\/h2>\n<p>This platform features UNFCCC-certified projects that reduce, avoid, or remove greenhouse gas emissions from the atmosphere. These projects take place in developing countries and are rewarded with Certified Emission Reductions (CERs; carbon offsetting measured in tonnes of CO2 equivalent). In recent years, PaperWise has offset a total equivalent of more than 4,700 tonnes of CO2. The contributions for this carbon offsetting have gone entirely toward green projects.   <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-image-cers.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_9f2b916ebf82984ddddad92340f67060\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>A portion of this, for example, has been spent on wind energy projects in the region in India where PaperWise is produced. For this purpose, 15 wind turbine generators are being installed in the state of Tamil Nadu. The goal is to generate electricity from renewable, clean wind energy without any associated greenhouse gas emissions. If the wind farm were not installed, an equivalent amount of electricity would be generated from connected power plants based on fossil fuels. By investing in these wind turbine generators, electricity is generated from wind, thereby reducing greenhouse gas emissions. Using natural wind as a renewable energy source thus produces clean energy without negative consequences for the health of the local community or local biological life.     <\/p>\n<p>The land purchased for the wind farms consists largely of non-buildable and sparsely populated areas. On a social and economic level, the wind farm contributes to infrastructure development, including a road network at the wind farm location to which the local population is also granted access. It also provides employment for both skilled and unskilled labor. (Source: <a href=\"https:\/\/offset.climateneutralnow.org\/vchistory?Name=paperwise&amp;OrderIdString=&amp;ProjectIdString=&amp;DateFrom=&amp;DateUntil=\">United Nations<\/a>)    <\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n\n<div class=\"section-full-width-image-wrapper\">\n    <section class=\"section-full-width-image section-full-width-image height-medium parallax-enabled\" >\n                    <div class=\"image-container\">\n                <img decoding=\"async\" src=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-greenprojects.jpg\"\n                     alt=\"\"\n                     class=\"full-width-image\"\n                     loading=\"lazy\">\n            <\/div>\n            <\/section>\n\n    <\/div>\n\n<script>\n(function() {\n    const parallaxSection = document.querySelector('.section-full-width-image.parallax-enabled');\n    if (!parallaxSection) return;\n\n    const parallaxImage = parallaxSection.querySelector('.full-width-image');\n    if (!parallaxImage) return;\n\n    function updateParallax() {\n        const rect = parallaxSection.getBoundingClientRect();\n        const windowHeight = window.innerHeight;\n\n        \/\/ Check if section is in viewport\n        if (rect.bottom > 0 && rect.top < windowHeight) {\n            \/\/ Calculate scroll progress (0 to 1) relative to viewport\n            const scrollProgress = (windowHeight - rect.top) \/ (windowHeight + rect.height);\n\n            \/\/ Move image from -20% to +20% based on scroll progress\n            const movement = (scrollProgress - 0.5) * 40; \/\/ -20 to +20\n\n            parallaxImage.style.transform = `translate3d(0, ${movement}%, 0)`;\n        }\n    }\n\n    \/\/ Throttle scroll event for better performance\n    let ticking = false;\n    window.addEventListener('scroll', function() {\n        if (!ticking) {\n            window.requestAnimationFrame(function() {\n                updateParallax();\n                ticking = false;\n            });\n            ticking = true;\n        }\n    });\n\n    \/\/ Initial call\n    updateParallax();\n})();\n<\/script>\n\n<section id=\"section-text-block_5de59cc989e088c466e7fa67a1b45cc8\" class=\"section section-text\">\n    <div class=\"container\">\n        <div class=\"section-text__wrapper text-align-left\">\n\n            \n                            <div class=\"section-text__content\">\n                    <p>Photo: source <a href=\"https:\/\/offset.climateneutralnow.org\/grid-connected-wind-power-generation-in-tamil-nadu-india-9418-?searchResultsLink=%2FAllProjects%3FSearchTerm%3DGrid%2BConnected%2BWind%2BPower%2BGeneration%2Bin%2BTamil%2BNadu%252C%2BIndia\">United Nations<\/a><\/p>\n                <\/div>\n            \n        <\/div>\n    <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":8037,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[173],"tags":[172],"class_list":["post-8036","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-news","tag-co2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CO2-Neutral for the 3rd Year in a Row with UNFCCC projects<\/title>\n<meta name=\"description\" content=\"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CO2-Neutral for the 3rd Year in a Row with UNFCCC projects\" \/>\n<meta property=\"og:description\" content=\"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/\" \/>\n<meta property=\"og:site_name\" content=\"Paperwise\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-27T05:20:22+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-03-17T09:09:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"786\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"romano\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"romano\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/\"},\"author\":{\"name\":\"romano\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"headline\":\"PAPERWISE CO2-NEUTRAL FOR THE 3RD YEAR IN A ROW\",\"datePublished\":\"2025-11-27T05:20:22+00:00\",\"dateModified\":\"2026-03-17T09:09:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/\"},\"wordCount\":10,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/paperwise-co2neutral-paper-board-header.jpg\",\"keywords\":[\"CO2\"],\"articleSection\":[\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/\",\"name\":\"CO2-Neutral for the 3rd Year in a Row with UNFCCC projects\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/paperwise-co2neutral-paper-board-header.jpg\",\"datePublished\":\"2025-11-27T05:20:22+00:00\",\"dateModified\":\"2026-03-17T09:09:42+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\"},\"description\":\"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#primaryimage\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/paperwise-co2neutral-paper-board-header.jpg\",\"contentUrl\":\"https:\\\/\\\/paperwise.eu\\\/wp-content\\\/uploads\\\/2025\\\/11\\\/paperwise-co2neutral-paper-board-header.jpg\",\"width\":1920,\"height\":786},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/paperwise-co2-neutral-3rd-year-in-a-row\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PAPERWISE CO2-NEUTRAL FOR THE 3RD YEAR IN A ROW\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/\",\"name\":\"Paperwise\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/#\\\/schema\\\/person\\\/8795b3f325bbd0bd99ae85bbea26ad2e\",\"name\":\"romano\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g\",\"caption\":\"romano\"},\"url\":\"https:\\\/\\\/paperwise.eu\\\/en\\\/author\\\/romano\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CO2-Neutral for the 3rd Year in a Row with UNFCCC projects","description":"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/","og_locale":"en_US","og_type":"article","og_title":"CO2-Neutral for the 3rd Year in a Row with UNFCCC projects","og_description":"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.","og_url":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/","og_site_name":"Paperwise","article_published_time":"2025-11-27T05:20:22+00:00","article_modified_time":"2026-03-17T09:09:42+00:00","og_image":[{"width":1920,"height":786,"url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg","type":"image\/jpeg"}],"author":"romano","twitter_card":"summary_large_image","twitter_misc":{"Written by":"romano"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#article","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/"},"author":{"name":"romano","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"headline":"PAPERWISE CO2-NEUTRAL FOR THE 3RD YEAR IN A ROW","datePublished":"2025-11-27T05:20:22+00:00","dateModified":"2026-03-17T09:09:42+00:00","mainEntityOfPage":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/"},"wordCount":10,"commentCount":0,"image":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg","keywords":["CO2"],"articleSection":["News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/","url":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/","name":"CO2-Neutral for the 3rd Year in a Row with UNFCCC projects","isPartOf":{"@id":"https:\/\/paperwise.eu\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#primaryimage"},"image":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#primaryimage"},"thumbnailUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg","datePublished":"2025-11-27T05:20:22+00:00","dateModified":"2026-03-17T09:09:42+00:00","author":{"@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e"},"description":"Discover how PaperWise is CO2-neutral for the 3rd year, thanks to contributions to UNFCCC projects.","breadcrumb":{"@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#primaryimage","url":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg","contentUrl":"https:\/\/paperwise.eu\/wp-content\/uploads\/2025\/11\/paperwise-co2neutral-paper-board-header.jpg","width":1920,"height":786},{"@type":"BreadcrumbList","@id":"https:\/\/paperwise.eu\/en\/paperwise-co2-neutral-3rd-year-in-a-row\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/paperwise.eu\/en\/"},{"@type":"ListItem","position":2,"name":"PAPERWISE CO2-NEUTRAL FOR THE 3RD YEAR IN A ROW"}]},{"@type":"WebSite","@id":"https:\/\/paperwise.eu\/en\/#website","url":"https:\/\/paperwise.eu\/en\/","name":"Paperwise","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/paperwise.eu\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/paperwise.eu\/en\/#\/schema\/person\/8795b3f325bbd0bd99ae85bbea26ad2e","name":"romano","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1088d66ec0cbb86d1f51d63deb3022acd3d470c3fa7de3b2bf2b7898ed286a14?s=96&d=mm&r=g","caption":"romano"},"url":"https:\/\/paperwise.eu\/en\/author\/romano\/"}]}},"_links":{"self":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/8036","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/comments?post=8036"}],"version-history":[{"count":1,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/8036\/revisions"}],"predecessor-version":[{"id":8040,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/posts\/8036\/revisions\/8040"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media\/8037"}],"wp:attachment":[{"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/media?parent=8036"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/categories?post=8036"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/paperwise.eu\/en\/wp-json\/wp\/v2\/tags?post=8036"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}