<!DOCTYPE html><html lang="en" data-beasties-container><head><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><base href="/">
  <meta charset="utf-8">
  <title>Access: Entertainment News, Celebrity, TV, Music &amp; Movie Videos | Access </title>

  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=2">
  <!--Configure the player page to listen for external commands-->
  <meta name="tp:EnableExternalController" content="true" data-rh="true">
  <meta property="fb:pages" content="162290915432">
  <meta name="google-site-verification" content="TkPbHnf5fGyE6vrIQcUc5hATUn1xbAXICAeDmJ7TtsM">
  <meta name="msvalidate.01" content="925622343B9488A94BAEAC1029ED5D78">
  <link rel="apple-touch-icon" href="/assets/images/access-icon.png">

  <!-- 🔍 Ad diagnostic — opt in with ?mpsdebug=1
       Answers the one question the DOM cannot: when a slot looks blank, was it never
       requested (our bug) or requested and served something invisible (ad-ops issue)?
       Both look identical on screen, and conflating them cost this investigation days.

       Reads GPT's own events, so it cannot be fooled by our own counters. Shows a
       dismissible on-page panel so QA needs no devtools; __mpsDebug.report() prints the
       same data to the console. Inert without the query param.

       🔎 Reach for Google's own Publisher Console FIRST for delivery questions —
       add ?google_force_console=1 to any URL. It reports per-slot line items and
       "why no ad was returned" straight from Google. -->
  <script>
    (function () {
      if (!/[?&]mpsdebug=1/.test(location.search)) return;

      var D = window.__mpsDebug = { slots: {}, gampadRequests: 0 };

      // GPT sizes are Size objects (getWidth/getHeight), plain [w,h] arrays, or the
      // string 'fluid' — String() on the object form yields "[object Object]".
      function sizeStr(z) {
        if (!z) return '?';
        if (typeof z === 'string') return z;
        if (typeof z.getWidth === 'function') return z.getWidth() + 'x' + z.getHeight();
        if (Object.prototype.toString.call(z) === '[object Array]') return z.join('x');
        return String(z);
      }

      function rec(id) {
        return (D.slots[id] = D.slots[id] || {
          requested: 0, rendered: 0, empty: 0, size: null,
          adUnitPath: null, sizes: null, line: null
        });
      }

      // Attach as soon as GPT exposes pubads(). Polling beats googletag.cmd here: once
      // GPT is initialised cmd.push runs inline, and MPS is sensitive to re-entry.
      var tries = 0;
      var iv = setInterval(function () {
        var gt = window.googletag;
        if (++tries > 200) { clearInterval(iv); return; }
        if (!gt || !gt.apiReady || typeof gt.pubads !== 'function') return;
        var pa = gt.pubads();
        if (!pa || pa.__mpsDbg) { clearInterval(iv); return; }
        pa.__mpsDbg = true;
        clearInterval(iv);

        pa.addEventListener('slotRequested', function (e) {
          var s = rec(e.slot.getSlotElementId());
          s.requested++;
          // What we actually asked GAM for. A 1px entry in `sizes` explains a 1px render.
          try { s.adUnitPath = e.slot.getAdUnitPath(); } catch (err) { }
          try { s.sizes = (e.slot.getSizes() || []).map(sizeStr).join(' '); } catch (err) { }
        });

        pa.addEventListener('slotRenderEnded', function (e) {
          var s = rec(e.slot.getSlotElementId());
          s.rendered++;
          if (e.isEmpty) { s.empty++; return; }
          s.size = e.size ? String(e.size) : 'filled';
          // 🎯 The IDs ad ops needs: which line item / creative actually won this slot.
          // A 1px creative here means a tracking or passback item is winning — a GAM
          // trafficking question, not an app bug.
          try {
            var r = e.slot.getResponseInformation();
            if (r) {
              s.line = 'li=' + r.lineItemId + ' adv=' + r.advertiserId +
                ' cr=' + r.creativeId + (r.isBackfill ? ' backfill' : '');
            }
          } catch (err) { }
        });
      }, 50);

      try {
        new PerformanceObserver(function (list) {
          list.getEntries().forEach(function (e) {
            if (String(e.name).indexOf('gampad/ads') !== -1) D.gampadRequests++;
          });
        }).observe({ entryTypes: ['resource'] });
      } catch (e) { /* PerformanceObserver unavailable */ }

      function verdict(s) {
        if (!s.requested) return '⛔ NEVER ASKED';
        if (!s.size) return '➖ empty (no demand)';
        // A creative under ~10px tall occupies a slot without showing anything — the
        // "filled but invisible" case that reads as a broken ad to everyone but GPT.
        var h = /,(\d+)$/.exec(s.size);
        if (h && parseInt(h[1], 10) <= 10) return '⚠️ 1px creative (tracking/passback?) ' + s.size;
        if (s.empty) return '⚠️ filled then empty ' + s.size;
        return '✅ filled ' + s.size;
      }

      function rows() {
        return Object.keys(D.slots).map(function (id) {
          var s = D.slots[id];
          return { id: id, s: s, verdict: verdict(s) };
        });
      }

      var LEGEND = 'requested:0 = NEVER ASKED (our bug) · requested>0 + empty = no demand ' +
        '(ad ops) · tiny size = tracking/passback creative';

      D.report = function () {
        var ild = '?';
        try { ild = window.googletag.pubads().isInitialLoadDisabled(); } catch (e) { }
        // MPS sets disableInitialLoad itself from its response's disable_initial_load.
        // While it is on, googletag.display() only registers a slot — a refresh() is
        // what actually fetches. That is why lazy slots and clones went unrequested.
        console.warn('=== MPS ADS — GAM requests: ' + D.gampadRequests +
          ' · GPT initial load disabled: ' + ild + ' ===\n' + LEGEND);
        var r = rows();
        if (!r.length) {
          console.warn('No GPT slot events captured — treat as UNKNOWN, not as zero. ' +
            '(GPT may have initialised before the hook attached, or no slots exist here.)');
          return D.slots;
        }
        console.warn(r.map(function (x) {
          return '  ' + x.id + '\n      req=' + x.s.requested + ' rendered=' + x.s.rendered +
            ' empty=' + x.s.empty + '  ' + x.verdict +
            '\n      unit=' + (x.s.adUnitPath || '?') + '  sizes=' + (x.s.sizes || '?') +
            (x.s.line ? '\n      ' + x.s.line : '');
        }).join('\n'));
        return D.slots;
      };

      // ---- On-page panel, so QA does not need devtools -------------------------------
      var panel;
      function paint() {
        if (!panel) return;
        var r = rows();
        var bad = r.filter(function (x) { return !x.s.requested; }).length;
        panel.innerHTML =
          '<div style="display:flex;gap:8px;align-items:center;margin-bottom:6px">' +
          '<strong style="flex:1">🔍 Ads: ' + r.length + ' slots · ' +
          (bad ? '<span style="color:#ff6b6b">' + bad + ' NEVER ASKED</span>' : 'all requested') +
          ' · ' + D.gampadRequests + ' GAM req</strong>' +
          '<button id="mpsdbg-x" style="cursor:pointer;background:#333;color:#fff;border:1px solid #666;border-radius:3px;padding:1px 7px">✕</button>' +
          '</div>' +
          (r.length ? r.map(function (x) {
            return '<div style="border-top:1px solid #333;padding:4px 0">' +
              '<div style="color:#8ecae6;word-break:break-all">' + x.id + '</div>' +
              '<div>' + x.verdict + ' &nbsp;<span style="opacity:.6">req=' + x.s.requested +
              ' empty=' + x.s.empty + '</span></div>' +
              '<div style="opacity:.6;word-break:break-all">' + (x.s.adUnitPath || '?') +
              ' · ' + (x.s.sizes || '?') + (x.s.line ? '<br>' + x.s.line : '') + '</div>' +
              '</div>';
          }).join('') : '<div style="opacity:.7">No GPT slot events yet — UNKNOWN, not zero.</div>') +
          '<div style="border-top:1px solid #333;margin-top:6px;padding-top:4px;opacity:.55">' +
          LEGEND + '</div>';
        var x = document.getElementById('mpsdbg-x');
        if (x) x.onclick = function () { panel.remove(); panel = null; };
      }

      function mount() {
        if (panel || !document.body) return;
        panel = document.createElement('div');
        // pointer-events:auto only on the panel itself; it is fixed and out of the
        // content flow so it cannot shift layout or overlap a measured ad slot.
        panel.style.cssText = 'position:fixed;right:8px;bottom:8px;z-index:2147483647;' +
          'max-width:430px;max-height:55vh;overflow:auto;background:rgba(17,17,17,.94);' +
          'color:#eee;font:11px/1.45 ui-monospace,Menlo,Consolas,monospace;padding:8px 10px;' +
          'border:1px solid #555;border-radius:6px;box-shadow:0 4px 18px rgba(0,0,0,.5)';
        document.body.appendChild(panel);
        paint();
        setInterval(paint, 2000);
      }

      if (document.readyState === 'loading') {
        document.addEventListener('DOMContentLoaded', mount);
      } else {
        mount();
      }

      console.warn('🔍 MPS ad diagnostic active — on-page panel bottom-right, or __mpsDebug.report()');
    })();
  </script>

  <script>
    // 📌 Real MPS _ready queue. Without this, any code (Angular services, directives,
    // SSR-rehydrated components) that calls mps._ready() before the consent-gated
    // #mps-manager block activates would have its callback silently discarded —
    // which is the root cause of "ads sometimes don't load" on first paint.
    // load-accesshollywood-web.js drains mps._queue.mpsinit when it finishes booting.
    window.mps = window.mps || {};
    window.mps._queue = window.mps._queue || {};
    window.mps._queue.mpsinit = window.mps._queue.mpsinit || [];
    window.mps._ready = window.mps._ready || function (cb) {
      if (typeof cb !== 'function') return;
      // 🛡️ If MPS has already booted, run immediately — queueing would wait on a drain
      // that has already happened, and re-queueing across a re-boot replays callbacks.
      if (window.mps._ext && window.mps._ext.loaded) { cb(); return; }
      window.mps._queue.mpsinit.push(cb);
    };
    window._ghosteryLinkNotice = { init: function () { } };
  </script>

  <link rel="shortcut icon" href="favicon.ico?v1.0" type="image/x-icon">
  <link rel="icon" href="favicon.ico?v1.0" type="image/x-icon">

  <link id="canonical-url" rel="canonical" href="https://www.accessonline.com/">

  <style>@font-face{font-family:'Oswald';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}@font-face{font-family:'Oswald';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}@font-face{font-family:'Oswald';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}@font-face{font-family:'Oswald';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Oswald';font-style:normal;font-weight:300;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Oswald';font-style:normal;font-weight:400;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752FD8Ghe4.woff2) format('woff2');unicode-range:U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;}@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752HT8Ghe4.woff2) format('woff2');unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fj8Ghe4.woff2) format('woff2');unicode-range:U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;}@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752Fz8Ghe4.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}@font-face{font-family:'Oswald';font-style:normal;font-weight:700;font-display:swap;src:url(https://fonts.gstatic.com/s/oswald/v57/TK3iWkUHHAIjg752GT8G.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}</style>

  <script>
    (function (d) {
      var config = {
        kitId: 'cxa1vum',
        scriptTimeout: 3000,
        async: true
      },
        h = d.documentElement,
        t = setTimeout(function () {
          h.className = h.className.replace(/\bwf-loading\b/g, "") + " wf-inactive";
        }, config.scriptTimeout),
        tk = d.createElement("script"),
        f = false,
        s = d.getElementsByTagName("script")[0],
        a;
      h.className += " wf-loading";
      tk.src = '//use.typekit.net/' + config.kitId + '.js';
      tk.async = true;
      tk.onload = tk.onreadystatechange = function () {
        a = this.readyState;
        if (f || a && a != "complete" && a != "loaded") return;
        f = true;
        clearTimeout(t);
        try {
          Typekit.load(config)
        } catch (e) { }
      };
      s.parentNode.insertBefore(tk, s)
    })(document);
  </script>

  <script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
  <script async src="//www.instagram.com/embed.js" charset="utf-8"></script>
  <script async src="//connect.facebook.net/en_US/sdk.js#xfbml=1&amp;version=v2.5" type="text/plain" class="optanon-category-11"></script>

  <!-- MPS / PUB ADS -->
  <!-- PUB ADS -->
  <script>
    var mpscall = {
      "site": "accesshollywood-web",
      "type": "", // the page content type
      "cat": "", // set to desktop or mobile
      "cag[tags]": "", // pipe separated list of keywords
    }
  </script>
  <!-- 📌 Sharethrough is an ad vendor, so it belongs behind the same consent gate as
       MPS and AdSense rather than loading eagerly for everyone. Kept immediately above
       mps-manager: OneTrust reactivates gated tags in document order, and sfp.js used to
       load at parse time — i.e. before MPS booted. This preserves that relative order.
       Known vendor bug: sfp.js requests a malformed Google Fonts css2 URL (comma-separated
       weights → HTTP 400). Not fixable from here; gating spares non-consenting users. -->
  <script type="text/plain" class="optanon-category-13" async src="//native.sharethrough.com/assets/sfp.js"></script>
  <script id="mps-manager" type="text/plain" class="optanon-category-13">
    var mpsopts = {
      "host": "mps.nbcuni.com",
      "updatecorrelator": true
    }
    var mps = mps || {};
    mps._ext = mps._ext || {};
    mps._adsheld = [];
    mps._queue = mps._queue || {};
    mps._queue.mpsloaded = mps._queue.mpsloaded || [];
    mps._queue.mpsinit = mps._queue.mpsinit || [];
    mps._queue.gptloaded = mps._queue.gptloaded || [];
    mps._queue.adload = mps._queue.adload || [];
    mps._queue.adclone = mps._queue.adclone || [];
    mps._queue.adview = mps._queue.adview || [];
    mps._queue.refreshads = mps._queue.refreshads || [];
    mps.__timer = Date.now() || function () {
      return +new Date
    };
    mps.__intcode = "v2";
    if (typeof mps.getAd != "function") mps.getAd = function (adunit) {
      if (typeof adunit != "string") return false;
      var slotid = "mps-getad-" + adunit.replace(/\W/g, "");
      if (!mps._ext || !mps._ext.loaded) {
        mps._queue.gptloaded.push(function () {
          typeof mps._gptfirst == "function" && mps._gptfirst(adunit, slotid);
          mps.insertAd("#" + slotid, adunit)
        });
        mps._adsheld.push(adunit)
      }
      return '<div id="' + slotid + '" class="mps-wrapper" data-mps-fill-slot="' + adunit + '"></div>'
    };
    (function () {
      // 🛡️ Idempotency guard — bail if the MPS loader is already present or booted.
      // Without this, every OneTrust re-activation of this consent-gated block (and
      // every setMPSCALL innerHTML rewrite) stacks another load-accesshollywood-web.js,
      // producing an endless re-injection loop in the console.
      if (document.getElementById("mps-load") || (window.mps && window.mps._ext && window.mps._ext.loaded)) return;
      head = document.head || document.getElementsByTagName("head")[0], mpsload = document.createElement("script");
      mpsload.src = "//" + mpsopts.host + "/fetch/ext/load-" + "accesshollywood-web" + ".js?nowrite=2";
      mpsload.id = "mps-load";
      head.insertBefore(mpsload, head.firstChild)
    })();
  </script>

  <script id="schema-site" type="application/ld+json">{"@context":"https://schema.org","@type":"WebSite","name":"Access","url":"https://www.accessonline.com/"}</script>
  <script id="schema-organization" type="application/ld+json">{"@context":"https://schema.org","@type":"Organization","name":"Access","url":"https://www.accessonline.com/","logo":"https://www.accessonline.com/assets/images/meta-logo-new-1.png","sameAs":["https://www.facebook.com/accessonline","https://instagram.com/accessonline","https://twitter.com/accessonline","https://www.youtube.com/accessonline"]}</script>
  <script id="schema-page" type="application/ld+json"></script>
  <!-- 📌 AdSense gated behind OneTrust (category 13, same gate as MPS).
       Removing AdSense entirely is deferred until we have GAM-vs-AdSense
       revenue data — see docs/website/ADS_ENHANCE.md. -->
  <script type="text/plain" class="optanon-category-13" async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  <script type="text/plain" class="optanon-category-13">
    // 🛡️ Idempotency guard — OneTrust runs an activation pass over gated scripts on
    // init and again on each SPA re-scan (CookieSPAEnabled). A second Auto Ads init
    // stacks another page-level ad request, so bail if we've already pushed.
    (function () {
      if (window.__adsenseAutoAdsInit) return;
      window.__adsenseAutoAdsInit = true;
      window.adsbygoogle = window.adsbygoogle || [];
      window.adsbygoogle.push({
        google_ad_client: "ca-pub-8474154011709210",
        enable_page_level_ads: true
      });
    })();
  </script>

  <!-- OptanonConsentNoticeStart -->
  <!-- 🌐 OneTrust environment switch by host — three-way policy:
         • prod hosts (accessonline.com, www.accessonline.com) → PRODUCTION script
         • stage host (stage.accessonline.com)                 → "-test" script
         • everything else (dev ELB, localhost, previews)      → OneTrust NOT loaded
       Dev/localhost get no OneTrust because those hosts aren't registered in the
       `accessonline.com` domain group — no banner, no consent-gated ad/social stack;
       that QA belongs on stage. The prod and -test otSDKStub.js files are
       byte-identical, so the same SRI hash applies to both.

       📌 An earlier version of this comment blamed the MPS infinite re-bootstrap on
       serving "-test" to an unregistered host. That was wrong: stage IS registered,
       and the loop was ours — OptanonWrapper stacking OnConsentChanged listeners
       (see the guard below). Verified from the CDN: the -test config is byte-identical
       to production apart from ScriptType, so "-test" exercises nothing extra and
       could be dropped here entirely. -->
  <script type="text/javascript">
    (function () {
      var PROD_ID = '8499ce78-21a3-4dbe-a832-03377eb059e2';
      var PROD_HOSTS = ['www.accessonline.com', 'accessonline.com'];
      var TEST_HOSTS = ['stage.accessonline.com'];
      var host = location.hostname;
      var id = null;
      if (PROD_HOSTS.indexOf(host) !== -1) id = PROD_ID;             // prod → production
      else if (TEST_HOSTS.indexOf(host) !== -1) id = PROD_ID + '-test'; // stage → test
      // else: leave id null → do not load OneTrust on dev/localhost.
      if (id) {
        var s = document.createElement('script');
        s.src = 'https://cdn.cookielaw.org/consent/' + id + '/otSDKStub.js';
        s.type = 'text/javascript';
        // 📌 Injected scripts default to async — which would let OneTrust initialise at a
        // non-deterministic point relative to MPS/Angular bootstrap. async=false restores
        // the ordered execution the previous parser-inserted <script> tag had.
        s.async = false;
        s.setAttribute('data-domain-script', id);
        s.integrity = 'sha384-TKdmlzVmoD70HzftTw4WtOzIBL5mNx8mXSRzEvwrWjpIJ7FZ/EuX758yMDWXtRUN';
        s.crossOrigin = 'anonymous';
        document.head.appendChild(s);
      }
    })();
  </script>
  <script type="text/javascript">
  // ⚠️ OneTrust calls OptanonWrapper() on EVERY init/consent action, not once. Without
  // the guard below, each call stacks another OnConsentChanged listener, so one consent
  // signal fans out into N ad refreshes; MPS's "hard" CMP integration re-runs its head
  // additions on each, which re-signals consent → unbounded re-bootstrap → RangeError.
  // (The old BE-Stage handler had the same stacking bug, but its unconditional
  // location.reload() wiped the page on the first fire and hid it.)
  //
  // 📌 Refresh ads in place rather than reloading, so a consent change doesn't kill the
  // session (video playback, scroll position, analytics). There is deliberately no
  // "reload when consent narrows" branch: every category in the OneTrust ruleset is
  // "always active", so a group can never leave OnetrustActiveGroups and that branch
  // was unreachable dead code.
  var otConsentBound = false;
  function OptanonWrapper() {
    // OneTrust calls this on every consent evaluation, so bind the listener once —
    // otherwise each call stacks another OnConsentChanged handler.
    if (otConsentBound) return;
    otConsentBound = true;
    window.OneTrust.OnConsentChanged(function () {
      if (window.googletag) {
        window.googletag.cmd.push(function () {
          window.googletag.pubads().refresh();
        });
      }
    });
  }

  window.appEventData = window.appEventData || [];
  </script>
  <!-- OptanonConsentNoticeEnd -->

  <!-- OneTrust IAB US Privacy (USP) -->
  <script src="https://cdn.cookielaw.org/opt-out/otCCPAiab.js" type="text/javascript" charset="UTF-8" ccpa-opt-out-ids="USP" ccpa-opt-out-geo="US" ccpa-opt-out-lspa="false"></script>
  <!-- OneTrust IAB US Privacy (USP) end -->

  <style>
  main.user-country-us button#ot-sdk-btn.ot-sdk-show-settings {
    padding-left: 36px !important;
    background: url('/assets/images/onetrust/privacyoptions123x59.png') no-repeat 2px 1px !important;
    background-size: 30px !important;
  }

  main.user-country-us .header__nav-footer__links button#ot-sdk-btn.ot-sdk-show-settings {
    background-position: 2px 5.4px !important;
  }

  .contextual-widget-container {
    margin-bottom: 30px;
  }

  .contextual-widget-container p {
    color: #000000;
    letter-spacing: 0.25px;
    line-height: 1;
  }

  ins.adsbygoogle.adsbygoogle-noablate {
    z-index: 2147483646 !important;
  }
  </style>
  <script>
    // 📌 Apply z-index to AdSense iframes as they are inserted (including lazy /
    // refresh-loaded ones). The previous window.load one-shot only caught
    // iframes present at first paint.
    (function () {
      function applyZIndex(frame) {
        var ins = frame.parentElement && frame.parentElement.parentElement;
        if (!ins || ins.tagName !== 'INS') return;
        ins.style.zIndex = '2147483644';
        frame.addEventListener('load', function () {
          ins.style.zIndex = '2147483645';
        });
      }
      var observer = new MutationObserver(function (mutations) {
        for (var i = 0; i < mutations.length; i++) {
          var added = mutations[i].addedNodes;
          for (var j = 0; j < added.length; j++) {
            var node = added[j];
            if (node.nodeType !== 1) continue;
            if (node.tagName === 'IFRAME' && node.parentElement && node.parentElement.parentElement && node.parentElement.parentElement.classList && node.parentElement.parentElement.classList.contains('adsbygoogle')) {
              applyZIndex(node);
            } else if (node.querySelectorAll) {
              var frames = node.querySelectorAll('ins.adsbygoogle iframe');
              for (var k = 0; k < frames.length; k++) applyZIndex(frames[k]);
            }
          }
        }
      });
      observer.observe(document.documentElement, { childList: true, subtree: true });
    })();
  </script>

  <!-- 🧪 LOCAL-ONLY ad-testing switch (?forceads=1)
       OneTrust is deliberately not loaded off the real hosts (see the host switch
       above), so the category-13 tags stay inert and MPS never boots — which is why
       ads used to be testable on stage only. This releases those tags manually so the
       MPS + GPT ad path runs locally. Must be the LAST script in <head> so every gated
       tag already exists in the DOM.

       🔒 LOCALHOST ALLOWLIST, deliberately not a denylist of real hosts. This code
       activates consent-gated vendor scripts, so on any real domain it would fire them
       without consent for anyone who appended the query param. A denylist silently
       permits that on every host someone forgets to add — a new prod domain, a preview
       deploy, a CDN alias. Only ever widen this to hosts that carry no real users.

       Tests: MPS boot, insertAd/cloneAd, GPT slot behaviour, disable_initial_load.
       Does NOT test OneTrust or the consent gating itself — that needs a real
       *.accessonline.com hostname. http://localhost is a browser "secure context", so
       Secure/SameSite=None cookies still behave normally. -->
  <script>
    (function () {
      var LOCAL_HOSTS = ['localhost', '127.0.0.1', '[::1]', '0.0.0.0'];
      if (LOCAL_HOSTS.indexOf(location.hostname) === -1) return;
      if (!/[?&]forceads=1/.test(location.search)) return;

      var gated = document.querySelectorAll('script[type="text/plain"][class*="optanon-category-13"]');
      console.warn('🧪 forceads: releasing ' + gated.length + ' consent-gated tag(s) — DEV ONLY, no OneTrust here');

      Array.prototype.forEach.call(gated, function (old) {
        var s = document.createElement('script');
        s.type = 'text/javascript';
        if (old.src) {
          s.src = old.src;
          if (old.async) s.async = true;
        } else {
          s.textContent = old.textContent;
        }
        // Insert after the original and leave the inert tag in place, so the DOM
        // still looks the way OneTrust's own reactivation pass would leave it.
        old.parentNode.insertBefore(s, old.nextSibling);
      });
    })();
  </script>
<style>.the-header-gradient-line{background-image:linear-gradient(135deg,#4f474a 0% 32%,#4f474a 76% 100%)}.the-gradient-line{background-image:linear-gradient(135deg,#22a5a1 0% 32%,#22a5a1 76% 100%)}.ao-layout:after{content:"";display:table;clear:both}html,body,div,span,h1,h3,a,img,b,ul,li,label,figure,header,nav{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}figure,header,nav{display:block}body{line-height:1}ul,li{list-style:none}button{background-color:transparent;outline:none;border:0;cursor:pointer}a{text-decoration:none;outline:none}*{box-sizing:border-box}html{scrollbar-gutter:stable}.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}body{font-family:proxima-nova-condensed;font-weight:400}@media(max-width:991px){body{width:100%;overflow-x:hidden}}img{max-width:100%}.wrapper{max-width:1200px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.the-gradient-line{height:5px}@media(max-width:991px){.the-gradient-line{height:3px}}.the-header-gradient-line{height:5px}@media(max-width:991px){.the-header-gradient-line{height:3px}}.ads-wrapper{margin-top:30px;margin-bottom:30px;text-align:center;display:block;min-height:90px;position:relative;z-index:1}.ads-wrapper:before{font-family:ProximaNovaCond-Semibold;font-size:12px;color:#7f8c8d;letter-spacing:0;text-align:center;content:"Advertisement";display:none;top:-15px;position:absolute;width:100%}@media(max-width:991px){.ads-wrapper{margin-top:20px}}.ads-wrapper--topbanner,.ads-wrapper--midbanner{min-width:728px;min-height:90px}.ads-wrapper--topbanner:before,.ads-wrapper--midbanner:before{display:block}@media(max-width:991px){.ads-wrapper--topbanner,.ads-wrapper--midbanner{min-width:unset}}.ads-wrapper--midbanner{display:block}.tiles{margin-left:-10px;margin-right:-10px;display:flex;flex-direction:row;flex-wrap:wrap}.tiles>*{margin-left:10px;margin-right:10px;width:calc(50% - 20px)}.tiles--responsive{margin-left:-15px;margin-right:-15px}@media(max-width:991px){.tiles--responsive{display:block;margin-left:0;margin-right:0}}.tiles--responsive .the-gradient-line{display:block!important}.tiles--responsive>*{margin-left:15px;margin-right:15px;width:calc(50% - 30px)}@media(max-width:991px){.tiles--responsive>*{margin-left:unset;margin-right:unset;width:unset}}.article-card .article-card__thumb img{transition:transform .3s ease;backface-visibility:hidden}.article-card:hover .article-card__thumb img{transform:scale(1.05)}.header__nav-footer__copy-right{padding:15px 25px 0;text-align:center;font-size:12px;line-height:15px;color:#fff}h1,h3{font-weight:600;color:#2c3e50}h1{font-size:48px;letter-spacing:-.5px}@media(max-width:991px){h1{font-size:26px}}h3{font-size:20px;letter-spacing:-.5px}li{color:#2c3e50}@media(min-width:992px){.ao-layout__main{float:left;width:68.3760683761%;padding-right:30px}}.ao-layout__sub{position:relative}@media(min-width:992px){.ao-layout__sub{width:31.6239316239%;float:left}}.ao-btn-special{display:inline-block;border:none;outline:none!important;border-radius:4px;font-family:proxima-nova-condensed;font-weight:800;color:#fff;letter-spacing:0;line-height:1.3;text-transform:uppercase}.ao-btn-special{background-image:linear-gradient(190deg,#22a5a1 0% 94%);box-shadow:0 5px 15px #00000080;font-size:20px;padding:18px 41px 16px 39px}.ao-btn-special:hover{background-image:linear-gradient(190deg,#b70134 0% 92%)}
</style><link rel="stylesheet" href="styles-3P2RC4WK.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles-3P2RC4WK.css"></noscript><style ng-app-id="ng">.temp[_ngcontent-ng-c66851269]{height:400px}main[_ngcontent-ng-c66851269]{padding-top:120px}@media(max-width:991px){main[_ngcontent-ng-c66851269]{padding-top:98px}}#sliding-popup.sliding-popup-bottom[_ngcontent-ng-c66851269]{background:#1f1f1f;opacity:.85;position:fixed}#sliding-popup[_ngcontent-ng-c66851269]{margin:0;padding:0;width:100%;z-index:99999;left:0;text-align:center}#sliding-popup[_ngcontent-ng-c66851269]   .popup-content[_ngcontent-ng-c66851269]{margin:0 auto;max-width:80%;display:inline-block;text-align:left;width:100%}#sliding-popup[_ngcontent-ng-c66851269]   .popup-content[_ngcontent-ng-c66851269]   #popup-text[_ngcontent-ng-c66851269]{max-width:67%;padding:28px 0 34px;font-family:proxima-nova-condensed;color:#fff;float:left;font-weight:700;margin:5px 0 0;max-width:60%}#sliding-popup[_ngcontent-ng-c66851269]   .popup-content[_ngcontent-ng-c66851269]   #popup-buttons[_ngcontent-ng-c66851269]{padding-top:34px;float:right;margin:0 0 1em;max-width:40%}#sliding-popup[_ngcontent-ng-c66851269]   .popup-content[_ngcontent-ng-c66851269]   #popup-buttons[_ngcontent-ng-c66851269]   button[_ngcontent-ng-c66851269]{width:118px;height:45px;background-color:#84dae5;background-image:none;box-shadow:none;margin:0;border-radius:0;font-size:14px;text-transform:uppercase;font-family:proxima-nova-condensed;color:#400095;text-shadow:none}</style><style ng-app-id="ng">.header-highlights[_ngcontent-ng-c4162811452]{z-index:100;position:fixed;top:0;left:0;width:100%;background-color:#231f20;height:35px;padding:10px;color:#fff;font-weight:600;font-size:15px;line-height:1.2;letter-spacing:0;text-transform:uppercase;text-align:center}</style><style ng-app-id="ng">.header[_ngcontent-ng-c1297916046]   .wrapper[_ngcontent-ng-c1297916046]:after, .header__nav-footer__social-search[_ngcontent-ng-c1297916046]:after, .header__social-search__icons[_ngcontent-ng-c1297916046]:after{content:"";display:table;clear:both}.header__social-search__icons[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046], .header__social-search__search-btn[_ngcontent-ng-c1297916046]   button[_ngcontent-ng-c1297916046]{background-image:url(/assets/images/icon-sprit-4.svg);background-size:126px 182px;background-repeat:no-repeat}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{background-image:url(/assets/images/icon-menu-social-2.svg);background-size:94px 45px;background-repeat:no-repeat}.header__nav-button--open[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{background-image:url(/assets/images/humberger-menu-1.svg);background-size:30px 25px;background-repeat:no-repeat}.header__nav-button--close[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{background-image:url(/assets/images/icon-menu-close.svg);background-size:16px 16px;background-repeat:no-repeat}@-webkit-keyframes _ngcontent-ng-c1297916046_slideIn{0%{left:-400px;opacity:0}to{left:0;opacity:1}}@keyframes _ngcontent-ng-c1297916046_slideIn{0%{left:-400px;opacity:0}to{left:0;opacity:1}}@-webkit-keyframes _ngcontent-ng-c1297916046_slideOut{0%{left:0;opacity:1}to{left:-400px;opacity:0}}@keyframes _ngcontent-ng-c1297916046_slideOut{0%{left:0;opacity:1}to{left:-400px;opacity:0}}.header[_ngcontent-ng-c1297916046]{z-index:100;position:fixed;top:35px;left:0;width:100%;background:#22a5a1}.header[_ngcontent-ng-c1297916046]   .wrapper[_ngcontent-ng-c1297916046], .header__logo[_ngcontent-ng-c1297916046], .header__social-search[_ngcontent-ng-c1297916046], .header__nav-button[_ngcontent-ng-c1297916046], .header__nav[_ngcontent-ng-c1297916046]{height:85px}@media(max-width:991px){.header[_ngcontent-ng-c1297916046]   .wrapper[_ngcontent-ng-c1297916046], .header__logo[_ngcontent-ng-c1297916046], .header__social-search[_ngcontent-ng-c1297916046], .header__nav-button[_ngcontent-ng-c1297916046], .header__nav[_ngcontent-ng-c1297916046]{height:60px}}.header__nav[_ngcontent-ng-c1297916046]{position:fixed;opacity:0;left:-400px;top:0;width:400px;min-height:100vh;overflow:hidden}@media(max-width:991px){.header__nav[_ngcontent-ng-c1297916046]{background-image:url(/assets/images/bg-menu-1.png);background-size:cover}}.header__nav[_ngcontent-ng-c1297916046]   .background[_ngcontent-ng-c1297916046]{position:absolute;inset:0;background-image:url(/assets/images/bg-menu-1.png);background-size:cover}@media(max-width:991px){.header__nav[_ngcontent-ng-c1297916046]   .background[_ngcontent-ng-c1297916046]{display:none}}.header__nav[_ngcontent-ng-c1297916046]   .scroll-bar[_ngcontent-ng-c1297916046]{height:calc(100vh - 65px);padding-right:5px}@media(max-width:991px){.header__nav[_ngcontent-ng-c1297916046]{width:100%;opacity:1;left:-100%}}@media(max-width:767px)and (orientation:landscape){.header__nav[_ngcontent-ng-c1297916046]{overflow:scroll}}.header__nav--open[_ngcontent-ng-c1297916046]{-webkit-animation:_ngcontent-ng-c1297916046_slideIn .5s forwards;animation:_ngcontent-ng-c1297916046_slideIn .5s forwards}.header__nav--open[_ngcontent-ng-c1297916046]   .header__nav-button--close[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{visibility:visible;opacity:1;transition:opacity 2s ease-in-out,visibility 2s ease-in-out}@media(max-width:991px){@-webkit-keyframes slideInMobile{0%{left:-100%;opacity:0}to{left:0;opacity:1}}@keyframes slideInMobile{0%{left:-100%;opacity:0}to{left:0;opacity:1}}.header__nav--open[_ngcontent-ng-c1297916046]{-webkit-animation:slideInMobile .5s forwards;animation:slideInMobile .5s forwards}}.header__nav--open[_ngcontent-ng-c1297916046]   .modal[_ngcontent-ng-c1297916046]{position:fixed;inset:0;background:#0009;transition:left .6s}@media(max-width:991px){.header__nav--open[_ngcontent-ng-c1297916046]   .modal[_ngcontent-ng-c1297916046]{display:none}}.header__nav--close[_ngcontent-ng-c1297916046]{-webkit-animation:_ngcontent-ng-c1297916046_slideOut .5s forwards;animation:_ngcontent-ng-c1297916046_slideOut .5s forwards}@media(max-width:991px){@-webkit-keyframes slideOutMobile{0%{left:0;opacity:1}to{left:-100%;opacity:0}}@keyframes slideOutMobile{0%{left:0;opacity:1}to{left:-100%;opacity:0}}.header__nav--close[_ngcontent-ng-c1297916046]{-webkit-animation:slideOutMobile .5s forwards;animation:slideOutMobile .5s forwards}}.header__nav-navigation[_ngcontent-ng-c1297916046]{position:relative}@media(max-width:991px){.header__nav-navigation[_ngcontent-ng-c1297916046]{height:unset}}.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]{padding:0 65px 70px}@media(max-width:991px){.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]{padding:0 25px 25px}}.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046] > li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{font-weight:600;color:#4426b2;text-transform:uppercase;display:block;padding:9px 0;font-size:100%;line-height:100%;letter-spacing:0;color:#fff;text-align:center}@media(max-width:320px){.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046] > li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{padding:10px 0}}@media(max-width:767px)and (orientation:landscape){.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046] > li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{padding:7px 0}}.header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046] > li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]:hover, .header__nav-navigation[_ngcontent-ng-c1297916046]   nav[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046] > li[_ngcontent-ng-c1297916046]   a.active[_ngcontent-ng-c1297916046]{font-size:28px}.header__nav-footer[_ngcontent-ng-c1297916046]{position:relative;margin:0 65px;padding-bottom:20px;border-top:1px solid rgba(255,255,255,.25);width:calc(100% - 130px)}@media(max-width:991px){.header__nav-footer[_ngcontent-ng-c1297916046]{width:75%;margin:0 auto 100px}}.header__nav-footer__links[_ngcontent-ng-c1297916046]{padding:20px 0}.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]{display:block;text-align:center}.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]   li[_ngcontent-ng-c1297916046]{display:inline-block}.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]   li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{display:inline-block;font-weight:400;padding:0 5px;color:#fff;font-size:14px;line-height:28px;text-transform:uppercase}@media(max-width:320px){.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]   li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{padding:2px 0;font-size:13px;line-height:20px}}.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]   li[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]:hover{opacity:.7}.header__nav-footer__links[_ngcontent-ng-c1297916046] > ul[_ngcontent-ng-c1297916046]   li[_ngcontent-ng-c1297916046]:not(:last-of-type):after{padding:0 2px;font-size:12px;line-height:28px;content:"/";color:#fff}.header__nav-footer__links[_ngcontent-ng-c1297916046]   #ot-sdk-btn.ot-sdk-show-settings[_ngcontent-ng-c1297916046]{border:none;text-transform:uppercase;color:#fff;font-family:proxima-nova-condensed;font-size:14px;line-height:28px;padding:0 5px}.header__nav-footer__links[_ngcontent-ng-c1297916046]   #ot-sdk-btn.ot-sdk-show-settings[_ngcontent-ng-c1297916046]:hover{opacity:.7;background:none}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]{text-align:center}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{display:inline-block;height:22px;width:22px;margin:0 10px 0 9px}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.facebook[_ngcontent-ng-c1297916046]{background-position:0 0}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.facebook[_ngcontent-ng-c1297916046]:hover{background-position:0 -23px}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.twitter[_ngcontent-ng-c1297916046]{background-position:-23px 0}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.twitter[_ngcontent-ng-c1297916046]:hover{background-position:-23px -23px}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.instagram[_ngcontent-ng-c1297916046]{background-position:-45px 0;width:23px}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.instagram[_ngcontent-ng-c1297916046]:hover{background-position:-45px -23px}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.youtube[_ngcontent-ng-c1297916046]{width:25px;background-position:-69px 0}.header__nav-footer__social-search__icons[_ngcontent-ng-c1297916046]   a.youtube[_ngcontent-ng-c1297916046]:hover{background-position:-69px -23px}.header__logo[_ngcontent-ng-c1297916046]{position:absolute;left:50%;margin-left:-127.5px;padding:12.5px 0;width:255px;overflow:hidden}@media(max-width:991px){.header__logo[_ngcontent-ng-c1297916046]{padding:18px 0;width:153px;margin-left:-76.5px}}.header__logo[_ngcontent-ng-c1297916046]   h1[_ngcontent-ng-c1297916046], .header__logo[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{display:block;height:60px;background:url(/assets/images/logo-3.png) no-repeat center;background-size:382.5px 60px;text-indent:-255px}@media(max-width:991px){.header__logo[_ngcontent-ng-c1297916046]   h1[_ngcontent-ng-c1297916046], .header__logo[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{height:24px;background-size:153px 24px}}.header__logo[_ngcontent-ng-c1297916046]   h1[_ngcontent-ng-c1297916046]{color:#fff}.header__social-search[_ngcontent-ng-c1297916046]{padding:20px 0;float:right}.header__social-search__icons[_ngcontent-ng-c1297916046]{padding:11.5px 17.5px 11.5px 11.5px;float:left}.header__social-search__icons[_ngcontent-ng-c1297916046]   a[_ngcontent-ng-c1297916046]{display:block;height:23px;width:24px;float:left;margin:0 11.5px}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.facebook[_ngcontent-ng-c1297916046]{background-position:0 0}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.facebook[_ngcontent-ng-c1297916046]:hover{background-position:0 -46px}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.twitter[_ngcontent-ng-c1297916046]{background-position:-24px 0}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.twitter[_ngcontent-ng-c1297916046]:hover{background-position:-24px -46px}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.instagram[_ngcontent-ng-c1297916046]{background-position:-48px 0;width:23px}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.instagram[_ngcontent-ng-c1297916046]:hover{background-position:-48px -46px}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.youtube[_ngcontent-ng-c1297916046]{width:25px;background-position:-71px 0}.header__social-search__icons[_ngcontent-ng-c1297916046]   a.youtube[_ngcontent-ng-c1297916046]:hover{background-position:-71px -46px}@media(max-width:991px){.header__social-search__icons[_ngcontent-ng-c1297916046]{display:none}}.header__social-search__search-input[_ngcontent-ng-c1297916046]{float:left;width:15px;height:45px;position:relative}.header__social-search__search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]{display:none}.header__social-search__search-input[_ngcontent-ng-c1297916046]   label[_ngcontent-ng-c1297916046]{height:0}.header__social-search__search-input[_ngcontent-ng-c1297916046]   div[_ngcontent-ng-c1297916046]{width:45px;height:2px;position:absolute;top:50%;transform:rotate(-75deg) translateY(-16px) translate(-3px);border-radius:1px;background-color:#4f474a;bottom:0}@media(max-width:991px){.header__social-search__search-input[_ngcontent-ng-c1297916046]{display:none}}.header__social-search__search-btn[_ngcontent-ng-c1297916046]{padding:10px 0 10px 30px;float:left}@media(max-width:991px){.header__social-search__search-btn[_ngcontent-ng-c1297916046]{padding-top:0}}.header__social-search__search-btn[_ngcontent-ng-c1297916046]   button[_ngcontent-ng-c1297916046]{height:25px;width:25px;display:block;border:none;text-indent:-100px;overflow:hidden;background-position:-97px -1px}.header__social-search__search-btn[_ngcontent-ng-c1297916046]   button[_ngcontent-ng-c1297916046]:hover{background-position:-97px -27px}.header__nav-button--open[_ngcontent-ng-c1297916046]{width:30px;margin-top:30px;float:left;display:block}.header__nav-button--open[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{width:30px;height:25px;display:block}@media(max-width:991px){.header__nav-button--open[_ngcontent-ng-c1297916046]{margin-top:18px}}.header__nav-button--close[_ngcontent-ng-c1297916046]{display:block;height:65px;width:100%;text-align:right;z-index:1}.header__nav-button--close[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{position:fixed;visibility:hidden;opacity:0;top:8px;left:364px;width:16px;height:16px}@media(max-width:991px){.header__nav-button--close[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{left:calc(100% - 36px);top:6px}}@media(min-width:768px)and (max-width:1024px){.header__nav-button--close[_ngcontent-ng-c1297916046]   span[_ngcontent-ng-c1297916046]{top:14px}}.header__nav-button--seperator[_ngcontent-ng-c1297916046]{float:left;width:15px;height:45px;position:relative;margin-top:20px;margin-left:30px}.header__nav-button--seperator[_ngcontent-ng-c1297916046]   div[_ngcontent-ng-c1297916046]{width:45px;height:2px;position:absolute;top:50%;transform:rotate(-75deg) translateY(-16px) translate(-3px);border-radius:1px;background-color:#22a5a1;bottom:0}@media(max-width:991px){.header__nav-button--seperator[_ngcontent-ng-c1297916046]{display:none}}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]{height:0;width:100%;position:absolute;background:#fff;box-shadow:0 40px 90px #0003;z-index:0;overflow:hidden}@media(min-width:992px){.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]{transition:.3s ease all}}.header[_ngcontent-ng-c1297916046]   .search-input--open[_ngcontent-ng-c1297916046]{height:85px}@media(max-width:991px){.header[_ngcontent-ng-c1297916046]   .search-input--open[_ngcontent-ng-c1297916046]{height:60px}}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   .wrapper[_ngcontent-ng-c1297916046]{position:relative}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   label[_ngcontent-ng-c1297916046]{display:none}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]{height:85px;width:100%;vertical-align:middle;font-size:36px;border:none;outline:none;font-weight:300}@media(max-width:991px){.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]{height:60px;font-size:24px}}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]::placeholder{color:#ccc;opacity:1}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]:-ms-input-placeholder{color:#ccc}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   input[_ngcontent-ng-c1297916046]::-ms-input-placeholder{color:#ccc}.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   button[_ngcontent-ng-c1297916046]{position:absolute;padding:8px 15px;border-radius:15px;background-color:#eee;color:#999;right:0;top:30px;text-transform:uppercase;letter-spacing:1.3}@media(max-width:991px){.header[_ngcontent-ng-c1297916046]   .search-input[_ngcontent-ng-c1297916046]   button[_ngcontent-ng-c1297916046]{padding:4px 8px;top:20px;right:15px}}.searchInput[_ngcontent-ng-c1297916046]{-webkit-user-select:auto!important}</style><style ng-app-id="ng">.footer[_ngcontent-ng-c1165558229]   .wrapper[_ngcontent-ng-c1165558229]:after, .footer__social-search[_ngcontent-ng-c1165558229]:after{content:"";display:table;clear:both}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a[_ngcontent-ng-c1165558229]{background-image:url(/assets/images/icon-sprit-4.svg);background-size:126px 182px;background-repeat:no-repeat}.footer[_ngcontent-ng-c1165558229]{padding:60px 0;text-align:center;background:linear-gradient(180deg,#e5e3e4,#fff)}.footer__logo[_ngcontent-ng-c1165558229]{margin-bottom:28px}.footer__logo[_ngcontent-ng-c1165558229]   img[_ngcontent-ng-c1165558229]{max-width:127px}.footer__links[_ngcontent-ng-c1165558229]{margin-bottom:27px}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]{display:block;margin-bottom:15px;text-align:center}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li[_ngcontent-ng-c1165558229]{display:inline-block}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li[_ngcontent-ng-c1165558229]   a[_ngcontent-ng-c1165558229]{display:inline-block;padding:0 5px;color:#4f474a;font-size:16px;line-height:20px;text-transform:uppercase}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li[_ngcontent-ng-c1165558229]   a[_ngcontent-ng-c1165558229]:hover{color:#b70134}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li[_ngcontent-ng-c1165558229]:not(:last-of-type):after{padding:0 7px 0 8px;content:"/"}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   .spacer[_ngcontent-ng-c1165558229]{display:none}.footer__social-search__icons[_ngcontent-ng-c1165558229]{margin-bottom:28px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a[_ngcontent-ng-c1165558229]{display:inline-block;height:23px;width:25px;margin:0 10px 0 9px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.facebook[_ngcontent-ng-c1165558229], .footer__social-search__icons[_ngcontent-ng-c1165558229]   a.facebook[_ngcontent-ng-c1165558229]:hover{background-position:0 -23px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.twitter[_ngcontent-ng-c1165558229], .footer__social-search__icons[_ngcontent-ng-c1165558229]   a.twitter[_ngcontent-ng-c1165558229]:hover{background-position:-23px -23px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.instagram[_ngcontent-ng-c1165558229]{background-position:-48px -23px;width:23px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.instagram[_ngcontent-ng-c1165558229]:hover{background-position:-48px -23px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.youtube[_ngcontent-ng-c1165558229]{width:25px;background-position:-71px -23px}.footer__social-search__icons[_ngcontent-ng-c1165558229]   a.youtube[_ngcontent-ng-c1165558229]:hover{background-position:-71px -23px}.footer[_ngcontent-ng-c1165558229]   #ot-sdk-btn.ot-sdk-show-settings[_ngcontent-ng-c1165558229]{border:none;padding:0;text-transform:uppercase;color:#4f474a;font-family:proxima-nova-condensed;font-size:16px;line-height:20px}.footer[_ngcontent-ng-c1165558229]   #ot-sdk-btn.ot-sdk-show-settings[_ngcontent-ng-c1165558229]:hover{color:#b70134;background:none}@media(max-width:767px){.footer[_ngcontent-ng-c1165558229]{padding:40px 0}.footer__logo[_ngcontent-ng-c1165558229]{margin-bottom:36px}.footer__links[_ngcontent-ng-c1165558229]{margin-bottom:40px}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]{margin:0 30px}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li[_ngcontent-ng-c1165558229]{margin-bottom:24px}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   li.spacer[_ngcontent-ng-c1165558229]:after{display:block}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]   .spacer[_ngcontent-ng-c1165558229]{display:block}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]:last-of-type   li[_ngcontent-ng-c1165558229]{display:block}.footer__links[_ngcontent-ng-c1165558229] > ul[_ngcontent-ng-c1165558229]:last-of-type   li[_ngcontent-ng-c1165558229]:after{display:none}.footer__copy[_ngcontent-ng-c1165558229]{margin:0 12px;color:#4f474a;font-size:14px;line-height:17px}}#adchoice-popup[_ngcontent-ng-c1165558229]{position:fixed;border-radius:10px;inset:100px 50px 50px;max-width:720px;max-height:557px;background-color:#fff;box-shadow:0 10px 25px #0003;margin:0 auto;z-index:99999}@media(max-width:820px){#adchoice-popup[_ngcontent-ng-c1165558229]{inset:85px 15px 15px}}#adchoice-popup[_ngcontent-ng-c1165558229]   iframe[_ngcontent-ng-c1165558229]{border-radius:10px;height:100%;width:100%}#adchoice-popup[_ngcontent-ng-c1165558229]   .adchice-popup-close[_ngcontent-ng-c1165558229]{display:block;position:absolute;top:-30px;right:0;height:25px;background-color:#29006c;border-radius:13px;line-height:25px;padding:2px 15px 0;text-transform:uppercase;color:#fff}</style><meta name="author" content="Access"><meta name="robots" content="max-image-preview:large"><style ng-app-id="ng">.home[_ngcontent-ng-c1316639604]{margin-top:20px}.home[_ngcontent-ng-c1316639604]   .ao-layout[_ngcontent-ng-c1316639604]{margin-top:-4px}.home[_ngcontent-ng-c1316639604]   .ao-layout__sub[_ngcontent-ng-c1316639604]   .gray-box[_ngcontent-ng-c1316639604], .home[_ngcontent-ng-c1316639604]   .ao-layout__sub[_ngcontent-ng-c1316639604]   .mb-default[_ngcontent-ng-c1316639604]{margin-bottom:25px}.breaking-news-wrapper-home-page[_ngcontent-ng-c1316639604]{margin-top:30px}</style><meta property="og:site_name" content="Access"><meta property="og:type" content="website"><meta property="og:url" content="https://www.accessonline.com/"><meta property="twitter:card" content="summary_large_image"><meta property="twitter:site" content="@accessonline"><meta name="description" content="Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture."><meta property="og:description" content="Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture"><meta property="og:title" content="Access: Entertainment News, Celebrity, TV, Music &amp; Movie Videos"><meta property="og:image" content="https://static.accessonline.com/uploads/2018/05/access-logo.png"><meta property="twitter:title" content="Access: Entertainment News, Celebrity, TV, Music &amp; Movie Videos"><meta property="twitter:description" content="Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture"><meta property="twitter:image:src" content="https://access-hollywood.s3.amazonaws.com/uploads/2018/05/logo.png"><style ng-app-id="ng">.ads-make-it-fixed[_ngcontent-ng-c4001614148]{min-height:300px;width:300px;position:fixed;top:90px;transition:all .15s ease}</style><style ng-app-id="ng">.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]:after, .article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]:after, .article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]:after{content:"";display:table;clear:both}.article-card__thumb__icon[_ngcontent-ng-c1437470997]{background-image:url(/assets/images/icon-sprit-4.svg);background-size:126px 182px;background-repeat:no-repeat}.article-card[_ngcontent-ng-c1437470997]{display:block;margin-bottom:30px}@media(max-width:991px){.article-card[_ngcontent-ng-c1437470997]{margin-bottom:15px}}.article-card__thumb[_ngcontent-ng-c1437470997]{position:relative}.article-card__thumb__time[_ngcontent-ng-c1437470997], .article-card__thumb__icon[_ngcontent-ng-c1437470997]{position:absolute;top:100%;overflow:hidden}.article-card__thumb__icon[_ngcontent-ng-c1437470997]{display:block;height:60px;width:60px;background-position:100px 100px;left:10px;margin-top:-70px}.article-card__thumb__icon--video[_ngcontent-ng-c1437470997], .article-card__thumb__icon--playlist[_ngcontent-ng-c1437470997]{background-position:0 -70px}.article-card__thumb__icon--gallery[_ngcontent-ng-c1437470997]{background-position:-60px -70px;width:64px}.article-card__thumb__time[_ngcontent-ng-c1437470997]{right:20px;display:inline-block;height:20px;padding:0 10px;width:auto;margin-top:-40px;color:#fff;background:#000000bf;border-radius:10px;font-weight:700;font-size:12px;letter-spacing:0;line-height:21px}.article-card__thumb__button[_ngcontent-ng-c1437470997]{position:absolute;left:50%;margin-left:-100px;bottom:40px}.article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-weight:400}.article-card__title__sponsored[_ngcontent-ng-c1437470997], .article-card__title__sponsored-by[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--xs[_ngcontent-ng-c1437470997]{margin-bottom:20px}.article-card.article-card--xs[_ngcontent-ng-c1437470997]   .the-gradient-line[_ngcontent-ng-c1437470997], .article-card.article-card--xs[_ngcontent-ng-c1437470997]   .article-card__thumb__time[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--xs[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(.8) translate(-18px) translateY(19px)}.article-card.article-card--xs[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:15px 0 14px;min-height:72px}.article-card.article-card--xs[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-weight:600;font-size:15px;color:#2c3e50;letter-spacing:-.5px;line-height:.95}.article-card.article-card--xs--two[_ngcontent-ng-c1437470997]{margin-bottom:30px}.article-card.article-card--xs--two[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:20px;min-height:113px}.article-card.article-card--xs--two[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:20px;line-height:1.2;letter-spacing:-.5px}@media(max-width:991px){.article-card.article-card--xs--two[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{min-height:unset}}.article-card.article-card--xs--two[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(1) translate(-5px) translateY(4px)}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]{margin-bottom:20px;display:flex}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .the-gradient-line[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:39.3939393939%}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .article-card__thumb__time[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(.8) translate(-18px) translateY(15px)}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{width:57.5757575758%;padding-left:5px;margin-left:3.0303030303%}.article-card.article-card--xs-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-weight:600;font-size:16px;color:#2c3e50;letter-spacing:-.5px;line-height:20px}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]{position:relative}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:41.5584415584%;float:left}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{width:54.5454545455%;float:right;padding:30px 30px 0 0;font-weight:600;color:#2c3e50;font-size:26px;letter-spacing:-.5px}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{line-height:1.25}@media(max-width:991px){.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:12px 20px 15px;width:57.9710144928%}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:18px}}@media(min-width:768px)and (max-width:1024px)and (orientation:portrait){.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:30px 20px}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:26px}}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored[_ngcontent-ng-c1437470997], .article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored-by[_ngcontent-ng-c1437470997]{display:block}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored[_ngcontent-ng-c1437470997]{font-weight:600;color:#2c3e50;font-size:14px;letter-spacing:0;line-height:14px;font-size:16px;color:#b70134;text-transform:uppercase;margin-bottom:20px}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored-by[_ngcontent-ng-c1437470997]{letter-spacing:0;position:absolute;bottom:-3px;font-weight:600;font-size:14px;color:#4426b2;background:#fff;border-bottom:1px solid white;margin:0 -30px;padding-left:30px;padding-right:30px}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored-by[_ngcontent-ng-c1437470997]:before{content:"Sponsored by "}@media(max-width:991px){.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__sponsored-by[_ngcontent-ng-c1437470997]{padding-left:20px;padding-right:20px;margin:0 -20px}}.article-card.article-card--sm-list[_ngcontent-ng-c1437470997]   .article-card__title__date[_ngcontent-ng-c1437470997]{position:absolute;bottom:0;padding-bottom:5px;color:#7f8c8d;font-weight:600;font-size:12px;line-height:14px}.article-card.article-card--md[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:17px 30px;background:url(/assets/images/bg-graphics-4.png) repeat-y left}.article-card.article-card--md[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-family:Oswald,sans-serif;color:#fff;letter-spacing:.5px;font-size:38px;line-height:48px;text-transform:uppercase;font-size:40px}@media(max-width:991px){.article-card.article-card--md[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:12px 25px}.article-card.article-card--md[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:22px;line-height:26px}}.article-card.article-card--md[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(1.75) translate(8px) translateY(-9px)}.article-card.article-card--md-simple[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:23px 22px}.article-card.article-card--md-simple[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-family:proxima-nova-condensed;font-weight:500;font-size:26px;color:#2c3e50;letter-spacing:-.5px;line-height:1.2}@media(max-width:991px){.article-card.article-card--md-simple[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:12px 20px}.article-card.article-card--md-simple[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{line-height:26px;font-size:22px}}.article-card.article-card--md-simple[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(1.75) translate(8px) translateY(-9px)}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .the-gradient-line[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:43px;width:calc(100% - 260px);height:260px;margin-right:260px;position:relative;background-image:url(/assets/images/bg-graphics-3.png);background-repeat:repeat-y;background-size:cover}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-family:Oswald,sans-serif;font-weight:300;font-size:34px;color:#fff;letter-spacing:.5px;line-height:44px;text-transform:uppercase}@media(max-width:991px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:15px 20px;height:220px;width:calc(100% - 175px);margin-right:175px;word-wrap:break-word}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:20px;line-height:24px}}@media(max-width:320px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{width:calc(100% - 140px)}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:16px;line-height:22px}}@media(min-width:768px)and (max-width:1024px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:28px;line-height:34px}}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]:before{content:"SHARE IT";display:block;font-size:26px;margin-bottom:8px;font-family:proxima-nova-condensed;font-weight:400;display:none}@media(max-width:991px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]:before{display:none}}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:260px;float:right;height:260px;overflow:hidden}@media(max-width:991px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:175px;height:220px}}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(1.75) translate(8px) translateY(-9px)}@media(max-width:991px){.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{display:none}}.article-card.article-card--md-share-it[_ngcontent-ng-c1437470997]   .article-card__thumb__time[_ngcontent-ng-c1437470997], .article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .the-gradient-line[_ngcontent-ng-c1437470997]{display:none}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:38px 42px;width:calc(100% - 385px);height:385px;margin-right:385px;position:relative;background-image:url(/assets/images/bg-graphics-3.png);background-repeat:repeat-y}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-family:Oswald,sans-serif;font-weight:300;font-size:38px;color:#fff;letter-spacing:1.6px;line-height:44px;text-transform:uppercase}@media(max-width:991px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{padding:15px 20px;height:220px;width:calc(100% - 175px);margin-right:175px;word-wrap:break-word}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:20px;line-height:24px}}@media(max-width:320px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]{width:calc(100% - 140px)}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:16px;line-height:22px}}@media(min-width:768px)and (max-width:1024px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]   h3[_ngcontent-ng-c1437470997]{font-size:28px;line-height:34px}}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]:before{content:"MUST READ";display:block;font-size:22px;margin-bottom:9px;font-weight:400;letter-spacing:.7px;display:none}@media(max-width:991px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__title[_ngcontent-ng-c1437470997]:before{display:none}}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:385px;float:right;height:385px;overflow:hidden}@media(max-width:991px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__thumb[_ngcontent-ng-c1437470997]{width:175px;height:220px}}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{transform:scale(1.75) translate(8px) translateY(-9px)}@media(max-width:991px){.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__thumb__icon[_ngcontent-ng-c1437470997]{display:none}}.article-card.article-card--md-must-read[_ngcontent-ng-c1437470997]   .article-card__thumb__time[_ngcontent-ng-c1437470997]{display:none}</style><style ng-app-id="ng">.progressive[_ngcontent-ng-c2978312839]{position:relative;display:block;overflow:hidden;outline:none;width:100%;aspect-ratio:16/9}.progressive[_ngcontent-ng-c2978312839]   img[_ngcontent-ng-c2978312839]{display:block;border:0 none;position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.progressive[_ngcontent-ng-c2978312839]   img.preview[_ngcontent-ng-c2978312839]{filter:blur(12px);transform:scale(1.04)}.progressive[_ngcontent-ng-c2978312839]   img.full[_ngcontent-ng-c2978312839]{opacity:0;will-change:opacity,transform}.progressive[_ngcontent-ng-c2978312839]   img.full.loaded[_ngcontent-ng-c2978312839]{opacity:1;animation:_ngcontent-ng-c2978312839_progressiveReveal .6s ease-out}.progressive[_ngcontent-ng-c2978312839]:after{content:"";display:block;position:absolute;top:77%;bottom:0;height:auto;width:100%;background:linear-gradient(-180deg,#0000,#000);opacity:.5}@media(max-width:991px){.progressive.cover-sm-list[_ngcontent-ng-c2978312839]{aspect-ratio:1/1}}.progressive.cover-sm-squar[_ngcontent-ng-c2978312839], .progressive.cover-md-must-read[_ngcontent-ng-c2978312839], .progressive.cover-md-share-it[_ngcontent-ng-c2978312839]{aspect-ratio:1/1}@media(max-width:991px){.progressive.cover-md-must-read[_ngcontent-ng-c2978312839], .progressive.cover-md-share-it[_ngcontent-ng-c2978312839]{aspect-ratio:auto;height:220px}}@keyframes _ngcontent-ng-c2978312839_progressiveReveal{0%{opacity:0;transform:scale(1.05)}to{opacity:1;transform:scale(1)}}.video-card[_nghost-ng-c2978312839]   figure[_ngcontent-ng-c2978312839], .video-card   [_nghost-ng-c2978312839]   figure[_ngcontent-ng-c2978312839]{width:120px}.video-card[_nghost-ng-c2978312839]   img[_ngcontent-ng-c2978312839], .video-card   [_nghost-ng-c2978312839]   img[_ngcontent-ng-c2978312839]{width:120px}</style><script>window.__APP_CONFIG__={"production":true,"endpoint":"https://d13tj18o1rb1yg.cloudfront.net/json/","apiURL":"/api","elasticSearch":"https://vpc-ao-php-prod-search-3ijph7qngewjf2j5s4fzlbhl6q.us-west-2.es.amazonaws.com/","elasticIndex":"es-accessonline-com","baseURL":"https://www.accessonline.com","contactUsSubmit":"https://rbr2ypr38c.execute-api.us-west-2.amazonaws.com/prod/contactform","geoblock":{"enabled":true,"allowedCountries":["US"],"failOpenWithoutGeoHeader":true},"mpxConf":{"accountPid":"BdHJDC","playerPid":"pBJJ_oDDFw9Y","accountId":"2704117587"}};</script></head>

<body>
  <app-root ng-version="21.2.19" _nghost-ng-c66851269 ng-server-context="ssr"><main _ngcontent-ng-c66851269><app-header-highlights _ngcontent-ng-c66851269 _nghost-ng-c4162811452><div _ngcontent-ng-c4162811452 class="header-highlights"></div></app-header-highlights><app-header _ngcontent-ng-c66851269 _nghost-ng-c1297916046><header _ngcontent-ng-c1297916046 class="header"><div _ngcontent-ng-c1297916046 class="wrapper"><button _ngcontent-ng-c1297916046 role="button" aria-expanded="false" aria-label="Toggle navigation" aria-labelledby="main-nav" class="header__nav-button--open"><span _ngcontent-ng-c1297916046><b _ngcontent-ng-c1297916046 class="sr-only">Main navigation</b></span></button><div _ngcontent-ng-c1297916046 class="header__nav-button--seperator"><div _ngcontent-ng-c1297916046></div></div><div _ngcontent-ng-c1297916046 class="header__social-search"><div _ngcontent-ng-c1297916046 class="header__social-search__icons"><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Facebook" class="facebook" href="https://www.facebook.com/accesshollywood"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Twitter" class="twitter" href="https://twitter.com/accesshollywood"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Instagram" class="instagram" href="https://www.instagram.com/accesshollywood/"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Youtube" class="youtube" href="https://www.youtube.com/accessonline"></a><!----></div><div _ngcontent-ng-c1297916046 class="header__social-search__search-input"><div _ngcontent-ng-c1297916046></div></div><div _ngcontent-ng-c1297916046 class="header__social-search__search-btn"><button _ngcontent-ng-c1297916046 role="button" aria-label="Search">SEARCH</button></div></div><div _ngcontent-ng-c1297916046 class="header__logo"><h1 _ngcontent-ng-c1297916046> ACCESS </h1><!----><!----></div></div><div _ngcontent-ng-c1297916046 class="the-header-gradient-line"></div><div _ngcontent-ng-c1297916046 class="search-input"><div _ngcontent-ng-c1297916046 class="wrapper"><label _ngcontent-ng-c1297916046 for="search">Search</label><input _ngcontent-ng-c1297916046 type="text" placeholder="Search..." name="search" autocapitalize="none" class="searchInput" value><button _ngcontent-ng-c1297916046 role="button" aria-label="Clear">clear</button></div></div><div _ngcontent-ng-c1297916046 id="main-nav" aria-hidden="true" role="presentation" tabindex="-1" class="header__nav"><div _ngcontent-ng-c1297916046 class="modal"></div><div _ngcontent-ng-c1297916046 class="background"></div><button _ngcontent-ng-c1297916046 role="button" aria-label="Sub navigation" class="header__nav-button--close"><span _ngcontent-ng-c1297916046></span></button><div _ngcontent-ng-c1297916046 class="header__nav-navigation"><nav _ngcontent-ng-c1297916046><ul _ngcontent-ng-c1297916046><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/videos">Videos</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/photos">Photos</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/news">Celebrity News</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/royals">Royals</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/red-carpet">Red Carpet</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/award-season">Award Season</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/weddings">Weddings</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/babies-parenting">Parenting</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/music">Music</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/tv">TV</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/style-beauty">Style Beauty</a></li><li _ngcontent-ng-c1297916046><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/category/access-show">On The Show</a></li><!----></ul></nav></div><div _ngcontent-ng-c1297916046 class="header__nav-footer"><div _ngcontent-ng-c1297916046 class="header__nav-footer__links"><ul _ngcontent-ng-c1297916046><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/about">About</a><!----><!----><!----></li><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/closedcaption">Closed Caption</a><!----><!----><!----></li><li _ngcontent-ng-c1297916046><!----><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" target="_blank" rel="noopener" href="https://www.nbcuniversal.com/privacy?intake=NBC_Entertainment">Privacy Policy</a><!----><!----></li><li _ngcontent-ng-c1297916046><button _ngcontent-ng-c1297916046 id="ot-sdk-btn" class="ot-sdk-show-settings"> Your Privacy Choices </button><!----><!----></li><li _ngcontent-ng-c1297916046><!----><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" target="_blank" rel="noopener" href="https://www.nbcuniversal.com/privacy/california-consumer-privacy-act?intake=NBC_Entertainment">CA Notice</a><!----><!----></li><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/terms">Terms &amp; Conditions</a><!----><!----><!----></li><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/stations">Find My Station</a><!----><!----><!----></li><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/contact-us">Contact Us</a><!----><!----><!----></li><li _ngcontent-ng-c1297916046><!----><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" target="_blank" rel="noopener" href="https://www.nbcuniversal.com/privacy/cookies#accordionheader2">Ad Choices</a><!----><!----></li><li _ngcontent-ng-c1297916046><!----><a _ngcontent-ng-c1297916046 routerlinkactive="active" href="/accessibility-statement">Accessibility</a><!----><!----><!----></li><!----></ul></div><div _ngcontent-ng-c1297916046 class="header__nav-footer__social-search"><div _ngcontent-ng-c1297916046 class="header__nav-footer__social-search__icons"><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Facebook" class="facebook" href="https://www.facebook.com/accesshollywood"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Twitter" class="twitter" href="https://twitter.com/accesshollywood"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Instagram" class="instagram" href="https://www.instagram.com/accesshollywood/"></a><!----><a _ngcontent-ng-c1297916046 target="_blank" rel="noopener" title="Youtube" class="youtube" href="https://www.youtube.com/accessonline"></a><!----></div></div><div _ngcontent-ng-c1297916046 class="header__nav-footer__copy-right">Copyright © 2026 NBCUniversal Media, LLC.  All rights reserved.</div></div></div></header></app-header><router-outlet _ngcontent-ng-c66851269></router-outlet><app-home _nghost-ng-c1316639604><div _ngcontent-ng-c1316639604 appscroller><div _ngcontent-ng-c1316639604 class="ads-wrapper ads-wrapper--topbanner ads-toggle-with-sidebar" style="display: block;"><div _ngcontent-ng-c1316639604 id="mps-topbanner" appmpsclick slotname="topbanner"></div></div><div _ngcontent-ng-c1316639604 class="wrapper home"><div _ngcontent-ng-c1316639604 class="ao-layout"><div _ngcontent-ng-c1316639604 class="ao-layout__main"><!----><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md" title="Alix Earle Recalls Feeling 'Manipulated' &amp; 'Mistreated' By Alex Cooper In Searing Feud Comments" href="/videos/alix-earle-recalls-feeling-manipulated-mistreated-by-alex-cooper-in-searing-feud-comments"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/alixalexah090426-accn357125920-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/alixalexah090426-accn357125920-784x441.jpg" alt="Alix Earle Recalls Feeling 'Manipulated' &amp; 'Mistreated' By Alex Cooper In Searing Feud Comments"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Alix Earle Recalls Feeling 'Manipulated' &amp; 'Mistreated' By Alex Cooper In Searing Feud Comments</h3><!----><!----></div></a><!----></app-img-thumb><!----><!----><div _ngcontent-ng-c1316639604 class="tiles tiles--responsive"><app-img-thumb _ngcontent-ng-c1316639604 type="cover-xs-two" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--xs article-card--xs--two" title="The Moment Lindsay Clancy Judge Declared Mistrial After Defense's Emergency Appeal Denied" href="/videos/the-moment-lindsay-clancy-judge-declared-mistrial-after-defenses-emergency-appeal-denied"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-xs-two primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/clancymistrial090426-accn353029794-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/clancymistrial090426-accn353029794-384x216.jpg" alt="The Moment Lindsay Clancy Judge Declared Mistrial After Defense's Emergency Appeal Denied"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>The Moment Lindsay Clancy Judge Declared Mistrial After Defense's Emergency Appeal Denied</h3><!----><!----></div></a><!----></app-img-thumb><app-img-thumb _ngcontent-ng-c1316639604 type="cover-xs-two" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--xs article-card--xs--two" title="Sharon Osbourne Reveals What She Personally Included in Ozzy Osbourne's Haunted Halloween House" href="/videos/sharon-osbourne-reveals-what-she-personally-included-in-ozzy-osbournes-haunted-halloween-house"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-xs-two primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/osboirnes-2-accn339205868-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/osboirnes-2-accn339205868-384x216.jpg" alt="Sharon Osbourne Reveals What She Personally Included in Ozzy Osbourne's Haunted Halloween House"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Sharon Osbourne Reveals What She Personally Included in Ozzy Osbourne's Haunted Halloween House</h3><!----><!----></div></a><!----></app-img-thumb><!----></div><!----><!----><!----><!----><!----><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md" title="Colin Hanks, Cedric the Entertainer &amp; More Snuggle With Adoptable Puppies At 2026 Astra TV Awards" href="/galleries/colin-hanks-cedric-the-entertainer-more-snuggle-with-adoptable-puppies-at-2026-astra-tv-awards"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/08/DOG-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/08/DOG-784x441.jpg" alt="Colin Hanks, Cedric the Entertainer &amp; More Snuggle With Adoptable Puppies At 2026 Astra TV Awards"></figure></app-img-progressive><!----><div _ngcontent-ng-c1437470997 class="article-card__thumb__button"><button _ngcontent-ng-c1437470997 role="button" aria-label="View Gallery" class="ao-btn-special">View gallery</button></div><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Colin Hanks, Cedric the Entertainer &amp; More Snuggle With Adoptable Puppies At 2026 Astra TV Awards</h3><!----><!----></div></a><!----></app-img-thumb><!----><!----><!----><!----><!----><!----><app-img-thumb _ngcontent-ng-c1316639604 type="cover-sm-list" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--sm-list" title="Jennifer Aniston Interviews Boyfriend Jim Curtis In Emotional Conversation About His Health Journey" href="/videos/jennifer-aniston-interviews-boyfriend-jim-curtis-in-emotional-conversation-about-his-health-journey"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-sm-list primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/jenjimah090326-accn297221965-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/jenjimah090326-accn297221965-384x216.jpg" alt="Jennifer Aniston Interviews Boyfriend Jim Curtis In Emotional Conversation About His Health Journey"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Jennifer Aniston Interviews Boyfriend Jim Curtis In Emotional Conversation About His Health Journey</h3><!----><!----></div></a><!----></app-img-thumb><app-img-thumb _ngcontent-ng-c1316639604 type="cover-sm-list" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--sm-list" title="Amal Clooney Supports George Clooney As He Receives Prestigious Venice Film Festival Honor" href="/videos/amal-clooney-supports-george-clooney-as-he-receives-prestigious-venice-film-festival-honor"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-sm-list primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/george-clooney-amal-clooney-getty-accn286981802-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/george-clooney-amal-clooney-getty-accn286981802-384x216.jpg" alt="Amal Clooney Supports George Clooney As He Receives Prestigious Venice Film Festival Honor"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Amal Clooney Supports George Clooney As He Receives Prestigious Venice Film Festival Honor</h3><!----><!----></div></a><!----></app-img-thumb><!----><div _ngcontent-ng-c1316639604 class="ads-wrapper"><div _ngcontent-ng-c1316639604 id="mps-sharethrough" appmpsclick slotname="sharethrough"></div></div><!----><!----><!----><!----><!----><!----><!----><div _ngcontent-ng-c1316639604><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md-must-read" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md-must-read" title="Meghan Markle, Oprah Winfrey, Hillary Clinton &amp; More Mourn Gloria Steinem's Death at 92" href="/videos/meghan-markle-oprah-winfrey-hillary-clinton-more-mourn-gloria-steinems-death-at-92"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md-must-read primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/gloria-accn286981635-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/gloria-accn286981635-784x441.jpg" alt="Meghan Markle, Oprah Winfrey, Hillary Clinton &amp; More Mourn Gloria Steinem's Death at 92"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Meghan Markle, Oprah Winfrey, Hillary Clinton &amp; More Mourn Gloria Steinem's Death…</h3><!----><!----></div></a><!----></app-img-thumb><!----></div><!----><!----><!----><div _ngcontent-ng-c1316639604 class="tiles tiles--responsive"><app-img-thumb _ngcontent-ng-c1316639604 type="cover-xs-two" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--xs article-card--xs--two" title="Why 'Titanic' Was An Unsinkable Blockbuster Before It Set Sail" href="/articles/why-titanic-was-an-unsinkable-blockbuster-before-it-set-sail"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-xs-two primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/Titanic090426-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/Titanic090426-384x216.jpg" alt="Why 'Titanic' Was An Unsinkable Blockbuster Before It Set Sail"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Why 'Titanic' Was An Unsinkable Blockbuster Before It Set Sail</h3><!----><!----></div></a><!----></app-img-thumb><app-img-thumb _ngcontent-ng-c1316639604 type="cover-xs-two" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--xs article-card--xs--two" title="'DWTS' Season 35: Jenna Dewan, Guillermo Rodriguez, Maura Higgins &amp; More Talk Joining Cast" href="/videos/dwts-season-35-jenna-dewan-guillermo-rodriguez-maura-higgins-more-talk-joining-cast"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-xs-two primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/dwts-thumb-accn221957812-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/dwts-thumb-accn221957812-384x216.jpg" alt="'DWTS' Season 35: Jenna Dewan, Guillermo Rodriguez, Maura Higgins &amp; More Talk Joining Cast"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>'DWTS' Season 35: Jenna Dewan, Guillermo Rodriguez, Maura Higgins &amp; More Talk Joining Cast</h3><!----><!----></div></a><!----></app-img-thumb><!----></div><!----><!----><!----><!----><!----><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md" title="Summer 2026 Star Sightings" href="/galleries/summer-2026-star-sightings"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/05/STAR-SIGHTINGS-SUMMER-16x9.png"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/05/STAR-SIGHTINGS-SUMMER-784x441.png" alt="Summer 2026 Star Sightings"></figure></app-img-progressive><!----><div _ngcontent-ng-c1437470997 class="article-card__thumb__button"><button _ngcontent-ng-c1437470997 role="button" aria-label="View Gallery" class="ao-btn-special">View gallery</button></div><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Summer 2026 Star Sightings</h3><!----><!----></div></a><!----></app-img-thumb><!----><!----><!----><!----><!----><!----><!----><!----><div _ngcontent-ng-c1316639604><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md-share-it" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md-share-it" title="Travis Kelce Shares Taylor Swift Wedding Details As He Gives 'Special' Shout Out To Officiant Adam Sandler" href="/videos/travis-kelce-shares-taylor-swift-wedding-details-as-he-gives-special-shout-out-to-officiant-adam-sandler"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md-share-it primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/trav-tayl-accn223493987-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/trav-tayl-accn223493987-384x216.jpg" alt="Travis Kelce Shares Taylor Swift Wedding Details As He Gives 'Special' Shout Out To Officiant Adam Sandler"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Travis Kelce Shares Taylor Swift Wedding Details As He Gives 'Special' Shout Out…</h3><!----><!----></div></a><!----></app-img-thumb><!----></div><!----><!----><!----><!----><app-img-thumb _ngcontent-ng-c1316639604 type="cover-sm-list" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--sm-list" title="Tupac's Final Interview 2 Weeks Before His Fatal Shooting" href="/videos/tupacs-final-interview-2-weeks-before-his-fatal-shooting"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-sm-list primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/tupacah090126-accn179461704-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/tupacah090126-accn179461704-384x216.jpg" alt="Tupac's Final Interview 2 Weeks Before His Fatal Shooting"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Tupac's Final Interview 2 Weeks Before His Fatal Shooting</h3><!----><!----></div></a><!----></app-img-thumb><app-img-thumb _ngcontent-ng-c1316639604 type="cover-sm-list" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--sm-list" title="Jane Fonda Reveals The Moment She Realized Dolly Parton Was Perfect For '9 To 5'" href="/videos/jane-fonda-reveals-the-moment-she-realized-dolly-parton-was-perfect-for-9-to-5"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-sm-list primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/dollyjaneah090126-accn177413936-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/dollyjaneah090126-accn177413936-384x216.jpg" alt="Jane Fonda Reveals The Moment She Realized Dolly Parton Was Perfect For '9 To 5'"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Jane Fonda Reveals The Moment She Realized Dolly Parton Was Perfect For '9 To 5'</h3><!----><!----></div></a><!----></app-img-thumb><!----><!----><!----><!----><!----><!----><!----><!----><!----><div _ngcontent-ng-c1316639604><app-img-thumb _ngcontent-ng-c1316639604 type="cover-md-share-it" _nghost-ng-c1437470997><a _ngcontent-ng-c1437470997 class="article-card article-card--md-share-it" title="Travis Kelce Confirms He &amp; Taylor Swift Have A Dog In New Tommy Hilfiger Campaign" href="/videos/travis-kelce-confirms-he-taylor-swift-have-a-dog-in-new-tommy-hilfiger-campaign"><div _ngcontent-ng-c1437470997 class="the-gradient-line"></div><div _ngcontent-ng-c1437470997 class="article-card__thumb"><app-img-progressive _ngcontent-ng-c1437470997 _nghost-ng-c2978312839><figure _ngcontent-ng-c2978312839 class="cover-md-share-it primary progressive replace"><img _ngcontent-ng-c2978312839 alt aria-hidden="true" decoding="async" class="preview" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/travis-kelce-tommy-hilfiger-accn174341600-16x9.jpg"><img _ngcontent-ng-c2978312839 decoding="async" class="full" src="https://d13tj18o1rb1yg.cloudfront.net/uploads/2026/09/travis-kelce-tommy-hilfiger-accn174341600-384x216.jpg" alt="Travis Kelce Confirms He &amp; Taylor Swift Have A Dog In New Tommy Hilfiger Campaign"></figure></app-img-progressive><div _ngcontent-ng-c1437470997 class="article-card__thumb__icon article-card__thumb__icon--video"></div><!----><!----></div><div _ngcontent-ng-c1437470997 class="article-card__title"><!----><h3 _ngcontent-ng-c1437470997>Travis Kelce Confirms He &amp; Taylor Swift Have A Dog In New Tommy Hilfiger Campaign</h3><!----><!----></div></a><!----></app-img-thumb><!----></div><!----><!----><!----></div><div _ngcontent-ng-c1316639604 class="ao-layout__sub"><app-sidebar-next _ngcontent-ng-c1316639604 _nghost-ng-c4001614148><!----></app-sidebar-next></div><!----></div></div><div _ngcontent-ng-c1316639604 class="ads-wrapper ads-wrapper--midbanner"><div _ngcontent-ng-c1316639604 id="mps-topbanner-0"></div></div><!----></div></app-home><!----><app-footer _ngcontent-ng-c66851269 _nghost-ng-c1165558229><!----></app-footer></main></app-root>

  <script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>

  <script>
    var targets = [window, Document, HTMLBodyElement, HTMLElement];
    __Zone_ignore_on_properties = [];
    targets.forEach(function (target) {
      __Zone_ignore_on_properties.push({
        target: target,
        ignoreProperties: ['click']
      });
    });
    __zone_symbol__BLACK_LISTED_EVENTS = ['click'];
    (function (w, d, s, id) {
      w.PUBX = w.PUBX || {
        pub: "access",
        discover: false,
        lazy: true
      };
      var js, pjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s);
      js.id = id;
      js.async = true;
      js.src = "//main.pubexchange.com/loader.min.js";
      pjs.parentNode.insertBefore(js, pjs);
    }(window, document, "script", "pubexchange-jssdk"));
  </script>
<link rel="modulepreload" href="chunk-KXGBE5KL.js"><link rel="modulepreload" href="chunk-DVEBQJVS.js"><link rel="modulepreload" href="chunk-CPT5QWIZ.js"><link rel="modulepreload" href="chunk-W7QVBRIB.js"><link rel="modulepreload" href="chunk-KIJYPNMJ.js"><link rel="modulepreload" href="chunk-LFAXOJDX.js"><link rel="modulepreload" href="chunk-SKTOHHDS.js"><link rel="modulepreload" href="chunk-ZSYDPOCE.js"><link rel="modulepreload" href="chunk-7QEH7ON6.js"><link rel="modulepreload" href="chunk-DYHXBCQ3.js"><script src="polyfills-EZI222JB.js" type="module"></script><script src="main-6HXRNRGZ.js" type="module"></script>

<script id="ng-state" type="application/json">{"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Fpage\u002Fhome.json":[{"id":1135,"date":"2018-05-29T22:44:33","date_gmt":"2018-05-30T05:44:33","guid":{"rendered":"http:\u002F\u002F18.144.56.157\u002F?page_id=1135"},"modified":"2019-02-13T22:50:42","modified_gmt":"2019-02-14T06:50:42","slug":"home","status":"publish","type":"page","link":"https:\u002F\u002Fstatic.accessonline.com\u002Fhome\u002F","title":{"rendered":"Home"},"content":{"rendered":"","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":219,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":[],"featured_image":{"ID":219,"id":219,"title":"access-logo","filename":"access-logo.png","filesize":40339,"url":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo.png","link":"https:\u002F\u002Fstatic.accessonline.com\u002Faccess-logo\u002F","alt":"","author":"1","description":"","caption":"","name":"access-logo","status":"inherit","uploaded_to":0,"date":"2018-05-10 09:26:17","modified":"2018-05-10 09:26:17","menu_order":0,"mime_type":"image\u002Fpng","type":"image","subtype":"png","icon":"http:\u002F\u002Fstatic.accessonline.com\u002Fwp\u002Fwp-includes\u002Fimages\u002Fmedia\u002Fdefault.png","image_credit":"","image_source":"","width":510,"height":80,"sizes":{"xs":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo-16x9.png","xs-width":16,"xs-height":9,"md":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo-384x80.png","md-width":384,"md-height":80,"lg":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo.png","lg-width":510,"lg-height":80,"sm":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo-160x80.png","sm-width":160,"sm-height":80,"gt":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo-100x80.png","gt-width":100,"gt-height":80},"isOriginal":true},"post_taxonomies":{"categories":[{"term_id":1,"name":"Celebrity News","slug":"news","term_group":0,"term_taxonomy_id":1,"taxonomy":"category","description":"","parent":0,"count":58620,"filter":"raw","term_order":"0","cat_ID":1,"category_count":58620,"category_description":"","cat_name":"Celebrity News","category_nicename":"news","category_parent":0,"primary":true}]},"acf":{"shorttitle":"Home","shortdescription":"","rating":"","show_featured":true,"short_url":"http:\u002F\u002Fahwd.tv\u002FugTykt"},"seo_meta":{"seo_focuskw":"","seo_title":"Access: Entertainment News, Celebrity, TV, Music & Movie Videos | Access","seo_desc":"Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture.","seo_linkdex":"","seo_metakey":"","seo_noindex":"","seo_meta-robots-nofollow":"","seo_meta-robots-adv":"","seo_canonical":"","seo_redirect":"","seo_opengraph-title":"Access: Entertainment News, Celebrity, TV, Music & Movie Videos","seo_opengraph-description":"Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture","seo_opengraph-image":"https:\u002F\u002Fstatic.accessonline.com\u002Fuploads\u002F2018\u002F05\u002Faccess-logo.png","seo_twitter-title":"Access: Entertainment News, Celebrity, TV, Music & Movie Videos","seo_twitter-description":"Access delivers the best in entertainment and celebrity news with unparalleled video coverage of the hottest names in Hollywood, movies, TV, music and pop culture","seo_twitter-image":"https:\u002F\u002Faccess-hollywood.s3.amazonaws.com\u002Fuploads\u002F2018\u002F05\u002Flogo.png"},"_links":{"self":[{"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fpages\u002F1135"}],"collection":[{"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fpages"}],"about":[{"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Ftypes\u002Fpage"}],"author":[{"embeddable":true,"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fusers\u002F1"}],"replies":[{"embeddable":true,"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fcomments?post=1135"}],"version-history":[{"count":1,"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fpages\u002F1135\u002Frevisions"}],"predecessor-version":[{"id":513773,"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fpages\u002F1135\u002Frevisions\u002F513773"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fmedia\u002F219"}],"wp:attachment":[{"href":"https:\u002F\u002Fstatic.accessonline.com\u002Fwp-json\u002Fwp\u002Fv2\u002Fmedia?parent=1135"}],"curies":[{"name":"wp","href":"https:\u002F\u002Fapi.w.org\u002F{rel}","templated":true}]}}],"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Foptions\u002Fheader-settings.json":{"acf":{"header_copyright":"Copyright © 2026 NBCUniversal Media, LLC.  All rights reserved.","header_scripts":"","header_social_links":[{"show":true,"type":"facebook","link":"https:\u002F\u002Fwww.facebook.com\u002Faccesshollywood"},{"show":true,"type":"twitter","link":"https:\u002F\u002Ftwitter.com\u002Faccesshollywood"},{"show":true,"type":"instagram","link":"https:\u002F\u002Fwww.instagram.com\u002Faccesshollywood\u002F"},{"show":true,"type":"youtube","link":"https:\u002F\u002Fwww.youtube.com\u002Faccessonline"}]}},"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Foptions\u002Ffooter-settings.json":{"acf":{"copyright":"\u003Cp>Copyright © 2026 NBCUniversal Media, LLC.  All rights reserved.\u003Cbr \u002F>\nThis material may not be republished, broadcast, rewritten or redistributed.\u003C\u002Fp>\n","footer_scripts":"","footer_social_links":[{"show":true,"type":"facebook","link":"https:\u002F\u002Fwww.facebook.com\u002Faccesshollywood"},{"show":true,"type":"twitter","link":"https:\u002F\u002Ftwitter.com\u002Faccesshollywood"},{"show":true,"type":"instagram","link":"https:\u002F\u002Fwww.instagram.com\u002Faccesshollywood\u002F"},{"show":true,"type":"youtube","link":"https:\u002F\u002Fwww.youtube.com\u002Faccessonline"}]}},"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Fmenus\u002Ffooter_1.json":[{"ID":200,"order":1,"parent":0,"title":"About","url":"\u002Fabout","attr":"","target":"","classes":"","xfn":"","description":"","object_id":200,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":202,"order":2,"parent":0,"title":"Closed Caption","url":"\u002Fclosedcaption","attr":"","target":"","classes":"","xfn":"","description":"","object_id":202,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":203,"order":3,"parent":0,"title":"Privacy Policy","url":"https:\u002F\u002Fwww.nbcuniversal.com\u002Fprivacy?intake=NBC_Entertainment","attr":"","target":"_blank","classes":"","xfn":"","description":"","object_id":203,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":615332,"order":4,"parent":0,"title":"Do Not Sell My Personal Information","url":"https:\u002F\u002Fwww.nbcuniversal.com\u002Fprivacy\u002Fnotrtoo?intake=NBC_Entertainment","attr":"","target":"_blank","classes":"","xfn":"","description":"","object_id":615332,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":615335,"order":5,"parent":0,"title":"CA Notice","url":"https:\u002F\u002Fwww.nbcuniversal.com\u002Fprivacy\u002Fcalifornia-consumer-privacy-act?intake=NBC_Entertainment","attr":"","target":"_blank","classes":"","xfn":"","description":"","object_id":615335,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":252409,"order":6,"parent":0,"title":"Terms & Conditions","url":"\u002Fterms","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252409,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":252410,"order":7,"parent":0,"title":"Find My Station","url":"\u002Fstations","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252410,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":522390,"order":8,"parent":0,"title":"Contact Us","url":"\u002Fcontact-us","attr":"","target":"","classes":"","xfn":"","description":"","object_id":522390,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":615336,"order":9,"parent":0,"title":"Ad Choices","url":"https:\u002F\u002Fwww.nbcuniversal.com\u002Fprivacy\u002Fcookies#accordionheader2","attr":"","target":"_blank","classes":"","xfn":"","description":"","object_id":615336,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":716041,"order":10,"parent":0,"title":"Accessibility","url":"\u002Faccessibility-statement","attr":"","target":"","classes":"","xfn":"","description":"","object_id":716041,"object":"custom","type":"custom","type_label":"Custom Link","children":[]}],"home-feed":[[{"date":"2026-09-04","id":"the-moment-lindsay-clancy-judge-declared-mistrial-after-defenses-emergency-appeal-denied","title":"The Moment Lindsay Clancy Judge Declared Mistrial After Defense's Emergency Appeal Denied","shortTitle":"The Moment Lindsay Clancy Judge Declared Mistrial After Defense's Emergency Appeal Denied","format":"video","slug":"the-moment-lindsay-clancy-judge-declared-mistrial-after-defenses-emergency-appeal-denied","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fclancymistrial090426-accn353029794-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fclancymistrial090426-accn353029794-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fclancymistrial090426-accn353029794-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fclancymistrial090426-accn353029794-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fclancymistrial090426-accn353029794-160x90.jpg"},{"date":"2026-09-04","id":"sharon-osbourne-reveals-what-she-personally-included-in-ozzy-osbournes-haunted-halloween-house","title":"Sharon Osbourne Reveals What She Personally Included in Ozzy Osbourne's Haunted Halloween House","shortTitle":"Sharon Osbourne Reveals What She Personally Included in Ozzy Osbourne's Haunted Halloween House","format":"video","slug":"sharon-osbourne-reveals-what-she-personally-included-in-ozzy-osbournes-haunted-halloween-house","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fosboirnes-2-accn339205868-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fosboirnes-2-accn339205868-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fosboirnes-2-accn339205868-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fosboirnes-2-accn339205868-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fosboirnes-2-accn339205868-160x90.jpg"}],[{"date":"2026-08-17","id":"colin-hanks-cedric-the-entertainer-more-snuggle-with-adoptable-puppies-at-2026-astra-tv-awards","title":"Colin Hanks, Cedric the Entertainer & More Snuggle With Adoptable Puppies At 2026 Astra TV Awards","shortTitle":"Colin Hanks, Cedric the Entertainer & More Snuggle With Adoptable Puppies At 2026 Astra TV Awards","format":"gallery","slug":"colin-hanks-cedric-the-entertainer-more-snuggle-with-adoptable-puppies-at-2026-astra-tv-awards","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":true,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F08\u002FDOG-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F08\u002FDOG-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F08\u002FDOG-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F08\u002FDOG-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F08\u002FDOG-160x90.jpg"}],[{"date":"2026-09-03","id":"jennifer-aniston-interviews-boyfriend-jim-curtis-in-emotional-conversation-about-his-health-journey","title":"Jennifer Aniston Interviews Boyfriend Jim Curtis In Emotional Conversation About His Health Journey","shortTitle":"Jennifer Aniston Interviews Boyfriend Jim Curtis In Emotional Conversation About His Health Journey","format":"video","slug":"jennifer-aniston-interviews-boyfriend-jim-curtis-in-emotional-conversation-about-his-health-journey","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fjenjimah090326-accn297221965-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fjenjimah090326-accn297221965-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fjenjimah090326-accn297221965-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fjenjimah090326-accn297221965-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fjenjimah090326-accn297221965-160x90.jpg"},{"date":"2026-09-03","id":"amal-clooney-supports-george-clooney-as-he-receives-prestigious-venice-film-festival-honor","title":"Amal Clooney Supports George Clooney As He Receives Prestigious Venice Film Festival Honor","shortTitle":"Amal Clooney Supports George Clooney As He Receives Prestigious Venice Film Festival Honor","format":"video","slug":"amal-clooney-supports-george-clooney-as-he-receives-prestigious-venice-film-festival-honor","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgeorge-clooney-amal-clooney-getty-accn286981802-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgeorge-clooney-amal-clooney-getty-accn286981802-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgeorge-clooney-amal-clooney-getty-accn286981802-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgeorge-clooney-amal-clooney-getty-accn286981802-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgeorge-clooney-amal-clooney-getty-accn286981802-160x90.jpg"}],[{"date":"2026-09-03","id":"meghan-markle-oprah-winfrey-hillary-clinton-more-mourn-gloria-steinems-death-at-92","title":"Meghan Markle, Oprah Winfrey, Hillary Clinton & More Mourn Gloria Steinem's Death at 92","shortTitle":"Meghan Markle, Oprah Winfrey, Hillary Clinton & More Mourn Gloria Steinem's Death at 92","format":"video","slug":"meghan-markle-oprah-winfrey-hillary-clinton-more-mourn-gloria-steinems-death-at-92","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgloria-accn286981635-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgloria-accn286981635-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgloria-accn286981635-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgloria-accn286981635-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fgloria-accn286981635-160x90.jpg"}],[{"date":"2026-09-03","id":"why-titanic-was-an-unsinkable-blockbuster-before-it-set-sail","title":"Why 'Titanic' Was An Unsinkable Blockbuster Before It Set Sail","shortTitle":"Why 'Titanic' Was An Unsinkable Blockbuster Before It Set Sail","format":"post","slug":"why-titanic-was-an-unsinkable-blockbuster-before-it-set-sail","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002FTitanic090426-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002FTitanic090426-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002FTitanic090426-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002FTitanic090426-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002FTitanic090426-160x90.jpg"},{"date":"2026-09-02","id":"dwts-season-35-jenna-dewan-guillermo-rodriguez-maura-higgins-more-talk-joining-cast","title":"'DWTS' Season 35: Jenna Dewan, Guillermo Rodriguez, Maura Higgins & More Talk Joining Cast","shortTitle":"'DWTS' Season 35: Jenna Dewan, Guillermo Rodriguez, Maura Higgins & More Talk Joining Cast","format":"video","slug":"dwts-season-35-jenna-dewan-guillermo-rodriguez-maura-higgins-more-talk-joining-cast","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdwts-thumb-accn221957812-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdwts-thumb-accn221957812-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdwts-thumb-accn221957812-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdwts-thumb-accn221957812-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdwts-thumb-accn221957812-160x90.jpg"}],[{"date":"2026-05-26","id":"summer-2026-star-sightings","title":"Summer 2026 Star Sightings","shortTitle":"Summer 2026 Star Sightings","format":"gallery","slug":"summer-2026-star-sightings","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":true,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F05\u002FSTAR-SIGHTINGS-SUMMER-16x9.png","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F05\u002FSTAR-SIGHTINGS-SUMMER-160x90.png","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F05\u002FSTAR-SIGHTINGS-SUMMER-384x216.png","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F05\u002FSTAR-SIGHTINGS-SUMMER-784x441.png","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F05\u002FSTAR-SIGHTINGS-SUMMER-160x90.png"}],[{"date":"2026-09-02","id":"travis-kelce-shares-taylor-swift-wedding-details-as-he-gives-special-shout-out-to-officiant-adam-sandler","title":"Travis Kelce Shares Taylor Swift Wedding Details As He Gives 'Special' Shout Out To Officiant Adam Sandler","shortTitle":"Travis Kelce Shares Taylor Swift Wedding Details As He Gives 'Special' Shout Out To Officiant Adam Sandler","format":"video","slug":"travis-kelce-shares-taylor-swift-wedding-details-as-he-gives-special-shout-out-to-officiant-adam-sandler","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftrav-tayl-accn223493987-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftrav-tayl-accn223493987-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftrav-tayl-accn223493987-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftrav-tayl-accn223493987-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftrav-tayl-accn223493987-160x90.jpg"}],[{"date":"2026-09-01","id":"tupacs-final-interview-2-weeks-before-his-fatal-shooting","title":"Tupac's Final Interview 2 Weeks Before His Fatal Shooting","shortTitle":"Tupac's Final Interview 2 Weeks Before His Fatal Shooting","format":"video","slug":"tupacs-final-interview-2-weeks-before-his-fatal-shooting","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftupacah090126-accn179461704-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftupacah090126-accn179461704-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftupacah090126-accn179461704-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftupacah090126-accn179461704-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftupacah090126-accn179461704-160x90.jpg"},{"date":"2026-09-01","id":"jane-fonda-reveals-the-moment-she-realized-dolly-parton-was-perfect-for-9-to-5","title":"Jane Fonda Reveals The Moment She Realized Dolly Parton Was Perfect For '9 To 5'","shortTitle":"Jane Fonda Reveals The Moment She Realized Dolly Parton Was Perfect For '9 To 5'","format":"video","slug":"jane-fonda-reveals-the-moment-she-realized-dolly-parton-was-perfect-for-9-to-5","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdollyjaneah090126-accn177413936-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdollyjaneah090126-accn177413936-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdollyjaneah090126-accn177413936-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdollyjaneah090126-accn177413936-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Fdollyjaneah090126-accn177413936-160x90.jpg"}],[{"date":"2026-09-01","id":"travis-kelce-confirms-he-taylor-swift-have-a-dog-in-new-tommy-hilfiger-campaign","title":"Travis Kelce Confirms He & Taylor Swift Have A Dog In New Tommy Hilfiger Campaign","shortTitle":"Travis Kelce Confirms He & Taylor Swift Have A Dog In New Tommy Hilfiger Campaign","format":"video","slug":"travis-kelce-confirms-he-taylor-swift-have-a-dog-in-new-tommy-hilfiger-campaign","isSponsored":false,"sponsoredBy":null,"length":"03:00","isGalleryButtonVisible":false,"thumb_xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftravis-kelce-tommy-hilfiger-accn174341600-16x9.jpg","thumb_sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftravis-kelce-tommy-hilfiger-accn174341600-160x90.jpg","thumb_md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftravis-kelce-tommy-hilfiger-accn174341600-384x216.jpg","thumb_lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftravis-kelce-tommy-hilfiger-accn174341600-784x441.jpg","thumb_alt":"Caption for image","thumb_original":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F09\u002Ftravis-kelce-tommy-hilfiger-accn174341600-160x90.jpg"}]],"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Fmenus\u002Fmain.json":[{"ID":252400,"order":1,"parent":0,"title":"Videos","url":"\u002Fvideos","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252400,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":252399,"order":2,"parent":0,"title":"Photos","url":"\u002Fphotos","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252399,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":193,"order":3,"parent":0,"title":"Celebrity News","url":"\u002Fnews","attr":"","target":"","classes":"","xfn":"","description":"","object_id":193,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":253124,"order":4,"parent":0,"title":"Royals","url":"\u002Fcategory\u002Froyals","attr":"","target":"","classes":"","xfn":"","description":"","object_id":253124,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":253125,"order":5,"parent":0,"title":"Red Carpet","url":"\u002Fcategory\u002Fred-carpet","attr":"","target":"","classes":"","xfn":"","description":"","object_id":253125,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":253126,"order":6,"parent":0,"title":"Award Season","url":"\u002Fcategory\u002Faward-season","attr":"","target":"","classes":"","xfn":"","description":"","object_id":253126,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":253127,"order":7,"parent":0,"title":"Weddings","url":"\u002Fcategory\u002Fweddings","attr":"","target":"","classes":"","xfn":"","description":"","object_id":253127,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":253128,"order":8,"parent":0,"title":"Parenting","url":"\u002Fcategory\u002Fbabies-parenting","attr":"","target":"","classes":"","xfn":"","description":"","object_id":253128,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":252404,"order":9,"parent":0,"title":"Music","url":"\u002Fcategory\u002Fmusic","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252404,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":252405,"order":10,"parent":0,"title":"TV","url":"\u002Fcategory\u002Ftv","attr":"","target":"","classes":"","xfn":"","description":"","object_id":252405,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":725862,"order":11,"parent":0,"title":"Style Beauty","url":"\u002Fcategory\u002Fstyle-beauty","attr":"","target":"","classes":"","xfn":"","description":"","object_id":725862,"object":"custom","type":"custom","type_label":"Custom Link","children":[]},{"ID":513855,"order":12,"parent":0,"title":"On The Show","url":"\u002Fcategory\u002Faccess-show","attr":"","target":"","classes":"","xfn":"","description":"","object_id":513855,"object":"custom","type":"custom","type_label":"Custom Link","children":[]}],"json:https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fjson\u002Foptions\u002Fhome-settings.json":{"acf":{"commerce_widget_categories":false,"show_top_advertisement":true,"sidebars":[{"acf_fc_layout":"in_case_you_missed_it","show":true,"title":"In case you missed it","display_format":"list","post_count":"4","post_types":["post","gallery","video","playlist"],"post_tag":false},{"acf_fc_layout":"advertisement_boxes","show":true,"advertisement":""},{"acf_fc_layout":"news_boxes","show":true,"title":"CATCH UP ON EVERYTHING MEGHAN MARKLE","display_format":"grid","post_count":"4","post_types":["post","gallery","video","playlist"],"post_tag":{"term_id":21,"name":"Meghan Markle","slug":"meghan-markle","term_group":0,"term_taxonomy_id":21,"taxonomy":"post_tag","description":"","parent":0,"count":1123,"filter":"raw","term_order":"0"}},{"acf_fc_layout":"advertisement_boxes_native","show":true,"image":{"ID":784667,"id":784667,"title":"979010_Banner-1080x1080","filename":"979010_Banner-1080x1080-1.jpg","filesize":318200,"url":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1.jpg","link":"https:\u002F\u002Faccessonlinephp-alb-prod-alb-1248869520.us-west-2.elb.amazonaws.com\u002F979010_banner-1080x1080\u002F","alt":"","author":"4","description":"","caption":"","name":"979010_banner-1080x1080","status":"inherit","uploaded_to":0,"date":"2026-02-26 16:26:32","modified":"2026-02-26 16:26:32","menu_order":0,"mime_type":"image\u002Fjpeg","type":"image","subtype":"jpeg","icon":"https:\u002F\u002Faccessonlinephp-alb-prod-alb-1248869520.us-west-2.elb.amazonaws.com\u002Fwp\u002Fwp-includes\u002Fimages\u002Fmedia\u002Fdefault.png","width":1080,"height":1080,"sizes":{"1536x1536":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1.jpg","1536x1536-width":1080,"1536x1536-height":1080,"2048x2048":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1.jpg","2048x2048-width":1080,"2048x2048-height":1080,"xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1-16x9.jpg","xs-width":16,"xs-height":9,"md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1-384x216.jpg","md-width":384,"md-height":216,"lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1-784x441.jpg","lg-width":784,"lg-height":441,"sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1-160x90.jpg","sm-width":160,"sm-height":90,"gt":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2026\u002F02\u002F979010_Banner-1080x1080-1-100x100.jpg","gt-width":100,"gt-height":100}},"open_in_new_window":"_blank","link":"https:\u002F\u002Fgilt.com\u002Faccess_web  "},{"acf_fc_layout":"advertisement_boxes_native","show":true,"image":{"ID":571032,"id":571032,"title":"tune-in-season-24","filename":"tune-in-season-24.jpg","filesize":59317,"url":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24.jpg","link":"https:\u002F\u002Faccessonlinephp-alb-prod-alb-1248869520.us-west-2.elb.amazonaws.com\u002Ftune-in-season-24\u002F","alt":"Tune in to Access","author":"1","description":"","caption":"","name":"tune-in-season-24","status":"inherit","uploaded_to":0,"date":"2019-11-22 17:59:46","modified":"2019-11-22 17:59:57","menu_order":0,"mime_type":"image\u002Fjpeg","type":"image","subtype":"jpeg","icon":"https:\u002F\u002Faccessonlinephp-alb-prod-alb-1248869520.us-west-2.elb.amazonaws.com\u002Fwp\u002Fwp-includes\u002Fimages\u002Fmedia\u002Fdefault.png","width":370,"height":265,"sizes":{"1536x1536":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24.jpg","1536x1536-width":370,"1536x1536-height":265,"2048x2048":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24.jpg","2048x2048-width":370,"2048x2048-height":265,"xs":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24-16x9.jpg","xs-width":16,"xs-height":9,"md":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24-370x216.jpg","md-width":370,"md-height":216,"lg":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24.jpg","lg-width":370,"lg-height":265,"sm":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24-160x90.jpg","sm-width":160,"sm-height":90,"gt":"https:\u002F\u002Fd13tj18o1rb1yg.cloudfront.net\u002Fuploads\u002F2019\u002F11\u002Ftune-in-season-24-100x100.jpg","gt-width":100,"gt-height":100}},"open_in_new_window":"_self","link":"\u002Fstations\u002F"},{"acf_fc_layout":"news_boxes","show":true,"title":"See More: The Kardashians ","display_format":"grid","post_count":"4","post_types":["post","gallery","video","playlist"],"post_tag":{"term_id":4895,"name":"Kardashians","slug":"kardashians","term_group":0,"term_taxonomy_id":4895,"taxonomy":"post_tag","description":"","parent":0,"count":220,"filter":"raw","term_order":"0"}},{"acf_fc_layout":"news_boxes","show":true,"title":"Check It Out: Celebrity Weddings","display_format":"list","post_count":"4","post_types":["post","gallery","video","playlist"],"post_tag":{"term_id":24,"name":"Weddings","slug":"weddings","term_group":0,"term_taxonomy_id":24,"taxonomy":"post_tag","description":"","parent":0,"count":1043,"filter":"raw","term_order":"0"}}],"top_advertisement":""}}}</script></body></html>