{"id":155,"date":"2022-11-23T07:36:17","date_gmt":"2022-11-23T07:36:17","guid":{"rendered":"https:\/\/novasoil-project.eu\/?page_id=155"},"modified":"2024-07-15T11:00:40","modified_gmt":"2024-07-15T09:00:40","slug":"case-studies","status":"publish","type":"page","link":"https:\/\/novasoil-project.eu\/index.php\/work-packages\/case-studies\/","title":{"rendered":"Case studies"},"content":{"rendered":"\n<div id=\"map\" style=\"height: 400px; width: 75%; float: left;\"><\/div>\n<div id=\"sidebar\" style=\"height: 400px; width: 25%; float: left; overflow-y: auto; background-color: #4CAF50; color: white; padding: 5px;\">\n    <ul id=\"locationList\" style=\"padding: 0; list-style: none;\">\n        <!-- Los elementos de la lista se agregar\u00e1n din\u00e1micamente aqu\u00ed -->\n    <\/ul>\n<\/div>\n<link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet\/dist\/leaflet.css\" \/>\n<script src=\"https:\/\/unpkg.com\/leaflet\/dist\/leaflet.js\"><\/script>\n<style>\n    .legend {\n        line-height: 24px; \/* Espaciado entre l\u00edneas para mejor lectura *\/\n        color: #555;\n        padding: 6px; \/* Espacio interior para un mejor formato *\/\n        font-size: 16px; \/* Tama\u00f1o de letra m\u00e1s grande para facilitar la lectura *\/\n        background: rgba(255, 255, 255, 0.8); \/* Fondo semitransparente para la legibilidad *\/\n        box-shadow: 0 0 15px rgba(0,0,0,0.2); \/* Sombra suave para resaltar la leyenda *\/\n        border-radius: 5px; \/* Bordes redondeados *\/\n    }\n    .legend i {\n        width: 18px;\n        height: 18px;\n        float: left;\n        margin-right: 8px;\n        opacity: 0.7;\n    }\n<\/style>\n<script>\n    var map = L.map('map').setView([48.8566, 2.3522], 4); \/\/ Coordenadas iniciales para centrar el mapa en Europa\n    L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n        maxZoom: 18,\n        attribution: '\u00a9 OpenStreetMap contributors'\n    }).addTo(map);\n\n    var locations = [\n        { name: \"District of the Sands \ud83c\uddee\ud83c\uddf9\", lat: 44.82, lon: 12.23, type: \"Carbon credits\" },\n        { name: \"Alley cropping systemZSA \ud83c\uddf1\ud83c\uddfb\", lat: 56.62, lon: 25.12, type: \"Payment per ES\" },\n        { name: \"Tamarguillo Park \ud83c\uddea\ud83c\uddf8\", lat: 37.39, lon: -5.94, type: \"Payment per ES\" },\n        { name: \"Integrated production \ud83c\uddea\ud83c\uddf8\", lat: 37.02, lon: -4.56, type: \"Value chain\" },\n        { name: \"Rabo Carbon bank \ud83c\uddf3\ud83c\uddf1\", lat: 51.96, lon: 5.66, type: \"Carbon credits\" },\n        { name: \"Landscape Enterprise Networks (LENs) \ud83c\uddec\ud83c\udde7\", lat: 52.75, lon: -1.57, type: \"Payment per ES\" },\n        { name: \"Integrated production \ud83c\uddea\ud83c\uddea\", lat: 59.44, lon: 24.75, type: \"Value chain\" },\n        { name: \"AgoraNatura \ud83c\udde9\ud83c\uddea\", lat: 53.09, lon: 11.56, type: \"Payment per ES\" },\n        { name: \"CO2-Land \ud83c\udde9\ud83c\uddea\", lat: 48.14, lon: 11.56, type: \"Carbon credits\" },\n        { name: \"Bodenfruchtbarkeitsfonds \ud83c\udde8\ud83c\udded\ud83c\udde9\ud83c\uddea\ud83c\udde6\ud83c\uddf9\", lat: 48.15, lon: 11.56, type: \"Payment per ES\" },\n        { name: \"ZSA DIH System \ud83c\uddf1\ud83c\uddfb\", lat: 56.95, lon: 24.09, type: \"Payment per ES\" },\n        { name: \"CiRAA LTEs on conventional and organic agriculture \ud83c\uddee\ud83c\uddf9\", lat: 43.71, lon: 10.54, type: \"Payment per ES\" },\n        { name: \"A model for multifunctional and sustainable local development \ud83c\uddee\ud83c\uddf9\", lat: 43.47, lon: 10.54, type: \"Value chain\" },\n        { name: \"Integrated production in the vineyards with vinery and rural tourizm \ud83c\udde7\ud83c\uddec\", lat: 42.69, lon: 23.31, type: \"Value chain\" },\n        { name: \"Rueda \ud83c\uddea\ud83c\uddf8\", lat: 41.41, lon: -4.96, type: \"Value chain\" }\n    ];\n\n    function getColor(type) {\n        switch(type) {\n            case \"Carbon credits\": return \"red\";\n            case \"Payment per ES\": return \"blue\";\n            case \"Value chain\": return \"green\";\n            default: return \"gray\";\n        }\n    }\n\n    var legend = L.control({position: 'bottomleft'});\n\n    legend.onAdd = function (map) {\n        var div = L.DomUtil.create('div', 'info legend');\n        var labels = ['<strong>Contract Types<\/strong>'];\n        var types = [\"Carbon credits\", \"Payment per ES\", \"Value chain\"];\n        types.forEach(function(type) {\n            labels.push('<i style=\"background:' + getColor(type) + '\"><\/i>' + type);\n        });\n        div.innerHTML = labels.join('<br>');\n        return div;\n    };\n\n    legend.addTo(map);\n\n    locations.forEach(function(location) {\n        var markerOptions = {\n            radius: 8,\n            fillColor: getColor(location.type),\n            color: \"#000\",\n            weight: 1,\n            opacity: 1,\n            fillOpacity: 0.8\n        };\n        var marker = L.circleMarker([location.lat, location.lon], markerOptions).addTo(map);\n        marker.bindPopup(\"<strong>\" + location.name + \"<\/strong>\");\n\n        var listItem = document.createElement(\"li\");\n        listItem.innerHTML = location.name;\n        listItem.style.cursor = \"pointer\";\n        listItem.style.padding = \"10px\";\n        listItem.style.borderBottom = \"1px solid #fff\";\n        listItem.onclick = function() {\n            map.flyTo([location.lat, location.lon], 10);\n            marker.openPopup();\n        };\n        document.getElementById(\"locationList\").appendChild(listItem);\n    });\n<\/script>\n\n\n\n\n<div style=\"height:36px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n<style>.kb-posts-id-155_9f1d25-93 .entry.loop-entry .entry-header .entry-title{font-size:16px;line-height:16px;}<\/style><div class=\"wp-block-kadence-posts kb-posts kb-posts-id-155_9f1d25-93 content-wrap grid-cols kb-posts-style-unboxed grid-sm-col-2 grid-lg-col-2 item-image-style-above  ticss-ac2436d3\"><article class=\"entry content-bg loop-entry kb-post-no-image post-2460 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/alley-cropping-systemzsa\/\" rel=\"bookmark\">Alley cropping systemZSA  \ud83c\uddf1\ud83c\uddfb<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country LATVIA Leader ZSA Contract type Payment per ES Description The case study site was established on agricultural [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/alley-cropping-systemzsa\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Alley cropping systemZSA  \ud83c\uddf1\ud83c\uddfb<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-2434 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/tamarguillo-park\/\" rel=\"bookmark\">Tamarguillo Park \ud83c\uddea\ud83c\uddf8<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region ANDALUC\u00cdA Country SPAIN EVENOR-tech Contract type Payment per ES Description Urban soils are under constant pressure from a variety [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/tamarguillo-park\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Tamarguillo Park \ud83c\uddea\ud83c\uddf8<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-2421 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/integrated-production\/\" rel=\"bookmark\">Integrated production \ud83c\uddea\ud83c\uddf8<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region ANDALUC\u00cdA Country SPAIN EVENOR Contract type Value chain\u00a0 Description The case of the olive grove in integrated production is [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2024\/07\/15\/integrated-production\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Integrated production \ud83c\uddea\ud83c\uddf8<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-280 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/rabo-carbon-bank-wu\/\" rel=\"bookmark\">Rabo Carbon bank \ud83c\uddf3\ud83c\uddf1<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region CUMBRIA AND EAST ANGLIA Country Netherlands Leader WU Contract type Carbon credits Description The case shows how the financial [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/rabo-carbon-bank-wu\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Rabo Carbon bank \ud83c\uddf3\ud83c\uddf1<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-273 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/crop-production-uk\/\" rel=\"bookmark\">Landscape Enterprise Networks (LENs) \ud83c\uddec\ud83c\udde7<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region CUMBRIA AND EAST ANGLIA Country United Kingdom Leader LEEDS Contract type Payment per ES Description The University of Leeds&#8217; [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/crop-production-uk\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Landscape Enterprise Networks (LENs) \ud83c\uddec\ud83c\udde7<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-268 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/crop-production-estonia\/\" rel=\"bookmark\">Integrated production \ud83c\uddea\ud83c\uddea<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country ESTONIA Leader ETKI Contract type Value chain\u00a0 Description METK breeds agricultural crops, produces their seed, researches the [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/crop-production-estonia\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Integrated production \ud83c\uddea\ud83c\uddea<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-236 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/agoranatura-germany\/\" rel=\"bookmark\">AgoraNatura \ud83c\udde9\ud83c\uddea<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country GERMANY Leader ZALF Contract type Payment per ES Description AgoraNatura (www.agora-natura.de\/en ) is Germany&#8217;s first online marketplace [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/agoranatura-germany\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> AgoraNatura \ud83c\udde9\ud83c\uddea<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-232 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/co2-land_germany\/\" rel=\"bookmark\">CO2-Land \ud83c\udde9\ud83c\uddea<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country GERMANY Leader TUM Contract type Carbon credits Description The CO2-Land initiative aims to make a significant contribution [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/co2-land_germany\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> CO2-Land \ud83c\udde9\ud83c\uddea<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-225 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/soil-fertility-fund\/\" rel=\"bookmark\">Bodenfruchtbarkeitsfonds \ud83c\udde8\ud83c\udded\ud83c\udde9\ud83c\uddea\ud83c\udde6\ud83c\uddf9<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country SWITZERLAND \/ GERMANY \/AUSTRIA Leader TUM Contract type Payment per ES Description The Soil Fertility Fund provides [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/soil-fertility-fund\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Bodenfruchtbarkeitsfonds \ud83c\udde8\ud83c\udded\ud83c\udde9\ud83c\uddea\ud83c\udde6\ud83c\uddf9<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-215 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/animal-farming-latvia\/\" rel=\"bookmark\">ZSA DIH System \ud83c\uddf1\ud83c\uddfb<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region NAN Country LATVIA Leader ZSA Contract type Payment per ES Description ZSA DIH System &#8211; The implementation of eco-schemes [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/animal-farming-latvia\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> ZSA DIH System \ud83c\uddf1\ud83c\uddfb<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-210 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/ciraa-ltes-pisa\/\" rel=\"bookmark\">CiRAA LTEs on conventional and organic agriculture \ud83c\uddee\ud83c\uddf9<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region Tuscany&nbsp; Country ITALY Leader UNIVERSIT\u00c0 DI PISA Contract type Payment per ES Description The case study focuses on a [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/ciraa-ltes-pisa\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> CiRAA LTEs on conventional and organic agriculture \ud83c\uddee\ud83c\uddf9<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-205 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/multifunctional-tuscany\/\" rel=\"bookmark\">A model for multifunctional and sustainable local development of marginal areas \ud83c\uddee\ud83c\uddf9<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region Tuscany&nbsp; Country ITALY Leader UNIVERSIT\u00c0 DI PISA Contract type Value chain Description The case study stems from an integrated [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/multifunctional-tuscany\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> A model for multifunctional and sustainable local development of marginal areas \ud83c\uddee\ud83c\uddf9<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-202 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/district-of-the-sands\/\" rel=\"bookmark\">District of the Sands \ud83c\uddee\ud83c\uddf9<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region Coastal area of the Emilia-Romagna Country ITALY Leader ISTITUTO DELTA &amp; UNIFE Contract type Carbon credits Description The coastal [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/district-of-the-sands\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> District of the Sands \ud83c\uddee\ud83c\uddf9<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-189 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/vineyards_bulgaria\/\" rel=\"bookmark\">Integrated production in the vineyards with vinery and rural tourizm \ud83c\udde7\ud83c\uddec<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region Bulgaria Country BULGARIA Leader NBU Contract type Value chain Description The aim of the Plovdiv region case study is [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/24\/vineyards_bulgaria\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Integrated production in the vineyards with vinery and rural tourizm \ud83c\udde7\ud83c\uddec<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<article class=\"entry content-bg loop-entry kb-post-no-image post-167 post type-post status-publish format-standard hentry category-case-studies\">\n\t\t<div class=\"entry-content-wrap\">\n\t\t<header class=\"entry-header\">\n\t\t<div class=\"entry-taxonomies\">\n\t\t<span class=\"category-links term-links category-style-normal\">\n\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/category\/case-studies\/\" rel=\"category tag\">Case studies<\/a>\t\t<\/span>\n\t<\/div><!-- .entry-taxonomies -->\n\t<h2 class=\"entry-title\"><a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/23\/rueda\/\" rel=\"bookmark\">Rueda\u00a0\ud83c\uddea\ud83c\uddf8\u00a0<\/a><\/h2><\/header><!-- .entry-header -->\n\t<div class=\"entry-summary\">\n\t\t<p>Region Castilla y Le\u00f3n (Northern Spain) Country SPAIN Leader UPM Contract type Value chain\u00a0 Description This is a contractual solution [&hellip;]<\/p>\n\t<\/div><!-- .entry-summary -->\n\t<footer class=\"entry-footer\">\n\t\t\t<div class=\"entry-actions\">\n\t\t\t<p class=\"more-link-wrap\">\n\t\t\t\t<a href=\"https:\/\/novasoil-project.eu\/index.php\/2022\/11\/23\/rueda\/\" class=\"post-more-link\">\n\t\t\t\t\tRead More<span class=\"screen-reader-text\"> Rueda\u00a0\ud83c\uddea\ud83c\uddf8\u00a0<\/span><span class=\"kadence-svg-iconset svg-baseline\"><svg aria-hidden=\"true\" class=\"kadence-svg-icon kadence-arrow-right-alt-svg\" fill=\"currentColor\" version=\"1.1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"27\" height=\"28\" viewBox=\"0 0 27 28\"><title>Continue<\/title><path d=\"M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z\"><\/path>\n\t\t\t<\/svg><\/span>\t\t\t\t<\/a>\n\t\t\t<\/p>\n\t\t<\/div><!-- .entry-actions -->\n\t\t<\/footer><!-- .entry-footer -->\t<\/div>\n<\/article>\n<\/div>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":0,"parent":30,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"episode_type":"","audio_file":"","cover_image":"","cover_image_id":"","duration":"","filesize":"","date_recorded":"","explicit":"","block":"","itunes_episode_number":"","itunes_title":"","itunes_season_number":"","itunes_episode_type":"","filesize_raw":"","_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"_themeisle_gutenberg_block_has_review":false,"footnotes":""},"class_list":["post-155","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/pages\/155"}],"collection":[{"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/comments?post=155"}],"version-history":[{"count":30,"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/pages\/155\/revisions"}],"predecessor-version":[{"id":2482,"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/pages\/155\/revisions\/2482"}],"up":[{"embeddable":true,"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/pages\/30"}],"wp:attachment":[{"href":"https:\/\/novasoil-project.eu\/index.php\/wp-json\/wp\/v2\/media?parent=155"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}