<!doctype html>
<html lang="es">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1" />
	<link rel="profile" href="https://gmpg.org/xfn/11" />
	<!-- InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->
<script type="text/javascript" async=true>
(function() {
  var host = window.location.hostname;
  var element = document.createElement('script');
  var firstScript = document.getElementsByTagName('script')[0];
  var url = 'https://cmp.inmobi.com'
    .concat('/choice/', 'eYc-nzCX4qY_x', '/', host, '/choice.js?tag_version=V3');
  var uspTries = 0;
  var uspTriesLimit = 3;
  element.async = true;
  element.type = 'text/javascript';
  element.src = url;

  firstScript.parentNode.insertBefore(element, firstScript);

  function makeStub() {
    var TCF_LOCATOR_NAME = '__tcfapiLocator';
    var queue = [];
    var win = window;
    var cmpFrame;

    function addFrame() {
      var doc = win.document;
      var otherCMP = !!(win.frames[TCF_LOCATOR_NAME]);

      if (!otherCMP) {
        if (doc.body) {
          var iframe = doc.createElement('iframe');

          iframe.style.cssText = 'display:none';
          iframe.name = TCF_LOCATOR_NAME;
          doc.body.appendChild(iframe);
        } else {
          setTimeout(addFrame, 5);
        }
      }
      return !otherCMP;
    }

    function tcfAPIHandler() {
      var gdprApplies;
      var args = arguments;

      if (!args.length) {
        return queue;
      } else if (args[0] === 'setGdprApplies') {
        if (
          args.length > 3 &&
          args[2] === 2 &&
          typeof args[3] === 'boolean'
        ) {
          gdprApplies = args[3];
          if (typeof args[2] === 'function') {
            args[2]('set', true);
          }
        }
      } else if (args[0] === 'ping') {
        var retr = {
          gdprApplies: gdprApplies,
          cmpLoaded: false,
          cmpStatus: 'stub'
        };

        if (typeof args[2] === 'function') {
          args[2](retr);
        }
      } else {
        if(args[0] === 'init' && typeof args[3] === 'object') {
          args[3] = Object.assign(args[3], { tag_version: 'V3' });
        }
        queue.push(args);
      }
    }

    function postMessageEventHandler(event) {
      var msgIsString = typeof event.data === 'string';
      var json = {};

      try {
        if (msgIsString) {
          json = JSON.parse(event.data);
        } else {
          json = event.data;
        }
      } catch (ignore) {}

      var payload = json.__tcfapiCall;

      if (payload) {
        window.__tcfapi(
          payload.command,
          payload.version,
          function(retValue, success) {
            var returnMsg = {
              __tcfapiReturn: {
                returnValue: retValue,
                success: success,
                callId: payload.callId
              }
            };
            if (msgIsString) {
              returnMsg = JSON.stringify(returnMsg);
            }
            if (event && event.source && event.source.postMessage) {
              event.source.postMessage(returnMsg, '*');
            }
          },
          payload.parameter
        );
      }
    }

    while (win) {
      try {
        if (win.frames[TCF_LOCATOR_NAME]) {
          cmpFrame = win;
          break;
        }
      } catch (ignore) {}

      if (win === window.top) {
        break;
      }
      win = win.parent;
    }
    if (!cmpFrame) {
      addFrame();
      win.__tcfapi = tcfAPIHandler;
      win.addEventListener('message', postMessageEventHandler, false);
    }
  };

  makeStub();

  function makeGppStub() {
    const CMP_ID = 10;
    const SUPPORTED_APIS = [
      '2:tcfeuv2',
      '6:uspv1',
      '7:usnatv1',
      '8:usca',
      '9:usvav1',
      '10:uscov1',
      '11:usutv1',
      '12:usctv1'
    ];

    window.__gpp_addFrame = function (n) {
      if (!window.frames[n]) {
        if (document.body) {
          var i = document.createElement("iframe");
          i.style.cssText = "display:none";
          i.name = n;
          document.body.appendChild(i);
        } else {
          window.setTimeout(window.__gpp_addFrame, 10, n);
        }
      }
    };
    window.__gpp_stub = function () {
      var b = arguments;
      __gpp.queue = __gpp.queue || [];
      __gpp.events = __gpp.events || [];

      if (!b.length || (b.length == 1 && b[0] == "queue")) {
        return __gpp.queue;
      }

      if (b.length == 1 && b[0] == "events") {
        return __gpp.events;
      }

      var cmd = b[0];
      var clb = b.length > 1 ? b[1] : null;
      var par = b.length > 2 ? b[2] : null;
      if (cmd === "ping") {
        clb(
          {
            gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
            cmpStatus: "stub", // possible values: stub, loading, loaded, error
            cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
            signalStatus: "not ready", // possible values: not ready, ready
            supportedAPIs: SUPPORTED_APIS, // list of supported APIs
            cmpId: CMP_ID, // IAB assigned CMP ID, may be 0 during stub/loading
            sectionList: [],
            applicableSections: [-1],
            gppString: "",
            parsedSections: {},
          },
          true
        );
      } else if (cmd === "addEventListener") {
        if (!("lastId" in __gpp)) {
          __gpp.lastId = 0;
        }
        __gpp.lastId++;
        var lnr = __gpp.lastId;
        __gpp.events.push({
          id: lnr,
          callback: clb,
          parameter: par,
        });
        clb(
          {
            eventName: "listenerRegistered",
            listenerId: lnr, // Registered ID of the listener
            data: true, // positive signal
            pingData: {
              gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
              cmpStatus: "stub", // possible values: stub, loading, loaded, error
              cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
              signalStatus: "not ready", // possible values: not ready, ready
              supportedAPIs: SUPPORTED_APIS, // list of supported APIs
              cmpId: CMP_ID, // list of supported APIs
              sectionList: [],
              applicableSections: [-1],
              gppString: "",
              parsedSections: {},
            },
          },
          true
        );
      } else if (cmd === "removeEventListener") {
        var success = false;
        for (var i = 0; i < __gpp.events.length; i++) {
          if (__gpp.events[i].id == par) {
            __gpp.events.splice(i, 1);
            success = true;
            break;
          }
        }
        clb(
          {
            eventName: "listenerRemoved",
            listenerId: par, // Registered ID of the listener
            data: success, // status info
            pingData: {
              gppVersion: "1.1", // must be “Version.Subversion”, current: “1.1”
              cmpStatus: "stub", // possible values: stub, loading, loaded, error
              cmpDisplayStatus: "hidden", // possible values: hidden, visible, disabled
              signalStatus: "not ready", // possible values: not ready, ready
              supportedAPIs: SUPPORTED_APIS, // list of supported APIs
              cmpId: CMP_ID, // CMP ID
              sectionList: [],
              applicableSections: [-1],
              gppString: "",
              parsedSections: {},
            },
          },
          true
        );
      } else if (cmd === "hasSection") {
        clb(false, true);
      } else if (cmd === "getSection" || cmd === "getField") {
        clb(null, true);
      }
      //queue all other commands
      else {
        __gpp.queue.push([].slice.apply(b));
      }
    };
    window.__gpp_msghandler = function (event) {
      var msgIsString = typeof event.data === "string";
      try {
        var json = msgIsString ? JSON.parse(event.data) : event.data;
      } catch (e) {
        var json = null;
      }
      if (typeof json === "object" && json !== null && "__gppCall" in json) {
        var i = json.__gppCall;
        window.__gpp(
          i.command,
          function (retValue, success) {
            var returnMsg = {
              __gppReturn: {
                returnValue: retValue,
                success: success,
                callId: i.callId,
              },
            };
            event.source.postMessage(msgIsString ? JSON.stringify(returnMsg) : returnMsg, "*");
          },
          "parameter" in i ? i.parameter : null,
          "version" in i ? i.version : "1.1"
        );
      }
    };
    if (!("__gpp" in window) || typeof window.__gpp !== "function") {
      window.__gpp = window.__gpp_stub;
      window.addEventListener("message", window.__gpp_msghandler, false);
      window.__gpp_addFrame("__gppLocator");
    }
  };

  makeGppStub();

  var uspStubFunction = function() {
    var arg = arguments;
    if (typeof window.__uspapi !== uspStubFunction) {
      setTimeout(function() {
        if (typeof window.__uspapi !== 'undefined') {
          window.__uspapi.apply(window.__uspapi, arg);
        }
      }, 500);
    }
  };

  var checkIfUspIsReady = function() {
    uspTries++;
    if (window.__uspapi === uspStubFunction && uspTries < uspTriesLimit) {
      console.warn('USP is not accessible');
    } else {
      clearInterval(uspInterval);
    }
  };

  if (typeof window.__uspapi === 'undefined') {
    window.__uspapi = uspStubFunction;
    var uspInterval = setInterval(checkIfUspIsReady, 6000);
  }
})();
</script>
<!-- End InMobi Choice. Consent Manager Tag v3.0 (for TCF 2.2) -->

<!-- Marfeel -->
<script type="text/javascript">
!function(){"use strict";function e(e){var t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],c=document.createElement("script");c.src=e,t?c.type="module":(c.async=!0,c.type="text/javascript",c.setAttribute("nomodule",""));var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(c,n)}!function(t,c){!function(t,c,n){var a,o,r;n.accountId=c,null!==(a=t.marfeel)&&void 0!==a||(t.marfeel={}),null!==(o=(r=t.marfeel).cmd)&&void 0!==o||(r.cmd=[]),t.marfeel.config=n;var i="https://sdk.mrf.io/statics";e("".concat(i,"/marfeel-sdk.js?id=").concat(c),!0),e("".concat(i,"/marfeel-sdk.es5.js?id=").concat(c),!1)}(t,c,arguments.length>2&&void 0!==arguments[2]?arguments[2]:{})}(window,1513,{} /* Config */)}();
</script>
<!-- / Marfeel -->

<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
		<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
		<script defer src="data:text/javascript;base64,CgkJCXdpbmRvdy5nb29nbGV0YWcgPSB3aW5kb3cuZ29vZ2xldGFnIHx8IHsgY21kOiBbXSB9OwoJCQ=="></script>
		<link rel='preconnect' href='https://i0.wp.com' >
<link rel='preconnect' href='https://s.hipertextual.com' >
<link rel='preconnect' href='https://sdk.mrf.io' >
<link rel='preconnect' href='https://securepubads.g.doubleclick.net' >
<link rel='preconnect' href='https://imgs.hipertextual.com' >
<link rel='preconnect' href='https://googleads.g.doubleclick.net' >
<link rel='preconnect' href='https://cmp.inmobi.com' >
<link rel='dns-prefetch' href='//securepubads.g.doubleclick.net'>
<link rel='dns-prefetch' href='//sdk.mrf.io'>
<link rel='dns-prefetch' href='//s.hipertextual.com'>
<link rel='dns-prefetch' href='//googleads.g.doubleclick.net'>
<link rel='dns-prefetch' href='//cmp.inmobi.com'>

	<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https://yoast.com/product/yoast-seo-premium-wordpress/ -->
	<title>FEEDblendr: Feed de feeds</title><link rel="preload" href="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?fit=600%2C96&amp;quality=70&amp;strip=all&amp;ssl=1" as="image" imagesrcset="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?w=600&amp;quality=70&amp;strip=all&amp;ssl=1 600w, https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?resize=400%2C64&amp;quality=70&amp;strip=all&amp;ssl=1 400w, https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?fit=600%2C96&amp;quality=70&amp;strip=all&amp;ssl=1&amp;w=370 370w" imagesizes="(max-width: 600px) 100vw, 600px" fetchpriority="high"><link rel="preload" href="https://i0.wp.com/newspack-hipertextual.s3.eu-west-3.amazonaws.com/wp-content/uploads/2007/01/feedblendr.gif?w=780&#038;quality=70&#038;strip=all" as="image" fetchpriority="high"><style id="perfmatters-used-css">.wp-block-newspack-tabs .tab-content.is-active figcaption{color:var(--wp--preset--color--contrast-3,#757575);}.has-background .wp-block-newspack-tabs{border-radius:var(--newspack-ui-border-radius-m,6px);padding:var(--newspack-ui-spacer-5,24px);}.widget_newspack-ads-widget{overflow:hidden;}#page{overflow:initial !important;}.newspack_global_ad{clear:both;flex:1 1 auto;max-width:100%;}.newspack_global_ad.fixed-height{box-sizing:initial;padding:16px 0;}.newspack_global_ad.fixed-height>*{margin:0;}.newspack_global_ad.left_side_rail,.newspack_global_ad.right_side_rail{bottom:40px;box-sizing:border-box;position:fixed;top:40px;}.newspack_global_ad.left_side_rail>*,.newspack_global_ad.right_side_rail>*{margin:0;}.newspack_global_ad.left_side_rail .ad-slot,.newspack_global_ad.right_side_rail .ad-slot{display:block;transform:translateX(0);transition-behavior:allow-discrete;transition-duration:.2s;transition-property:display,opacity,transform;transition-timing-function:ease-in-out;}@starting-style{opacity:0;}.newspack_global_ad.left_side_rail .ad-slot.ad-visible,.newspack_global_ad.right_side_rail .ad-slot.ad-visible{display:block;opacity:1;pointer-events:auto;}.newspack_global_ad.left_side_rail{justify-content:flex-end;left:0;padding-right:32px;}@starting-style{}.newspack_global_ad.right_side_rail{justify-content:flex-start;padding-left:32px;right:0;}@starting-style{}:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600;}body:not(.is-block-theme) div.wp-block-columns{gap:32px;}body:not(.is-block-theme) div.wp-block-columns.is-style-borders{gap:64px;}@media only screen and (max-width:781px){body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile{gap:20px;}body:not(.is-block-theme) div.wp-block-columns.is-not-stacked-on-mobile.is-style-borders{gap:40px;}}@media only screen and (min-width:782px){.wp-block-columns.is-style-first-col-to-second>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(2),.wp-block-columns.is-style-first-col-to-third>.wp-block-column:nth-child(3){order:-1;}}.wp-block-columns.is-style-borders>.wp-block-column{position:relative;}.wp-block-columns.is-style-borders>.wp-block-column:after{border:solid #ddd;border-width:1px 0 0;bottom:-32px;content:"";left:0;position:absolute;right:0;}.wp-block-columns.is-style-borders>.wp-block-column:last-child:after{display:none;}@media only screen and (min-width:782px){.wp-block-columns.is-style-borders>.wp-block-column{margin-bottom:0;}.wp-block-columns.is-style-borders>.wp-block-column:after{border-right-width:1px;border-top-width:0;inset:0 -32px 0 auto;}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none;}.wp-block-columns.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block;}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{border-right-width:1px;border-top-width:0;inset:0 -20px 0 auto;}@media only screen and (min-width:782px){.wp-block-columns.is-not-stacked-on-mobile.is-style-borders>.wp-block-column:after{right:-32px;}}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:first-child:after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:first-child:after{display:none;}.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-second>.wp-block-column:nth-child(2):after,.wp-block-columns.is-not-stacked-on-mobile.is-style-borders.is-style-first-col-to-third>.wp-block-column:nth-child(3):after{display:block;}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column:not(:first-child),.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child){margin-left:0;}@media (min-width:600px)and (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:only-child){flex-basis:unset !important;flex-grow:1;}}:export{primary-000:#dfe7f4;primary-050:#bfcfe9;primary-100:#9fb6dd;primary-200:#809ed2;primary-300:#6086c7;primary-400:#406ebc;primary-500:#2055b0;primary-600:#003da5;primary-700:#00296e;primary-800:#001f53;primary-900:#001437;primary-1000:#000a1c;secondary-000:#eff9f2;secondary-050:#ddf3e3;secondary-100:#c8ecd4;secondary-200:#b1e6c3;secondary-300:#95dfaf;secondary-400:#6fd898;secondary-500:#26d07c;secondary-600:#1fb36a;secondary-700:#1ba25f;secondary-800:#178e53;secondary-900:#117644;secondary-1000:#09552f;tertiary-000:#fff4f6;tertiary-050:#fee8ed;tertiary-100:#fedbe3;tertiary-200:#fcded8;tertiary-300:#fdbfcd;tertiary-400:#fcaec0;tertiary-500:#fc9bb3;tertiary-600:#d9859a;tertiary-700:#c5788b;tertiary-800:#ad697a;tertiary-900:#905665;tertiary-1000:#683d48;quaternary-000:#fff5ee;quaternary-050:#ffeadc;quaternary-100:#ffdec7;quaternary-200:#ffd1af;quaternary-300:#ffc392;quaternary-400:#ffb46a;quaternary-500:#ffa300;quaternary-600:#dc8c00;quaternary-700:#c77e00;quaternary-800:#af6e00;quaternary-900:#925b00;quaternary-1000:#6a4100;neutral-000:#fff;neutral-050:#f7f7f7;neutral-100:#f0f0f0;neutral-200:#e0e0e0;neutral-300:#ddd;neutral-400:#ccc;neutral-500:#949494;neutral-600:#6c6c6c;neutral-700:rgba(0,0,0,.702);neutral-800:#3e3e3e;neutral-900:#1e1e1e;neutral-1000:#000;success-000:#edfaef;success-050:#b8e6bf;success-500:#008a20;success-600:#007017;error-000:#fcf0f1;error-050:#facfd2;error-500:#d63638;error-600:#b32d2e;warning-000:#fcf9e8;warning-050:#f5e6ab;warning-300:#dba617;warning-400:#bd8600;}.community-card--featured figcaption{flex-shrink:0;margin-bottom:0;margin-left:0;}.rdb-container .wp-block-image img{width:100%;}.movie-card--featured figcaption{flex-shrink:0;margin-bottom:0;margin-left:0;}html body{--newspack-ui-font-size-m:clamp(1rem,.04rem + 2.209vw,1.611rem);--newspack-ui-font-size-l:clamp(1.111rem,.762rem + .803vw,1.333rem);--newspack-ui-font-size-xl:clamp(1.222rem,.35rem + 2.008vw,1.778rem);--newspack-ui-font-size-2xl:clamp(1.444rem,.049rem + 3.213vw,2.333rem);--newspack-ui-font-size-3xl:clamp(1.556rem,-.189rem + 4.016vw,2.667rem);--newspack-ui-font-size-4xl:clamp(1.778rem,-1.014rem + 6.426vw,3.556rem);--newspack-ui-font-size-5xl:clamp(1.889rem,-2.124rem + 9.237vw,4.444rem);--newspack-ui-font-size-6xl:clamp(2rem,-3.234rem + 12.048vw,5.333rem);}@media only screen and (min-width:600px){html body{--newspack-ui-font-size-m:clamp(.9rem,.743rem + .402vw,1rem);--newspack-ui-font-size-l:clamp(1rem,.686rem + .803vw,1.2rem);--newspack-ui-font-size-xl:clamp(1.1rem,.315rem + 2.008vw,1.6rem);--newspack-ui-font-size-2xl:clamp(1.3rem,.044rem + 3.213vw,2.1rem);--newspack-ui-font-size-3xl:clamp(1.4rem,-.17rem + 4.016vw,2.4rem);--newspack-ui-font-size-4xl:clamp(1.6rem,-.912rem + 6.426vw,3.2rem);--newspack-ui-font-size-5xl:clamp(1.7rem,-1.912rem + 9.237vw,4rem);--newspack-ui-font-size-6xl:clamp(1.8rem,-2.911rem + 12.048vw,4.8rem);}}:root{--newspack-theme-color-primary:#003da5;--newspack-theme-color-primary-variation:#2055b0;--newspack-theme-color-secondary:#555;--newspack-theme-color-secondary-variation:#3e3e3e;--newspack-theme-color-highlight:#fed850;--newspack-theme-color-primary-darken-5:#00296e;--newspack-theme-color-primary-darken-10:#001f53;--newspack-theme-color-primary-against-white:var(--newspack-theme-color-primary);--newspack-theme-color-secondary-against-white:var(--newspack-theme-color-secondary);--newspack-theme-color-against-primary:#fff;--newspack-theme-color-against-secondary:#fff;--newspack-theme-color-bg-body:#fff;--newspack-theme-color-bg-input:var(--newspack-theme-color-bg-body);--newspack-theme-color-bg-light:#f0f0f0;--newspack-theme-color-bg-button-hover:#111;--newspack-theme-color-bg-pre:#eee;--newspack-theme-color-bg-pre-lighten-5:#fbfbfb;--newspack-theme-color-bg-dark:#333;--newspack-theme-color-bg-dark-lighten-5:#404040;--newspack-theme-color-bg-dark-darken-5:#262626;--newspack-theme-color-text-main:#111;--newspack-theme-color-text-light:#515151;--newspack-theme-color-text-hover:var(--newspack-theme-color-bg-dark-lighten-5);--newspack-theme-color-text-screen:#21759b;--newspack-theme-color-link:var(--newspack-theme-color-secondary);--newspack-theme-color-link-hover:var(--newspack-theme-color-secondary-variation-against-white);--newspack-theme-color-border:#ccc;--newspack-theme-color-border-light:#e0e0e0;--newspack-theme-color-alert-yellow:#dba617;--newspack-theme-color-alert-red:#d63638;--newspack-theme-color-alert-green:#008a20;--newspack-theme-font-body:georgia,garamond,"Times New Roman",serif;--newspack-theme-font-heading:-apple-system,blinkmacsystemfont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;--newspack-theme-font-code:menlo,monaco,consolas,lucida console,monospace;--newspack-theme-font-pre:"Courier 10 Pitch",courier,monospace;--newspack-theme-font-size-base:20px;--newspack-theme-font-size-base-sm:18px;--newspack-theme-font-size-ratio:1.125;--newspack-theme-font-size-xxs:.6em;--newspack-theme-font-size-xs:.7em;--newspack-theme-font-size-sm:.8em;--newspack-theme-font-size-md:1.2em;--newspack-theme-font-size-lg:1.4em;--newspack-theme-font-size-xl:1.8em;--newspack-theme-font-size-xxl:2.2em;--newspack-theme-font-size-xxxl:2.8em;--newspack-theme-font-size-xxxxl:3.2em;--newspack-theme-font-size-xxxxxl:4em;--newspack-theme-font-line-height-body:1.6;--newspack-theme-font-line-height-heading:1.2;}html{line-height:1.15;text-size-adjust:100%;}h1{font-size:2em;margin:.67em 0;}a{background-color:initial;}b,strong{font-weight:bolder;}img{border-style:none;}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0;}button,input{overflow:visible;}button,select{text-transform:none;}[type=button],[type=reset],[type=submit],button{appearance:button;}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0;}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText;}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0;}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto;}[type=search]{appearance:textfield;outline-offset:-2px;}[type=search]::-webkit-search-decoration{appearance:none;}::-webkit-file-upload-button{appearance:button;font:inherit;}[hidden],template{display:none;}html{font-size:var(--newspack-theme-font-size-base-sm);}@media only screen and (min-width:600px){html{font-size:var(--newspack-theme-font-size-base);}}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:1em;margin:0;}body,button,input,optgroup,select,textarea{color:var(--newspack-theme-color-text-main);font-weight:400;line-height:var(--newspack-theme-font-line-height-body);text-rendering:optimizelegibility;}.use-body-font,body,button,input,optgroup,select,textarea{font-family:var(--newspack-theme-font-body);}#cancel-comment-reply-link,#mobile-sidebar,.author-bio .author-link,.author-meta,.cat-links,.comment-author .fn,.comment-metadata,.comment-reply-link,.comment-reply-login,.comments-title,.discussion-meta-info,.entry-footer,.entry-meta,.error-404 .page-title,.nav1,.nav3,.no-comments,.not-found .page-title,.page-description,.page-links,.pagination .nav-links,.post-navigation,.product .nyp,.secondary-menu,.site-description,.site-info,.site-title,.use-header-font,.woocommerce .first-payment-date,.woocommerce .onsale,.woocommerce .price,.woocommerce .product_meta,.woocommerce-MyAccount-navigation,.woocommerce-Reviews .comment-reply-title,.woocommerce-breadcrumb,.woocommerce-error,.woocommerce-grouped-product-list,.woocommerce-info,.woocommerce-message,.woocommerce-pagination,.woocommerce-results-wrapper,.woocommerce-review-link,.woocommerce-tabs ul,.wp-block-loginout,.wp-block-navigation,.wp-block-post-date,.wp-block-post-terms,.wp-block-query-pagination,.wpbnbd .freq-label,.wpbnbd .tier-label,amp-script .cat-links,h1,h2,h3,h4,h5,h6,ul.products .added_to_cart{font-family:var(--newspack-theme-font-heading);}.cat-links,.comment-author .fn,.comments-title,.error-404 .page-title,.no-comments,.not-found .page-title,.page-description,.pagination .nav-links,.post-navigation .post-title,.site-title,.wp-block-query-pagination,h1,h2,h3,h4,h5,h6{font-weight:700;line-height:var(--newspack-theme-font-line-height-heading);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.nav1{line-height:var(--newspack-theme-font-line-height-heading);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}.author-description .author-bio,.nav-links,.site-branding,.social-navigation{line-height:1.25;}.page-description,h1{font-size:var(--newspack-theme-font-size-xxl);}@media only screen and (min-width:782px){.page-description,h1{font-size:var(--newspack-theme-font-size-xxxl);}}.archive:not(.paged).feature-latest article.entry:first-of-type .entry-title,.entry-title,.error-404 .page-title,.has-larger-font-size,.not-found .page-title,h2{font-size:var(--newspack-theme-font-size-lg);}@media only screen and (min-width:782px){.archive:not(.paged).feature-latest article.entry:first-of-type .entry-title,.entry-title,.error-404 .page-title,.has-larger-font-size,.not-found .page-title,h2{font-size:var(--newspack-theme-font-size-xl);}}.archive .entry-title,.blog .entry-title,.comments-title,.has-large-font-size,.has-regular-font-size,.search .entry-title{font-size:var(--newspack-theme-font-size-lg);}.comment-author .fn,.no-comments,.post-navigation .post-title,.site-description,.site-title,h2.author-title,h4,p.author-bio{font-size:var(--newspack-theme-font-size-md);}.comment-content,.entry-meta,.nav-links,.wp-block-loginout a,.wp-block-loginout label,.wp-block-post-date,.wp-block-post-terms,.wp-block-query-pagination,h5{font-size:var(--newspack-theme-font-size-sm);}#cancel-comment-reply-link,.comment-metadata,.comment-notes,.comment-reply-link,.comment-reply-login,.discussion-meta-info,.has-small-font-size,.site-info,h6,img:after{font-size:var(--newspack-theme-font-size-xs);}.site-title{font-weight:400;}.comments-title,.entry-title{hyphens:auto;word-break:break-word;}@media only screen and (min-width:782px){.entry-title{hyphens:none;}}.page-header{width:100%;}#secondary .widgettitle,.accent-header{margin-bottom:.5em;}p{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}blockquote cite{font-family:var(--newspack-theme-font-heading);font-size:var(--newspack-theme-font-size-xs);font-style:normal;}a,a:hover{text-decoration:none;}html{box-sizing:border-box;}*,:after,:before{box-sizing:inherit;}body{background-color:var(--newspack-theme-color-bg-body);}h1,h2,h3,h4,h5,h6{margin:1rem 0;}ol,ul{padding-left:1rem;}ul{list-style:disc;}ul ul{list-style-type:circle;}li{line-height:var(--newspack-theme-font-line-height-body);}li>ol,li>ul{padding-left:2rem;}img{height:auto;max-width:100%;position:relative;}figure{margin:0;}blockquote cite{color:var(--newspack-theme-color-text-light);}.button,.wp-block-search__button,button,input[type=button],input[type=reset],input[type=submit]{background-color:var(--newspack-theme-color-secondary);border:none;border-radius:5px;box-sizing:border-box;color:var(--newspack-theme-color-against-secondary);display:inline-block;font-family:var(--newspack-theme-font-heading);font-size:var(--newspack-theme-font-size-sm);font-weight:700;line-height:var(--newspack-theme-font-line-height-heading);outline:none;padding:.76rem 1rem;text-decoration:none;transition:background .15s ease-in-out;vertical-align:bottom;}.button:hover,.button:hover:visited,.wp-block-search__button:hover,.wp-block-search__button:hover:visited,button:hover,button:hover:visited,input[type=button]:hover,input[type=button]:hover:visited,input[type=reset]:hover,input[type=reset]:hover:visited,input[type=submit]:hover,input[type=submit]:hover:visited{background-color:var(--newspack-theme-color-bg-button-hover);color:var(--newspack-theme-color-bg-body);cursor:pointer;}.button:visited,.wp-block-search__button:visited,button:visited,input[type=button]:visited,input[type=reset]:visited,input[type=submit]:visited{color:inherit;text-decoration:none;}.button:focus,.wp-block-search__button:focus,button:focus,input[type=button]:focus,input[type=reset]:focus,input[type=submit]:focus{background-color:var(--newspack-theme-color-bg-button-hover);color:var(--newspack-theme-color-bg-body);outline:thin dotted;outline-offset:-4px;}.button[disabled],.button[disabled]:hover,.wp-block-search__button[disabled],.wp-block-search__button[disabled]:hover,button[disabled],button[disabled]:hover,input[type=button][disabled],input[type=button][disabled]:hover,input[type=reset][disabled],input[type=reset][disabled]:hover,input[type=submit][disabled],input[type=submit][disabled]:hover{background-color:var(--newspack-ui-color-neutral-30,#ddd);color:var(--newspack-ui-color-neutral-0,#fff);cursor:default;}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=range],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],input[type=zip],textarea{appearance:none;backface-visibility:hidden;background:var(--newspack-theme-color-bg-input);border:1px solid var(--newspack-theme-color-border);border-radius:0;box-sizing:border-box;outline:none;outline-offset:0;padding:.36rem .66rem;}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=range]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,input[type=zip]:focus,textarea:focus{border-color:var(--newspack-theme-color-text-main);outline:thin solid rgb(var(--newspack-theme-color-text-main),.25);outline-offset:-4px;}input[type=search]::-webkit-search-decoration{display:none;}form p{margin:1rem 0;}input[type=checkbox]{appearance:none;background:#fff;border:1px solid var(--newspack-theme-color-border);border-radius:2px;color:var(--newspack-theme-color-against-secondary);cursor:pointer;display:inline-grid;font:inherit;height:20px !important;margin:0;place-content:center;width:20px !important;}input[type=checkbox]:before{background:rgba(0,0,0,0) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'24\' height=\'24\' viewBox=\'0 0 24 24\'%3E%3Cpath fill=\'%23fff\' d=\'m16.7 7.1-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z\'/%3E%3C/svg%3E") 0 0 no-repeat;content:"";display:block;height:24px;opacity:0;width:24px;}input[type=checkbox]:checked{background:var(--newspack-theme-color-secondary);border-color:rgba(0,0,0,0);}input[type=checkbox]:checked:before{opacity:1;}input[type=checkbox]:focus{outline:1.5px solid var(--newspack-theme-color-secondary);outline-offset:1px;}input[type=checkbox]:disabled{cursor:not-allowed;opacity:.75;}.search-form{position:relative;}.search-form input{padding-right:2.5rem;width:100%;}.search-form button{background-color:initial;bottom:2px;color:var(--newspack-theme-color-text-main);margin:0;padding:0 .5rem;position:absolute;right:2px;top:2px;}.search-form button svg{position:relative;top:2px;}.search-form button:active,.search-form button:focus,.search-form button:hover{color:var(--newspack-theme-color-primary-against-white);}a{color:var(--newspack-theme-color-text-light);transition:color .11s ease-in-out;}a:visited{color:inherit;}a:active,a:hover{color:var(--newspack-theme-color-text-main);outline:0;text-decoration:none;}a:focus{outline:thin dotted;text-decoration:underline;}.dd-menu button{appearance:none;border:none;color:inherit;cursor:pointer;display:inline-block;font-family:var(--newspack-theme-font-heading);line-height:1.2;margin:0;padding:0;text-decoration:none;transition:background .25s ease-in-out,transform .15s ease;}.dd-menu button,.dd-menu button:focus,.dd-menu button:hover{background:rgba(0,0,0,0);}.dd-menu button:focus{outline:1px dotted currentcolor;outline-offset:-4px;}.dd-menu button:active{transform:scale(.99);}.dd-menu li,.dd-menu ul{list-style:none;margin:0;padding:0;}.dd-menu li{position:relative;}.dd-menu .submenu-expand{display:inline-block;pointer-events:none;}.dd-menu .sub-menu>li{display:block;}.dd-menu .sub-menu>li.menu-item-has-children .submenu-expand{bottom:0;color:#fff;line-height:1;margin-right:0;padding:.5rem;position:absolute;width:calc(24px + 1rem);}.dd-menu .sub-menu>li.menu-item-has-children .submenu-expand svg{top:0;}.dd-menu .sub-menu>li>a{display:inline-block;}.dd-menu .sub-menu>li>a:empty{display:none;}.dd-menu>ul{overflow:visible;width:100%;}.dd-menu>ul>li.menu-item-has-children{position:inherit;}@media only screen and (min-width:782px){.dd-menu>ul>li.menu-item-has-children{position:relative;}}.dd-menu>ul>li.menu-item-has-children .submenu-expand{height:18px;width:24px;}.dd-menu>ul>li.menu-item-has-children .submenu-expand svg{position:relative;top:-.2em;}@media only screen and (min-width:782px){.site-header .dd-menu>ul>li.menu-item-has-children>a{padding-right:0;}}.site-header .dd-menu>ul>li>.sub-menu{padding-top:12px;}.site-header .dd-menu>ul>li>.sub-menu:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) var(--newspack-theme-color-bg-dark) rgba(0,0,0,0);border-style:solid;border-width:0 8px 8px;content:"";display:inline-block;height:0;left:10px;position:absolute;top:4px;width:0;}.site-header .dd-menu .sub-menu{color:var(--newspack-theme-color-bg-body);display:none;left:-9999px;opacity:0;position:absolute;transition:opacity .2s;z-index:99999;}.site-header .dd-menu .sub-menu a{background-color:var(--newspack-theme-color-bg-dark);color:var(--newspack-theme-color-bg-body);display:block;line-height:var(--newspack-theme-font-line-height-heading);padding:.75rem calc(24px + 1rem) .75rem 1rem;}.site-header .dd-menu .sub-menu a:focus,.site-header .dd-menu .sub-menu a:hover{background-color:#020202;}.site-header .dd-menu .sub-menu .submenu-expand{right:-5px;top:.65rem;transform:rotate(-90deg);}.site-header .dd-menu .sub-menu .submenu-expand svg{margin-top:-10px;}.site-header .dd-menu .menu-item-has-children:hover>.sub-menu,.site-header .dd-menu .menu-item-has-children>.submenu-expand.open-dropdown+.sub-menu{display:block;float:none;height:auto;inset:100% auto auto 0;margin-top:0;opacity:1;position:absolute;transform:none;width:12.5rem;}.site-header .dd-menu .sub-menu .menu-item-has-children:hover>.sub-menu,.site-header .dd-menu .sub-menu .menu-item-has-children>.submenu-expand.open-dropdown+.sub-menu{display:block;left:100%;top:0;}.nav1 .main-menu>li>a{color:inherit;font-weight:700;padding:.25rem .5rem;}.nav1 .main-menu>li>a:hover{opacity:.75;}.site-header .nav1{font-size:var(--newspack-theme-font-size-xs);}.site-header .nav1 .main-menu{display:inline-block;}.site-header .nav1 .main-menu>li{color:#555;display:inline-block;line-height:1.25;margin-right:.25rem;}.site-header .nav1 .main-menu>li>a{color:inherit;}.site-header .nav1 .main-menu>li:first-child>a{padding-left:0;}.h-cl.h-dh .site-header #site-navigation{flex-basis:100%;text-align:center;}.h-cl.h-dh .site-header #site-navigation ul ul{text-align:left;}.h-cl.h-dh .site-header .nav1 .main-menu>li:last-child{margin-right:0;}.h-cl.h-dh .site-header .nav1 .main-menu>li:last-child a{padding-right:0;}.h-cl.h-dh .site-header .nav1 .main-menu>li:last-child .submenu-expand{margin-right:-5px;}.h-dh .site-header .nav1 .main-menu>li{padding:.5rem 0;}.h-sh .site-header .nav1 .main-menu>li{padding:.25rem 0;}.h-sh .site-header .nav1 .main-menu>li>.sub-menu{padding-top:20px;}.h-sh .site-header .nav1 .main-menu>li>.sub-menu:before{top:12px;}.site-header .nav2>ul,.site-header .nav2>ul>li{align-items:center;display:flex;flex-wrap:wrap;}.site-header .nav2 li{margin-right:1rem;}.site-header .nav2>li:first-child a{padding-left:0;}.site-header .nav2 a{font-size:var(--newspack-theme-font-size-xs);}body.h-db.h-dh .site-header .nav3 .menu-highlight a{background-color:var(--newspack-theme-color-primary);border:0;color:var(--newspack-theme-color-against-primary);}body.h-db.h-dh .site-header .nav3 .menu-highlight a:hover{background-color:var(--newspack-theme-color-text-main);color:var(--newspack-theme-color-bg-body);}@media only screen and (min-width:782px){.site-header .nav3{text-align:right;}}.site-header .nav3 li{display:inline-block;font-size:var(--newspack-theme-font-size-xs);}@media only screen and (min-width:782px){.site-header .nav3 li:nth-child(n+2){margin:0 0 0 .75rem;}}.site-header .nav3 a{margin:.25rem 0;}.h-sh .site-header .nav3{font-size:var(--newspack-theme-font-size-base);margin-left:1rem;}.h-cl .site-header .highlight-menu-contain .wrapper{justify-content:center;text-align:center;}.social-links-menu,.social-navigation{align-items:center;display:flex;}.social-links-menu{margin:0;padding:0;}.social-links-menu li{list-style:none;}.social-links-menu li:nth-child(n+2){margin-left:.5em;}.social-links-menu li a{border-bottom:1px solid rgba(0,0,0,0);color:inherit;display:block;margin-bottom:-1px;transition:opacity .11s ease-in-out;}.social-links-menu li a:active,.social-links-menu li a:hover{opacity:.7;}.social-links-menu li a:focus{border-bottom:1px solid;opacity:1;}.social-links-menu li a svg{display:block;height:24px;transform:translateZ(0);width:24px;}.social-navigation .social-links-menu{flex-wrap:nowrap;overflow:visible;}.desktop-menu-toggle,.mobile-menu-toggle,.subpage-toggle{align-items:center;background-color:initial;color:inherit;display:flex;padding:0;}.desktop-menu-toggle:focus,.desktop-menu-toggle:hover,.mobile-menu-toggle:focus,.mobile-menu-toggle:hover,.subpage-toggle:focus,.subpage-toggle:hover{background-color:initial;color:inherit;}.desktop-menu-toggle:focus,.mobile-menu-toggle:focus,.subpage-toggle:focus{outline-offset:0;}.desktop-menu-toggle svg,.mobile-menu-toggle svg{margin-right:.25rem;}.middle-header-contain .desktop-menu-toggle svg{margin-right:0;}.site-header .desktop-menu-toggle:hover,.site-header .mobile-menu-toggle:hover,.site-header .subpage-toggle:hover{color:inherit;}.mobile-menu-toggle{margin-left:auto;}.site-header .mb-cta{font-size:.7em;margin-left:auto;padding:.6rem .5rem;}.site-header .mb-cta,.site-header .mb-cta:visited,.site-header .mb-cta:visited:not(:hover){background:#d33;color:#fff;}.site-header .mb-cta:hover{background:var(--newspack-theme-color-text-main);color:#fff;}.site-header .mb-cta+.mobile-menu-toggle{margin-left:.5rem;}.site-header .mb-cta+.mobile-menu-toggle span{display:inline-block;overflow:hidden;width:0;}.site-header .mb-cta+.mobile-menu-toggle svg{height:29px;width:29px;}.site-header .desktop-menu-toggle,.subpage-toggle-contain{display:none;font-size:var(--newspack-theme-font-size-xs);font-weight:400;line-height:2;padding:.125rem 0;}.h-ll .subpage-toggle-contain,.site-header .desktop-menu-toggle{margin:0 1.25rem 0 0;}.site-header .desktop-menu-toggle.dir-right{margin:0 0 0 1.25rem;}.site-header #secondary-nav-contain+.desktop-menu-toggle.dir-right{margin:0 0 0 auto;}.middle-header-contain .desktop-menu-toggle{margin:0 1rem 0 0;}.middle-header-contain .desktop-menu-toggle span{left:-99999em;position:absolute;}.middle-header-contain .desktop-menu-toggle.dir-right{margin:0 0 0 .75rem;}@media only screen and (min-width:782px){.h-dh .site-header .mb-cta,.h-dh .site-header .mobile-menu-toggle,.h-dh.h-sub .site-header .mobile-menu-toggle{display:none;}.h-dh .site-header .desktop-menu-toggle,.h-dh .subpage-toggle-contain{display:flex;}}@media only screen and (min-width:960px){.h-sh .site-header .mb-cta,.h-sh .site-header .mobile-menu-toggle,.h-sh.h-sub .site-header .mobile-menu-toggle{display:none;}.h-sh .site-header .desktop-menu-toggle,.h-sh.h-sub .subpage-toggle-contain{display:flex;}}.h-sub-cta.h-sub .site-header .mb-cta{display:inline-block;}.desktop-sidebar,.mobile-sidebar,.subpage-sidebar{padding:1rem;width:90vw;}.desktop-sidebar>*,.mobile-sidebar>*,.subpage-sidebar>*{clear:both;margin-bottom:.75rem;}.desktop-sidebar .widget:not(.widget_block),.desktop-sidebar nav,.mobile-sidebar .widget:not(.widget_block),.mobile-sidebar nav,.subpage-sidebar .widget:not(.widget_block),.subpage-sidebar nav{font-size:var(--newspack-theme-font-size-sm);}.desktop-sidebar .desktop-menu-toggle,.desktop-sidebar .mobile-menu-toggle,.desktop-sidebar .subpage-toggle,.mobile-sidebar .desktop-menu-toggle,.mobile-sidebar .mobile-menu-toggle,.mobile-sidebar .subpage-toggle,.subpage-sidebar .desktop-menu-toggle,.subpage-sidebar .mobile-menu-toggle,.subpage-sidebar .subpage-toggle{float:right;font-size:var(--newspack-theme-font-size-sm);margin:0 0 1rem;padding:0;}.desktop-sidebar li,.desktop-sidebar ul,.mobile-sidebar li,.mobile-sidebar ul,.subpage-sidebar li,.subpage-sidebar ul{list-style:none;margin:0;padding:0;}.desktop-sidebar .widget_nav_menu a,.desktop-sidebar nav a,.mobile-sidebar .widget_nav_menu a,.mobile-sidebar nav a,.subpage-sidebar .widget_nav_menu a,.subpage-sidebar nav a{display:inline-block;margin:.125rem 0;padding:.125rem .25rem;}.desktop-sidebar a:hover,.mobile-sidebar a:hover,.subpage-sidebar a:hover{background:rgba(0,0,0,0);text-decoration:underline;}.desktop-sidebar .social-links-menu li a,.mobile-sidebar .social-links-menu li a,.subpage-sidebar .social-links-menu li a{display:block;}.desktop-sidebar,.subpage-sidebar{background-color:#fff;max-width:400px;}@media only screen and (min-width:782px){.desktop-sidebar,.subpage-sidebar{width:50vw;}}.desktop-sidebar a,.desktop-sidebar a:visited,.subpage-sidebar a,.subpage-sidebar a:visited{color:var(--newspack-theme-color-text-main);}.desktop-sidebar .widget,.subpage-sidebar .widget{border-top:1px solid var(--newspack-theme-color-border);font-size:.9em;margin-bottom:1.5rem;padding-top:1.5rem;}.desktop-sidebar .widget:last-child,.subpage-sidebar .widget:last-child{margin-bottom:1.5rem;}.desktop-sidebar .widget.widget_block,.subpage-sidebar .widget.widget_block{border-top:0;margin-bottom:32px;padding-top:0;}@media only screen and (min-width:782px){.mobile-sidebar,.subpage-sidebar{width:33vw;}}.mobile-sidebar ul ul,.subpage-sidebar ul ul{margin-left:1rem;}.mobile-sidebar .nav1 .main-menu>li>a,.mobile-sidebar nav.secondary-menu a,.subpage-sidebar .nav1 .main-menu>li>a,.subpage-sidebar nav.secondary-menu a{padding-left:0;padding-right:0;}.mobile-sidebar .widget+.widget,.mobile-sidebar nav+.widget,.mobile-sidebar nav+nav,.subpage-sidebar .widget+.widget,.subpage-sidebar nav+.widget,.subpage-sidebar nav+nav{border-top:1px solid var(--newspack-theme-color-against-primary);}.mobile-sidebar nav+nav,.subpage-sidebar nav+nav{padding-top:.75rem;}.mobile-sidebar .widget+.widget,.mobile-sidebar nav+.widget,.subpage-sidebar .widget+.widget,.subpage-sidebar nav+.widget{padding-top:1rem;}.mobile-sidebar .widget+.widget_block,.mobile-sidebar nav+.widget_block,.subpage-sidebar .widget+.widget_block,.subpage-sidebar nav+.widget_block{border-top:0;padding-top:0;}.mobile-sidebar .submenu-expand,.subpage-sidebar .submenu-expand{display:none;}.mobile-sidebar .widget,.subpage-sidebar .widget{font-size:1em;}.mobile-sidebar .widget:last-child,.subpage-sidebar .widget:last-child{margin-bottom:1.5rem;}.mobile-sidebar{background-color:var(--newspack-theme-color-primary);}.mobile-sidebar,.mobile-sidebar .nav1 .sub-menu>li>a,.mobile-sidebar .nav3 a,.mobile-sidebar a{color:var(--newspack-theme-color-against-primary);}.mobile-sidebar .widget a:hover,.mobile-sidebar a:hover,.mobile-sidebar a:visited{color:inherit;}#desktop-sidebar-fallback,#mobile-sidebar-fallback,#subpage-sidebar-fallback{bottom:0;overflow:auto;position:fixed;top:0;z-index:999999;}#desktop-sidebar-fallback>*,#mobile-sidebar-fallback>*,#subpage-sidebar-fallback>*{visibility:hidden;}#desktop-sidebar-fallback,#subpage-sidebar-fallback{left:-100%;transition:left .2s;}#desktop-sidebar-fallback.dir-right,#mobile-sidebar-fallback{left:auto;right:-100%;transition:right .2s;}.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute !important;width:1px;word-wrap:normal !important;}.screen-reader-text:focus{background-color:var(--newspack-theme-color-bg-light);border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto !important;clip-path:none;color:var(--newspack-theme-color-text-screen);display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}#content[tabindex="-1"]:focus{outline:0;}.clear:after,.clear:before,.comment-content:after,.comment-content:before,.entry-content:after,.entry-content:before,.site-content:after,.site-content:before,.site-footer:after,.site-footer:before,.site-header:after,.site-header:before{content:"";display:table;table-layout:fixed;}.clear:after,.comment-content:after,.entry-content:after,.site-content:after,.site-footer:after,.site-header:after{clear:both;}#page{display:flex;flex-direction:column;min-height:100vh;}#page>:not(#content){flex-grow:0;}#content{flex:1;}.wrapper{display:flex;flex-wrap:wrap;justify-content:space-between;margin:auto;max-width:90vw;width:1200px;}@media only screen and (min-width:782px){.wrapper{flex-wrap:nowrap;}}.site-content{margin-top:1.5rem;min-height:30vh;}@media only screen and (min-width:782px){.site-content{margin-top:4rem;}}.newspack-front-page .site-content,.page-template-no-header-footer .site-content,.page-template-single-feature .site-content,.page-template-single-wide .site-content,.post-template-single-feature .site-content,.post-template-single-wide .site-content{overflow:hidden;}#primary{margin:auto;max-width:90vw;width:1200px;}@media only screen and (min-width:782px){.archive #main,.blog #main,.page .main-content,.search #main,.single .main-content{width:65%;}}.archive-one-column #main,.newspack-front-page.page-template-single-feature .site-main,.page-template-no-header-footer .main-content,.page-template-single-feature .main-content,.post-template-single-feature .main-content{margin-left:auto;margin-right:auto;max-width:780px;width:100%;}@media only screen and (min-width:782px){.archive.archive-one-column .page-header,.page-template-no-header-footer .entry-header,.page-template-single-feature .entry-header{margin-left:auto;margin-right:auto;max-width:780px;width:100%;}}.page-template-no-header-footer:not(.hide-page-title):not([class*=single-featured-image-]) .entry-header{margin-top:1rem;}.site-branding{align-items:center;color:var(--newspack-theme-color-text-light);display:flex;flex-wrap:wrap;justify-content:flex-start;position:relative;}@media only screen and (min-width:782px){.site-branding{margin-right:auto;}}.custom-logo-link{box-sizing:initial;line-height:1;margin:0 1rem 0 0;overflow:hidden;}@media only screen and (min-width:600px){.custom-logo-link{margin-right:.5rem;}}@media only screen and (max-width:599px){.h-cta .site-header .custom-logo-link{max-width:140px;}.h-cta .site-header .custom-logo-link .custom-logo{max-width:100%;object-position:left center;}}@media only screen and (max-width:781px){.site-header .custom-logo-link .custom-logo{height:auto;min-height:45px;object-fit:contain;width:auto;}}.site-identity{align-items:baseline;display:flex;}.site-title{font-weight:700;margin:0;}.site-title,.site-title a,.site-title a:link,.site-title a:visited{color:var(--newspack-theme-color-text-main);}.site-title a:hover{color:var(--newspack-theme-color-text-hover);}.site-description{color:var(--newspack-theme-color-text-light);display:none;font-size:var(--newspack-theme-font-size-sm);font-style:italic;font-weight:400;margin:0;padding:0 1rem;}@media only screen and (min-width:600px){.site-description{display:block;}}.hide-site-tagline .site-description{clip:rect(1px,1px,1px,1px);position:absolute;}.middle-header-contain .wrapper{align-items:center;padding:.75rem 0;}@media only screen and (min-width:782px){.middle-header-contain .wrapper{padding:1.5rem 0;}.bottom-header-contain .wrapper{border-bottom:1px solid var(--newspack-theme-color-border);border-top:1px solid var(--newspack-theme-color-border);}}#search-toggle{background-color:initial;color:inherit;padding:.25rem 0 0;}#search-toggle .search-icon{display:none;}#search-toggle:hover{opacity:.7;}.header-search-contain{display:none;margin-left:.75rem;position:relative;}.header-search-contain #header-search{position:absolute;top:calc(100% + 4px);width:300px;z-index:5;}@media only screen and (min-width:782px){.header-search-contain #header-search{right:0;}.h-dh .header-search-contain{display:block;}}.hide-header-search #search-toggle .search-icon{display:block;}.hide-header-search #header-search,.hide-header-search #search-toggle .close-icon{display:none;}@media only screen and (min-width:782px){.h-cl .site-header .middle-header-contain .wrapper>div{width:35%;}.h-cl .site-header .middle-header-contain .wrapper>div.site-branding{margin-right:auto;width:30%;}.h-cl .site-header .middle-header-contain .wrapper>div:first-of-type>*{margin-right:auto;}.h-cl .site-header .middle-header-contain .wrapper>div:last-of-type{justify-content:flex-end;}.h-cl .site-branding{flex-basis:unset;flex-wrap:wrap;}.h-cl .site-identity{flex-direction:column;}.h-cl .site-description{padding-top:.25rem;}.h-cl .site-header .custom-logo-link{margin-right:0;}.h-cl .site-header .custom-logo{height:auto;margin:auto;max-width:100%;}.h-cl.h-dh .site-header .middle-header-contain .wrapper .site-branding{display:flex;justify-content:center;}.h-cl.h-dh .site-description,.h-cl.h-dh .site-header .custom-logo-link,.h-cl.h-dh .site-title{text-align:center;width:100%;}}@media only screen and (min-width:960px){.h-cl.h-sh .site-header .middle-header-contain .wrapper .site-branding{display:flex;justify-content:center;}.h-cl.h-sh .site-description,.h-cl.h-sh .site-header .custom-logo-link,.h-cl.h-sh .site-title{text-align:center;width:100%;}}@media only screen and (min-width:1168px){.h-cl .site-header .middle-header-contain .wrapper>div{flex:1;width:auto;}.h-cl .site-header .middle-header-contain .wrapper>div.site-branding{width:auto;}.h-cl .site-header .custom-logo{max-width:inherit;}}@media screen and (-ms-high-contrast:none) and (min-width:1168px){.h-cl .site-header .custom-logo-link img{height:auto;max-width:100%;}}.h-sb .site-header{padding-bottom:0;}.h-sb .middle-header-contain,.h-sb .middle-header-contain .nav1 .main-menu>li,.h-sb .middle-header-contain .nav1 .main-menu>li>a,.h-sb .site-description,.h-sb .site-header,.h-sb .site-title a,.h-sb .site-title a:visited{color:var(--newspack-theme-color-against-primary);}.h-sb .middle-header-contain{background-color:var(--newspack-theme-color-primary);}@media only screen and (min-width:782px){.h-sb .middle-header-contain .wrapper{padding:1.5rem 0 1rem;}}.h-sb .bottom-header-contain{background-color:#4a4a4a;}.h-sb .bottom-header-contain .wrapper{border:0;}.h-sb .bottom-header-contain #search-toggle,.h-sb .bottom-header-contain .nav1 .main-menu>li,.h-sb .bottom-header-contain .nav1 .main-menu>li>a{color:#fff;}.h-sh .site-header .wrapper{justify-content:flex-start;}.nav-wrapper{align-items:center;display:flex;justify-content:flex-end;}@media only screen and (min-width:782px){.h-sub .site-header .custom-logo{height:auto;width:auto;}}@media only screen and (min-width:782px){.h-sub.h-cl .site-header .middle-header-contain .wrapper>div{flex:auto;width:auto;}.h-sub.h-cl .site-header .middle-header-contain .wrapper>div:last-of-type{text-align:right;}.h-sub.h-ll .site-header .custom-logo-link amp-img.amp-wp-enforced-sizes[layout=intrinsic]>img{object-position:left center;}.h-sub.h-dh .featured-image-behind,.h-sub.h-dh .featured-image-beside,.h-sub.h-sh .featured-image-behind,.h-sub.h-sh .featured-image-beside{min-height:101vh;}.h-sub.single-featured-image-behind .site-header,.h-sub.single-featured-image-beside .site-header{position:absolute;width:100%;z-index:10;}}.h-stk .site-header{background:var(--newspack-theme-color-bg-body);box-shadow:0 2px 5px rgba(0,0,0,.1);position:sticky;top:0;z-index:999;}@media only screen and (min-width:600px){.h-stk.admin-bar .site-header{top:46px;}}@media only screen and (min-width:782px){.h-stk.admin-bar .site-header{top:32px;}.h-stk.h-cl .site-header .middle-header-contain .wrapper>div{width:31%;}.h-stk.h-cl .site-header .middle-header-contain .wrapper>div.site-branding{width:38%;}}.h-stk.h-cl .site-header .custom-logo{object-position:left center;}@media only screen and (min-width:782px){.h-stk.h-cl.h-dh .site-header .custom-logo{object-position:center center;}}@media only screen and (min-width:960px){.h-stk.h-cl.h-sh .site-header .custom-logo{object-position:center center;}}.h-stk.h-sub.single-featured-image-behind .site-header,.h-stk.h-sub.single-featured-image-beside .site-header{box-shadow:none;position:sticky;}@media only screen and (min-width:782px){.h-stk.h-sub.single-featured-image-behind .site-header,.h-stk.h-sub.single-featured-image-beside .site-header{align-items:center;background:rgba(0,0,0,0);display:flex;height:80px;margin-bottom:-80px;}.h-stk.h-sub.single-featured-image-behind .site-header .sticky-bg,.h-stk.h-sub.single-featured-image-beside .site-header .sticky-bg{background:#000;content:"";display:block;inset:0;opacity:0;position:absolute;transition:opacity .5s ease-in;z-index:-1;}.h-stk.h-sub.single-featured-image-behind .site-header.head-scroll .sticky-bg,.h-stk.h-sub.single-featured-image-beside .site-header.head-scroll .sticky-bg{opacity:.7;}}.desktop-only{display:none;}@media only screen and (min-width:782px){.h-dh .desktop-only{display:inherit;}}.updated:not(.published){display:none;}.show-updated .entry-header .updated:not(.published){display:inline-block;}.entry{margin-top:6rem;}.entry:first-of-type{margin-top:0;}.entry-header{position:relative;width:100%;}.entry-title{font-size:var(--newspack-theme-font-size-xxl);margin:0;}@media only screen and (min-width:1168px){.entry-title{font-size:var(--newspack-theme-font-size-xxxl);}}.entry-title a{color:inherit;}.entry-title a:hover{color:var(--newspack-theme-color-text-hover);}.newspack-post-subtitle{font-style:italic;}.newspack-post-subtitle em,.newspack-post-subtitle i{font-style:normal;}.entry-header .newspack-post-subtitle{margin-bottom:1.3em;}@media only screen and (min-width:600px){.entry-header .newspack-post-subtitle{margin-bottom:2.3em;}}body.page .entry-title{font-size:var(--newspack-theme-font-size-xl);margin:0;}@media only screen and (min-width:1168px){body.page .entry-title{font-size:var(--newspack-theme-font-size-xxl);}}.cat-links,amp-script .cat-links{display:block;font-size:var(--newspack-theme-font-size-xs);margin:0 0 .75rem;}.tags-links span:first-child{font-size:var(--newspack-theme-font-size-sm);font-weight:700;margin-right:1rem;}.tags-links a{font-size:var(--newspack-theme-font-size-xs);}.entry-footer,.entry-meta{color:var(--newspack-theme-color-text-light);}.entry-meta{margin-bottom:.25rem;}.entry-meta .author-avatar:not(:empty){float:left;margin-right:.5rem;}.entry-meta .byline{display:block;}.entry-meta .byline .author{font-weight:700;}.entry-meta .byline a{text-decoration:none;}.entry-meta .byline a,.entry-meta .byline a:visited{color:var(--newspack-theme-color-primary-against-white);}.entry-meta .byline a:hover{color:var(--newspack-theme-color-primary-variation-against-white);}.entry-meta .posted-on a,.entry-meta .posted-on a:visited{color:var(--newspack-theme-color-text-light);}.entry-meta .updated-label{margin-left:1em;}.entry-footer{margin:1rem 0 3rem;}.entry-footer>span{display:inline-block;margin-right:1rem;}.entry-footer>span:last-child{margin-right:0;}.entry-footer a{color:var(--newspack-theme-color-primary-against-white);}.post-thumbnail{margin:0;width:100%;}.post-thumbnail:focus{outline:none;}.post-thumbnail .post-thumbnail-inner{display:block;}.post-thumbnail .post-thumbnail-inner img{display:block;position:relative;}.post-thumbnail figcaption{max-width:100%;width:100%;}.widget+.post-thumbnail{margin-top:32px;}.entry-content p{word-wrap:break-word;}.entry-content a{color:var(--newspack-theme-color-secondary-against-white);text-decoration:underline;}.entry-content a:active,.entry-content a:hover{color:var(--newspack-theme-color-link-hover);text-decoration:none;}.entry-content h1 a,.entry-content h2 a,.entry-content h3 a,.entry-content h4 a,.entry-content h5 a,.entry-content h6 a{color:var(--newspack-theme-color-text-main);text-decoration:none;}.entry-content h1 a:visited,.entry-content h2 a:visited,.entry-content h3 a:visited,.entry-content h4 a:visited,.entry-content h5 a:visited,.entry-content h6 a:visited{color:var(--newspack-theme-color-text-main);}.entry-content>iframe[style]{margin:32px 0 !important;max-width:100% !important;}.single .entry-header{padding:0 0 1rem;}.single:not(.has-large-featured-image) .entry-header{border-bottom:1px solid #ddd;}.single .entry-title{font-size:var(--newspack-theme-font-size-xl);margin:0 0 .5em;}.single .entry-title--with-subtitle{margin-bottom:.3rem;}@media only screen and (min-width:600px){.single .entry-title{font-size:var(--newspack-theme-font-size-xxl);}}@media only screen and (min-width:782px){.single .entry-title{font-size:var(--newspack-theme-font-size-xxxl);}}@media only screen and (min-width:1168px){.single .entry-title{font-size:var(--newspack-theme-font-size-xxxxl);}}.single .entry-meta{margin-bottom:.5rem;}@media only screen and (min-width:600px){.single .entry-meta{margin-bottom:0;}}.single.date-hidden .entry-header .entry-meta{align-items:center;display:flex;}.single .main-content>.post-thumbnail:first-child{margin-top:2rem;}@media only screen and (min-width:600px){.single .entry-subhead{align-items:center;display:flex;justify-content:space-between;width:100%;}.single .entry-subhead .entry-meta{flex-grow:2;}}.comment-list .avatar,.entry-subhead .avatar{height:1.75rem;width:1.75rem;}@media only screen and (min-width:782px){.comment-list .avatar,.entry-subhead .avatar{height:2.25rem;width:2.25rem;}}.page .entry-header+.post-thumbnail,.page .main-content>.post-thumbnail:first-child{margin-top:1.5rem;}.newspack-front-page.hide-homepage-title .entry-header{display:none;}.featured-image-behind{background-color:var(--newspack-theme-color-text-main);display:flex;margin:0 calc(50% - 50vw);min-height:calc(90vh - 60px);position:relative;width:100vw;}.admin-bar .featured-image-behind{min-height:calc(100vh - 106px);}@media only screen and (min-width:782px){.featured-image-behind{min-height:calc(100vh - 220px);}.admin-bar .featured-image-behind{min-height:calc(100vh - 250px);}.h-sh .featured-image-behind{min-height:calc(100vh - 110px);}.h-sh.admin-toolbar .featured-image-behind{min-height:calc(100vh - 142px);}}.featured-image-behind:before{background-color:rgba(0,0,0,.5);content:"";inset:0;position:absolute;z-index:1;}.featured-image-behind .wrapper{margin-bottom:0;margin-top:auto;}.featured-image-behind .post-thumbnail{inset:0;overflow:hidden;position:absolute;}.featured-image-behind .wp-post-image{height:100%;object-fit:cover;object-position:50% 50%;position:absolute;width:100%;}.featured-image-behind .entry-header{align-self:flex-end;color:#fff;margin:4rem auto 2rem;max-width:90vw;position:relative;z-index:2;}.featured-image-behind .entry-header .author-avatar{display:none;}.featured-image-behind .entry-header .cat-links,.featured-image-behind .entry-header .cat-links a,.featured-image-behind .entry-header .cat-links a:visited,.featured-image-behind .entry-header .entry-meta,.featured-image-behind .entry-header .entry-meta .byline a,.featured-image-behind .entry-header .entry-meta .byline a:visited,.featured-image-behind .entry-header .entry-meta .posted-on a,.featured-image-behind .entry-header .entry-meta .posted-on a:visited{color:#fff;}.featured-image-behind .entry-meta .byline{display:inline-block;margin-right:1rem;}@media only screen and (min-width:782px){.page .featured-image-behind .entry-header{margin-bottom:3rem;}}.featured-image-behind+figcaption,.featured-image-beside figcaption{margin:.25rem auto 0;max-width:100%;width:1200px;}@media only screen and (min-width:782px){.h-db .featured-image-beside{background-color:var(--newspack-theme-color-primary);}.h-db .featured-image-beside,.h-db .featured-image-beside .entry-header{color:var(--newspack-theme-color-against-primary);}.h-sb .featured-image-beside{background-color:#333;}.featured-image-beside{color:#fff;display:flex;margin:0 calc(50% - 50vw);min-height:calc(100vh - 220px);position:relative;width:100vw;}.admin-bar .featured-image-beside{min-height:calc(100vh - 250px);}.h-sh .featured-image-beside{min-height:calc(100vh - 110px);}.h-sh.admin-toolbar .featured-image-beside{min-height:calc(100vh - 142px);}.featured-image-beside .post-thumbnail,.featured-image-beside>.wrapper{width:50%;}.featured-image-beside .post-thumbnail{margin:0;overflow:hidden;position:relative;}.featured-image-beside .wp-post-image{min-height:100%;object-fit:cover;object-position:50% 50%;position:absolute;width:100%;}.featured-image-beside .entry-header{margin-left:auto;max-width:90%;padding:2rem .5rem 1rem 0;width:600px;}}@media only screen and (min-width:782px) and (min-width:1168px){.featured-image-beside .entry-header{padding-right:1rem;}}@media only screen and (min-width:782px){.featured-image-beside .entry-header .cat-links,.featured-image-beside .entry-header .entry-meta,.featured-image-beside .entry-header .entry-meta .byline a,.featured-image-beside .entry-header .entry-meta .byline a:visited,.featured-image-beside .entry-header .entry-meta .posted-on a,.featured-image-beside .entry-header .entry-meta .posted-on a:visited,.featured-image-beside .entry-header a,.featured-image-beside .entry-header a:hover{color:inherit;}.featured-image-beside .entry-header .entry-subhead{display:block;}.featured-image-beside .entry-header .entry-meta{margin-bottom:1rem;}.featured-image-beside .entry-header .entry-meta .byline{display:inline-block;margin-right:1rem;}.featured-image-beside .entry-header .author-avatar{display:none;}.featured-image-beside .entry-title{font-size:var(--newspack-theme-font-size-xxl);}.featured-image-beside figcaption{bottom:0;color:#fff;left:50%;position:absolute;width:50%;}.featured-image-beside figcaption a,.featured-image-beside figcaption a:visited{color:#fff;text-decoration:underline;}.featured-image-beside figcaption a:hover{text-decoration:none;}.featured-image-beside figcaption>span{display:inline-block;max-width:780px;padding:2rem 1rem 1rem;position:relative;}.featured-image-beside figcaption:before{background-image:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5) 50%);bottom:0;content:"";height:100%;left:0;position:absolute;width:100%;}.h-sub .featured-image-beside .entry-header{padding-top:4rem;}}.featured-image-above{width:100%;}.featured-image-above .post-thumbnail{margin:0 calc(50% - 50vw) 1rem;width:100vw;}@media only screen and (min-width:782px){.featured-image-above .post-thumbnail{margin-bottom:2rem;}}.featured-image-above .post-thumbnail img{width:100%;}.featured-image-above figcaption{margin:.25rem auto 0;max-width:90vw;width:1200px;}.comment .comment-content blockquote{margin-left:0;}.archive .page-header,.blog .page-header,.search .page-header{margin:0 0 3rem;}.archive .page-header h1,.blog .page-header h1,.search .page-header h1{margin-top:0;}.archive .author-avatar,.blog .author-avatar,.search .author-avatar{display:none;}.archive .post-thumbnail,.blog .post-thumbnail,.search .post-thumbnail{margin:0 0 .5rem;}.archive .post-thumbnail figcaption,.blog .post-thumbnail figcaption,.search .post-thumbnail figcaption{margin-top:8px;}@media only screen and (min-width:782px){.archive .post-thumbnail figcaption,.blog .post-thumbnail figcaption,.search .post-thumbnail figcaption{font-size:var(--newspack-theme-font-size-xxs);}}.archive .entry-meta,.archive .entry-title,.blog .entry-meta,.blog .entry-title,.search .entry-meta,.search .entry-title{margin-bottom:.5rem;}@media only screen and (min-width:782px){.archive .has-post-thumbnail .post-thumbnail,.blog .has-post-thumbnail .post-thumbnail,.search .has-post-thumbnail .post-thumbnail{flex-basis:25%;margin:0 1em 0 0;max-width:25%;}.archive .byline,.archive .posted-on,.blog .byline,.blog .posted-on,.search .byline,.search .posted-on{display:inline;}}@media only screen and (min-width:782px){.archive:not(.paged).feature-latest article.has-post-thumbnail:first-of-type .post-thumbnail{margin-bottom:1rem;max-width:100%;}}.archive.author .page-header{display:flex;justify-content:flex-start;}.archive.author .page-header .avatar{flex-shrink:0;height:30px;margin-right:1rem;width:30px;}.archive.author .page-header .page-title:last-child{margin-bottom:0;}.archive.author .page-header .taxonomy-description p:first-child{margin-top:0;}@media only screen and (min-width:600px){.archive.author .page-header .avatar{height:80px;width:80px;}}@media only screen and (min-width:782px){.archive.author .page-header .avatar{height:120px;width:120px;}}.archive .entry-header .entry-title:has(+.newspack-post-subtitle){margin-bottom:.25rem;}.archive .entry-header .newspack-post-subtitle{margin:0 0 .5rem;}.archive .cat-links:not(.sponsor-label){display:none;}.archive.archive-grid .has-post-thumbnail .post-thumbnail{flex-basis:100%;margin:0 0 10px;max-width:100%;}@media only screen and (min-width:600px){.archive.archive-grid .site-main .entry-title{font-size:var(--newspack-theme-font-size-md);}}@media only screen and (min-width:782px){.search .page-header{width:65%;}}.site-footer{margin:2rem 0 0;}.site-footer a{color:var(--newspack-theme-color-text-light);transition:opacity .11s ease-in-out;}.af-widget .site-footer{margin-top:0;}.site-info{color:var(--newspack-theme-color-text-light);padding-bottom:1rem;}.site-info .wrapper{display:block;}@media only screen and (min-width:782px){.site-info .wrapper{display:flex;}.site-info .wrapper.site-info-contain{justify-content:flex-start;}.site-info .wrapper.site-info-contain>:not(:first-child){margin-left:1rem;}.site-info .wrapper.site-info-contain>:last-child{margin-left:auto;}}.site-info a{color:inherit;display:block;}.site-info a:hover{color:var(--newspack-theme-color-primary-against-white);text-decoration:none;}.site-info .copyright,.site-info a{margin:.25rem 0;}.site-info .site-info-contain:first-child{border-top:1px solid var(--newspack-theme-color-border);padding-top:1rem;}.site-info .widget-area .wrapper{border-top:1px solid var(--newspack-theme-color-border);justify-content:space-between;padding:1rem 0 .5rem;}.site-info .widget-area .widget{font-size:inherit;}@media only screen and (min-width:600px){.site-info .widget-area .widget{margin:0 1rem 0 0;}.site-info .widget-area .widget:last-child{margin-right:0;}}.site-info .widget-area a{display:inline;margin:0;}.site-info .widget-area li,.site-info .widget-area ul{list-style:none;margin:0;padding:0;}@media only screen and (min-width:600px){.site-info .widget-area ul{display:inline;}}.site-info .widget-area ul li{margin:.3rem 0;}@media only screen and (min-width:600px){.site-info .widget-area ul li{display:inline-block;margin:0 1rem 0 0;}.site-info .widget-area ul li ul{display:inline-block;margin-left:1rem;}.site-info .widget-area ul li:last-child{margin-right:0;}}.site-info .widget-area ul a{display:inline-block;padding:.25rem 0;}@media only screen and (min-width:600px){.site-info .widget-area ul a{padding:.125rem 0;}}.site-info .widget-area p{margin:0;}.widget{font-family:var(--newspack-theme-font-heading);font-size:var(--newspack-theme-font-size-sm);margin:0 0 1rem;word-wrap:break-word;}@media only screen and (min-width:782px){.widget{margin:0 0 3rem;}.widget.widget_block{margin:0 0 32px;}}.widget .widget{font-size:inherit;margin-bottom:32px;}.widget:last-child{margin-bottom:0;}.widget a:hover{color:var(--newspack-theme-color-secondary-variation);}.widget_archive ul,.widget_categories ul,.widget_meta ul,.widget_nav_menu ul,.widget_pages ul,.widget_recent_comments ul,.widget_recent_entries ul,.widget_rss ul{list-style:none;padding:0;}.widget_archive ul li,.widget_categories ul li,.widget_meta ul li,.widget_nav_menu ul li,.widget_pages ul li,.widget_recent_comments ul li,.widget_recent_entries ul li,.widget_rss ul li{font-family:var(--newspack-theme-font-heading);margin:.125rem 0;}@media only screen and (min-width:600px){.widget_archive ul li,.widget_categories ul li,.widget_meta ul li,.widget_nav_menu ul li,.widget_pages ul li,.widget_recent_comments ul li,.widget_recent_entries ul li,.widget_rss ul li{margin:0;}}.widget_archive ul li ul,.widget_categories ul li ul,.widget_meta ul li ul,.widget_nav_menu ul li ul,.widget_pages ul li ul,.widget_recent_comments ul li ul,.widget_recent_entries ul li ul,.widget_rss ul li ul{margin-left:1.5em;}.widget_archive ul a,.widget_categories ul a,.widget_meta ul a,.widget_nav_menu ul a,.widget_pages ul a,.widget_recent_comments ul a,.widget_recent_entries ul a,.widget_rss ul a{display:inline-block;padding:.25rem 0;}@media only screen and (min-width:600px){.widget_archive ul a,.widget_categories ul a,.widget_meta ul a,.widget_nav_menu ul a,.widget_pages ul a,.widget_recent_comments ul a,.widget_recent_entries ul a,.widget_rss ul a{padding:.125rem 0;}}.above-content{margin:1rem 0 0;}.above-footer-widgets .wrapper,.header-widget .wrapper{display:block;}.above-footer-widgets .widget:first-of-type,.header-widget .widget:first-of-type{margin-top:0;}.above-footer-widgets .widget:last-of-type,.header-widget .widget:last-of-type{margin-bottom:0;}.above-footer-widgets .alignfull,.header-widget .alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;width:auto;}.above-footer-widgets .alignwide,.header-widget .alignwide{margin-left:calc(25% - 25vw);margin-right:calc(25% - 25vw);max-width:100vw;}.above-footer-widgets [class*=__inner-container],.header-widget [class*=__inner-container]{margin:0 auto;max-width:1200px;}.above-footer-widgets{margin-top:2rem;}.entry .entry-content>*,.newspack-inline-popup>*,[id=pico]>*{margin:32px 0;max-width:100%;}.entry .entry-content>:last-child,.newspack-inline-popup>:last-child,[id=pico]>:last-child{margin-bottom:0;}.entry .entry-content>.alignleft,.entry .entry-content>.wp-block-image .alignleft,.everlit-no-audio>.alignleft,.everlit-no-audio>.wp-block-image .alignleft,.newspack-inline-popup>.alignleft,.newspack-inline-popup>.wp-block-image .alignleft,[id=pico]>.alignleft,[id=pico]>.wp-block-image .alignleft{float:left;margin-left:0;margin-right:1rem;max-width:50%;}.entry .entry-content>.alignright,.entry .entry-content>.wp-block-image .alignright,.everlit-no-audio>.alignright,.everlit-no-audio>.wp-block-image .alignright,.newspack-inline-popup>.alignright,.newspack-inline-popup>.wp-block-image .alignright,[id=pico]>.alignright,[id=pico]>.wp-block-image .alignright{float:right;margin-left:1rem;margin-right:0;max-width:50%;}@media only screen and (min-width:782px){.newspack-front-page .entry .entry-content .alignwide,.newspack-front-page .newspack-content-gate__inline-gate .alignwide,.page-template-single-wide .entry .entry-content .alignwide,.page-template-single-wide .newspack-content-gate__inline-gate .alignwide,.post-template-single-wide .entry .entry-content .alignwide,.post-template-single-wide .newspack-content-gate__inline-gate .alignwide{margin-left:calc(25% - 25vw);margin-right:calc(25% - 25vw);max-width:100vw;}.newspack-front-page .entry .entry-content .alignwide.wp-block-cover,.newspack-front-page .newspack-content-gate__inline-gate .alignwide.wp-block-cover,.page-template-single-wide .entry .entry-content .alignwide.wp-block-cover,.page-template-single-wide .newspack-content-gate__inline-gate .alignwide.wp-block-cover,.post-template-single-wide .entry .entry-content .alignwide.wp-block-cover,.post-template-single-wide .newspack-content-gate__inline-gate .alignwide.wp-block-cover{width:auto;}}.newspack-front-page .entry .entry-content .alignwide .alignfull,.newspack-front-page .entry .entry-content .alignwide .alignwide,.newspack-front-page .newspack-content-gate__inline-gate .alignwide .alignfull,.newspack-front-page .newspack-content-gate__inline-gate .alignwide .alignwide,.page-template-single-wide .entry .entry-content .alignwide .alignfull,.page-template-single-wide .entry .entry-content .alignwide .alignwide,.page-template-single-wide .newspack-content-gate__inline-gate .alignwide .alignfull,.page-template-single-wide .newspack-content-gate__inline-gate .alignwide .alignwide,.post-template-single-wide .entry .entry-content .alignwide .alignfull,.post-template-single-wide .entry .entry-content .alignwide .alignwide,.post-template-single-wide .newspack-content-gate__inline-gate .alignwide .alignfull,.post-template-single-wide .newspack-content-gate__inline-gate .alignwide .alignwide{margin-left:0;margin-right:0;}.newspack-front-page .entry .entry-content .alignfull,.newspack-front-page .newspack-content-gate__inline-gate .alignfull,.page-template-single-wide .entry .entry-content .alignfull,.page-template-single-wide .newspack-content-gate__inline-gate .alignfull,.post-template-single-wide .entry .entry-content .alignfull,.post-template-single-wide .newspack-content-gate__inline-gate .alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;}.newspack-front-page .entry .entry-content .alignfull.wp-block-cover,.newspack-front-page .newspack-content-gate__inline-gate .alignfull.wp-block-cover,.page-template-single-wide .entry .entry-content .alignfull.wp-block-cover,.page-template-single-wide .newspack-content-gate__inline-gate .alignfull.wp-block-cover,.post-template-single-wide .entry .entry-content .alignfull.wp-block-cover,.post-template-single-wide .newspack-content-gate__inline-gate .alignfull.wp-block-cover{width:100vw;}.newspack-front-page .entry .entry-content .alignfull .alignwide,.newspack-front-page .newspack-content-gate__inline-gate .alignfull .alignwide,.page-template-single-wide .entry .entry-content .alignfull .alignwide,.page-template-single-wide .newspack-content-gate__inline-gate .alignfull .alignwide,.post-template-single-wide .entry .entry-content .alignfull .alignwide,.post-template-single-wide .newspack-content-gate__inline-gate .alignfull .alignwide{margin-left:auto;margin-right:auto;max-width:100%;width:calc(50vw + 600px);}.newspack-front-page .entry .entry-content .alignfull .alignfull,.newspack-front-page .newspack-content-gate__inline-gate .alignfull .alignfull,.page-template-single-wide .entry .entry-content .alignfull .alignfull,.page-template-single-wide .newspack-content-gate__inline-gate .alignfull .alignfull,.post-template-single-wide .entry .entry-content .alignfull .alignfull,.post-template-single-wide .newspack-content-gate__inline-gate .alignfull .alignfull{margin-left:0;margin-right:0;}.newspack-front-page .entry .entry-content .alignfull.wp-block-columns .alignwide,.newspack-front-page .newspack-content-gate__inline-gate .alignfull.wp-block-columns .alignwide,.page-template-single-wide .entry .entry-content .alignfull.wp-block-columns .alignwide,.page-template-single-wide .newspack-content-gate__inline-gate .alignfull.wp-block-columns .alignwide,.post-template-single-wide .entry .entry-content .alignfull.wp-block-columns .alignwide,.post-template-single-wide .newspack-content-gate__inline-gate .alignfull.wp-block-columns .alignwide{width:100%;}.page-template-no-header-footer .entry .entry-content>.alignfull:first-child,.page-template-no-header-footer [id=pico]>.alignfull:first-child{margin-top:0;}.entry .entry-content .entry,.entry .entry-content .entry-content{margin:inherit;max-width:inherit;padding:inherit;}@media only screen and (min-width:782px){.entry .entry-content .entry,.entry .entry-content .entry-content{margin:inherit;max-width:inherit;padding:inherit;}}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:20px 30px;}p.has-drop-cap:not(:focus):first-letter{font-size:4em;line-height:.75;margin:.125em .75rem 0 0;position:relative;}p.has-background{padding:20px 30px;}.wpnbha figcaption{max-width:100%;}.mobile-sidebar .wpnbha .entry-meta,.mobile-sidebar .wpnbha .entry-meta a,.mobile-sidebar .wpnbha .entry-meta a:hover,.mobile-sidebar .wpnbha .entry-meta a:visited,.site-footer .wpnbha .entry-meta,.site-footer .wpnbha .entry-meta a,.site-footer .wpnbha .entry-meta a:hover,.site-footer .wpnbha .entry-meta a:visited,.wpnbpc .cat-links a,.wpnbpc .cat-links a:visited,.wpnbpc .entry-meta .byline a,.wpnbpc .entry-meta .byline a:hover,.wpnbpc .entry-meta .byline a:visited,.wpnbpc .entry-meta .byline a:visited:hover,.wpnbpc h3 a,.wpnbpc h3 a:visited{color:inherit;}#secondary .wp-block-newspack-blocks-carousel article .entry-title,.desktop-sidebar .wp-block-newspack-blocks-carousel article .entry-title,.mobile-sidebar .wp-block-newspack-blocks-carousel article .entry-title,.subpage-sidebar .wp-block-newspack-blocks-carousel article .entry-title{font-size:.9rem;}#secondary .wp-block-newspack-blocks-carousel article .entry-wrapper,.desktop-sidebar .wp-block-newspack-blocks-carousel article .entry-wrapper,.mobile-sidebar .wp-block-newspack-blocks-carousel article .entry-wrapper,.subpage-sidebar .wp-block-newspack-blocks-carousel article .entry-wrapper{padding:20px 36px;}.wp-block-columns .wp-block-cover,.wp-block-columns .wp-block-cover-image{min-height:330px;padding-left:1rem;padding-right:1rem;}.wp-block-columns .wp-block-column.is-style-rounded{border-radius:6px;}.wp-block-columns .wp-block-column>*{margin-bottom:32px;margin-top:32px;}.wp-block-columns .wp-block-column>.accent-header+div.wpnbha,.wp-block-columns .wp-block-column>:first-child,.wp-block-columns .wp-block-column>:first-child .article-section-title{margin-top:0;}.wp-block-columns .wp-block-column>:last-child{margin-bottom:0;}.wp-block-cover article .cat-links a,.wp-block-cover article .cat-links a:visited,.wp-block-cover article .entry-meta,.wp-block-cover article .entry-meta a,.wp-block-cover article .entry-meta a:visited,.wp-block-cover-image article .cat-links a,.wp-block-cover-image article .cat-links a:visited,.wp-block-cover-image article .entry-meta,.wp-block-cover-image article .entry-meta a,.wp-block-cover-image article .entry-meta a:visited{color:#fff;}.wp-block-cover-image.alignleft .wp-block-pullquote:not(.is-style-solid-color) blockquote,.wp-block-cover-image.alignleft blockquote,.wp-block-cover-image.alignright .wp-block-pullquote:not(.is-style-solid-color) blockquote,.wp-block-cover-image.alignright blockquote,.wp-block-cover.alignleft .wp-block-pullquote:not(.is-style-solid-color) blockquote,.wp-block-cover.alignleft blockquote,.wp-block-cover.alignright .wp-block-pullquote:not(.is-style-solid-color) blockquote,.wp-block-cover.alignright blockquote{padding-left:0;}.wp-block-pullquote{border-color:rgba(0,0,0,0);border-width:4px 0 2px;color:inherit;font-size:1em;padding:1rem 0;text-align:left;}.wp-block-pullquote blockquote{border:none;margin:1rem 0 1.25rem;padding-left:0;}.wp-block-pullquote blockquote p,.wp-block-pullquote.is-style-solid-color blockquote p{font-size:var(--newspack-theme-font-size-lg);}.wp-block-pullquote p{font-style:italic;line-height:1.3;margin-bottom:.5em;margin-top:.5em;}.wp-block-pullquote p em{font-style:normal;}@media only screen and (min-width:782px){.wp-block-pullquote p{font-size:var(--newspack-theme-font-size-lg);}}.wp-block-pullquote.has-text-align-left:not(.alignleft):not(.alignright) p,.wp-block-pullquote.has-text-align-right:not(.alignleft):not(.alignright) p{font-size:var(--newspack-theme-font-size-lg);}@media only screen and (min-width:782px){.wp-block-pullquote.has-text-align-left:not(.alignleft):not(.alignright) p,.wp-block-pullquote.has-text-align-right:not(.alignleft):not(.alignright) p{font-size:var(--newspack-theme-font-size-lg);}}.wp-block-pullquote cite{color:inherit;display:inline-block;font-family:var(--newspack-theme-font-heading);font-size:var(--newspack-theme-font-size-xs);line-height:1.6;opacity:.8;text-transform:none;}.wp-block-pullquote cite:before{content:"—";margin-right:.25rem;}.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{padding:0;text-align:left;width:100%;}@media only screen and (min-width:600px){.wp-block-pullquote.alignleft,.wp-block-pullquote.alignright{border-bottom-width:0;width:50%;}}.wp-block-pullquote.alignleft blockquote,.wp-block-pullquote.alignleft.has-background blockquote,.wp-block-pullquote.alignright blockquote,.wp-block-pullquote.alignright.has-background blockquote{margin:1rem 0;}.wp-block-pullquote.alignleft blockquote,.wp-block-pullquote.alignright blockquote{max-width:100%;padding:0;}.wp-block-pullquote.alignleft blockquote p,.wp-block-pullquote.alignright blockquote p{font-size:1rem;}@media only screen and (min-width:782px){.wp-block-pullquote.alignleft blockquote p,.wp-block-pullquote.alignright blockquote p{font-size:var(--newspack-theme-font-size-md);}}.wp-block-pullquote.alignleft blockquote p:first-child,.wp-block-pullquote.alignright blockquote p:first-child{margin-top:0;}.wp-block-pullquote.is-style-solid-color{background-color:var(--newspack-theme-color-primary);padding-left:0;padding-right:0;}.wp-block-pullquote.is-style-solid-color a{color:var(--newspack-theme-color-bg-body);}.wp-block-pullquote.is-style-solid-color cite{color:inherit;}.wp-block-pullquote.is-style-solid-color blockquote{margin-left:1rem;margin-right:1rem;max-width:100%;padding-left:0;}.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,.wp-block-pullquote.is-style-solid-color blockquote.has-primary-variation-color,.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-variation-color,.wp-block-pullquote.is-style-solid-color blockquote.has-text-color a,.wp-block-pullquote.is-style-solid-color blockquote.has-text-color p,.wp-block-pullquote.is-style-solid-color blockquote.has-white-color{color:inherit;}@media only screen and (min-width:782px){.wp-block-pullquote.is-style-solid-color blockquote{margin-left:0;margin-right:0;}.wp-block-pullquote.is-style-solid-color.alignleft,.wp-block-pullquote.is-style-solid-color.alignright{padding:1rem 2rem;}.wp-block-pullquote.has-background,.wp-block-pullquote.is-style-solid-color,.wp-block-pullquote[style*=border-style][style*=border-width]{padding-left:1.5rem;padding-right:1.5rem;}}.wp-block-pullquote.has-background blockquote{margin-left:1rem;margin-right:1rem;}.wp-block-pullquote.has-background.alignleft,.wp-block-pullquote.has-background.alignright{padding-bottom:1rem;padding-top:1rem;}.wp-block-pullquote.has-text-align-center{text-align:center;}.wp-block-audio figcaption{text-align:left;}.wp-block-video figcaption{text-align:left;}.wp-block-quote:not(.is-large),.wp-block-quote:not(.is-style-large){border-color:var(--newspack-theme-color-link);border-width:2px;padding-bottom:0;padding-top:0;}.wp-block-quote p{font-size:1em;font-style:normal;margin-bottom:.5em;}.wp-block-quote cite{font-size:.7rem;}.wp-block-quote.is-large,.wp-block-quote.is-style-large{border-left:none;margin:1rem 0;padding:0;}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:var(--newspack-theme-font-size-lg);font-style:italic;line-height:1.4;}.wp-block-quote.is-large cite,.wp-block-quote.is-large footer,.wp-block-quote.is-style-large cite,.wp-block-quote.is-style-large footer{font-size:.7rem;}@media only screen and (min-width:782px){.wp-block-quote.is-large,.wp-block-quote.is-style-large{margin:1rem 0;padding:1rem 0;}.wp-block-quote.is-large p,.wp-block-quote.is-style-large p{font-size:var(--newspack-theme-font-size-lg);}}.wp-block-quote.has-background{padding:1.5rem;}.wp-block-image img{display:block;}.wp-block-image figcaption{text-align:left;}.wp-block-image img:not([style*=object-fit]){height:auto !important;}.wp-block-gallery{list-style-type:none;padding-left:0;}.wp-block-gallery .blocks-gallery-image:last-child,.wp-block-gallery .blocks-gallery-item:last-child{margin-bottom:16px;}.wp-block-gallery figcaption a,.wp-block-gallery figcaption a:hover{color:#fff;}.wp-block-gallery.alignfull figcaption,.wp-block-gallery.alignwide figcaption{margin-left:auto;margin-right:auto;}.wp-block-gallery .everlit-no-audio{display:contents;}.wp-block-separator.has-background,hr.has-background{border:0;}.wp-block-separator.has-background.is-style-dots:before,hr.has-background.is-style-dots:before{color:inherit;}.wp-block-file.has-background{padding:1rem;}.wp-block-search .search-icon{height:32px;width:32px;}.wp-block-search .has-icon{padding:.25rem .5rem;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper{border-color:var(--newspack-theme-color-border);padding:0;}.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper input{border:0;}.wp-block-search.wp-block-search__button-inside .wp-block-search__button{margin:2px;padding:calc(.76rem - 4px) 1rem;}.wp-block-search.wp-block-search__button-inside .wp-block-search__button.has-icon{padding:.15rem .25rem;}.wp-block-search.wp-block-search__button-inside .has-icon{border:0;}.wp-block-search.wp-block-search__button-inside .has-icon:not(.has-background){background:rgba(0,0,0,0);}.wp-block-search.wp-block-search__button-inside .has-icon:not(.has-text-color){color:var(--newspack-theme-color-text-main);}.wp-block-group .wp-block-group__inner-container>*{margin-bottom:32px;margin-top:32px;}.wp-block-group .wp-block-group__inner-container>:first-child{margin-top:0;}.wp-block-group .wp-block-group__inner-container>:last-child{margin-bottom:0;}.wp-block-group.is-layout-flex>*{max-width:100%;}.wp-block-group.has-background.alignfull+.wp-block-group.has-background.alignfull,[id=pico]>.wp-block-group.has-background.alignfull+.wp-block-group.has-background.alignfull{margin-top:-32px;}.wp-block-cover .wp-block-group.has-background+.wp-block-group.has-background{margin-top:unset;}.newspack-front-page.hide-homepage-title .entry-content>.wp-block-group.alignfull:first-child,.newspack-front-page.hide-homepage-title [id=pico]>.wp-block-group.alignfull:first-child{margin-top:0;}@media only screen and (min-width:782px){.newspack-front-page.hide-homepage-title .entry-content>.wp-block-group.alignfull:first-child,.newspack-front-page.hide-homepage-title [id=pico]>.wp-block-group.alignfull:first-child{margin-top:calc(-.5rem - 1px);}}.newspack-front-page.hide-homepage-title.splash-page-home .entry .entry-content>.alignfull:first-child{margin-top:0;}.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header{font-size:var(--newspack-theme-font-size-base);}.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle:active,.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle:focus,.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle:hover{background:rgba(0,0,0,0) !important;color:var(--newspack-theme-color-text-main) !important;}.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle:focus{outline:none;}.wp-block-footnotes li:focus,.wp-block-woocommerce-accordion-group .wp-block-woocommerce-accordion-header .accordion-item__toggle:focus-visible{outline:thin dotted;}.has-accent-background-color,.has-accent-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-accent-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-accent-background-color,.wp-block-navigation-item.has-accent-background-color,.wp-block-pullquote.has-accent-background-color,.wp-block-pullquote.is-style-solid-color.has-accent-background-color,.wp-block-search__button.has-accent-background-color{background-color:var(--newspack-theme-color-primary);}.has-accent-color,.is-style-outline .wp-block-button__link.has-accent-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-accent-color,.wp-block-button__link.has-accent-color,.wp-block-button__link.has-accent-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-accent-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-accent-color,.wp-block-pullquote.is-style-solid-color blockquote.has-accent-color p,.wp-block-search__button.has-accent-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-accent-color{color:var(--newspack-theme-color-primary);}.has-accent-border-color,.wp-block-pullquote.has-accent-border-color{border-color:var(--newspack-theme-color-primary);}.has-primary-background-color,.has-primary-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-primary-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-primary-background-color,.wp-block-navigation-item.has-primary-background-color,.wp-block-pullquote.has-primary-background-color,.wp-block-pullquote.is-style-solid-color.has-primary-background-color,.wp-block-search__button.has-primary-background-color{background-color:var(--newspack-theme-color-primary);}.has-primary-color,.is-style-outline .wp-block-button__link.has-primary-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-primary-color,.wp-block-button__link.has-primary-color,.wp-block-button__link.has-primary-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-primary-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,.wp-block-pullquote.is-style-solid-color blockquote.has-primary-color p,.wp-block-search__button.has-primary-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-primary-color{color:var(--newspack-theme-color-primary);}.has-primary-border-color,.wp-block-pullquote.has-primary-border-color{border-color:var(--newspack-theme-color-primary);}.has-primary-variation-background-color,.has-primary-variation-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-primary-variation-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-primary-variation-background-color,.wp-block-navigation-item.has-primary-variation-background-color,.wp-block-pullquote.has-primary-variation-background-color,.wp-block-pullquote.is-style-solid-color.has-primary-variation-background-color,.wp-block-search__button.has-primary-variation-background-color{background-color:var(--newspack-theme-color-primary-variation);}.has-primary-variation-color,.is-style-outline .wp-block-button__link.has-primary-variation-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-primary-variation-color,.wp-block-button__link.has-primary-variation-color,.wp-block-button__link.has-primary-variation-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-primary-variation-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-primary-variation-color,.wp-block-pullquote.is-style-solid-color blockquote.has-primary-variation-color p,.wp-block-search__button.has-primary-variation-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-primary-variation-color{color:var(--newspack-theme-color-primary-variation);}.has-primary-variation-border-color,.wp-block-pullquote.has-primary-variation-border-color{border-color:var(--newspack-theme-color-primary-variation);}.has-accent-2-background-color,.has-accent-2-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-accent-2-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-accent-2-background-color,.wp-block-navigation-item.has-accent-2-background-color,.wp-block-pullquote.has-accent-2-background-color,.wp-block-pullquote.is-style-solid-color.has-accent-2-background-color,.wp-block-search__button.has-accent-2-background-color{background-color:var(--newspack-theme-color-secondary);}.has-accent-2-color,.is-style-outline .wp-block-button__link.has-accent-2-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-accent-2-color,.wp-block-button__link.has-accent-2-color,.wp-block-button__link.has-accent-2-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-accent-2-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-accent-2-color,.wp-block-pullquote.is-style-solid-color blockquote.has-accent-2-color p,.wp-block-search__button.has-accent-2-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-accent-2-color{color:var(--newspack-theme-color-secondary);}.has-accent-2-border-color,.wp-block-pullquote.has-accent-2-border-color{border-color:var(--newspack-theme-color-secondary);}.has-secondary-background-color,.has-secondary-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-secondary-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-secondary-background-color,.wp-block-navigation-item.has-secondary-background-color,.wp-block-pullquote.has-secondary-background-color,.wp-block-pullquote.is-style-solid-color.has-secondary-background-color,.wp-block-search__button.has-secondary-background-color{background-color:var(--newspack-theme-color-secondary);}.has-secondary-color,.is-style-outline .wp-block-button__link.has-secondary-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-secondary-color,.wp-block-button__link.has-secondary-color,.wp-block-button__link.has-secondary-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-secondary-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color p,.wp-block-search__button.has-secondary-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-secondary-color{color:var(--newspack-theme-color-secondary);}.has-secondary-border-color,.wp-block-pullquote.has-secondary-border-color{border-color:var(--newspack-theme-color-secondary);}.has-secondary-variation-background-color,.has-secondary-variation-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-secondary-variation-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-secondary-variation-background-color,.wp-block-navigation-item.has-secondary-variation-background-color,.wp-block-pullquote.has-secondary-variation-background-color,.wp-block-pullquote.is-style-solid-color.has-secondary-variation-background-color,.wp-block-search__button.has-secondary-variation-background-color{background-color:var(--newspack-theme-color-secondary-variation);}.has-secondary-variation-color,.is-style-outline .wp-block-button__link.has-secondary-variation-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-secondary-variation-color,.wp-block-button__link.has-secondary-variation-color,.wp-block-button__link.has-secondary-variation-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-secondary-variation-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-variation-color,.wp-block-pullquote.is-style-solid-color blockquote.has-secondary-variation-color p,.wp-block-search__button.has-secondary-variation-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-secondary-variation-color{color:var(--newspack-theme-color-secondary-variation);}.has-secondary-variation-border-color,.wp-block-pullquote.has-secondary-variation-border-color{border-color:var(--newspack-theme-color-secondary-variation);}.has-contrast-background-color,.has-contrast-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-contrast-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-background-color,.wp-block-navigation-item.has-contrast-background-color,.wp-block-pullquote.has-contrast-background-color,.wp-block-pullquote.is-style-solid-color.has-contrast-background-color,.wp-block-search__button.has-contrast-background-color{background-color:#111;}.has-contrast-color,.is-style-outline .wp-block-button__link.has-contrast-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-color,.wp-block-button__link.has-contrast-color,.wp-block-button__link.has-contrast-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-contrast-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-color,.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-color p,.wp-block-search__button.has-contrast-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-contrast-color{color:#111;}.has-contrast-border-color,.wp-block-pullquote.has-contrast-border-color{border-color:#111;}.has-dark-gray-background-color,.has-dark-gray-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-dark-gray-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-dark-gray-background-color,.wp-block-navigation-item.has-dark-gray-background-color,.wp-block-pullquote.has-dark-gray-background-color,.wp-block-pullquote.is-style-solid-color.has-dark-gray-background-color,.wp-block-search__button.has-dark-gray-background-color{background-color:#111;}.has-dark-gray-color,.is-style-outline .wp-block-button__link.has-dark-gray-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-dark-gray-color,.wp-block-button__link.has-dark-gray-color,.wp-block-button__link.has-dark-gray-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-dark-gray-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,.wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color p,.wp-block-search__button.has-dark-gray-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-dark-gray-color{color:#111;}.has-dark-gray-border-color,.wp-block-pullquote.has-dark-gray-border-color{border-color:#111;}.has-contrast-2-background-color,.has-contrast-2-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-contrast-2-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-2-background-color,.wp-block-navigation-item.has-contrast-2-background-color,.wp-block-pullquote.has-contrast-2-background-color,.wp-block-pullquote.is-style-solid-color.has-contrast-2-background-color,.wp-block-search__button.has-contrast-2-background-color{background-color:var(--newspack-theme-color-bg-dark);}.has-contrast-2-color,.is-style-outline .wp-block-button__link.has-contrast-2-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-2-color,.wp-block-button__link.has-contrast-2-color,.wp-block-button__link.has-contrast-2-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-contrast-2-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-2-color,.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-2-color p,.wp-block-search__button.has-contrast-2-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-contrast-2-color{color:var(--newspack-theme-color-bg-dark);}.has-contrast-2-border-color,.wp-block-pullquote.has-contrast-2-border-color{border-color:var(--newspack-theme-color-bg-dark);}.has-contrast-3-background-color,.has-contrast-3-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-contrast-3-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-3-background-color,.wp-block-navigation-item.has-contrast-3-background-color,.wp-block-pullquote.has-contrast-3-background-color,.wp-block-pullquote.is-style-solid-color.has-contrast-3-background-color,.wp-block-search__button.has-contrast-3-background-color{background-color:#767676;}.has-contrast-3-color,.is-style-outline .wp-block-button__link.has-contrast-3-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-contrast-3-color,.wp-block-button__link.has-contrast-3-color,.wp-block-button__link.has-contrast-3-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-contrast-3-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-3-color,.wp-block-pullquote.is-style-solid-color blockquote.has-contrast-3-color p,.wp-block-search__button.has-contrast-3-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-contrast-3-color{color:#767676;}.has-contrast-3-border-color,.wp-block-pullquote.has-contrast-3-border-color{border-color:#767676;}.has-medium-gray-background-color,.has-medium-gray-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-medium-gray-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-medium-gray-background-color,.wp-block-navigation-item.has-medium-gray-background-color,.wp-block-pullquote.has-medium-gray-background-color,.wp-block-pullquote.is-style-solid-color.has-medium-gray-background-color,.wp-block-search__button.has-medium-gray-background-color{background-color:#767676;}.has-medium-gray-color,.is-style-outline .wp-block-button__link.has-medium-gray-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-medium-gray-color,.wp-block-button__link.has-medium-gray-color,.wp-block-button__link.has-medium-gray-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-medium-gray-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-medium-gray-color,.wp-block-pullquote.is-style-solid-color blockquote.has-medium-gray-color p,.wp-block-search__button.has-medium-gray-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-medium-gray-color{color:#767676;}.has-medium-gray-border-color,.wp-block-pullquote.has-medium-gray-border-color{border-color:#767676;}.has-base-5-background-color,.has-base-5-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-base-5-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-5-background-color,.wp-block-navigation-item.has-base-5-background-color,.wp-block-pullquote.has-base-5-background-color,.wp-block-pullquote.is-style-solid-color.has-base-5-background-color,.wp-block-search__button.has-base-5-background-color{background-color:var(--newspack-theme-color-text-light);}.has-base-5-color,.is-style-outline .wp-block-button__link.has-base-5-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-5-color,.wp-block-button__link.has-base-5-color,.wp-block-button__link.has-base-5-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-base-5-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-base-5-color,.wp-block-pullquote.is-style-solid-color blockquote.has-base-5-color p,.wp-block-search__button.has-base-5-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-base-5-color{color:var(--newspack-theme-color-text-light);}.has-base-5-border-color,.wp-block-pullquote.has-base-5-border-color{border-color:var(--newspack-theme-color-text-light);}.has-base-4-background-color,.has-base-4-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-base-4-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-4-background-color,.wp-block-navigation-item.has-base-4-background-color,.wp-block-pullquote.has-base-4-background-color,.wp-block-pullquote.is-style-solid-color.has-base-4-background-color,.wp-block-search__button.has-base-4-background-color{background-color:var(--newspack-theme-color-border);}.has-base-4-color,.is-style-outline .wp-block-button__link.has-base-4-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-4-color,.wp-block-button__link.has-base-4-color,.wp-block-button__link.has-base-4-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-base-4-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-base-4-color,.wp-block-pullquote.is-style-solid-color blockquote.has-base-4-color p,.wp-block-search__button.has-base-4-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-base-4-color{color:var(--newspack-theme-color-border);}.has-base-4-border-color,.wp-block-pullquote.has-base-4-border-color{border-color:var(--newspack-theme-color-border);}.has-base-3-background-color,.has-base-3-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-base-3-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-3-background-color,.wp-block-navigation-item.has-base-3-background-color,.wp-block-pullquote.has-base-3-background-color,.wp-block-pullquote.is-style-solid-color.has-base-3-background-color,.wp-block-search__button.has-base-3-background-color{background-color:var(--newspack-theme-color-border-light);}.has-base-3-color,.is-style-outline .wp-block-button__link.has-base-3-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-3-color,.wp-block-button__link.has-base-3-color,.wp-block-button__link.has-base-3-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-base-3-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-base-3-color,.wp-block-pullquote.is-style-solid-color blockquote.has-base-3-color p,.wp-block-search__button.has-base-3-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-base-3-color{color:var(--newspack-theme-color-border-light);}.has-base-3-border-color,.wp-block-pullquote.has-base-3-border-color{border-color:var(--newspack-theme-color-border-light);}.has-base-2-background-color,.has-base-2-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-base-2-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-2-background-color,.wp-block-navigation-item.has-base-2-background-color,.wp-block-pullquote.has-base-2-background-color,.wp-block-pullquote.is-style-solid-color.has-base-2-background-color,.wp-block-search__button.has-base-2-background-color{background-color:#eee;}.has-base-2-color,.is-style-outline .wp-block-button__link.has-base-2-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-2-color,.wp-block-button__link.has-base-2-color,.wp-block-button__link.has-base-2-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-base-2-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-base-2-color,.wp-block-pullquote.is-style-solid-color blockquote.has-base-2-color p,.wp-block-search__button.has-base-2-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-base-2-color{color:#eee;}.has-base-2-border-color,.wp-block-pullquote.has-base-2-border-color{border-color:#eee;}.has-light-gray-background-color,.has-light-gray-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-light-gray-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-light-gray-background-color,.wp-block-navigation-item.has-light-gray-background-color,.wp-block-pullquote.has-light-gray-background-color,.wp-block-pullquote.is-style-solid-color.has-light-gray-background-color,.wp-block-search__button.has-light-gray-background-color{background-color:#eee;}.has-light-gray-color,.is-style-outline .wp-block-button__link.has-light-gray-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-light-gray-color,.wp-block-button__link.has-light-gray-color,.wp-block-button__link.has-light-gray-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-light-gray-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,.wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color p,.wp-block-search__button.has-light-gray-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-light-gray-color{color:#eee;}.has-light-gray-border-color,.wp-block-pullquote.has-light-gray-border-color{border-color:#eee;}.has-base-background-color,.has-base-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-base-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-background-color,.wp-block-navigation-item.has-base-background-color,.wp-block-pullquote.has-base-background-color,.wp-block-pullquote.is-style-solid-color.has-base-background-color,.wp-block-search__button.has-base-background-color{background-color:#fff;}.has-base-color,.is-style-outline .wp-block-button__link.has-base-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-base-color,.wp-block-button__link.has-base-color,.wp-block-button__link.has-base-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-base-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-base-color,.wp-block-pullquote.is-style-solid-color blockquote.has-base-color p,.wp-block-search__button.has-base-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-base-color{color:#fff;}.has-base-border-color,.wp-block-pullquote.has-base-border-color{border-color:#fff;}.has-white-background-color,.has-white-background-color.has-background-dim,.is-style-outline .wp-block-button__link.has-white-background-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-white-background-color,.wp-block-navigation-item.has-white-background-color,.wp-block-pullquote.has-white-background-color,.wp-block-pullquote.is-style-solid-color.has-white-background-color,.wp-block-search__button.has-white-background-color{background-color:#fff;}.has-white-color,.is-style-outline .wp-block-button__link.has-white-color:not(:hover),.newspack-newsletters-subscribe input[type=submit].has-white-color,.wp-block-button__link.has-white-color,.wp-block-button__link.has-white-color:visited:not(:hover),.wp-block-button__link.is-style-outline.has-white-color:not(:hover),.wp-block-pullquote.is-style-solid-color blockquote.has-white-color,.wp-block-pullquote.is-style-solid-color blockquote.has-white-color p,.wp-block-search__button.has-white-color,.wp-block-woocommerce-accordion-item .accordion-item__heading.has-white-color{color:#fff;}.has-white-border-color,.wp-block-pullquote.has-white-border-color{border-color:#fff;}@media only screen and (min-width:782px){.page-template-no-header-footer .entry .entry-content>.alignwide,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignwide,.page-template-no-header-footer [id=pico]>.alignwide,.page-template-single-feature .entry .entry-content>.alignwide,.page-template-single-feature .newspack-content-gate__inline-gate>.alignwide,.page-template-single-feature [id=pico]>.alignwide,.post-template-single-feature .entry .entry-content>.alignwide,.post-template-single-feature .newspack-content-gate__inline-gate>.alignwide,.post-template-single-feature [id=pico]>.alignwide{margin-left:calc(25% - 25vw);margin-right:calc(25% - 25vw);max-width:100vw;}}.page-template-no-header-footer .entry .entry-content>.alignfull,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignfull,.page-template-no-header-footer [id=pico]>.alignfull,.page-template-single-feature .entry .entry-content>.alignfull,.page-template-single-feature .newspack-content-gate__inline-gate>.alignfull,.page-template-single-feature [id=pico]>.alignfull,.post-template-single-feature .entry .entry-content>.alignfull,.post-template-single-feature .newspack-content-gate__inline-gate>.alignfull,.post-template-single-feature [id=pico]>.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;position:relative;width:100vw;}@media only screen and (min-width:600px){.page-template-no-header-footer .entry .entry-content>.alignleft,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-no-header-footer [id=pico]>.alignleft,.page-template-no-header-footer [id=pico]>.wp-block-image .alignleft,.page-template-single-feature .entry .entry-content>.alignleft,.page-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-single-feature [id=pico]>.alignleft,.page-template-single-feature [id=pico]>.wp-block-image .alignleft,.post-template-single-feature .entry .entry-content>.alignleft,.post-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.post-template-single-feature [id=pico]>.alignleft,.post-template-single-feature [id=pico]>.wp-block-image .alignleft{margin-right:2rem;}}@media only screen and (min-width:782px){.page-template-no-header-footer .entry .entry-content>.alignleft,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-no-header-footer [id=pico]>.alignleft,.page-template-no-header-footer [id=pico]>.wp-block-image .alignleft,.page-template-single-feature .entry .entry-content>.alignleft,.page-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-single-feature [id=pico]>.alignleft,.page-template-single-feature [id=pico]>.wp-block-image .alignleft,.post-template-single-feature .entry .entry-content>.alignleft,.post-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.post-template-single-feature [id=pico]>.alignleft,.post-template-single-feature [id=pico]>.wp-block-image .alignleft{margin-left:-2rem;}}@media only screen and (min-width:1168px){.page-template-no-header-footer .entry .entry-content>.alignleft,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignleft,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-no-header-footer [id=pico]>.alignleft,.page-template-no-header-footer [id=pico]>.wp-block-image .alignleft,.page-template-single-feature .entry .entry-content>.alignleft,.page-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.page-template-single-feature [id=pico]>.alignleft,.page-template-single-feature [id=pico]>.wp-block-image .alignleft,.post-template-single-feature .entry .entry-content>.alignleft,.post-template-single-feature .entry .entry-content>.wp-block-image .alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.alignleft,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignleft,.post-template-single-feature [id=pico]>.alignleft,.post-template-single-feature [id=pico]>.wp-block-image .alignleft{margin-left:-6rem;}}@media only screen and (min-width:600px){.page-template-no-header-footer .entry .entry-content>.alignright,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-no-header-footer [id=pico]>.alignright,.page-template-no-header-footer [id=pico]>.wp-block-image .alignright,.page-template-single-feature .entry .entry-content>.alignright,.page-template-single-feature .entry .entry-content>.wp-block-image .alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-single-feature [id=pico]>.alignright,.page-template-single-feature [id=pico]>.wp-block-image .alignright,.post-template-single-feature .entry .entry-content>.alignright,.post-template-single-feature .entry .entry-content>.wp-block-image .alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.post-template-single-feature [id=pico]>.alignright,.post-template-single-feature [id=pico]>.wp-block-image .alignright{margin-left:2rem;}}@media only screen and (min-width:782px){.page-template-no-header-footer .entry .entry-content>.alignright,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-no-header-footer [id=pico]>.alignright,.page-template-no-header-footer [id=pico]>.wp-block-image .alignright,.page-template-single-feature .entry .entry-content>.alignright,.page-template-single-feature .entry .entry-content>.wp-block-image .alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-single-feature [id=pico]>.alignright,.page-template-single-feature [id=pico]>.wp-block-image .alignright,.post-template-single-feature .entry .entry-content>.alignright,.post-template-single-feature .entry .entry-content>.wp-block-image .alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.post-template-single-feature [id=pico]>.alignright,.post-template-single-feature [id=pico]>.wp-block-image .alignright{margin-right:-2rem;}}@media only screen and (min-width:1168px){.page-template-no-header-footer .entry .entry-content>.alignright,.page-template-no-header-footer .entry .entry-content>.wp-block-image .alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.alignright,.page-template-no-header-footer .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-no-header-footer [id=pico]>.alignright,.page-template-no-header-footer [id=pico]>.wp-block-image .alignright,.page-template-single-feature .entry .entry-content>.alignright,.page-template-single-feature .entry .entry-content>.wp-block-image .alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.alignright,.page-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.page-template-single-feature [id=pico]>.alignright,.page-template-single-feature [id=pico]>.wp-block-image .alignright,.post-template-single-feature .entry .entry-content>.alignright,.post-template-single-feature .entry .entry-content>.wp-block-image .alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.alignright,.post-template-single-feature .newspack-content-gate__inline-gate>.wp-block-image .alignright,.post-template-single-feature [id=pico]>.alignright,.post-template-single-feature [id=pico]>.wp-block-image .alignright{margin-right:-6rem;}}.page-template-no-header-footer .wp-block-image.alignfull img,.page-template-single-feature .wp-block-image.alignfull img,.post-template-single-feature .wp-block-image.alignfull img{width:100vw;}.page-template-no-header-footer .wp-block-cover-image.alignfull .wp-block-cover-image-text,.page-template-no-header-footer .wp-block-cover-image.alignfull .wp-block-cover-text,.page-template-no-header-footer .wp-block-cover-image.alignfull h2,.page-template-no-header-footer .wp-block-cover.alignfull .wp-block-cover-image-text,.page-template-no-header-footer .wp-block-cover.alignfull .wp-block-cover-text,.page-template-no-header-footer .wp-block-cover.alignfull h2,.page-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-image-text,.page-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-text,.page-template-single-feature .wp-block-cover-image.alignfull h2,.page-template-single-feature .wp-block-cover.alignfull .wp-block-cover-image-text,.page-template-single-feature .wp-block-cover.alignfull .wp-block-cover-text,.page-template-single-feature .wp-block-cover.alignfull h2,.post-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-image-text,.post-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-text,.post-template-single-feature .wp-block-cover-image.alignfull h2,.post-template-single-feature .wp-block-cover.alignfull .wp-block-cover-image-text,.post-template-single-feature .wp-block-cover.alignfull .wp-block-cover-text,.post-template-single-feature .wp-block-cover.alignfull h2{width:100%;}@media only screen and (min-width:782px){.page-template-no-header-footer .wp-block-cover-image.alignfull .wp-block-cover-image-text,.page-template-no-header-footer .wp-block-cover-image.alignfull .wp-block-cover-text,.page-template-no-header-footer .wp-block-cover.alignfull .wp-block-cover-image-text,.page-template-no-header-footer .wp-block-cover.alignfull .wp-block-cover-text,.page-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-image-text,.page-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-text,.page-template-single-feature .wp-block-cover.alignfull .wp-block-cover-image-text,.page-template-single-feature .wp-block-cover.alignfull .wp-block-cover-text,.post-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-image-text,.post-template-single-feature .wp-block-cover-image.alignfull .wp-block-cover-text,.post-template-single-feature .wp-block-cover.alignfull .wp-block-cover-image-text,.post-template-single-feature .wp-block-cover.alignfull .wp-block-cover-text{padding:0;}}.page-template-no-header-footer .wp-block-cover-image.alignwide,.page-template-no-header-footer .wp-block-cover.alignwide,.page-template-single-feature .wp-block-cover-image.alignwide,.page-template-single-feature .wp-block-cover.alignwide,.post-template-single-feature .wp-block-cover-image.alignwide,.post-template-single-feature .wp-block-cover.alignwide{width:auto;}.page-template-no-header-footer .entry .entry-content .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer .entry .entry-content .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer .entry .entry-content .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer .entry .entry-content .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer [id=pico] .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer [id=pico] .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer [id=pico] .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-no-header-footer [id=pico] .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-single-feature .entry .entry-content .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-single-feature .entry .entry-content .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-single-feature .entry .entry-content .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-single-feature .entry .entry-content .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-single-feature [id=pico] .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-single-feature [id=pico] .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.page-template-single-feature [id=pico] .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.page-template-single-feature [id=pico] .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide),.post-template-single-feature .entry .entry-content .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.post-template-single-feature .entry .entry-content .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.post-template-single-feature .entry .entry-content .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.post-template-single-feature .entry .entry-content .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide),.post-template-single-feature [id=pico] .wp-block-cover.alignfull>div>:not(.alignfull):not(.alignwide),.post-template-single-feature [id=pico] .wp-block-cover.alignwide>div>:not(.alignfull):not(.alignwide),.post-template-single-feature [id=pico] .wp-block-group.alignfull>div>:not(.alignfull):not(.alignwide),.post-template-single-feature [id=pico] .wp-block-group.alignwide>div>:not(.alignfull):not(.alignwide){margin-left:auto;margin-right:auto;max-width:780px;}.page-template-no-header-footer .entry .entry-content .wp-block-cover.alignfull>div>.alignwide,.page-template-no-header-footer .entry .entry-content .wp-block-group.alignfull>div>.alignwide,.page-template-no-header-footer [id=pico] .wp-block-cover.alignfull>div>.alignwide,.page-template-no-header-footer [id=pico] .wp-block-group.alignfull>div>.alignwide,.page-template-single-feature .entry .entry-content .wp-block-cover.alignfull>div>.alignwide,.page-template-single-feature .entry .entry-content .wp-block-group.alignfull>div>.alignwide,.page-template-single-feature [id=pico] .wp-block-cover.alignfull>div>.alignwide,.page-template-single-feature [id=pico] .wp-block-group.alignfull>div>.alignwide,.post-template-single-feature .entry .entry-content .wp-block-cover.alignfull>div>.alignwide,.post-template-single-feature .entry .entry-content .wp-block-group.alignfull>div>.alignwide,.post-template-single-feature [id=pico] .wp-block-cover.alignfull>div>.alignwide,.post-template-single-feature [id=pico] .wp-block-group.alignfull>div>.alignwide{margin-left:auto;margin-right:auto;max-width:100%;width:calc(50vw + 390px);}.newspack-front-page .entry-content>.wp-block-columns:not(.is-not-stacked-on-mobile).alignfull,.newspack-front-page .entry-content>.wpnbha.alignfull,.newspack-front-page .wp-block-pullquote.alignfull,.newspack-front-page .wp-block-table.alignfull,.page-template-single-feature .entry-content>.wp-block-columns:not(.is-not-stacked-on-mobile).alignfull,.page-template-single-feature .entry-content>.wpnbha.alignfull,.page-template-single-feature .wp-block-pullquote.alignfull,.page-template-single-feature .wp-block-table.alignfull,.page-template-single-wide .entry-content>.wp-block-columns:not(.is-not-stacked-on-mobile).alignfull,.page-template-single-wide .entry-content>.wpnbha.alignfull,.page-template-single-wide .wp-block-pullquote.alignfull,.page-template-single-wide .wp-block-table.alignfull,.post-template-single-feature .entry-content>.wp-block-columns:not(.is-not-stacked-on-mobile).alignfull,.post-template-single-feature .entry-content>.wpnbha.alignfull,.post-template-single-feature .wp-block-pullquote.alignfull,.post-template-single-feature .wp-block-table.alignfull,.post-template-single-wide .entry-content>.wp-block-columns:not(.is-not-stacked-on-mobile).alignfull,.post-template-single-wide .entry-content>.wpnbha.alignfull,.post-template-single-wide .wp-block-pullquote.alignfull,.post-template-single-wide .wp-block-table.alignfull{padding-left:1rem;padding-right:1rem;}@media only screen and (min-width:600px){.newspack-front-page .entry-content>.wp-block-columns.is-not-stacked-on-mobile.alignfull,.page-template-single-feature .entry-content>.wp-block-columns.is-not-stacked-on-mobile.alignfull,.page-template-single-wide .entry-content>.wp-block-columns.is-not-stacked-on-mobile.alignfull,.post-template-single-feature .entry-content>.wp-block-columns.is-not-stacked-on-mobile.alignfull,.post-template-single-wide .entry-content>.wp-block-columns.is-not-stacked-on-mobile.alignfull{padding-left:1rem;padding-right:1rem;}}.newspack-front-page .entry .entry-content>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.newspack-front-page [id=pico]>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.page-template-single-feature .entry .entry-content>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.page-template-single-feature [id=pico]>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.page-template-single-wide .entry .entry-content>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.page-template-single-wide [id=pico]>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.post-template-single-feature .entry .entry-content>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.post-template-single-feature [id=pico]>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.post-template-single-wide .entry .entry-content>.wp-block-group.alignfull:not(.has-background):not(.is-style-border),.post-template-single-wide [id=pico]>.wp-block-group.alignfull:not(.has-background):not(.is-style-border){padding-left:5.5%;padding-right:5.5%;}.newspack-front-page .entry .entry-content .wp-block-columns .alignfull,.newspack-front-page .entry .entry-content .wp-block-columns .alignwide,.newspack-front-page .entry .entry-content .wp-block-cover .alignfull,.newspack-front-page .entry .entry-content .wp-block-cover .alignwide,.newspack-front-page .entry .entry-content .wp-block-group .alignfull,.newspack-front-page .entry .entry-content .wp-block-group .alignwide,.page-template-single-feature .entry .entry-content .wp-block-columns .alignfull,.page-template-single-feature .entry .entry-content .wp-block-columns .alignwide,.page-template-single-feature .entry .entry-content .wp-block-cover .alignfull,.page-template-single-feature .entry .entry-content .wp-block-cover .alignwide,.page-template-single-feature .entry .entry-content .wp-block-group .alignfull,.page-template-single-feature .entry .entry-content .wp-block-group .alignwide,.page-template-single-wide .entry .entry-content .wp-block-columns .alignfull,.page-template-single-wide .entry .entry-content .wp-block-columns .alignwide,.page-template-single-wide .entry .entry-content .wp-block-cover .alignfull,.page-template-single-wide .entry .entry-content .wp-block-cover .alignwide,.page-template-single-wide .entry .entry-content .wp-block-group .alignfull,.page-template-single-wide .entry .entry-content .wp-block-group .alignwide,.post-template-single-feature .entry .entry-content .wp-block-columns .alignfull,.post-template-single-feature .entry .entry-content .wp-block-columns .alignwide,.post-template-single-feature .entry .entry-content .wp-block-cover .alignfull,.post-template-single-feature .entry .entry-content .wp-block-cover .alignwide,.post-template-single-feature .entry .entry-content .wp-block-group .alignfull,.post-template-single-feature .entry .entry-content .wp-block-group .alignwide,.post-template-single-wide .entry .entry-content .wp-block-columns .alignfull,.post-template-single-wide .entry .entry-content .wp-block-columns .alignwide,.post-template-single-wide .entry .entry-content .wp-block-cover .alignfull,.post-template-single-wide .entry .entry-content .wp-block-cover .alignwide,.post-template-single-wide .entry .entry-content .wp-block-group .alignfull,.post-template-single-wide .entry .entry-content .wp-block-group .alignwide{margin-left:0;margin-right:0;}.newspack-front-page .entry .entry-content .wp-block-cover.alignfull .alignwide,.newspack-front-page .entry .entry-content .wp-block-group.alignfull .alignwide,.page-template-single-feature .entry .entry-content .wp-block-cover.alignfull .alignwide,.page-template-single-feature .entry .entry-content .wp-block-group.alignfull .alignwide,.page-template-single-wide .entry .entry-content .wp-block-cover.alignfull .alignwide,.page-template-single-wide .entry .entry-content .wp-block-group.alignfull .alignwide,.post-template-single-feature .entry .entry-content .wp-block-cover.alignfull .alignwide,.post-template-single-feature .entry .entry-content .wp-block-group.alignfull .alignwide,.post-template-single-wide .entry .entry-content .wp-block-cover.alignfull .alignwide,.post-template-single-wide .entry .entry-content .wp-block-group.alignfull .alignwide{margin-left:auto;margin-right:auto;}.newspack-front-page .main-content .newspack_global_ad.sidebar_article-1,.newspack-front-page .main-content .newspack_global_ad.sidebar_article-2,.newspack-front-page .main-content .scaip .newspack_global_ad,.newspack-front-page .main-content .scaip .widget_newspack-ads-widget,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-1,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-2,.page-template-single-feature .main-content .scaip .newspack_global_ad,.page-template-single-feature .main-content .scaip .widget_newspack-ads-widget,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-1,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-2,.page-template-single-wide .main-content .scaip .newspack_global_ad,.page-template-single-wide .main-content .scaip .widget_newspack-ads-widget,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-1,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-2,.post-template-single-feature .main-content .scaip .newspack_global_ad,.post-template-single-feature .main-content .scaip .widget_newspack-ads-widget,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-1,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-2,.post-template-single-wide .main-content .scaip .newspack_global_ad,.post-template-single-wide .main-content .scaip .widget_newspack-ads-widget{background-color:var(--newspack-theme-color-bg-pre);margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);max-width:100vw;}.newspack-front-page .main-content .newspack_global_ad.sidebar_article-1>*,.newspack-front-page .main-content .newspack_global_ad.sidebar_article-2>*,.newspack-front-page .main-content .scaip .newspack_global_ad>*,.newspack-front-page .main-content .scaip .widget_newspack-ads-widget>*,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-1>*,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-2>*,.page-template-single-feature .main-content .scaip .newspack_global_ad>*,.page-template-single-feature .main-content .scaip .widget_newspack-ads-widget>*,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-1>*,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-2>*,.page-template-single-wide .main-content .scaip .newspack_global_ad>*,.page-template-single-wide .main-content .scaip .widget_newspack-ads-widget>*,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-1>*,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-2>*,.post-template-single-feature .main-content .scaip .newspack_global_ad>*,.post-template-single-feature .main-content .scaip .widget_newspack-ads-widget>*,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-1>*,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-2>*,.post-template-single-wide .main-content .scaip .newspack_global_ad>*,.post-template-single-wide .main-content .scaip .widget_newspack-ads-widget>*{margin-bottom:16px;margin-top:16px;}.newspack-front-page .main-content .newspack_global_ad.sidebar_article-1 amp-ad,.newspack-front-page .main-content .newspack_global_ad.sidebar_article-2 amp-ad,.newspack-front-page .main-content .scaip .newspack_global_ad amp-ad,.newspack-front-page .main-content .scaip .widget_newspack-ads-widget amp-ad,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-1 amp-ad,.page-template-single-feature .main-content .newspack_global_ad.sidebar_article-2 amp-ad,.page-template-single-feature .main-content .scaip .newspack_global_ad amp-ad,.page-template-single-feature .main-content .scaip .widget_newspack-ads-widget amp-ad,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-1 amp-ad,.page-template-single-wide .main-content .newspack_global_ad.sidebar_article-2 amp-ad,.page-template-single-wide .main-content .scaip .newspack_global_ad amp-ad,.page-template-single-wide .main-content .scaip .widget_newspack-ads-widget amp-ad,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-1 amp-ad,.post-template-single-feature .main-content .newspack_global_ad.sidebar_article-2 amp-ad,.post-template-single-feature .main-content .scaip .newspack_global_ad amp-ad,.post-template-single-feature .main-content .scaip .widget_newspack-ads-widget amp-ad,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-1 amp-ad,.post-template-single-wide .main-content .newspack_global_ad.sidebar_article-2 amp-ad,.post-template-single-wide .main-content .scaip .newspack_global_ad amp-ad,.post-template-single-wide .main-content .scaip .widget_newspack-ads-widget amp-ad{display:block;}.newspack-pattern.contribution__style-1 .wp-block-group__inner-container>.wp-block-columns{gap:0;}.newspack-pattern.contribution__style-1 .wp-block-group__inner-container>.wp-block-columns .wp-block-group.is-vertical{gap:var(--wp--preset--spacing--80);}.newspack-pattern.subscribe__style-7.has-background{padding:0;}.newspack-pattern.subscribe__style-8 .wp-block-image{display:none;margin-bottom:0;}@media only screen and (min-width:782px){.newspack-pattern.subscribe__style-8 .wp-block-image{display:block;}}.newspack-pattern.subscribe__style-8 .wp-block-image figcaption{display:none;}.newspack-pattern.subscribe__style-8.has-background{padding:0;}.newspack-pattern.subscribe__style-9 .wp-block-columns{margin:0;padding:0;}@media only screen and (max-width:781px){.newspack-pattern.subscribe__style-9 .wp-block-columns:not(.is-not-stacked-on-mobile){gap:16px;}}.newspack-pattern.subscribe__style-9 .wp-block-columns .wp-block-column>*{margin-bottom:16px;margin-top:16px;}.newspack-pattern.subscribe__style-9 .wp-block-columns .wp-block-column>:first-child{margin-top:0;}.newspack-pattern.subscribe__style-9 .wp-block-columns .wp-block-column>:last-child{margin-bottom:0;}.newspack-pattern.subscribe__style-9.has-background{padding:32px;}embed,iframe,object{max-width:100%;}iframe{display:block;}.custom-logo-link{display:inline-block;}svg{transition:fill .12s ease-in-out;fill:currentcolor;}.swiper-pagination-simple,.wp-caption-text,figcaption{color:var(--newspack-theme-color-text-light);margin:0 auto;padding:0;text-align:left;}:root :where(.wp-block-image figcaption){color:var(--newspack-theme-color-text-light);font-size:var(--newspack-theme-font-size-xs);}.has-text-color .wp-caption-text,.has-text-color figcaption{color:inherit;}.amp-image-lightbox-caption,.swiper-pagination-simple,.wp-caption-text,figcaption{font-family:var(--newspack-theme-font-heading);font-size:var(--newspack-theme-font-size-xs);line-height:var(--newspack-theme-font-line-height-body);}@supports (-webkit-hyphens:none){.wp-block-image [class^=align]>figcaption{display:block;}}.entry-content .wp-caption-text,.entry-content figcaption{max-width:780px;}.entry-content .alignfull>figcaption,.entry-content .alignwide>figcaption{width:min(90vw,780px);}.entry-content .wp-block-column .alignfull>figcaption,.entry-content .wp-block-column .alignwide>figcaption,.entry-content .wp-block-column figcaption{max-width:100%;width:100%;}.newspack-front-page .entry-content .wp-caption-text,.newspack-front-page .entry-content figcaption,.page-template-single-wide .entry-content .wp-caption-text,.page-template-single-wide .entry-content figcaption,.post-template-single-wide .entry-content .wp-caption-text,.post-template-single-wide .entry-content figcaption{max-width:1200px;}.newspack-front-page .alignfull>figcaption,.newspack-front-page .alignwide>figcaption,.page-template-single-wide .alignfull>figcaption,.page-template-single-wide .alignwide>figcaption,.post-template-single-wide .alignfull>figcaption,.post-template-single-wide .alignwide>figcaption{width:min(90vw,1200px);}.newspack-front-page .entry-content .wp-block-column .alignfull>figcaption,.newspack-front-page .entry-content .wp-block-column .alignwide>figcaption,.newspack-front-page .entry-content .wp-block-column figcaption,.page-template-single-wide .entry-content .wp-block-column .alignfull>figcaption,.page-template-single-wide .entry-content .wp-block-column .alignwide>figcaption,.page-template-single-wide .entry-content .wp-block-column figcaption,.post-template-single-wide .entry-content .wp-block-column .alignfull>figcaption,.post-template-single-wide .entry-content .wp-block-column .alignwide>figcaption,.post-template-single-wide .entry-content .wp-block-column figcaption{max-width:100%;width:100%;}body{--wp--preset--spacing--50:clamp(1.25rem,1rem + .8333vw,1.5rem);--wp--preset--spacing--60:clamp(1.5rem,.75rem + 2.5vw,2.25rem);--wp--preset--spacing--70:clamp(1.75rem,.12rem + 5.4333vw,3.38rem);--wp--preset--spacing--80:clamp(2rem,-1.06rem + 10.2vw,5.06rem);}.newspack_global_ad{align-items:center;display:flex;justify-content:center;}.newspack_global_ad>*{margin-bottom:16px;margin-top:16px;}.newspack_global_ad.global_above_header{background-color:var(--newspack-theme-color-bg-pre);}.newspack_global_ad.sticky{background-color:var(--newspack-theme-color-bg-body);bottom:0;box-shadow:0 0 5px 0 rgba(0,0,0,.2);display:none;position:fixed;width:100%;z-index:11;}.newspack_global_ad.sticky button{align-items:center;background-color:var(--newspack-theme-color-bg-body);border-radius:.75rem 0 0;box-shadow:0 -1px 1px 0 rgba(0,0,0,.2);color:var(--newspack-theme-color-text-main);display:flex;font-size:1.25rem;height:1.75rem;justify-content:center;padding:0;position:absolute;right:0;top:-1.75rem;width:1.75rem;}.newspack_global_ad.sticky button:before{content:"×";}.newspack_global_ad.sticky>*{margin:0;max-height:25vh;}.newspack_global_ad amp-ad{vertical-align:bottom;}.widget_newspack-ads-widget .textwidget,div[class*=newspack-ads-blocks-ad-unit]{align-items:center;display:flex;justify-content:center;}body:not(.newspack-front-page) .newspack_global_ad.global_below_header+.site-content{margin-top:1.5rem;}.h-sub.single-featured-image-behind .global_below_header,.h-sub.single-featured-image-beside .global_below_header{display:none;}.h-sub.single-featured-image-behind.h-stk .global_above_header,.h-sub.single-featured-image-beside.h-stk .global_above_header{position:relative;z-index:1;}.single-featured-image-behind .newspack_global_ad.global_below_header{margin-bottom:-1.5rem;}.custom-ad-bg:not(.af-widget) .newspack_global_ad.global_above_footer{margin-top:2rem;}.custom-ad-bg.ad-above-footer .site-footer{margin-top:0;}.custom-ad-bg .newspack_global_ad>*{margin-bottom:8px;margin-top:8px;}.custom-ad-bg .widget_newspack-ads-widget .textwidget,.custom-ad-bg div[class*=newspack-ads-blocks-ad-unit]{padding:8px;}.newspack-listings.hide-date.hide-author .entry-subhead{padding:0;}.archive .featured-listing[class*=type-newspack_lst_] .entry-title a:before,.blog .featured-listing[class*=type-newspack_lst_] .entry-title a:before,.newspack-listings__curated-list .featured-listing .newspack-listings__listing-title:before,.search .featured-listing[class*=type-newspack_lst_] .entry-title a:before,.wpnbha .featured-listing[class*=type-newspack_lst_] .entry-title a:before,.wpnbpc .featured-listing[class*=type-newspack_lst_] .entry-title a:before{border:calc(.25em + 1px) solid var(--newspack-theme-color-primary);border-bottom-color:rgba(0,0,0,0);border-top:0;box-sizing:border-box;content:"";display:inline-block;height:.8em;margin-right:.3em;position:relative;top:.05em;width:.5em;}#secondary .widgettitle,.accent-header,.article-section-title{border-bottom:4px solid var(--newspack-theme-color-border);color:var(--newspack-theme-color-primary-against-white);padding-bottom:.33rem;}.accent-header,.article-section-title{font-size:var(--newspack-theme-font-size-sm);}.accent-header,.entry-content .wpnbha .article-section-title,.wp-block-columns .wp-block-column>.accent-header{margin-bottom:.75rem;}.h-sb .site-header .nav3 a{background-color:var(--newspack-theme-color-primary-darken-10);color:var(--newspack-theme-color-against-primary);}.h-sb .site-header .nav3 .menu-highlight a{background-color:var(--newspack-theme-color-secondary);color:var(--newspack-theme-color-against-secondary);}.cat-links a{background-color:var(--newspack-theme-color-primary);display:inline-block;line-height:1;margin:0 .25rem .25rem 0;padding:.3em .5em;}.cat-links a,.cat-links a:hover,.cat-links a:visited{color:var(--newspack-theme-color-against-primary);}.cat-links a:hover{background-color:var(--newspack-theme-color-primary-variation);}.wpnbha .cat-links a,.wpnbpc .cat-links a{margin:0;padding:0;}.wpnbha .cat-links a,.wpnbha .cat-links a:hover,.wpnbha .cat-links a:visited,.wpnbpc .cat-links a,.wpnbpc .cat-links a:hover,.wpnbpc .cat-links a:visited{background-color:initial;color:inherit;}.wp-block-newspack-blocks-carousel .cat-links a{background:rgba(0,0,0,0);padding:0;}.featured-image-behind .cat-links{font-size:var(--newspack-theme-font-size-sm);}.featured-image-behind .cat-links a,.featured-image-behind .cat-links a:hover,.featured-image-behind .cat-links a:visited{background-color:initial;color:inherit;margin:0;padding:0;}.featured-image-behind .cat-links .sep{display:inline;}@media only screen and (min-width:782px){.featured-image-beside .cat-links a,.featured-image-beside .cat-links a:hover,.featured-image-beside .cat-links a:visited{background-color:initial;color:inherit;margin:0;padding:0;}.featured-image-beside .cat-links .sep{display:inline;}}.tags-links a{background-color:#f1f1f1;margin:0 .25rem .25rem 0;padding:.25rem .5rem;}.cat-links .sep,.tags-links .sep{display:none;}.archive .cat-links,.blog .cat-links,.search .cat-links{margin-bottom:.5rem;}.archive .cat-links a,.blog .cat-links a,.search .cat-links a{font-size:.65rem;margin-bottom:0;padding:.25em .5em;}.single.sponsors-show-cats .sponsor-label,.single.sponsors-show-cats .sponsor-label+button{margin-bottom:.25rem;}.tablepress tfoot>tr>* .dt-column-footer,.tablepress tfoot>tr>* .dt-column-header,.tablepress thead>tr>* .dt-column-footer,.tablepress thead>tr>* .dt-column-header{align-items:center;display:flex;gap:4px;justify-content:space-between;}.tablepress tfoot>tr>* .dt-column-footer .dt-column-title,.tablepress tfoot>tr>* .dt-column-header .dt-column-title,.tablepress thead>tr>* .dt-column-footer .dt-column-title,.tablepress thead>tr>* .dt-column-header .dt-column-title{flex-grow:1;}.tablepress tfoot>tr>* .dt-column-footer .dt-column-title:empty,.tablepress tfoot>tr>* .dt-column-header .dt-column-title:empty,.tablepress thead>tr>* .dt-column-footer .dt-column-title:empty,.tablepress thead>tr>* .dt-column-header .dt-column-title:empty{display:none;}.tablepress:where(.auto-type-alignment) .dt-right .dt-column-footer,.tablepress:where(.auto-type-alignment) .dt-right .dt-column-header,.tablepress:where(.auto-type-alignment) .dt-type-date .dt-column-footer,.tablepress:where(.auto-type-alignment) .dt-type-date .dt-column-header,.tablepress:where(.auto-type-alignment) .dt-type-numeric .dt-column-footer,.tablepress:where(.auto-type-alignment) .dt-type-numeric .dt-column-header{flex-direction:row-reverse;}</style>
	<link rel="canonical" href="https://hipertextual.com/software/feedblendr-feed-de-feeds/" />
	<meta property="og:locale" content="es_ES" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="FEEDblendr: Feed de feeds" />
	<meta property="og:description" content="FEEDblendr nos ofrece un servicio en el que agrupar varios feeds en uno de solo, de tal forma que nos facilite la lectura. Para conseguir nuestro feed único, solo deberemos visitar el sitio e introducir en un listado realizado con AJAX tantas fuentes como necesitemos. Obtendremos un feed único en el que recibiremos el conjunto [&hellip;]" />
	<meta property="og:url" content="https://hipertextual.com/software/feedblendr-feed-de-feeds/" />
	<meta property="og:site_name" content="Hipertextual" />
	<meta property="article:publisher" content="https://facebook.com/hipertextual" />
	<meta property="article:published_time" content="2007-01-23T20:12:09+00:00" />
	<meta property="og:image" content="http://newspack-hipertextual.s3.eu-west-3.amazonaws.com/wp-content/uploads/2007/01/feedblendr.gif" />
	<meta name="author" content="jordi" />
	<meta name="twitter:card" content="summary_large_image" />
	<meta name="twitter:creator" content="@hipertextual" />
	<meta name="twitter:site" content="@hipertextual" />
	<meta name="twitter:label1" content="Escrito por" />
	<meta name="twitter:data1" content="jordi" />
	<meta name="twitter:label2" content="Tiempo de lectura" />
	<meta name="twitter:data2" content="1 minuto" />
	<meta name="twitter:label3" content="Written by" />
	<meta name="twitter:data3" content="jordi" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#article","isPartOf":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/"},"author":[{"@id":"https:\/\/hipertextual.com\/#\/schema\/person\/e551a235f6eb0f2279b579875f8f059e"}],"headline":"FEEDblendr: Feed de feeds","datePublished":"2007-01-23T20:12:09+00:00","mainEntityOfPage":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/"},"wordCount":120,"commentCount":0,"publisher":{"@id":"https:\/\/hipertextual.com\/#organization"},"image":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#primaryimage"},"thumbnailUrl":"http:\/\/newspack-hipertextual.s3.eu-west-3.amazonaws.com\/wp-content\/uploads\/2007\/01\/feedblendr.gif","articleSection":["Software"],"inLanguage":"es","articleBody":"FEEDblendr nos ofrece un servicio en el que agrupar varios feeds en uno de solo, de tal forma que nos facilite la lectura. Para conseguir nuestro feed único, solo deberemos visitar el sitio e introducir en un listado realizado con AJAX tantas fuentes como necesitemos. Obtendremos un feed único en el que recibiremos el conjunto de todos los que hayamos indicado tal cual eran originalmente, pero con un texto al final de cada entrada indicando la fuente de la misma. La utilidad de un sitio como este ya depende de cada uno, podemos usarlo para agrupar feeds temáticos de una misma fuente, agrupar temáticas o cualquier otro conjunto que nos convenga. FEEDblendr (Go2Web20)","copyrightYear":"2007","copyrightHolder":{"@id":"https:\/\/hipertextual.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/","url":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/","name":"FEEDblendr: Feed de feeds","isPartOf":{"@id":"https:\/\/hipertextual.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#primaryimage"},"image":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#primaryimage"},"thumbnailUrl":"http:\/\/newspack-hipertextual.s3.eu-west-3.amazonaws.com\/wp-content\/uploads\/2007\/01\/feedblendr.gif","datePublished":"2007-01-23T20:12:09+00:00","breadcrumb":{"@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#primaryimage","url":"http:\/\/newspack-hipertextual.s3.eu-west-3.amazonaws.com\/wp-content\/uploads\/2007\/01\/feedblendr.gif","contentUrl":"http:\/\/newspack-hipertextual.s3.eu-west-3.amazonaws.com\/wp-content\/uploads\/2007\/01\/feedblendr.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/hipertextual.com\/software\/feedblendr-feed-de-feeds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/hipertextual.com\/"},{"@type":"ListItem","position":2,"name":"Software","item":"https:\/\/hipertextual.com\/software\/"},{"@type":"ListItem","position":3,"name":"FEEDblendr: Feed de feeds"}]},{"@type":"WebSite","@id":"https:\/\/hipertextual.com\/#website","url":"https:\/\/hipertextual.com\/","name":"Hipertextual","description":"Tecnología, ciencia y cultura digital","publisher":{"@id":"https:\/\/hipertextual.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hipertextual.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/hipertextual.com\/#organization","name":"Hipertextual","url":"https:\/\/hipertextual.com\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/hipertextual.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/imgs.hipertextual.com\/wp-content\/uploads\/2021\/03\/hptx-structured.png?fit=600%2C60&quality=70&strip=all&ssl=1","contentUrl":"https:\/\/i0.wp.com\/imgs.hipertextual.com\/wp-content\/uploads\/2021\/03\/hptx-structured.png?fit=600%2C60&quality=70&strip=all&ssl=1","width":600,"height":60,"caption":"Hipertextual"},"image":{"@id":"https:\/\/hipertextual.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/hipertextual","https:\/\/x.com\/hipertextual","https:\/\/instagram.com\/hipertextual","https:\/\/youtube.com\/@hipertextual","https:\/\/youtube.com\/@en-el-futuro","https:\/\/youtube.com\/@earcos","https:\/\/www.tiktok.com\/@hipertextualcom"],"description":"Hipertextual es un medio digital en español que cubre tecnología, innovación, cultura digital, movilidad eléctrica y ciencia.","email":"info@hipertextual.com","legalName":"Hipertextual SL","vatID":"ES77493167A"},{"@type":"Person","@id":"https:\/\/hipertextual.com\/#\/schema\/person\/e551a235f6eb0f2279b579875f8f059e","name":"jordi","url":"https:\/\/hipertextual.com\/autor\/jordi\/"}]}</script>
	<!-- / Yoast SEO Premium plugin. -->


<link rel='dns-prefetch' href='//cdn.parsely.com' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link rel='dns-prefetch' href='//imgs.hipertextual.com' />
<link rel='preconnect' href='//i0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Hipertextual &raquo; Feed" href="https://hipertextual.com/feed/" />
<style id='wp-img-auto-sizes-contain-inline-css'>img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}</style>
<style id='wp-block-library-inline-css'>:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}</style>
<style id='wp-block-search-inline-css'>.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{height:1.25em;min-height:24px;min-width:24px;width:1.25em;fill:currentColor;vertical-align:text-bottom}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button{box-sizing:border-box;display:flex;flex-shrink:0;justify-content:center;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__input){appearance:none;border:1px solid #949494;flex-grow:1;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){background-color:#fff;border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}</style>
<style id='wp-block-search-theme-inline-css'>.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}</style>
<style id='wp-block-group-inline-css'>.wp-block-group{box-sizing:border-box}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}</style>
<style id='wp-block-group-theme-inline-css'>:where(.wp-block-group.has-background){padding:1.25em 2.375em}</style>

<style id='classic-theme-styles-inline-css'>.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}</style>
<link rel="stylesheet" id="newspack-blocks-block-styles-stylesheet-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/plugins/newspack-blocks/dist/block_styles.css?ver=4.26.1">
<link rel="stylesheet" id="gn-frontend-gnfollow-style-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/plugins/gn-publisher/assets/css/gn-frontend-gnfollow.min.css?ver=1.5.27">
<link rel="stylesheet" id="newspack-ads-media-kit-frontend-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/plugins/newspack-ads/dist/media-kit-frontend.css?ver=1776123485">
<link rel="stylesheet" id="newspack-ads-frontend-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/plugins/newspack-ads/includes/../dist/frontend.css?ver=33bf52d469a9bc142086">
<link rel="stylesheet" id="foundation-events-styles-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/cache/perfmatters/hipertextual.com/minify/83fe9dd09714.styles.min.css?ver=1776098616">
<link rel="stylesheet" id="foundation-locations-styles-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/cache/perfmatters/hipertextual.com/minify/fd74d2b21fe9.styles.min.css?ver=1776098616">
<link rel="stylesheet" id="foundation-movies-styles-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/cache/perfmatters/hipertextual.com/minify/19c3e46a58da.styles.min.css?ver=1776098616">
<link rel="stylesheet" id="wp-components-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-includes/css/dist/components/style.min.css?ver=6.9.4">
<link rel="stylesheet" id="newspack-style-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/themes/newspack-theme/style.css?ver=2.21.0">
<style id='newspack-style-inline-css'>.tags-links{clip: rect(1px,1px,1px,1px);height: 1px;position: absolute;overflow: hidden;width: 1px;}</style>
<link rel='stylesheet' id='newspack-print-style-css' href='https://hipertextual.com/wp-content/themes/newspack-theme/styles/print.css?ver=2.21.0' media='print' />
<link rel="stylesheet" id="tablepress-default-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/tablepress-combined.min.css?ver=49">
<script src="https://hipertextual.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>

<!-- Fragmento de código de la etiqueta de Google (gtag.js) añadida por Site Kit -->
<!-- Fragmento de código de Google Analytics añadido por Site Kit -->
<script src="https://www.googletagmanager.com/gtag/js?id=G-46KL927FWH" id="google_gtagjs-js" async type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="google_gtagjs-js-after" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1">
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag("set","linker",{"domains":["hipertextual.com"]});
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "G-46KL927FWH", {"logged_in":"no","post_id":1519230,"author":"jordi","categories":"Software","is_reader":"no","is_newsletter_subscriber":"no","is_donor":"no","is_subscriber":"no","transport_type":"beacon"});
//# sourceURL=google_gtagjs-js-after
</script>
<link rel="https://api.w.org/" href="https://hipertextual.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://hipertextual.com/wp-json/wp/v2/posts/1519230" />		<!-- Custom Logo: hide header text -->
		<style id="custom-logo-css">.site-title{position: absolute;clip-path: inset(50%);}</style>
		<meta name="generator" content="Site Kit by Google 1.176.0" />		<link rel="manifest" href="https://hipertextual.com/wp-json/wp/v2/web-app-manifest">
					<meta name="theme-color" content="#fff">
								<meta name="apple-mobile-web-app-capable" content="yes">
				<meta name="mobile-web-app-capable" content="yes">

				<link rel="apple-touch-startup-image" href="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2022/09/cropped-favicon-2022-1.png?fit=192%2C192&#038;quality=70&#038;strip=all&#038;ssl=1">

				<meta name="apple-mobile-web-app-title" content="Hipertextual">
		<meta name="application-name" content="Hipertextual">
		<meta http-equiv="origin-trial" content="AhZurEatX/NkqKjSY5eVTujGvothnRi1sXk2WEfZPKTh3Dr3yuNOWXahhI2Yy5McJ3LHt0fdBnSwUA+Iu4Y5OgcAAABoeyJvcmlnaW4iOiJodHRwczovL2hpcGVydGV4dHVhbC5jb206NDQzIiwiZmVhdHVyZSI6IlNwZWN1bGF0aW9uUnVsZXNQcmVmZXRjaEZ1dHVyZSIsImV4cGlyeSI6MTcwOTY4MzE5OX0=">
    <style>.youtube-featured-wrapper{margin-bottom: 1.5em;}.single-post .youtube-featured-wrapper{margin-bottom: 2em;}.archive .youtube-featured-wrapper,.home .youtube-featured-wrapper{margin-bottom: 1em;}</style>
    <meta name="parsely-title" content="FEEDblendr: Feed de feeds" />
<meta name="parsely-link" content="http://hipertextual.com/software/feedblendr-feed-de-feeds/" />
<meta name="parsely-type" content="post" />
<meta name="parsely-pub-date" content="2007-01-23T20:12:09Z" />
<meta name="parsely-section" content="Software" />
<meta name="parsely-author" content="jordi" />

	<style type="text/css" id="custom-theme-colors">:root{--newspack-theme-color-primary: #101010;--newspack-theme-color-primary-variation: #000000;--newspack-theme-color-secondary: #0019bc !important;--newspack-theme-color-secondary-variation: #000094;--newspack-theme-color-primary-darken-5: #0b0b0b;--newspack-theme-color-primary-darken-10: #060606;--newspack-theme-color-primary-against-white: #101010;--newspack-theme-color-secondary-against-white: #0019bc;--newspack-theme-color-primary-variation-against-white: #000000;--newspack-theme-color-secondary-variation-against-white: #000094;--newspack-theme-color-against-primary: white;--newspack-theme-color-against-secondary: white;}input[type="checkbox"]::before{background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath d='M16.7 7.1l-6.3 8.5-3.3-2.5-.9 1.2 4.5 3.4L17.9 8z' fill='white'%3E%3C/path%3E%3C/svg%3E");}.mobile-sidebar{background: #101010;}.mobile-sidebar,.mobile-sidebar button:hover,.mobile-sidebar a,.mobile-sidebar a:visited,.mobile-sidebar .nav1 .sub-menu > li > a,.mobile-sidebar .nav1 ul.main-menu > li > a,.mobile-sidebar .nav3 a{color: white;}.h-sb .bottom-header-contain{background: #1b1b1b;}.h-sb .bottom-header-contain .nav1 .main-menu > li,.h-sb .bottom-header-contain .nav1 .main-menu > li > a,.h-sb .bottom-header-contain #search-toggle{color: white;}.site-footer{background: #1b1b1b;}.site-footer,.site-footer a,.site-footer a:hover,.site-footer .widget-title,.site-footer .widgettitle,.site-info{color: white;}.site-footer a:hover,.site-footer .widget a:hover{opacity: 0.7;}.site-info .widget-area .wrapper,.site-info .site-info-contain:first-child{border-top-color: #070707;}.mobile-sidebar .nav3 a{background: transparent;}.mobile-sidebar .accent-header,.mobile-sidebar .article-section-title{border-color: #000000;color: white;}.mobile-sidebar .nav3 .menu-highlight a{background: #000000;color: white;}.h-sb .site-header .nav3 a{background-color: #000000;color: white;}.site-footer .footer-branding .wrapper,.site-footer .footer-widgets:first-child .wrapper{border-top: 0;}.site-footer .accent-header,.site-footer .article-section-title{border-color: #070707;}.site-footer .accent-header,.site-footer .article-section-title{color: white;}.h-sb .middle-header-contain{background-color: #101010;}.h-sb .top-header-contain{background-color: #060606;border-bottom-color: #010101;}.h-sb .site-header,.h-sb .site-title,.h-sb .site-title a:link,.h-sb .site-title a:visited,.h-sb .site-description,.h-sb.h-sh .site-header .nav1 .main-menu > li,.h-sb.h-sh .site-header .nav1 ul.main-menu > li > a,.h-sb.h-sh .site-header .nav1 ul.main-menu > li > a:hover,.h-sb .top-header-contain,.h-sb .middle-header-contain{color: white;}.site .entry .entry-content .scaip .newspack_global_ad,.site .entry .entry-content .scaip .widget_newspack-ads-widget,.newspack_global_ad,.newspack_global_ad.global_above_header,.widget_newspack-ads-widget,div[class*="newspack-ads-blocks-ad-unit"]{background-color: #ffffff;}</style>
		<style type="text/css" id="newspack-theme-colors-variables">:root{--newspack-primary-color: #101010;--newspack-secondary-color: #0019bc;--newspack-cta-color: #dd3333;--newspack-header-color: #101010;--newspack-primary-menu-color: #1b1b1b;--newspack-footer-color: #1b1b1b;--newspack-primary-contrast-color: white;--newspack-secondary-contrast-color: white;--newspack-cta-contrast-color: white;--newspack-header-contrast-color: white;--newspack-primary-menu-contrast-color: white;--newspack-footer-contrast-color: white;}</style>
		<style>.sponsor-label .flag,amp-script .sponsor-label .flag{background: #FED850;color: black;}</style>
	<style class="wpcode-css-snippet">h1,h2,h3,h4,h5,h6,.entry-meta,.cat-links,.comments-title,.jp-relatedposts-i2 a,.main-navigation{font-family:-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";}@media only screen and (min-width: 700px){.post-template-default #block-105,.single-featured-image-default.post-template-single-feature #block-105{display:  none;}}.has-sidebar .above-content.widget.widget_newspack-ads-widget{display:  none;}.has-large-featured-image.single-featured-image-default.post-template-single-feature #block-105,.has-large-featured-image.single-featured-image-behind.post-template-single-feature #block-105,.has-large-featured-image.single-featured-image-beside.post-template-single-feature #block-105,.has-featured-image.single-featured-image-above.post-template-single-feature #block-105{display: block;min-width:  320px;min-height: 650px;justify-content: center;align-items: center;padding: 1em 0 0.3em 0;}@media only screen and (min-width: 700px){.has-large-featured-image.single-featured-image-default.post-template-single-feature #block-105,.has-large-featured-image.single-featured-image-behind.post-template-single-feature #block-105,.has-large-featured-image.single-featured-image-beside.post-template-single-feature #block-105,.has-featured-image.single-featured-image-above.post-template-single-feature #block-105{float: right;z-index: 999;margin-left: calc( 2 * 1rem );margin-top: 3em;margin-right: 0;margin-bottom: 1em;}}body:not(.single-featured-image-default) .newspack_global_ad.global_below_header + .site-content{margin-top: 0;}#block-105.above-content.widget_newspack-ads-widget{min-height: 250px;}@media ( max-width: 727px){.newspack_global_ad.global_below_header{display:none !important;}}@media ( min-width: 728px ){.newspack_global_ad.global_below_header{min-height: 120px;}}@media ( min-width: 970px ){.newspack_global_ad.global_below_header{min-height: 275px;}}.newspack_global_ad.global_below_header{display:flex}.wpnbha .cat-links{font-size: 0.7em;}.cat-links a,.cat-links a:visited{text-transform: uppercase;background-color: #7829d1;color: #fff;}@media only screen and (max-width: 782px){.featured-image-beside .cat-links a,.featured-image-beside .cat-links a:visited{margin-top: 1.5em;}}.archive .page-header h1{margin-top: 1em;}.scaip .newspack_global_ad{min-height: 650px;}@media only screen and (min-width:728px){.scaip .newspack_global_ad{min-height: 140px;}}@media only screen and (min-width:970px){.scaip .newspack_global_ad{min-height: 300px;}}#block-65,#block-76,#block-78,#block-87,#block-123,#block-139{max-height:0;max-width:0;padding:0;margin:0}.widget_recent_entries a{font-size: 1.2em;}.above-footer.widget_text{max-width: 970px;text-align: center;margin: 2rem auto 0 auto;padding: 0.5rem 0;border-top: 1px solid #e1e1e1;}#text-4{font-size: 0.7rem;}#text-4 a{background-color: #f1f1f1;margin: 0 0.25rem 0.25rem 0;padding: 0.25rem 0.5rem;display: inline-block;color: #1a1a1a;}.newspack_global_ad.global_above_footer{margin-bottom: 0;}.footer-widgets .widget-title{font-size: 120%;color: #565656;}.entry-meta .author-avatar{display: none;}.has-text-align-center{text-align: center;}.has-drop-cap:not(:focus):first-letter{float: left;font-size: 4em;}</style><!-- Taboola header -->
<script type="pmdelayedscript" data-processed="true" data-perfmatters-type="text/javascript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1">
  window._taboola = window._taboola || [];
  _taboola.push({article:'auto'});
  !function (e, f, u, i) {
    if (!document.getElementById(i)){
      e.async = 1;
      e.src = u;
      e.id = i;
      f.parentNode.insertBefore(e, f);
    }
  }(document.createElement('script'),
  document.getElementsByTagName('script')[0],
  '//cdn.taboola.com/libtrc/hipertextual/loader.js',
  'tb_loader_script');
  if(window.performance && typeof window.performance.mark == 'function')
    {window.performance.mark('tbl_ic');}
</script>

<script async src="https://cdn.taboola.com/webpush/publishers/1782838/taboola-push-sdk.js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script>
  window._taboola_notifications = window._taboola_notifications || [];
  window._taboola_notifications.push({ swPath: '/wp.serviceworker' });
</script>
<!-- /Taboola header --><script defer src="data:text/javascript;base64,DQrCoCB3aW5kb3cudGVhZHNfYW5hbHl0aWNzID0gd2luZG93LnRlYWRzX2FuYWx5dGljcyB8fCB7fTsNCsKgIHdpbmRvdy50ZWFkc19hbmFseXRpY3MuYW5hbHl0aWNzX3RhZ19pZCA9ICI5MzI3IjsNCsKgIHdpbmRvdy50ZWFkc19hbmFseXRpY3Muc2hhcmUgPSB3aW5kb3cudGVhZHNfYW5hbHl0aWNzLnNoYXJlIHx8IGZ1bmN0aW9uKCkgew0KwqAgwqAgOyh3aW5kb3cudGVhZHNfYW5hbHl0aWNzLnNoYXJlZF9kYXRhID0gd2luZG93LnRlYWRzX2FuYWx5dGljcy5zaGFyZWRfZGF0YSB8fCBbXSkucHVzaChhcmd1bWVudHMpDQrCoCB9Ow0K"></script>
<script async src="https://a.teads.tv/analytics/tag.js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script><style class="wpcode-css-snippet">@media only screen and (min-width: 728px){.single-featured-image-behind .newspack_global_ad.global_below_header,.single-featured-image-beside .newspack_global_ad.global_below_header,.single-featured-image-above .newspack_global_ad.global_below_header{background-color: #1A1A1A;margin-bottom: 0;}}.wp-block-image.alignfull img,.wp-block-image.alignwide img{height: auto;width: 100%;}.is-layout-flex{flex-wrap: wrap;display: flex;}.newspack_global_ad.sidebar_sidebar-1{min-height: 615px;}.hiper-newsletter-box{box-shadow: 5px 5px 20px 0px rgb(0 0 0 / 35%);}.tappx-videoproducer{height: auto !important;aspect-ratio: 16 / 10;}</style><link rel="icon" href="https://imgs.hipertextual.com/wp-content/uploads/2022/09/cropped-favicon-2022-1-32x32.png" sizes="32x32" />
<link rel="icon" href="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2022/09/cropped-favicon-2022-1.png?fit=192%2C192&#038;quality=70&#038;strip=all&#038;ssl=1" sizes="192x192" />
<link rel="apple-touch-icon" href="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2022/09/cropped-favicon-2022-1.png?fit=180%2C180&#038;quality=70&#038;strip=all&#038;ssl=1" />
<meta name="msapplication-TileImage" content="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2022/09/cropped-favicon-2022-1.png?fit=270%2C270&#038;quality=70&#038;strip=all&#038;ssl=1" />
		<script type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1">
			( function() {
				// Load GA script if not yet found
				if ( 'undefined' === typeof gtag ) {
					var element = document.createElement( 'script' );
					element.src = 'https://www.googletagmanager.com/gtag/js?id=G-7N7KTHMHBD';
					element.async = true;
					document.head.appendChild( element );
					window.dataLayer = window.dataLayer || [];
					window.gtag = function() { window.dataLayer.push( arguments ) };
					gtag( 'js', new Date() );
				}
				gtag( 'config', 'G-7N7KTHMHBD', {"logged_in":"no","post_id":1519230,"author":"jordi","categories":"Software","is_reader":"no","is_newsletter_subscriber":"no","is_donor":"no","is_subscriber":"no","transport_type":"beacon"} );
			} )();
		</script>
				<style id="wp-custom-css">#newspack-content-gifting-modal{display: none !important;}</style>
		<style>.perfmatters-lazy.pmloaded,.perfmatters-lazy.pmloaded>img,.perfmatters-lazy>img.pmloaded,.perfmatters-lazy[data-ll-status=entered]{animation:500ms pmFadeIn}@keyframes pmFadeIn{0%{opacity:0}100%{opacity:1}}</style><style id='newspack-blocks-homepage-articles-inline-inline-css'>.wp-block-newspack-blocks-homepage-articles article .entry-title{font-size: 1.2em;}.wp-block-newspack-blocks-homepage-articles .entry-meta{display: flex;flex-wrap: wrap;align-items: center;margin-top: 0.5em;}.wp-block-newspack-blocks-homepage-articles article .entry-meta{font-size: 0.8em;}.wp-block-newspack-blocks-homepage-articles article .avatar{height: 25px;width: 25px;}.wp-block-newspack-blocks-homepage-articles .post-thumbnail{margin: 0;margin-bottom: 0.25em;}.wp-block-newspack-blocks-homepage-articles .post-thumbnail img{height: auto;width: 100%;}.wp-block-newspack-blocks-homepage-articles .post-thumbnail figcaption{margin-bottom: 0.5em;}.wp-block-newspack-blocks-homepage-articles p{margin: 0.5em 0;}</style>
<link rel="stylesheet" id="newspack-blocks-homepage-articles-css" media="all" data-pmdelayedstyle="https://hipertextual.com/wp-content/plugins/newspack-blocks/dist/homepage-articles/view.css?ver=4.26.1">

</head>

<body class="wp-singular post-template-default single single-post postid-1519230 single-format-standard wp-custom-logo wp-embed-responsive wp-theme-newspack-theme singular hide-homepage-title hide-site-tagline h-nsub h-sb h-cl h-dh has-sidebar af-widget cat-software single-featured-image-default custom-ad-bg ad-above-footer footer-logo-small tags-hidden" data-amp-auto-lightbox-disable>
	<aside id="mobile-sidebar-fallback" class="mobile-sidebar">
		<button class="mobile-menu-toggle">
			<svg class="svg-icon" width="20" height="20" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" /><path d="M0 0h24v24H0z" fill="none" /></svg>			Cerrar		</button>

		
<form role="search" method="get" class="search-form" action="https://hipertextual.com/">
	<label for="search-form-1">
		<span class="screen-reader-text">Buscar:</span>
	</label>
	<input type="search" id="search-form-1" class="search-field" placeholder="Buscar &hellip;" value="" name="s" />
	<button type="submit" class="search-submit">
		<svg class="svg-icon" width="28" height="28" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" /><path d="M0 0h24v24H0z" fill="none" /></svg>		<span class="screen-reader-text">
			Buscar		</span>
	</button>
</form>
		<nav class="main-navigation nav1 dd-menu" aria-label="Menú Superior" toolbar-target="site-navigation" toolbar="(min-width: 767px)">
			<ul id="menu-header" class="main-menu"><li id="menu-item-1264414" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1264414"><a href="https://hipertextual.com/tecnologia/">Tecnología</a><button aria-expanded="false" class="submenu-expand" [class]="setState1264414 ? 'submenu-expand open-dropdown' : 'submenu-expand'" [aria-expanded]="setState1264414 ? 'true' : 'false'" on="tap:AMP.setState( { setState1264414: !setState1264414 } )" aria-haspopup="true" data-toggle-parent-id="toggle-1264414">
					<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"></path><path fill="none" d="M0 0h24v24H0V0z"></path></svg>
					<span class="screen-reader-text" [text]="setState1264414 ? 'Close dropdown menu' : 'Open dropdown menu'">Open dropdown menu</span>
				</button>
<ul class="sub-menu">
	<li id="menu-item-1264424" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264424"><a href="https://hipertextual.com/mobile/">Smartphones</a></li>
	<li id="menu-item-1264420" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264420"><a href="https://hipertextual.com/ciencia/">Ciencia</a></li>
	<li id="menu-item-1264417" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-1264417"><a href="https://hipertextual.com/software/">Software</a></li>
	<li id="menu-item-1264416" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264416"><a href="https://hipertextual.com/internet/">Internet</a></li>
	<li id="menu-item-1264418" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264418"><a href="https://hipertextual.com/videojuegos/">Videojuegos</a></li>
	<li id="menu-item-1264419" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264419"><a href="https://hipertextual.com/apple/">Apple</a></li>
</ul>
</li>
<li id="menu-item-1264423" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264423"><a href="https://hipertextual.com/cine-television/">Entretenimiento</a></li>
<li id="menu-item-1264428" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264428"><a href="https://hipertextual.com/movilidad/">Vehículos</a></li>
<li id="menu-item-1859471" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1859471"><a href="https://hipertextual.com/inteligencia-artificial/">IA</a></li>
<li id="menu-item-1859466" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1859466"><a href="http://youtube.com/@en-el-futuro">Futuro</a></li>
<li id="menu-item-1438450" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1438450"><a href="https://hipertextual.com/newsletter/">Newsletter</a></li>
</ul>		</nav>
			<nav class="social-navigation" aria-label="Menú de enlaces sociales" toolbar="(min-width: 767px)" toolbar-target="social-nav-contain">
		<ul id="menu-social" class="social-links-menu"><li id="menu-item-1259851" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259851"><a href="https://twitter.com/hipertextual"><span class="screen-reader-text">Twitter</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg></a></li>
<li id="menu-item-1259852" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259852"><a href="https://facebook.com/hipertextual"><span class="screen-reader-text">Facebook</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li>
<li id="menu-item-1259853" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259853"><a href="https://instagram.com/hipertextual"><span class="screen-reader-text">Instagram</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li>
<li id="menu-item-1259854" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259854"><a href="https://youtube.com/hipertextual"><span class="screen-reader-text">YouTube</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg></a></li>
<li id="menu-item-1259855" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259855"><a href="https://flipboard.com/@hipertextual"><span class="screen-reader-text">Flipboard</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="3.3,3.3 3.3,20.7 9.1,20.7 9.1,14.9 14.9,14.9 14.9,9.1 20.7,9.1 20.7,3.3 " /></svg></a></li>
<li id="menu-item-1355478" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1355478"><a href="https://news.google.com/publications/CAAqBwgKMJfi_Aow4vznAg"><span class="screen-reader-text">Google News</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"></path></svg></a></li>
</ul>	</nav><!-- .social-navigation -->
	
	</aside>
	<aside id="desktop-sidebar-fallback" class="desktop-sidebar dir-right">
		<button class="desktop-menu-toggle">
			<svg class="svg-icon" width="20" height="20" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" /><path d="M0 0h24v24H0z" fill="none" /></svg>			Cerrar		</button>
	<section id="block-60" class="below-content widget widget_block widget_search"><form role="search" method="get" action="https://hipertextual.com/" class="wp-block-search__button-inside wp-block-search__icon-button wp-block-search"    ><label class="wp-block-search__label" for="wp-block-search__input-1" >Search</label><div class="wp-block-search__inside-wrapper" ><input class="wp-block-search__input" id="wp-block-search__input-1" placeholder="" value="" type="search" name="s" required /><button aria-label="Buscar" class="wp-block-search__button has-icon wp-element-button" type="submit" ><svg class="search-icon" viewBox="0 0 24 24" width="24" height="24">
					<path d="M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"></path>
				</svg></button></div></form></section><section id="nav_menu-26" class="below-content widget widget_nav_menu"><div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-1723961" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1723961"><a href="https://hipertextual.com/acerca-de-hipertextual/">Acerca de Hipertextual</a></li>
<li id="menu-item-1262809" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1262809"><a href="https://hipertextual.com/contacto/">Contacta con Hipertextual</a></li>
</ul></div></section>	</aside>

<div id="page" class="site">
	<a class="skip-link screen-reader-text" href="#main">Saltar al contenido</a>

			<div class="header-widget above-header-widgets">
			<div class="wrapper">
				<section id="block-76" class="below-content widget widget_block"><div class="wp-block-newspack-blocks-wp-block-newspack-ads-blocks-ad-unit alignnone" style="text-align:inherit"><style>@media ( min-width: 1px ){.newspack_global_ad.block_69e034b991c54{min-height: 1px;}}</style>		<div class='newspack_global_ad block_69e034b991c54 fixed-height'>
						<!-- /1036009/newspack_st --><div id='div-gpt-ad-69e034b991c54-0'></div>		</div>
		</div></section><section id="block-87" class="below-content widget widget_block"><div class="wp-block-newspack-blocks-wp-block-newspack-ads-blocks-ad-unit alignnone" style="text-align:inherit"><style>@media ( min-width: 1px ){.newspack_global_ad.block_69e034b996406{min-height: 1px;}}</style>		<div class='newspack_global_ad block_69e034b996406 fixed-height'>
						<!-- /1036009/newspack_skin --><div id='div-gpt-ad-69e034b996406-0'></div>		</div>
		</div></section><section id="block-139" class="below-content widget widget_block"><div class="wp-block-newspack-blocks-wp-block-newspack-ads-blocks-ad-unit alignnone" style="text-align:inherit"><style>@media ( min-width: 1px ){.newspack_global_ad.block_69e034b99a012{min-height: 1px;}}</style>		<div class='newspack_global_ad block_69e034b99a012 fixed-height'>
						<!-- /1036009/newspack_interstitial --><div id='div-gpt-ad-69e034b99a012-0'></div>		</div>
		</div></section>			</div><!-- .wrapper -->
		</div><!-- .above-header-widgets -->
	
	<header id="masthead" class="site-header hide-header-search" [class]="searchVisible ? 'show-header-search site-header ' : 'hide-header-search site-header'">

					
			<div class="middle-header-contain">
				<div class="wrapper">
					
											<div id="social-nav-contain" class="desktop-only">
								<nav class="social-navigation" aria-label="Menú de enlaces sociales" toolbar="(min-width: 767px)" toolbar-target="social-nav-contain">
		<ul id="menu-social-1" class="social-links-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259851"><a href="https://twitter.com/hipertextual"><span class="screen-reader-text">Twitter</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259852"><a href="https://facebook.com/hipertextual"><span class="screen-reader-text">Facebook</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259853"><a href="https://instagram.com/hipertextual"><span class="screen-reader-text">Instagram</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259854"><a href="https://youtube.com/hipertextual"><span class="screen-reader-text">YouTube</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259855"><a href="https://flipboard.com/@hipertextual"><span class="screen-reader-text">Flipboard</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="3.3,3.3 3.3,20.7 9.1,20.7 9.1,14.9 14.9,14.9 14.9,9.1 20.7,9.1 20.7,3.3 " /></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1355478"><a href="https://news.google.com/publications/CAAqBwgKMJfi_Aow4vznAg"><span class="screen-reader-text">Google News</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"></path></svg></a></li>
</ul>	</nav><!-- .social-navigation -->
							</div>
					
					
					<div class="site-branding">

	
		<style>.site-header .custom-logo{height: 48px;max-height: 96px;max-width: 600px;width: 300px;}@media (max-width: 781px){.site-header .custom-logo{max-width: 175px;max-height: 28px;}}@media (min-width: 782px){.h-stk:not(.h-sub) .site-header .custom-logo{max-height: 64px;max-width: 400px;}.h-sub .site-header .custom-logo{max-width: 200px;max-height: 32px;}}@media (max-width: 1199px) and (min-width: 782px){.h-stk.h-cl:not(.h-sub) .site-header .custom-logo{max-width: 100%;width: auto;}}</style><a href="https://hipertextual.com/" class="custom-logo-link" rel="home"><img data-perfmatters-preload width="600" height="96" src="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?fit=600%2C96&amp;quality=70&amp;strip=all&amp;ssl=1" class="custom-logo" alt="Hipertextual" decoding="async" fetchpriority="high" srcset="https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?w=600&amp;quality=70&amp;strip=all&amp;ssl=1 600w, https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?resize=400%2C64&amp;quality=70&amp;strip=all&amp;ssl=1 400w, https://i0.wp.com/imgs.hipertextual.com/wp-content/uploads/2024/01/hipertextual-2024.png?fit=600%2C96&amp;quality=70&amp;strip=all&amp;ssl=1&amp;w=370 370w" sizes="(max-width: 600px) 100vw, 600px"></a>
	<div class="site-identity">
		<p class="site-title"><a href="https://hipertextual.com/" rel="home">Hipertextual</a></p>				<p class="site-description">
					Tecnología, ciencia y cultura digital				</p>
			</div><!-- .site-identity -->

</div><!-- .site-branding -->

					

					<div class="nav-wrapper desktop-only">
						<div id="tertiary-nav-contain">
													</div><!-- #tertiary-nav-contain -->

						
<div class="header-search-contain">
	<button id="search-toggle" on="tap:AMP.setState( { searchVisible: !searchVisible } ), search-form-2.focus" aria-controls="search-menu" [aria-expanded]="searchVisible ? 'true' : 'false'" aria-expanded="false">
		<span class="screen-reader-text" [text]="searchVisible ? 'Cerrar Búsqueda' : 'Open Search'">
			Open Search		</span>
		<span class="search-icon"><svg class="svg-icon" width="28" height="28" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" /><path d="M0 0h24v24H0z" fill="none" /></svg></span>
		<span class="close-icon"><svg class="svg-icon" width="28" height="28" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" /><path d="M0 0h24v24H0z" fill="none" /></svg></span>
	</button>
	<div id="header-search" [aria-expanded]="searchVisible ? 'true' : 'false'" aria-expanded="false">
		
<form role="search" method="get" class="search-form" action="https://hipertextual.com/">
	<label for="search-form-2">
		<span class="screen-reader-text">Buscar:</span>
	</label>
	<input type="search" id="search-form-2" class="search-field" placeholder="Buscar &hellip;" value="" name="s" />
	<button type="submit" class="search-submit">
		<svg class="svg-icon" width="28" height="28" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" /><path d="M0 0h24v24H0z" fill="none" /></svg>		<span class="screen-reader-text">
			Buscar		</span>
	</button>
</form>
	</div><!-- #header-search -->
</div><!-- .header-search-contain -->
					</div><!-- .nav-wrapper -->

					
					
					
											<button class="mobile-menu-toggle" on="tap:mobile-sidebar.toggle">
							<svg class="svg-icon" width="20" height="20" aria-hidden="true" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none" /><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" /></svg>							<span>Menú</span>
						</button>
					
					
				</div><!-- .wrapper -->
			</div><!-- .middle-header-contain -->


							<div class="bottom-header-contain desktop-only">
					<div class="wrapper">
						<div id="site-navigation">
									<nav class="main-navigation nav1 dd-menu" aria-label="Menú Superior" toolbar-target="site-navigation" toolbar="(min-width: 767px)">
			<ul id="menu-header-1" class="main-menu"><li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-item-1264414"><a href="https://hipertextual.com/tecnologia/">Tecnología</a><button aria-expanded="false" class="submenu-expand" [class]="setState1264414 ? 'submenu-expand open-dropdown' : 'submenu-expand'" [aria-expanded]="setState1264414 ? 'true' : 'false'" on="tap:AMP.setState( { setState1264414: !setState1264414 } )" aria-haspopup="true" data-toggle-parent-id="toggle-1264414">
					<svg class="svg-icon" width="24" height="24" aria-hidden="true" role="img" focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"></path><path fill="none" d="M0 0h24v24H0V0z"></path></svg>
					<span class="screen-reader-text" [text]="setState1264414 ? 'Close dropdown menu' : 'Open dropdown menu'">Open dropdown menu</span>
				</button>
<ul class="sub-menu">
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264424"><a href="https://hipertextual.com/mobile/">Smartphones</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264420"><a href="https://hipertextual.com/ciencia/">Ciencia</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-1264417"><a href="https://hipertextual.com/software/">Software</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264416"><a href="https://hipertextual.com/internet/">Internet</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264418"><a href="https://hipertextual.com/videojuegos/">Videojuegos</a></li>
	<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264419"><a href="https://hipertextual.com/apple/">Apple</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264423"><a href="https://hipertextual.com/cine-television/">Entretenimiento</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1264428"><a href="https://hipertextual.com/movilidad/">Vehículos</a></li>
<li class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-1859471"><a href="https://hipertextual.com/inteligencia-artificial/">IA</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1859466"><a href="http://youtube.com/@en-el-futuro">Futuro</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1438450"><a href="https://hipertextual.com/newsletter/">Newsletter</a></li>
</ul>		</nav>
								</div>

											</div><!-- .wrapper -->
				</div><!-- .bottom-header-contain -->
						
			</header><!-- #masthead -->

	
	<style>@media ( min-width: 728px ){.newspack_global_ad.global_below_header{min-height: 90px;}}@media ( min-width: 970px ){.newspack_global_ad.global_below_header{min-height: 90px;}}</style>		<div class='newspack_global_ad global_below_header fixed-height'>
						<!-- /1036009/newspack_header --><div id='div-gpt-ad-5be734df59-0'></div>		</div>
		
	
	<div id="content" class="site-content">

	<section id="primary" class="content-area category-software">
		<main id="main" class="site-main">

								<header class="entry-header">
						
	<span class="cat-links"><span class="screen-reader-text">Publicado en</span><a href="https://hipertextual.com/software/" rel="category tag">Software</a></span>			<h1 class="entry-title ">
			FEEDblendr: Feed de feeds		</h1>
		
	<div class="entry-subhead">
									<div class="entry-meta">
					<span class="author-avatar"></span>
			<span class="byline">
				<span>por</span>
				<span class="author vcard"><a class="url fn n" href="https://hipertextual.com/autor/jordi/">jordi</a></span> 			</span><!-- .byline -->
			<span class="posted-on"><time class="entry-date published updated" datetime="2007-01-23T20:12:09+01:00">23 de enero de 2007 - 20:12</time></span>				</div><!-- .meta-info -->
								</div>
					</header>

				
				<div class="main-content">

					<section id="block-105" class="above-content widget widget_block"><div class="wp-block-newspack-blocks-wp-block-newspack-ads-blocks-ad-unit alignnone" style="text-align:inherit"><style>@media ( min-width: 300px ){.newspack_global_ad.block_69e034b9a903d{min-height: 600px;}}</style>		<div class='newspack_global_ad block_69e034b9a903d fixed-height'>
						<!-- /1036009/newspack_sidebar_atf --><div id='div-gpt-ad-69e034b9a903d-0'></div>		</div>
		</div></section>

<article id="post-1519230" class="post-1519230 post type-post status-publish format-standard category-software entry">
	<div class="entry-content">

		
		<p><img data-perfmatters-preload data-recalc-dims="1" decoding="async" src="https://i0.wp.com/newspack-hipertextual.s3.eu-west-3.amazonaws.com/wp-content/uploads/2007/01/feedblendr.gif?w=780&#038;quality=70&#038;strip=all" alt="FEEDblendr" class="derecha" fetchpriority="high"><a href="http://feedblendr.com/">FEEDblendr</a> nos ofrece un servicio en el que agrupar varios feeds en uno de solo, de tal forma que nos facilite la lectura.</p>

<p>Para conseguir nuestro <strong><em>feed único</em></strong>, solo deberemos visitar el sitio e introducir en un listado realizado con AJAX tantas fuentes como necesitemos.</p>

<p>Obtendremos un feed único en el que recibiremos el conjunto de todos los que hayamos indicado tal cual eran originalmente, pero con un texto al final de cada entrada indicando la fuente de la misma.</p>

<p>La utilidad de un sitio como este ya depende de cada uno, podemos usarlo para agrupar feeds temáticos de una misma fuente, agrupar temáticas o cualquier otro conjunto que nos convenga.</p>

<p><a href="http://go2web20.net">FEEDblendr</a> (Go2Web20)</p>
<section id="block-157" class="below-content widget widget_block"><script defer src="https://mediatappx.b-cdn.net/players/tpxplayer-iframe/tpxplayerIframe.min.js"></script><script defer src="https://mediatappx.b-cdn.net/players/tpxplayer-iframe/tpxiframe.min.js"></script><script type="text/javascript" defer src="data:text/javascript;base64,Y29uc3QgY29uZmlnUExheWVyPXtzaXplczpbWzksOV1dLGF1dG9wbGF5OnRydWUsbXV0ZWQ6dHJ1ZSx2b2x1bWU6MC4yLGRlYnVnOmZhbHNlLHRlbXBsYXRlOjAsdGhlbWU6InBsYXlvbiIsc2VydmljZToiUE9DIixwb2M6e2lkUHViOiIxMTc2OSIsaWRWaWRlbzoiMzc1MTYyOSAiLHNlcnZpY2U6InZpZGVvIn0sZW5kcG9pbnQ6ImpzNDMyODRocHQiLHRhcHB4S2V5Onttd2ViOiJwdWItODc4NTYtbXdlYi04NjE4IixkZXNrdG9wOiJwdWItODc4NTctZGVza3RvcC04NzI5In0sbnVtQWRzUG9zOjEsbnVtQWRzUHJlOjEsbnVtQWRzTWlkOjEsbG9vcDp0cnVlLGZvcm1hdDoiIix0aW1lc01pZHJvbGw6W10sY29kZToidHBweF8zMDAyNTAiLHRlc3Q6ZmFsc2UsdGFyZ2V0SWQ6InRweC1wbGF5ZXItMzM2IixzaG93Q29udHJvbHM6ZmFsc2V9O3ZhciB0cHhwbGF5ZXJJZnJhbWUxPXRweHBsYXllcklmcmFtZTF8fHt9O3RweHBsYXllcklmcmFtZTEuY21kPXRweHBsYXllcklmcmFtZTEuY21kfHxbXTt0cHhwbGF5ZXJJZnJhbWUxLmNtZC5wdXNoKCgpPT57dHB4cGxheWVySWZyYW1lMS5pbml0KGNvbmZpZ1BMYXllciwoKT0+e30pfSk7"></script><style>.tpx-player-editorial{position:relative;padding-bottom:56.25%!important;height:0;overflow:hidden;max-width:100%!important;}.tpx-player-editorial iframe{position:absolute;top:0;left:0;min-width:100%;width:1px;height:100%;}.tpx-vertical,.tpx-vertical :not(.tpx-float-player) iframe{margin: auto;--width: 100vw;width: var(--width);height: calc(16 / 9* var(--width));max-width: 400px;max-height: 717px;}</style><div id="tpx-player-336" class="tpx-player-editorial"></div></section>	</div><!-- .entry-content -->

	<footer class="entry-footer">
			</footer><!-- .entry-footer -->

	
</article><!-- #post-${ID} -->
				</div><!-- .main-content -->

				
<aside id="secondary" class="widget-area">
	<style>@media ( min-width: 300px ){.newspack_global_ad.sidebar_sidebar-1{min-height: 600px;}}</style>		<div class='newspack_global_ad sidebar_sidebar-1 sidebar_sidebar-1-before hook-before stick-to-top fixed-height'>
						<!-- /1036009/newspack_sidebar_atf --><div id='div-gpt-ad-95e9911661-0'></div>		</div>
		<section id="block-45" class="widget widget_block">	<div
		class="wp-block-newspack-blocks-homepage-articles is-style-default wpnbha ts-3 show-category is-style-default"
		style=""
		>
		<div data-posts data-current-post-id="1519230">
						
	<article data-post-id="1882152"
		class="category-mobile type-post post-has-image"
				>
				
		<div class="entry-wrapper">
						
				<div class="cat-links ">
					<a href="https://hipertextual.com/mobile/">Mobile</a>				</div>
				<h2 class="entry-title"><a href="https://hipertextual.com/mobile/motorola-edge-70-pro-especificaciones-lanzamiento-precio/" rel="bookmark">Motorola confirma las características del Edge 70 Pro, el terror de Xiaomi y otros móviles Android</a></h2>											</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="1882144"
		class="category-cine-television type-post post-has-image"
				>
				
		<div class="entry-wrapper">
						
				<div class="cat-links ">
					<a href="https://hipertextual.com/cine-television/">Series y Películas</a>				</div>
				<h2 class="entry-title"><a href="https://hipertextual.com/cine-television/val-kilmer-ia-trailer-as-deep-as-the-grave-cinemacon/" rel="bookmark">Val Kilmer revive con ayuda de la IA en el primer tráiler de &#8216;As Deep as the Grave&#8217;</a></h2>											</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="1882137"
		class="category-inteligencia-artificial type-post post-has-image"
				>
				
		<div class="entry-wrapper">
						
				<div class="cat-links ">
					<a href="https://hipertextual.com/inteligencia-artificial/">Inteligencia artificial</a>				</div>
				<h2 class="entry-title"><a href="https://hipertextual.com/inteligencia-artificial/adobe-firefly-ai-assistant-agente-creative-cloud/" rel="bookmark">Adobe lanza un asistente con IA que maneja Photoshop, Premiere y Lightroom por ti</a></h2>											</div><!-- .entry-wrapper -->
	</article>

		
	<article data-post-id="1882130"
		class="category-legal type-post post-has-image"
				>
				
		<div class="entry-wrapper">
						
				<div class="cat-links ">
					<a href="https://hipertextual.com/legal/">Legal</a>				</div>
				<h2 class="entry-title"><a href="https://hipertextual.com/legal/ue-meta-whatsapp-chatgpt-ia/" rel="bookmark">Europa podría multar a Meta por bloquear a ChatGPT en WhatsApp</a></h2>											</div><!-- .entry-wrapper -->
	</article>

				</div>
		
	</div>
	</section><section id="newspack-ads-widget-54" class="stick-to-top widget widget_newspack-ads-widget"><div class="textwidget"><!-- /1036009/newspack_sidebar_midpage --><div id='div-gpt-ad-69e034ba14045-0'></div></div></section><style>@media ( min-width: 160px ){.newspack_global_ad.sidebar_sidebar-1{min-height: 600px;}}@media ( min-width: 300px ){.newspack_global_ad.sidebar_sidebar-1{min-height: 600px;}}</style>		<div class='newspack_global_ad sidebar_sidebar-1 sidebar_sidebar-1-after hook-after stick-to-top fixed-height'>
						<!-- /1036009/newspack_sidebar_midpage --><div id='div-gpt-ad-a47a08d131-0'></div>		</div>
		</aside><!-- #secondary -->

		</main><!-- #main -->
	</section><!-- #primary -->


			<div class="above-footer-widgets">
			<div class="wrapper">
				<section id="block-156" class="above-footer widget widget_block">
<div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained">
<div id="taboola-below-article-thumbnails"></div>
  <script defer src="data:text/javascript;base64,CiAgd2luZG93Ll90YWJvb2xhID0gd2luZG93Ll90YWJvb2xhIHx8IFtdOwogIF90YWJvb2xhLnB1c2goewogICAgbW9kZTogJ2FsdGVybmF0aW5nLXRodW1ibmFpbHMtYScsCiAgICBjb250YWluZXI6ICd0YWJvb2xhLWJlbG93LWFydGljbGUtdGh1bWJuYWlscycsCiAgICBwbGFjZW1lbnQ6ICdCZWxvdyBBcnRpY2xlIFRodW1ibmFpbHMnLAogICAgdGFyZ2V0X3R5cGU6ICdtaXgnCiAgfSk7Cg=="></script>
<div class="taboola-footer-code">
<script defer src="data:text/javascript;base64,CiAgd2luZG93Ll90YWJvb2xhID0gd2luZG93Ll90YWJvb2xhIHx8IFtdOyAgCiAgX3RhYm9vbGEucHVzaCh7Zmx1c2g6IHRydWV9KTsK"></script>
</div>
</div></div>
</section>			</div><!-- .wrapper -->
		</div><!-- .above-footer-widgets -->
	
	<style>@media ( min-width: 300px ){.newspack_global_ad.global_above_footer{min-height: 50px;}}@media ( min-width: 320px ){.newspack_global_ad.global_above_footer{min-height: 100px;}}@media ( min-width: 728px ){.newspack_global_ad.global_above_footer{min-height: 90px;}}@media ( min-width: 970px ){.newspack_global_ad.global_above_footer{min-height: 250px;}}</style>		<div class='newspack_global_ad global_above_footer fixed-height'>
						<!-- /1036009/newspack_footer --><div id='div-gpt-ad-e9412a3592-0'></div>		</div>
		
	</div><!-- #content -->

	<div data-perfmatters-lazy-element style="height:1000px; width:100%;"><noscript><footer id="colophon" class="site-footer">

				
		<div class="site-info">

				<aside class="widget-area" role="complementary" aria-label="Below Footer">
		<div class="wrapper">
			<section id="nav_menu-17" class="widget widget_nav_menu"><div class="menu-footer-container"><ul id="menu-footer-1" class="menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1723961"><a href="https://hipertextual.com/acerca-de-hipertextual/">Acerca de Hipertextual</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1262809"><a href="https://hipertextual.com/contacto/">Contacta con Hipertextual</a></li>
</ul></div></section>		</div><!-- .wrapper -->
	</aside><!-- .widget-area -->

			<div class="wrapper site-info-contain">
													<span class="copyright">&copy; 2026 Hipertextual SL. Todos los derechos reservados</span>
				
				<a target="_blank" href="https://newspack.com/" class="imprint">
					Impulsado por Newspack				</a>

				<a class="privacy-policy-link" href="https://hipertextual.com/politica-privacidad/" rel="privacy-policy">Política de privacidad</a>	<nav class="social-navigation" aria-label="Menú de enlaces sociales">
		<ul id="menu-social-2" class="social-links-menu"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259851"><a href="https://twitter.com/hipertextual"><span class="screen-reader-text">Twitter</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259852"><a href="https://facebook.com/hipertextual"><span class="screen-reader-text">Facebook</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259853"><a href="https://instagram.com/hipertextual"><span class="screen-reader-text">Instagram</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259854"><a href="https://youtube.com/hipertextual"><span class="screen-reader-text">YouTube</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1259855"><a href="https://flipboard.com/@hipertextual"><span class="screen-reader-text">Flipboard</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><polygon points="3.3,3.3 3.3,20.7 9.1,20.7 9.1,14.9 14.9,14.9 14.9,9.1 20.7,9.1 20.7,3.3 " /></svg></a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-1355478"><a href="https://news.google.com/publications/CAAqBwgKMJfi_Aow4vznAg"><span class="screen-reader-text">Google News</span><svg class="svg-icon" width="0" height="0" aria-hidden="true" role="img" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12.02,10.18v3.72v0.01h5.51c-0.26,1.57-1.67,4.22-5.5,4.22c-3.31,0-6.01-2.75-6.01-6.12s2.7-6.12,6.01-6.12 c1.87,0,3.13,0.8,3.85,1.48l2.84-2.76C16.99,2.99,14.73,2,12.03,2c-5.52,0-10,4.48-10,10s4.48,10,10,10c5.77,0,9.6-4.06,9.6-9.77 c0-0.83-0.11-1.42-0.25-2.05H12.02z"></path></svg></a></li>
</ul>	</nav><!-- .social-navigation -->
				</div><!-- .wrapper -->
		</div><!-- .site-info -->
	</footer></noscript></div><!-- #colophon -->

</div><!-- #page -->

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/newspack-theme/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script defer id="bilmur" data-provider="wpcloud" data-service="newspack" src="https://s0.wp.com/wp-content/js/bilmur.min.js?m=202616" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
		<div class="newspack-ui">
			<div id="newspack-content-gifting-modal" class="newspack-ui__modal-container" data-state="closed">
				<div class="newspack-ui__modal-container__overlay"></div>
				<div class="newspack-ui__modal newspack-ui__modal--small">
					<header class="newspack-ui__modal__header">
						<h2>Gift this article</h2>
						<button class="newspack-ui__button newspack-ui__button--icon newspack-ui__button--ghost newspack-ui__modal__close">
							<span class="screen-reader-text">Close</span>
							<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" aria-hidden="true" class="newspack-ui__svg-icon--close">
				<path d="m13.06 12 6.47-6.47-1.06-1.06L12 10.94 5.53 4.47 4.47 5.53 10.94 12l-6.47 6.47 1.06 1.06L12 13.06l6.47 6.47 1.06-1.06L13.06 12Z" />
			</svg>						</button>
					</header>
					<div class="newspack-ui__modal__content">
						<div class="newspack-ui__notice newspack-ui__notice--error" data-error-message></div>
						<div class="newspack-content-gifting__info"></div>
						<div class="newspack-content-gifting__link-container">
							<p>
								<label for="content-gifting-url">Link</label>
								<input type="text" id="content-gifting-url" readonly />
								<button class="newspack-ui__button newspack-ui__button--primary newspack-ui__button--wide newspack-content-gifting__copy-button" data-copy-button>
									Copy link								</button>
							</p>
						</div>
						<div class="newspack-ui__spinner"><span></span></div>
					</div>
				</div>
			</div>
		</div>
		<script type="speculationrules">
    {
      "prefetch": [
        {
          "source": "document",
          "where": {
            "and": [
              {"href_matches": "https:\\/\\/hipertextual.com/*"},
              {"not": { "href_matches": "#*" } }
            ]
          },
          "eagerness": "moderate"
        }
      ]
    }
    </script><!-- Jetpack Search took 326 ms, ES time 44 ms --><script defer src="data:text/javascript;base64,KGZ1bmN0aW9uKCl7dmFyIGxhenlfbG9hZCA9eyJhY3RpdmUiOnRydWUsImZldGNoX21hcmdpbl9wZXJjZW50IjoyMDAsInJlbmRlcl9tYXJnaW5fcGVyY2VudCI6MTUwLCJtb2JpbGVfc2NhbGluZyI6MX07Z29vZ2xldGFnLmNtZC5wdXNoKGZ1bmN0aW9uKCl7Z29vZ2xldGFnLnB1YmFkcygpLmVuYWJsZUxhenlMb2FkKHtmZXRjaE1hcmdpblBlcmNlbnQ6IGxhenlfbG9hZC5mZXRjaF9tYXJnaW5fcGVyY2VudCxyZW5kZXJNYXJnaW5QZXJjZW50OiBsYXp5X2xvYWQucmVuZGVyX21hcmdpbl9wZXJjZW50LG1vYmlsZVNjYWxpbmc6IGxhenlfbG9hZC5tb2JpbGVfc2NhbGluZ30pO30pO30pKCk7"></script>
				<script defer src="data:text/javascript;base64,CgkJCSggZnVuY3Rpb24oKSB7CgkJCQl3aW5kb3cucGJqcyA9IHdpbmRvdy5wYmpzIHx8IHsgcXVlOiBbXSB9OwoJCQkJd2luZG93Lmdvb2dsZXRhZyA9IHdpbmRvdy5nb29nbGV0YWcgfHwgeyBjbWQ6IFtdIH07CgkJCQlnb29nbGV0YWcuY21kLnB1c2goIGZ1bmN0aW9uKCkgewoJCQkJCWdvb2dsZXRhZy5wdWJhZHMoKS5kaXNhYmxlSW5pdGlhbExvYWQoKTsKCQkJCX0gKTsKCQkJCXZhciBjb25maWcgPSB7ImRlYnVnIjpmYWxzZSwicHJpY2VHcmFudWxhcml0eSI6eyJidWNrZXRzIjpbeyJwcmVjaXNpb24iOjIsImluY3JlbWVudCI6MC4wMSwibWF4IjowLjZ9LHsicHJlY2lzaW9uIjoyLCJpbmNyZW1lbnQiOjAuMDUsIm1heCI6NX0seyJwcmVjaXNpb24iOjIsImluY3JlbWVudCI6MC4xLCJtYXgiOjEwfSx7InByZWNpc2lvbiI6MiwiaW5jcmVtZW50IjowLjUsIm1heCI6MjB9XX0sImJpZGRlclRpbWVvdXQiOjEwMDAsInVzZXJTeW5jIjp7ImVuYWJsZWQiOnRydWV9LCJyZWFsdGltZURhdGEiOnsiZGF0YVByb3ZpZGVyIjpbeyJuYW1lIjoibWVkaWFuZXQiLCJwYXJhbXMiOnsiY2lkIjoiOENVNTFXQzc4In19XX19OwoJCQkJdmFyIGFkVW5pdHMgPSBbeyJjb2RlIjoiZGl2LWdwdC1hZC01YmU3MzRkZjU5LTAiLCJtZWRpYVR5cGVzIjp7ImJhbm5lciI6eyJzaXplcyI6W1s3MjgsOTBdLFs5NzAsOTBdXX19LCJiaWRzIjpbeyJiaWRkZXIiOiJtZWRpYW5ldCIsInBhcmFtcyI6eyJjaWQiOiI4Q1U1MVdDNzgiLCJjcmlkIjoiNTQwMzUzNjQzIn19XX0seyJjb2RlIjoiZGl2LWdwdC1hZC02OWUwMzRiOWE5MDNkLTAiLCJtZWRpYVR5cGVzIjp7ImJhbm5lciI6eyJzaXplcyI6W1szMDAsNjAwXSxbMzAwLDI1MF1dfX0sImJpZHMiOlt7ImJpZGRlciI6Im1lZGlhbmV0IiwicGFyYW1zIjp7ImNpZCI6IjhDVTUxV0M3OCIsImNyaWQiOiIzMzQ3NzAzNTUifX1dfSx7ImNvZGUiOiJkaXYtZ3B0LWFkLTk1ZTk5MTE2NjEtMCIsIm1lZGlhVHlwZXMiOnsiYmFubmVyIjp7InNpemVzIjpbWzMwMCw2MDBdLFszMDAsMjUwXV19fSwiYmlkcyI6W3siYmlkZGVyIjoibWVkaWFuZXQiLCJwYXJhbXMiOnsiY2lkIjoiOENVNTFXQzc4IiwiY3JpZCI6IjgwMDA0ODE1NSJ9fV19LHsiY29kZSI6ImRpdi1ncHQtYWQtYTQ3YTA4ZDEzMS0wIiwibWVkaWFUeXBlcyI6eyJiYW5uZXIiOnsic2l6ZXMiOltbMzAwLDYwMF0sWzMwMCwyNTBdLFsxNjAsNjAwXV19fSwiYmlkcyI6W3siYmlkZGVyIjoibWVkaWFuZXQiLCJwYXJhbXMiOnsiY2lkIjoiOENVNTFXQzc4IiwiY3JpZCI6IjQ0MDkyMjMxMiJ9fV19LHsiY29kZSI6ImRpdi1ncHQtYWQtZTk0MTJhMzU5Mi0wIiwibWVkaWFUeXBlcyI6eyJiYW5uZXIiOnsic2l6ZXMiOltbOTcwLDI1MF0sWzMyMCw1MF0sWzMyMCwxMDBdLFs3MjgsOTBdLFs5NzAsOTBdXX19LCJiaWRzIjpbeyJiaWRkZXIiOiJtZWRpYW5ldCIsInBhcmFtcyI6eyJjaWQiOiI4Q1U1MVdDNzgiLCJjcmlkIjoiMzQ3NDgyNzQ0In19XX1dOwoJCQkJcGJqcy5xdWUucHVzaCggZnVuY3Rpb24oKSB7CgkJCQkJcGJqcy5zZXRDb25maWcoIGNvbmZpZyApOwoJCQkJCXBianMuYWRkQWRVbml0cyggYWRVbml0cyApOwoJCQkJCXBianMucmVxdWVzdEJpZHMoIHsKCQkJCQkJdGltZW91dDogY29uZmlnLmJpZGRlclRpbWVvdXQsCgkJCQkJCWJpZHNCYWNrSGFuZGxlcjogaW5pdEFkc2VydmVyLAoJCQkJCX0gKTsKCQkJCQkJCQkJfSApOwoJCQkJZnVuY3Rpb24gaW5pdEFkc2VydmVyKCkgewoJCQkJCWlmICggcGJqcy5pbml0QWRzZXJ2ZXJTZXQgKSByZXR1cm47CgkJCQkJcGJqcy5pbml0QWRzZXJ2ZXJTZXQgPSB0cnVlOwoJCQkJCWdvb2dsZXRhZy5jbWQucHVzaCggZnVuY3Rpb24oKSB7CgkJCQkJCXBianMuc2V0VGFyZ2V0aW5nRm9yR1BUQXN5bmMgJiYgcGJqcy5zZXRUYXJnZXRpbmdGb3JHUFRBc3luYygpOwoJCQkJCQlnb29nbGV0YWcucHViYWRzKCkucmVmcmVzaCgpOwoJCQkJCX0gKTsKCQkJCX0KCQkJCS8vIEluIGNhc2UgcGJqcyBkb2VzbnQgbG9hZCwgdHJ5IGFnYWluIGFmdGVyIHRoZSBmYWlsc2FmZSB0aW1lb3V0IG9mIDMwMDBtcy4KCQkJCXNldFRpbWVvdXQoIGluaXRBZHNlcnZlciwgMzAwMCApOwoJCQl9ICkoKTsKCQk="></script>
		<script defer src="data:text/javascript;base64,KGZ1bmN0aW9uKCl7dmFyIGFkX2NvbmZpZyA9eyJuZXR3b3JrX2NvZGUiOiIxMDM2MDA5IiwiZGlzYWJsZV9pbml0aWFsX2xvYWQiOmZhbHNlfTt2YXIgYWxsX2FkX3VuaXRzID17ImRpdi1ncHQtYWQtNjllMDM0Yjk5MWM1NC0wIjp7InBsYWNlbWVudCI6ImJsb2NrXzY5ZTAzNGI5OTFjNTQiLCJ1bmlxdWVfaWQiOiI2OWUwMzRiOTkxYzU0IiwibmFtZSI6Ik5ld3NwYWNrIFNlZWR0YWciLCJjb2RlIjoibmV3c3BhY2tfc3QiLCJwYXRoIjoiIiwic2l6ZXMiOltbMSwxXV0sImZsdWlkIjpmYWxzZSwiZml4ZWRfaGVpZ2h0Ijp7ImFjdGl2ZSI6dHJ1ZSwidXNlX21heF9oZWlnaHQiOmZhbHNlLCJtYXhfaGVpZ2h0IjoxMDB9LCJ0YXJnZXRpbmciOltdLCJzdGlja3kiOmZhbHNlLCJzaXplX21hcCI6eyIxIjpbWzEsMV1dfSwiYm91bmRzX3NlbGVjdG9ycyI6WyIud3AtYmxvY2stY29sdW1uIiwiLmVudHJ5LWNvbnRlbnQiLCIuc2lkZWJhciIsIi53aWRnZXQtYXJlYSJdLCJib3VuZHNfYmxlZWQiOjQwLCJpbml0aWFsX2Rpc3BsYXkiOm51bGx9LCJkaXYtZ3B0LWFkLTY5ZTAzNGI5OTY0MDYtMCI6eyJwbGFjZW1lbnQiOiJibG9ja182OWUwMzRiOTk2NDA2IiwidW5pcXVlX2lkIjoiNjllMDM0Yjk5NjQwNiIsIm5hbWUiOiJOZXdzcGFjayBTa2luIiwiY29kZSI6Im5ld3NwYWNrX3NraW4iLCJwYXRoIjoiIiwic2l6ZXMiOltbMSwxXV0sImZsdWlkIjpmYWxzZSwiZml4ZWRfaGVpZ2h0Ijp7ImFjdGl2ZSI6dHJ1ZSwidXNlX21heF9oZWlnaHQiOmZhbHNlLCJtYXhfaGVpZ2h0IjoxMDB9LCJ0YXJnZXRpbmciOltdLCJzdGlja3kiOmZhbHNlLCJzaXplX21hcCI6eyIxIjpbWzEsMV1dfSwiYm91bmRzX3NlbGVjdG9ycyI6WyIud3AtYmxvY2stY29sdW1uIiwiLmVudHJ5LWNvbnRlbnQiLCIuc2lkZWJhciIsIi53aWRnZXQtYXJlYSJdLCJib3VuZHNfYmxlZWQiOjQwLCJpbml0aWFsX2Rpc3BsYXkiOm51bGx9LCJkaXYtZ3B0LWFkLTY5ZTAzNGI5OWEwMTItMCI6eyJwbGFjZW1lbnQiOiJibG9ja182OWUwMzRiOTlhMDEyIiwidW5pcXVlX2lkIjoiNjllMDM0Yjk5YTAxMiIsIm5hbWUiOiJOZXdzcGFjayBJbnRlcnN0aXRpYWwiLCJjb2RlIjoibmV3c3BhY2tfaW50ZXJzdGl0aWFsIiwicGF0aCI6IiIsInNpemVzIjpbWzEsMV1dLCJmbHVpZCI6ZmFsc2UsImZpeGVkX2hlaWdodCI6eyJhY3RpdmUiOnRydWUsInVzZV9tYXhfaGVpZ2h0IjpmYWxzZSwibWF4X2hlaWdodCI6MTAwfSwidGFyZ2V0aW5nIjpbXSwic3RpY2t5IjpmYWxzZSwic2l6ZV9tYXAiOnsiMSI6W1sxLDFdXX0sImJvdW5kc19zZWxlY3RvcnMiOlsiLndwLWJsb2NrLWNvbHVtbiIsIi5lbnRyeS1jb250ZW50IiwiLnNpZGViYXIiLCIud2lkZ2V0LWFyZWEiXSwiYm91bmRzX2JsZWVkIjo0MCwiaW5pdGlhbF9kaXNwbGF5IjpudWxsfSwiZGl2LWdwdC1hZC01YmU3MzRkZjU5LTAiOnsicGxhY2VtZW50IjoiZ2xvYmFsX2JlbG93X2hlYWRlciIsInVuaXF1ZV9pZCI6IjViZTczNGRmNTkiLCJuYW1lIjoiTmV3c3BhY2sgaGVhZGVyIiwiY29kZSI6Im5ld3NwYWNrX2hlYWRlciIsInBhdGgiOiIiLCJzaXplcyI6W1s3MjgsOTBdLFs5NzAsOTBdXSwiZmx1aWQiOmZhbHNlLCJmaXhlZF9oZWlnaHQiOnsiYWN0aXZlIjp0cnVlLCJ1c2VfbWF4X2hlaWdodCI6ZmFsc2UsIm1heF9oZWlnaHQiOjEwMH0sInRhcmdldGluZyI6W10sInN0aWNreSI6ZmFsc2UsInNpemVfbWFwIjp7IjcyOCI6W1s3MjgsOTBdXSwiOTcwIjpbWzcyOCw5MF0sWzk3MCw5MF1dfSwiYm91bmRzX3NlbGVjdG9ycyI6WyIud3AtYmxvY2stY29sdW1uIiwiLmVudHJ5LWNvbnRlbnQiLCIuc2lkZWJhciIsIi53aWRnZXQtYXJlYSJdLCJib3VuZHNfYmxlZWQiOjQwLCJpbml0aWFsX2Rpc3BsYXkiOm51bGwsImJpZGRlcnMiOnsibWVkaWFuZXQiOiI1NDAzNTM2NDMifX0sImRpdi1ncHQtYWQtNjllMDM0YjlhOTAzZC0wIjp7InBsYWNlbWVudCI6ImJsb2NrXzY5ZTAzNGI5YTkwM2QiLCJ1bmlxdWVfaWQiOiI2OWUwMzRiOWE5MDNkIiwibmFtZSI6Ik5ld3NwYWNrIHNpZGViYXIgYWJvdmUgdGhlIGZvbGQiLCJjb2RlIjoibmV3c3BhY2tfc2lkZWJhcl9hdGYiLCJwYXRoIjoiIiwic2l6ZXMiOltbMzAwLDUwXSxbMzAwLDYwMF0sWzMwMCwyNTBdLFszMDAsMTAwXV0sImZsdWlkIjpmYWxzZSwiZml4ZWRfaGVpZ2h0Ijp7ImFjdGl2ZSI6dHJ1ZSwidXNlX21heF9oZWlnaHQiOmZhbHNlLCJtYXhfaGVpZ2h0IjoxMDB9LCJ0YXJnZXRpbmciOltdLCJzdGlja3kiOmZhbHNlLCJzaXplX21hcCI6eyIzMDAiOltbMzAwLDUwXSxbMzAwLDEwMF0sWzMwMCwyNTBdLFszMDAsNjAwXV19LCJib3VuZHNfc2VsZWN0b3JzIjpbIi53cC1ibG9jay1jb2x1bW4iLCIuZW50cnktY29udGVudCIsIi5zaWRlYmFyIiwiLndpZGdldC1hcmVhIl0sImJvdW5kc19ibGVlZCI6NDAsImluaXRpYWxfZGlzcGxheSI6bnVsbCwiYmlkZGVycyI6eyJtZWRpYW5ldCI6IjMzNDc3MDM1NSJ9fSwiZGl2LWdwdC1hZC05NWU5OTExNjYxLTAiOnsicGxhY2VtZW50Ijoic2lkZWJhcl9zaWRlYmFyLTEiLCJ1bmlxdWVfaWQiOiI5NWU5OTExNjYxIiwibmFtZSI6Ik5ld3NwYWNrIHNpZGViYXIgYWJvdmUgdGhlIGZvbGQiLCJjb2RlIjoibmV3c3BhY2tfc2lkZWJhcl9hdGYiLCJwYXRoIjoiIiwic2l6ZXMiOltbMzAwLDUwXSxbMzAwLDYwMF0sWzMwMCwyNTBdLFszMDAsMTAwXV0sImZsdWlkIjpmYWxzZSwiZml4ZWRfaGVpZ2h0Ijp7ImFjdGl2ZSI6dHJ1ZSwidXNlX21heF9oZWlnaHQiOmZhbHNlLCJtYXhfaGVpZ2h0IjoxMDB9LCJ0YXJnZXRpbmciOltdLCJzdGlja3kiOmZhbHNlLCJzaXplX21hcCI6eyIzMDAiOltbMzAwLDUwXSxbMzAwLDEwMF0sWzMwMCwyNTBdLFszMDAsNjAwXV19LCJib3VuZHNfc2VsZWN0b3JzIjpbIi53cC1ibG9jay1jb2x1bW4iLCIuZW50cnktY29udGVudCIsIi5zaWRlYmFyIiwiLndpZGdldC1hcmVhIl0sImJvdW5kc19ibGVlZCI6NDAsImluaXRpYWxfZGlzcGxheSI6bnVsbCwiYmlkZGVycyI6eyJtZWRpYW5ldCI6IjgwMDA0ODE1NSJ9fSwiZGl2LWdwdC1hZC02OWUwMzRiYTE0MDQ1LTAiOnsicGxhY2VtZW50IjoibmV3c3BhY2tfYWRzX3dpZGdldCIsInVuaXF1ZV9pZCI6IjY5ZTAzNGJhMTQwNDUiLCJuYW1lIjoiTmV3c3BhY2sgc2lkZWJhciBtaWRwYWdlIiwiY29kZSI6Im5ld3NwYWNrX3NpZGViYXJfbWlkcGFnZSIsInBhdGgiOiIiLCJzaXplcyI6W1szMDAsNTBdLFszMDAsNjAwXSxbMzAwLDI1MF0sWzE2MCw2MDBdLFszMDAsMTAwXV0sImZsdWlkIjpmYWxzZSwiZml4ZWRfaGVpZ2h0Ijp7ImFjdGl2ZSI6dHJ1ZSwidXNlX21heF9oZWlnaHQiOmZhbHNlLCJtYXhfaGVpZ2h0IjoxMDB9LCJ0YXJnZXRpbmciOltdLCJzdGlja3kiOmZhbHNlLCJzaXplX21hcCI6eyIxNjAiOltbMTYwLDYwMF1dLCIzMDAiOltbMzAwLDUwXSxbMzAwLDEwMF0sWzMwMCwyNTBdLFszMDAsNjAwXV19LCJib3VuZHNfc2VsZWN0b3JzIjpbIi53cC1ibG9jay1jb2x1bW4iLCIuZW50cnktY29udGVudCIsIi5zaWRlYmFyIiwiLndpZGdldC1hcmVhIl0sImJvdW5kc19ibGVlZCI6NDAsImluaXRpYWxfZGlzcGxheSI6bnVsbH0sImRpdi1ncHQtYWQtYTQ3YTA4ZDEzMS0wIjp7InBsYWNlbWVudCI6InNpZGViYXJfc2lkZWJhci0xIiwidW5pcXVlX2lkIjoiYTQ3YTA4ZDEzMSIsIm5hbWUiOiJOZXdzcGFjayBzaWRlYmFyIG1pZHBhZ2UiLCJjb2RlIjoibmV3c3BhY2tfc2lkZWJhcl9taWRwYWdlIiwicGF0aCI6IiIsInNpemVzIjpbWzMwMCw1MF0sWzMwMCw2MDBdLFszMDAsMjUwXSxbMTYwLDYwMF0sWzMwMCwxMDBdXSwiZmx1aWQiOmZhbHNlLCJmaXhlZF9oZWlnaHQiOnsiYWN0aXZlIjp0cnVlLCJ1c2VfbWF4X2hlaWdodCI6ZmFsc2UsIm1heF9oZWlnaHQiOjEwMH0sInRhcmdldGluZyI6W10sInN0aWNreSI6ZmFsc2UsInNpemVfbWFwIjp7IjE2MCI6W1sxNjAsNjAwXV0sIjMwMCI6W1szMDAsNTBdLFszMDAsMTAwXSxbMzAwLDI1MF0sWzMwMCw2MDBdXX0sImJvdW5kc19zZWxlY3RvcnMiOlsiLndwLWJsb2NrLWNvbHVtbiIsIi5lbnRyeS1jb250ZW50IiwiLnNpZGViYXIiLCIud2lkZ2V0LWFyZWEiXSwiYm91bmRzX2JsZWVkIjo0MCwiaW5pdGlhbF9kaXNwbGF5IjpudWxsLCJiaWRkZXJzIjp7Im1lZGlhbmV0IjoiNDQwOTIyMzEyIn19LCJkaXYtZ3B0LWFkLWU5NDEyYTM1OTItMCI6eyJwbGFjZW1lbnQiOiJnbG9iYWxfYWJvdmVfZm9vdGVyIiwidW5pcXVlX2lkIjoiZTk0MTJhMzU5MiIsIm5hbWUiOiJOZXdzcGFjayBGb290ZXIiLCJjb2RlIjoibmV3c3BhY2tfZm9vdGVyIiwicGF0aCI6IiIsInNpemVzIjpbWzk3MCwyNTBdLFszMDAsNTBdLFszMjAsNTBdLFszMjAsMTAwXSxbNzI4LDkwXSxbOTcwLDkwXSxbMCwxMDBdXSwiZmx1aWQiOmZhbHNlLCJmaXhlZF9oZWlnaHQiOnsiYWN0aXZlIjp0cnVlLCJ1c2VfbWF4X2hlaWdodCI6ZmFsc2UsIm1heF9oZWlnaHQiOjEwMH0sInRhcmdldGluZyI6W10sInN0aWNreSI6ZmFsc2UsInNpemVfbWFwIjp7IjMwMCI6W1szMDAsNTBdXSwiMzIwIjpbWzMwMCw1MF0sWzMyMCw1MF0sWzMyMCwxMDBdXSwiNzI4IjpbWzcyOCw5MF1dLCI5NzAiOltbNzI4LDkwXSxbOTcwLDkwXSxbOTcwLDI1MF1dfSwiYm91bmRzX3NlbGVjdG9ycyI6WyIud3AtYmxvY2stY29sdW1uIiwiLmVudHJ5LWNvbnRlbnQiLCIuc2lkZWJhciIsIi53aWRnZXQtYXJlYSJdLCJib3VuZHNfYmxlZWQiOjQwLCJpbml0aWFsX2Rpc3BsYXkiOm51bGwsImJpZGRlcnMiOnsibWVkaWFuZXQiOiIzNDc0ODI3NDQifX19O3ZhciBjb21tb25fdGFyZ2V0aW5nID17InNpdGUiOiJoaXBlcnRleHR1YWwuY29tIiwicmVhZGVyX3N0YXR1cyI6W10sInNsdWciOiJmZWVkYmxlbmRyLWZlZWQtZGUtZmVlZHMiLCJjYXRlZ29yeSI6WyJzb2Z0d2FyZSJdLCJhdXRob3IiOlsiam9yZGkiXSwicG9zdF90eXBlIjoicG9zdCIsIklEIjoxNTE5MjMwfTt2YXIgZGVmaW5lZF9hZF91bml0cyA9e307dmFyIGJvdW5kc0NvbnRhaW5lcnMgPXt9O2Z1bmN0aW9uIGluT3JQYXN0Vmlld3BvcnQoZWxlbWVudCl7dmFyIGJvdW5kaW5nID0gZWxlbWVudC5nZXRCb3VuZGluZ0NsaWVudFJlY3QoKTtyZXR1cm4oYm91bmRpbmcucmlnaHQgPD0od2luZG93LmlubmVyV2lkdGggfHwgZG9jdW1lbnQuZG9jdW1lbnRFbGVtZW50LmNsaWVudFdpZHRoKSYmYm91bmRpbmcuYm90dG9tIDw9KHdpbmRvdy5pbm5lckhlaWdodCB8fCBkb2N1bWVudC5kb2N1bWVudEVsZW1lbnQuY2xpZW50SGVpZ2h0KSk7fWZvcih2YXIgY29udGFpbmVyX2lkIGluIGFsbF9hZF91bml0cyl7dmFyIGFkX3VuaXQgPSBhbGxfYWRfdW5pdHNbIGNvbnRhaW5lcl9pZCBdO3ZhciBjb250YWluZXIgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcjJyArIGNvbnRhaW5lcl9pZCk7aWYoISBjb250YWluZXIpe2NvbnRpbnVlO31hZF91bml0LmluX3ZpZXdwb3J0ID0gaW5PclBhc3RWaWV3cG9ydChjb250YWluZXIpO2NvbnRhaW5lci5hZF91bml0ID0gYWRfdW5pdDt2YXIgYm91bmRzV2lkdGggPSAwO2ZpbmRDb250YWluZXI6CgkJCQkJZm9yKHZhciBpID0gMDtpIDwgYWRfdW5pdFsnYm91bmRzX3NlbGVjdG9ycyddLmxlbmd0aDtpKyspe3ZhciBzZWxlY3RvciA9IGFkX3VuaXRbJ2JvdW5kc19zZWxlY3RvcnMnXVsgaSBdO2lmKHR5cGVvZiBib3VuZHNDb250YWluZXJzWyBzZWxlY3RvciBdID09PSAndW5kZWZpbmVkJyl7Ym91bmRzQ29udGFpbmVyc1sgc2VsZWN0b3IgXSA9IGRvY3VtZW50LnF1ZXJ5U2VsZWN0b3JBbGwoc2VsZWN0b3IpO31pZihib3VuZHNDb250YWluZXJzWyBzZWxlY3RvciBdLmxlbmd0aCl7Zm9yKHZhciBqID0gMDtqIDwgYm91bmRzQ29udGFpbmVyc1sgc2VsZWN0b3IgXS5sZW5ndGg7aisrKXt2YXIgYm91bmRzQ29udGFpbmVyID0gYm91bmRzQ29udGFpbmVyc1sgc2VsZWN0b3IgXVsgaiBdO2lmKGJvdW5kc0NvbnRhaW5lci5jb250YWlucyhjb250YWluZXIpKXtib3VuZHNXaWR0aCA9IGJvdW5kc0NvbnRhaW5lci5vZmZzZXRXaWR0aDticmVhayBmaW5kQ29udGFpbmVyO319fX12YXIgc2hvdWxkVXNlQm91bmRzID0gISEgYm91bmRzV2lkdGg7dmFyIGF2YWlsYWJsZVdpZHRoID0gd2luZG93LmlubmVyV2lkdGg7aWYoc2hvdWxkVXNlQm91bmRzKXt2YXIgY29udGFpbmVyV2lkdGggPSBjb250YWluZXIucGFyZW50Tm9kZS5vZmZzZXRXaWR0aDthdmFpbGFibGVXaWR0aCA9IE1hdGgubWF4KGJvdW5kc1dpZHRoLGNvbnRhaW5lcldpZHRoKSsgcGFyc2VJbnQoYWRfdW5pdFsnYm91bmRzX2JsZWVkJ10pO2Zvcih2aWV3cG9ydFdpZHRoIGluIGFkX3VuaXRbJ3NpemVfbWFwJ10pe3ZhciB3aWR0aCA9IHBhcnNlSW50KHZpZXdwb3J0V2lkdGgpO2lmKHdpZHRoID4gYXZhaWxhYmxlV2lkdGgpe2RlbGV0ZSBhZF91bml0WydzaXplX21hcCddWyB2aWV3cG9ydFdpZHRoIF07fX19aWYoYWRfdW5pdC5maXhlZF9oZWlnaHQuYWN0aXZlJiYhIGFkX3VuaXQuc3RpY2t5KXt2YXIgaGVpZ2h0ID0gJ2F1dG8nO3ZhciBwcm9wID0gJ2hlaWdodCc7aWYoYWRfdW5pdC5pbl92aWV3cG9ydCl7Zm9yKHZpZXdwb3J0V2lkdGggaW4gYWRfdW5pdC5zaXplX21hcCl7aWYodmlld3BvcnRXaWR0aCA8IGF2YWlsYWJsZVdpZHRoKXtoZWlnaHQgPSAwO2ZvcihzaXplIGluIGFkX3VuaXQuc2l6ZV9tYXBbIHZpZXdwb3J0V2lkdGggXSl7aGVpZ2h0ID0gTWF0aC5tYXgoaGVpZ2h0LGFkX3VuaXQuc2l6ZV9tYXBbIHZpZXdwb3J0V2lkdGggXVsgc2l6ZSBdWzFdKTt9fX1pZihhZF91bml0LmZpeGVkX2hlaWdodC51c2VfbWF4X2hlaWdodCYmYWRfdW5pdC5maXhlZF9oZWlnaHQubWF4X2hlaWdodCA8IGhlaWdodCl7aGVpZ2h0ID0gYWRfdW5pdC5maXhlZF9oZWlnaHQubWF4X2hlaWdodDtwcm9wID0gJ21pbi1oZWlnaHQnO31oZWlnaHQgPSBoZWlnaHQgKyAncHgnO31jb250YWluZXIucGFyZW50Tm9kZS5zdHlsZVtwcm9wXSA9IGhlaWdodDt9fWdvb2dsZXRhZy5jbWQucHVzaChmdW5jdGlvbigpe2Zvcih2YXIgY29udGFpbmVyX2lkIGluIGFsbF9hZF91bml0cyl7dmFyIGFkX3VuaXQgPSBhbGxfYWRfdW5pdHNbIGNvbnRhaW5lcl9pZCBdO3ZhciBjb250YWluZXIgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcjJyArIGNvbnRhaW5lcl9pZCk7aWYoISBjb250YWluZXIpe2NvbnRpbnVlO312YXIgc2xvdFNpemVzID0gYWRfdW5pdFsnc2l6ZXMnXTtpZihhZF91bml0WydmbHVpZCddKXtzbG90U2l6ZXMgPSBzbG90U2l6ZXMuY29uY2F0KCdmbHVpZCcpO312YXIgY29kZVBhcnRzID0gWyBhZF9jb25maWdbJ25ldHdvcmtfY29kZSddIF07aWYoYWRfdW5pdC5wYXRoJiZhZF91bml0LnBhdGgubGVuZ3RoKXtjb2RlUGFydHMgPSBjb2RlUGFydHMuY29uY2F0KGFkX3VuaXQucGF0aC5tYXAoZnVuY3Rpb24ocGFyZW50KXtyZXR1cm4gcGFyZW50Wydjb2RlJ107fSkpO31jb2RlUGFydHMucHVzaChhZF91bml0Wydjb2RlJ10pO3ZhciBjb2RlID0gJy8nICsgY29kZVBhcnRzLmpvaW4oJy8nKTtkZWZpbmVkX2FkX3VuaXRzWyBjb250YWluZXJfaWQgXSA9IGdvb2dsZXRhZy5kZWZpbmVTbG90KGNvZGUsc2xvdFNpemVzLGNvbnRhaW5lcl9pZCkuYWRkU2VydmljZShnb29nbGV0YWcucHViYWRzKCkpO2Zvcih2YXIgdGFyZ2V0X2tleSBpbiBjb21tb25fdGFyZ2V0aW5nKXtkZWZpbmVkX2FkX3VuaXRzWyBjb250YWluZXJfaWQgXS5zZXRUYXJnZXRpbmcodGFyZ2V0X2tleSxjb21tb25fdGFyZ2V0aW5nWyB0YXJnZXRfa2V5IF0pO31mb3IodmFyIHRhcmdldF9rZXkgaW4gYWRfdW5pdFsndGFyZ2V0aW5nJ10pe2RlZmluZWRfYWRfdW5pdHNbIGNvbnRhaW5lcl9pZCBdLnNldFRhcmdldGluZyh0YXJnZXRfa2V5LGFkX3VuaXRbJ3RhcmdldGluZyddWyB0YXJnZXRfa2V5IF0pO312YXIgbWFwcGluZyA9IGdvb2dsZXRhZy5zaXplTWFwcGluZygpO3ZhciBiYXNlU2l6ZXMgPSBbXTtpZihhZF91bml0WydmbHVpZCddKXtiYXNlU2l6ZXMgPSBiYXNlU2l6ZXMuY29uY2F0KCdmbHVpZCcpO31mb3Iodmlld3BvcnRXaWR0aCBpbiBhZF91bml0WydzaXplX21hcCddKXt2YXIgd2lkdGggPSBwYXJzZUludCh2aWV3cG9ydFdpZHRoKTt2YXIgbWFwcGVkU2l6ZXMgPSBhZF91bml0WydzaXplX21hcCddWyB2aWV3cG9ydFdpZHRoIF07bWFwcGluZy5hZGRTaXplKFsgd2lkdGgsMCBdLGJhc2VTaXplcy5jb25jYXQobWFwcGVkU2l6ZXMpKTt9aWYoYWRfdW5pdFsnc3RpY2t5J10pe21hcHBpbmcuYWRkU2l6ZShbNjAwLDBdLGJhc2VTaXplcyk7dmFyIHN0aWNreUNvbnRhaW5lciA9IGNvbnRhaW5lci5wYXJlbnROb2RlO3ZhciBzdGlja3lDbG9zZSA9IHN0aWNreUNvbnRhaW5lci5xdWVyeVNlbGVjdG9yKCdidXR0b24ubmV3c3BhY2tfc3RpY2t5X2FkX19jbG9zZScpO3ZhciBpbml0aWFsQm9keVBhZGRpbmcgPSBkb2N1bWVudC5ib2R5LnN0eWxlLnBhZGRpbmdCb3R0b207aWYoc3RpY2t5Q2xvc2Upe3N0aWNreUNsb3NlLmFkZEV2ZW50TGlzdGVuZXIoJ2NsaWNrJyxmdW5jdGlvbigpe3N0aWNreUNvbnRhaW5lci5wYXJlbnROb2RlLnJlbW92ZUNoaWxkKHN0aWNreUNvbnRhaW5lcik7ZG9jdW1lbnQuYm9keS5zdHlsZS5wYWRkaW5nQm90dG9tID0gaW5pdGlhbEJvZHlQYWRkaW5nO30pO319bWFwcGluZy5hZGRTaXplKFswLDBdLGJhc2VTaXplcyk7ZGVmaW5lZF9hZF91bml0c1sgY29udGFpbmVyX2lkIF0uZGVmaW5lU2l6ZU1hcHBpbmcobWFwcGluZy5idWlsZCgpKTt9aWYoYWRfY29uZmlnWydkaXNhYmxlX2luaXRpYWxfbG9hZCddKXtnb29nbGV0YWcucHViYWRzKCkuZGlzYWJsZUluaXRpYWxMb2FkKCk7fWdvb2dsZXRhZy5wdWJhZHMoKS5jb2xsYXBzZUVtcHR5RGl2cygpO2dvb2dsZXRhZy5wdWJhZHMoKS5lbmFibGVTaW5nbGVSZXF1ZXN0KCk7Z29vZ2xldGFnLmVuYWJsZVNlcnZpY2VzKCk7Zm9yKHZhciBjb250YWluZXJfaWQgaW4gZGVmaW5lZF9hZF91bml0cyl7Z29vZ2xldGFnLmRpc3BsYXkoY29udGFpbmVyX2lkKTt9Z29vZ2xldGFnLnB1YmFkcygpLmFkZEV2ZW50TGlzdGVuZXIoJ3Nsb3RSZW5kZXJFbmRlZCcsZnVuY3Rpb24oZXZlbnQpe3ZhciBjb250YWluZXIgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZChldmVudC5zbG90LmdldFNsb3RFbGVtZW50SWQoKSk7aWYoISBjb250YWluZXIpe3JldHVybjt9dmFyIGFkX3VuaXQgPSBjb250YWluZXIuYWRfdW5pdDtpZighIGFkX3VuaXQpe3JldHVybjt9aWYoZXZlbnQuc2l6ZSl7Y29udGFpbmVyLl9zaXplID0gZXZlbnQuc2l6ZTt9aWYoYWRfdW5pdC5maXhlZF9oZWlnaHQuYWN0aXZlJiZjb250YWluZXIucGFyZW50Tm9kZS5zdHlsZS5oZWlnaHQgPT09ICdhdXRvJyYmZXZlbnQuc2l6ZSl7Y29udGFpbmVyLnBhcmVudE5vZGUuc3R5bGUuaGVpZ2h0ID0gZXZlbnQuc2l6ZVsxXSArICdweCc7ZXZlbnQuc2xvdC5kZWZpbmVTaXplTWFwcGluZyhnb29nbGV0YWcuc2l6ZU1hcHBpbmcoKS5hZGRTaXplKFsgMCwwIF0sZXZlbnQuc2l6ZSkuYnVpbGQoKSk7fWlmKGFkX3VuaXQuaW5pdGlhbF9kaXNwbGF5KXtjb250YWluZXIuc3R5bGUuZGlzcGxheSA9IGFkX3VuaXQuaW5pdGlhbF9kaXNwbGF5O31pZihldmVudC5pc0VtcHR5JiYoYWRfdW5pdC5zdGlja3kgfHwgISBhZF91bml0LmZpeGVkX2hlaWdodC5hY3RpdmUgfHwoYWRfdW5pdC5maXhlZF9oZWlnaHQuYWN0aXZlJiYhIGFkX3VuaXQuaW5fdmlld3BvcnQpKSl7Y29udGFpbmVyLnBhcmVudE5vZGUuc3R5bGUuZGlzcGxheSA9ICdub25lJzt9ZWxzZXtjb250YWluZXIucGFyZW50Tm9kZS5zdHlsZS5kaXNwbGF5ID0gJ2ZsZXgnO312YXIgc2l6ZXMgPSBldmVudC5zbG90LmdldFNpemVzKCk7aWYoKGV2ZW50LnNpemUgPT09IG51bGwgfHwgZXZlbnQuc2l6ZVswXSA9PT0gMCkmJkFycmF5LmlzQXJyYXkoc2l6ZXMpJiZzaXplcy5pbmRleE9mKCdmbHVpZCcpIT09IC0xKXtpZihjb250YWluZXIpe3ZhciBpZnJhbWUgPSBjb250YWluZXIucXVlcnlTZWxlY3RvcignaWZyYW1lJyk7aWYoaWZyYW1lKXtpZnJhbWUuc3R5bGUud2lkdGggPSAnMTAwJSc7fX19fSk7Z29vZ2xldGFnLnB1YmFkcygpLmFkZEV2ZW50TGlzdGVuZXIoJ3Nsb3RSZW5kZXJFbmRlZCcsZnVuY3Rpb24oZXZlbnQpe3ZhciBjb250YWluZXIgPSBkb2N1bWVudC5nZXRFbGVtZW50QnlJZChldmVudC5zbG90LmdldFNsb3RFbGVtZW50SWQoKSk7aWYoISBjb250YWluZXIpe3JldHVybjt9dmFyIGFkX3VuaXQgPSBjb250YWluZXIuYWRfdW5pdDtpZighIGFkX3VuaXQgfHwgISBhZF91bml0LnN0aWNreSl7cmV0dXJuO31pZighIGV2ZW50LmlzRW1wdHkpe3N0aWNreUNvbnRhaW5lci5zdHlsZS5kaXNwbGF5ID0gJ2ZsZXgnO2RvY3VtZW50LmJvZHkuc3R5bGUucGFkZGluZ0JvdHRvbSA9IHN0aWNreUNvbnRhaW5lci5jbGllbnRIZWlnaHQgKyAncHgnO319KTsoZnVuY3Rpb24oKXt2YXIgc3RpY2t5QWQgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcuaC1zdGsgLnN0aWNrLXRvLXRvcDpsYXN0LWNoaWxkJyk7dmFyIHNpdGVIZWFkZXIgPSBkb2N1bWVudC5xdWVyeVNlbGVjdG9yKCcuaC1zdGsgLnNpdGUtaGVhZGVyJyk7aWYoc3RpY2t5QWQmJnNpdGVIZWFkZXIpe3N0aWNreUFkLnN0eWxlLnRvcCA9ICdjYWxjKCcgKyBzaXRlSGVhZGVyLm9mZnNldEhlaWdodCArICdweCArIDFyZW0pJzt9fSkoKTt9KTt9KSgpOw=="></script>
			<script type="module" defer src="data:text/javascript;base64,CgkJaW1wb3J0IHsgV29ya2JveCB9IGZyb20gImh0dHBzOlwvXC9oaXBlcnRleHR1YWwuY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC9wd2FcL3dwLWluY2x1ZGVzXC9qc1wvd29ya2JveC12Ny4zLjBcL3dvcmtib3gtd2luZG93LnByb2QuanMiOwoKCQlpZiAoICdzZXJ2aWNlV29ya2VyJyBpbiBuYXZpZ2F0b3IgKSB7CgkJCXdpbmRvdy53cCA9IHdpbmRvdy53cCB8fCB7fTsKCQkJd2luZG93LndwLnNlcnZpY2VXb3JrZXJXaW5kb3cgPSBuZXcgV29ya2JveCgKCQkJCSJodHRwczpcL1wvaGlwZXJ0ZXh0dWFsLmNvbVwvd3Auc2VydmljZXdvcmtlciIsCgkJCQl7InNjb3BlIjoiXC8ifQkJCSk7CgkJCXdpbmRvdy53cC5zZXJ2aWNlV29ya2VyV2luZG93LnJlZ2lzdGVyKCk7CgkJfQoJ"></script>
		<script defer src="data:text/javascript;base64,CgkvKHRyaWRlbnR8bXNpZSkvaS50ZXN0KG5hdmlnYXRvci51c2VyQWdlbnQpJiZkb2N1bWVudC5nZXRFbGVtZW50QnlJZCYmd2luZG93LmFkZEV2ZW50TGlzdGVuZXImJndpbmRvdy5hZGRFdmVudExpc3RlbmVyKCJoYXNoY2hhbmdlIixmdW5jdGlvbigpe3ZhciB0LGU9bG9jYXRpb24uaGFzaC5zdWJzdHJpbmcoMSk7L15bQS16MC05Xy1dKyQvLnRlc3QoZSkmJih0PWRvY3VtZW50LmdldEVsZW1lbnRCeUlkKGUpKSYmKC9eKD86YXxzZWxlY3R8aW5wdXR8YnV0dG9ufHRleHRhcmVhKSQvaS50ZXN0KHQudGFnTmFtZSl8fCh0LnRhYkluZGV4PS0xKSx0LmZvY3VzKCkpfSwhMSk7Cgk="></script>
	<script src="https://hipertextual.com/wp-includes/js/underscore.min.js?ver=1.13.7" id="underscore-js" defer></script>
<script id="wp-util-js-extra" defer src="data:text/javascript;base64,CnZhciBfd3BVdGlsU2V0dGluZ3MgPSB7ImFqYXgiOnsidXJsIjoiL3dwLWFkbWluL2FkbWluLWFqYXgucGhwIn19OwovLyMgc291cmNlVVJMPXdwLXV0aWwtanMtZXh0cmEK"></script>
<script src="https://hipertextual.com/wp-includes/js/wp-util.min.js?ver=6.9.4" id="wp-util-js" defer></script>
<script id="avc_frontend-js-extra" defer src="data:text/javascript;base64,CnZhciBBZFJlZnJlc2hDb250cm9sID0geyJhZHZlcnRpc2VySWRzIjpbMV0sImxpbmVJdGVtSWRzIjpbXSwic2l6ZXNUb0V4Y2x1ZGUiOlsiMSwxIiwiZmx1aWQiXSwic2xvdElkc1RvRXhjbHVkZSI6eyJkaXYtZ3B0LWFkLTY0NmUwMWZmNjE0YTQtMCI6MSwiZGl2LWdwdC1hZC02NDZlMDFmZjU2MjkxLTAiOjEsImRpdi1ncHQtYWQtNjVjN2ZmZTMxYTVjNS0wIjoxfSwidmlld2FiaWxpdHlUaHJlc2hvbGQiOiI1MCIsInJlZnJlc2hJbnRlcnZhbCI6IjE1IiwibWF4aW11bVJlZnJlc2hlcyI6IjUwIiwicmVmcmVzaENhbGxiYWNrIjoiIn07Ci8vIyBzb3VyY2VVUkw9YXZjX2Zyb250ZW5kLWpzLWV4dHJhCg=="></script>
<script src="https://hipertextual.com/wp-content/plugins/ad-refresh-control/dist/js/frontend.js?ver=1.1.5" id="avc_frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script async src="https://hipertextual.com/wp-content/plugins/newspack-ads/includes/../dist/prebid.js?ver=1776123485" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script><script src="https://hipertextual.com/wp-content/plugins/newspack-ads/dist/media-kit-frontend.js?ver=3.10.3" id="newspack-ads-media-kit-frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script src="https://hipertextual.com/wp-content/plugins/newspack-ads/includes/../dist/frontend.js?ver=33bf52d469a9bc142086" id="newspack-ads-frontend-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="newspack-reader-activation-js-extra" defer src="data:text/javascript;base64,CnZhciBuZXdzcGFja19yYXNfY29uZmlnID0geyJhdXRoX2ludGVudGlvbl9jb29raWUiOiJucF9hdXRoX2ludGVudGlvbiIsImNpZF9jb29raWUiOiJuZXdzcGFjay1jaWQiLCJpc19sb2dnZWRfaW4iOiIiLCJhdXRoZW50aWNhdGVkX2VtYWlsIjoiIiwib3RwX2F1dGhfYWN0aW9uIjoibnBfb3RwX2F1dGgiLCJvdHBfcmF0ZV9pbnRlcnZhbCI6IjYwIiwiYXV0aF9hY3Rpb25fcmVzdWx0IjoibnBfYXV0aF9saW5rX3Jlc3VsdCIsImFjY291bnRfdXJsIjoiIiwiaXNfcmFzX2VuYWJsZWQiOiIifTsKdmFyIG5ld3NwYWNrX3JlYWRlcl9kYXRhID0geyJzdG9yZV9wcmVmaXgiOiJucF9yZWFkZXJfMV8iLCJpc190ZW1wb3JhcnkiOiIiLCJyZWFkZXJfYWN0aXZpdHkiOlt7ImFjdGlvbiI6ImFydGljbGVfdmlldyIsImRhdGEiOnsicG9zdF9pZCI6MTUxOTIzMCwicGVybWFsaW5rIjoiaHR0cHM6Ly9oaXBlcnRleHR1YWwuY29tL3NvZnR3YXJlL2ZlZWRibGVuZHItZmVlZC1kZS1mZWVkcy8iLCJjYXRlZ29yaWVzIjpbMzJdLCJ0YWdzIjpbXSwiYXV0aG9yIjoiNDEifX1dLCJyZWFkX29ubHlfa2V5cyI6WyJhY3RpdmVfbWVtYmVyc2hpcHMiLCJhY3RpdmVfc3Vic2NyaXB0aW9ucyIsImlzX2Zvcm1lcl9kb25vciIsImlzX2Rvbm9yIiwibmV3c2xldHRlcl9zdWJzY3JpYmVkX2xpc3RzIl19OwovLyMgc291cmNlVVJMPW5ld3NwYWNrLXJlYWRlci1hY3RpdmF0aW9uLWpzLWV4dHJhCg=="></script>
<script id="newspack-reader-auth-js-extra" defer src="data:text/javascript;base64,CnZhciBuZXdzcGFja19yZWFkZXJfYWN0aXZhdGlvbl9sYWJlbHMgPSAiUmVnaXN0ZXIgdG8gdXBncmFkZSI7Ci8vIyBzb3VyY2VVUkw9bmV3c3BhY2stcmVhZGVyLWF1dGgtanMtZXh0cmEK"></script>
<script src="https://hipertextual.com/wp-includes/js/dist/hooks.min.js?ver=dd5603f07f9220ed27f1" id="wp-hooks-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script src="https://hipertextual.com/wp-content/plugins/wp-parsely/build/loader.js?ver=ecf94842061bea03d54b" id="wp-parsely-loader-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script data-parsely-site="hipertextual.com" src="https://cdn.parsely.com/keys/hipertextual.com/p.js?ver=3.23.1" id="parsely-cfg" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="newspack-amp-fallback-js-extra" defer src="data:text/javascript;base64,CnZhciBuZXdzcGFja1NjcmVlblJlYWRlclRleHQgPSB7Im9wZW5fc2VhcmNoIjoiT3BlbiBTZWFyY2giLCJjbG9zZV9zZWFyY2giOiJDZXJyYXIgQlx1MDBmYXNxdWVkYSIsImV4cGFuZF9jb21tZW50cyI6IkV4cGFuZCBDb21tZW50cyIsImNvbGxhcHNlX2NvbW1lbnRzIjoiQ29sbGFwc2UgQ29tbWVudHMiLCJzaG93X29yZGVyX2RldGFpbHMiOiJTaG93IGRldGFpbHMiLCJoaWRlX29yZGVyX2RldGFpbHMiOiJIaWRlIGRldGFpbHMiLCJvcGVuX2Ryb3Bkb3duX21lbnUiOiJPcGVuIGRyb3Bkb3duIG1lbnUiLCJjbG9zZV9kcm9wZG93bl9tZW51IjoiQ2xvc2UgZHJvcGRvd24gbWVudSIsImlzX2FtcCI6IiJ9OwovLyMgc291cmNlVVJMPW5ld3NwYWNrLWFtcC1mYWxsYmFjay1qcy1leHRyYQo="></script>
<script src="https://hipertextual.com/wp-content/themes/newspack-theme/js/dist/amp-fallback.js?ver=2.21.0" id="newspack-amp-fallback-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="newspack-menu-accessibility-js-extra" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1">
var newspackScreenReaderText = {"open_search":"Open Search","close_search":"Cerrar B\u00fasqueda","expand_comments":"Expand Comments","collapse_comments":"Collapse Comments","show_order_details":"Show details","hide_order_details":"Hide details","open_dropdown_menu":"Open dropdown menu","close_dropdown_menu":"Close dropdown menu","is_amp":""};
//# sourceURL=newspack-menu-accessibility-js-extra
</script>
<script src="https://hipertextual.com/wp-content/themes/newspack-theme/js/dist/menu-accessibility.js?ver=2.21.0" id="newspack-menu-accessibility-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="newspack-font-loading-js-extra" defer src="data:text/javascript;base64,CnZhciBuZXdzcGFja0ZvbnRMb2FkaW5nID0geyJmb250cyI6W119OwovLyMgc291cmNlVVJMPW5ld3NwYWNrLWZvbnQtbG9hZGluZy1qcy1leHRyYQo="></script>
<script src="https://hipertextual.com/wp-content/themes/newspack-theme/js/dist/font-loading.js?ver=2.21.0" id="newspack-font-loading-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script id="perfmatters-lazy-load-js-before">
window.lazyLoadOptions={elements_selector:"img[data-src],.perfmatters-lazy,.perfmatters-lazy-css-bg",thresholds:"20px 0px",class_loading:"pmloading",class_loaded:"pmloaded",callback_loaded:function(element){if(element.tagName==="IFRAME"){if(element.classList.contains("pmloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}};window.addEventListener("LazyLoad::Initialized",function(e){var lazyLoadInstance=e.detail.instance;var target=document.querySelector("body");var observer=new MutationObserver(function(mutations){lazyLoadInstance.update()});var config={childList:!0,subtree:!0};observer.observe(target,config);});
//# sourceURL=perfmatters-lazy-load-js-before
</script>
<script async src="https://hipertextual.com/wp-content/plugins/perfmatters/js/lazyload.min.js?ver=2.6.1" id="perfmatters-lazy-load-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>
<script src="https://hipertextual.com/wp-content/plugins/newspack-blocks/dist/homepage-articles/view.js?ver=e4415c6ec88164ad5ec5" id="newspack-blocks-homepage-articles-js" type="pmdelayedscript" data-cfasync="false" data-no-optimize="1" data-no-defer="1" data-no-minify="1"></script>

<script id="perfmatters-delayed-scripts-js">(function(){window.pmDC=0;window.pmDT=4;if(window.pmDT){var e=setTimeout(d,window.pmDT*1e3)}const t=["keydown","mousedown","mousemove","wheel","touchmove","touchstart","touchend"];const n={normal:[],defer:[],async:[]};const o=[];const i=[];var r=false;var a="";window.pmIsClickPending=false;t.forEach(function(e){window.addEventListener(e,d,{passive:true})});if(window.pmDC){window.addEventListener("touchstart",b,{passive:true});window.addEventListener("mousedown",b)}function d(){if(typeof e!=="undefined"){clearTimeout(e)}t.forEach(function(e){window.removeEventListener(e,d,{passive:true})});if(document.readyState==="loading"){document.addEventListener("DOMContentLoaded",s)}else{s()}}async function s(){c();u();f();m();await w(n.normal);await w(n.defer);await w(n.async);await p();document.querySelectorAll("link[data-pmdelayedstyle]").forEach(function(e){e.setAttribute("href",e.getAttribute("data-pmdelayedstyle"))});window.dispatchEvent(new Event("perfmatters-allScriptsLoaded")),E().then(()=>{h()})}function c(){let o={};function e(t,e){function n(e){return o[t].delayedEvents.indexOf(e)>=0?"perfmatters-"+e:e}if(!o[t]){o[t]={originalFunctions:{add:t.addEventListener,remove:t.removeEventListener},delayedEvents:[]};t.addEventListener=function(){arguments[0]=n(arguments[0]);o[t].originalFunctions.add.apply(t,arguments)};t.removeEventListener=function(){arguments[0]=n(arguments[0]);o[t].originalFunctions.remove.apply(t,arguments)}}o[t].delayedEvents.push(e)}function t(t,n){const e=t[n];Object.defineProperty(t,n,{get:!e?function(){}:e,set:function(e){t["perfmatters"+n]=e}})}e(document,"DOMContentLoaded");e(window,"DOMContentLoaded");e(window,"load");e(document,"readystatechange");t(document,"onreadystatechange");t(window,"onload")}function u(){let n=window.jQuery;Object.defineProperty(window,"jQuery",{get(){return n},set(t){if(t&&t.fn&&!o.includes(t)){t.fn.ready=t.fn.init.prototype.ready=function(e){if(r){e.bind(document)(t)}else{document.addEventListener("perfmatters-DOMContentLoaded",function(){e.bind(document)(t)})}};const e=t.fn.on;t.fn.on=t.fn.init.prototype.on=function(){if(this[0]===window){function t(e){e=e.split(" ");e=e.map(function(e){if(e==="load"||e.indexOf("load.")===0){return"perfmatters-jquery-load"}else{return e}});e=e.join(" ");return e}if(typeof arguments[0]=="string"||arguments[0]instanceof String){arguments[0]=t(arguments[0])}else if(typeof arguments[0]=="object"){Object.keys(arguments[0]).forEach(function(e){delete Object.assign(arguments[0],{[t(e)]:arguments[0][e]})[e]})}}return e.apply(this,arguments),this};o.push(t)}n=t}})}function f(){document.querySelectorAll("script[type=pmdelayedscript]").forEach(function(e){if(e.hasAttribute("src")){if(e.hasAttribute("defer")&&e.defer!==false){n.defer.push(e)}else if(e.hasAttribute("async")&&e.async!==false){n.async.push(e)}else{n.normal.push(e)}}else{n.normal.push(e)}})}function m(){var o=document.createDocumentFragment();[...n.normal,...n.defer,...n.async].forEach(function(e){var t=e.getAttribute("src");if(t){var n=document.createElement("link");n.href=t;if(e.getAttribute("data-perfmatters-type")=="module"){n.rel="modulepreload"}else{n.rel="preload";n.as="script"}o.appendChild(n)}});document.head.appendChild(o)}async function w(e){var t=e.shift();if(t){await l(t);return w(e)}return Promise.resolve()}async function l(t){await v();return new Promise(function(e){const n=document.createElement("script");[...t.attributes].forEach(function(e){let t=e.nodeName;if(t!=="type"){if(t==="data-perfmatters-type"){t="type"}n.setAttribute(t,e.nodeValue)}});if(t.hasAttribute("src")){n.addEventListener("load",e);n.addEventListener("error",e)}else{n.text=t.text;e()}t.parentNode?t.parentNode.replaceChild(n,t):e()})}async function p(){r=true;await v();document.dispatchEvent(new Event("perfmatters-DOMContentLoaded"));await v();window.dispatchEvent(new Event("perfmatters-DOMContentLoaded"));await v();document.dispatchEvent(new Event("perfmatters-readystatechange"));await v();if(document.perfmattersonreadystatechange){document.perfmattersonreadystatechange()}await v();window.dispatchEvent(new Event("perfmatters-load"));await v();if(window.perfmattersonload){window.perfmattersonload()}await v();o.forEach(function(e){e(window).trigger("perfmatters-jquery-load")})}async function v(){return new Promise(function(e){requestAnimationFrame(e)})}function h(){window.removeEventListener("touchstart",b,{passive:true});window.removeEventListener("mousedown",b);i.forEach(e=>{if(e.target.outerHTML===a){e.target.dispatchEvent(new MouseEvent("click",{view:e.view,bubbles:true,cancelable:true}))}})}function E(){return new Promise(e=>{window.pmIsClickPending?g=e:e()})}function y(){window.pmIsClickPending=true}function g(){window.pmIsClickPending=false}function L(e){e.target.removeEventListener("click",L);C(e.target,"pm-onclick","onclick");i.push(e),e.preventDefault();e.stopPropagation();e.stopImmediatePropagation();g()}function b(e){if(e.target.tagName!=="HTML"){if(!a){a=e.target.outerHTML}window.addEventListener("touchend",A);window.addEventListener("mouseup",A);window.addEventListener("touchmove",k,{passive:true});window.addEventListener("mousemove",k);e.target.addEventListener("click",L);C(e.target,"onclick","pm-onclick");y()}}function k(e){window.removeEventListener("touchend",A);window.removeEventListener("mouseup",A);window.removeEventListener("touchmove",k,{passive:true});window.removeEventListener("mousemove",k);e.target.removeEventListener("click",L);C(e.target,"pm-onclick","onclick");g()}function A(e){window.removeEventListener("touchend",A);window.removeEventListener("mouseup",A);window.removeEventListener("touchmove",k,{passive:true});window.removeEventListener("mousemove",k)}function C(e,t,n){if(e.hasAttribute&&e.hasAttribute(t)){event.target.setAttribute(n,event.target.getAttribute(t));event.target.removeAttribute(t)}}})();</script><script id="perfmatters-lazy-elements-js" defer>!function(){var e=document.querySelectorAll("div[data-perfmatters-lazy-element]");if(e.length){var t=new IntersectionObserver((function(e,t){e.forEach((function(e){if(e.isIntersecting){var r=e.target.querySelector("noscript");if(r){var n,o=(new DOMParser).parseFromString(r.textContent.replaceAll("pmnoscript","noscript"),"text/html");(n=e.target).replaceWith.apply(n,o.body.childNodes)}t.unobserve(e.target)}}))}),{root:null,rootMargin:"300px 0px"});e.forEach((function(e){return t.observe(e)}))}}();</script></body>
</html>
<!--
	generated 22036 seconds ago
	generated in 1.067 seconds
	served from batcache in 0.004 seconds
	expires in 64364 seconds
-->
