CINXE.COM
Investigative Reporting on Health Care — ProPublica
<!DOCTYPE html> <html lang="en" class="no-js"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <!-- Meta Tags for Parse.ly --> <meta name="parsely-title" content="Investigative Reporting on Health Care" /> <meta name="parsely-link" content="https://v3-www.propublica.org/topics/health-care" /> <meta name="parsely-type" content="index" /> <meta name="parsely-image-url" content="https://assets.propublica.org/2017-pp-open-graph-1200x630.jpg" /> <meta name="parsely-pub-date" content="2019-12-09T23:12:43-05:00" /> <!-- Critical JS --> <script>(function(H){H.className=H.className.replace(/\bno-js\b/,'enhanced')})(document.documentElement)</script> <script>(function(win,undefined){win.PP=win.PP||{};win.PP.utils=win.PP.utils||{};var PP=win.PP;// loadJS: load a JS file asynchronously. Included from https://github.com/filamentgroup/loadJS/ function loadJS(src,cb){"use strict";var ref=window.document.getElementsByTagName("script")[0];var script=window.document.createElement("script");script.src=src;script.async=true;ref.parentNode.insertBefore(script,ref);if(cb&&typeof cb==="function"){script.onload=cb}return script}PP.utils.loadJS=loadJS;// cookie function from https://github.com/filamentgroup/cookie/ function cookie(name,value,days){// if value is undefined, get the cookie value if(value===undefined){var cookiestring="; "+window.document.cookie;var cookies=cookiestring.split("; "+name+"=");if(cookies.length===2){return cookies.pop().split(";").shift()}return null}else{var expires;var domain;// if value is a false boolean, we'll treat that as a delete if(value===false){days=-1}if(days){var date=new Date;date.setTime(date.getTime()+days*24*60*60*1000);expires="; expires="+date.toGMTString()}else{expires=""}if(location.hostname.endsWith(".propublica.org")){// Cookie set on www.propublica.org can be read on // projects.propublica.org (and vice versa) domain="; domain=.propublica.org"}else{// Cookie limited to current hostname domain=""}window.document.cookie=name+"="+value+expires+domain+"; path=/"}}// expose it PP.utils.cookie=cookie;// basic logging function function log(logLine){const logOn=new URLSearchParams(window.location.search).get("__pp-debug");if(logOn!==null){console.log(logLine)}}// expose it PP.utils.log=log;// generic event throttler using requestAnimationFrame function rafEvent(type,name,obj){obj=obj||win;var running=false;var func=function(){if(running){return}running=true;requestAnimationFrame(function(){obj.dispatchEvent(new CustomEvent(name));running=false})};obj.addEventListener(type,func)}PP.utils.rafEvent=rafEvent;PP.utils.rafEvent("resize","rafResize");PP.utils.rafEvent("scroll","rafScroll");// Create a series of breakpoints corresponding to the ones in css/config/_column-settings.scss // // Usage: // // 1. Check if breakpoint condition matches // if (PP.utils.aboveBreakpoint("lg").matches) { console.log("Is Desktop"); } // if (PP.utils.belowBreakpoint("lg").matches) { console.log("Is Mobile"); } // // 2. Listener that triggers when breakpoint condition changes // aboveBreakpoint("lg").addEventListener("change", function () { console.log("Mobile/Desktop breakpoint changed."); }); const breakpoints={xs:0,sm:36,md:48,lg:60,xl:78,xxl:88};PP.utils.breakpoints=breakpoints;function aboveBreakpoint(value){return window.matchMedia(`(min-width: ${PP.utils.breakpoints[value]}em)`)}function belowBreakpoint(value){return window.matchMedia(`(max-width: ${PP.utils.breakpoints[value]}em)`)}PP.utils.aboveBreakpoint=aboveBreakpoint;PP.utils.belowBreakpoint=belowBreakpoint})(this);;(function(){var undefined;var VERSION="4.17.5";var FUNC_ERROR_TEXT="Expected a function";var NAN=0/0;var nullTag="[object Null]",symbolTag="[object Symbol]",undefinedTag="[object Undefined]";var reTrim=/^\s+|\s+$/g;var reIsBadHex=/^[-+]0x[0-9a-f]+$/i;var reIsBinary=/^0b[01]+$/i;var reIsOctal=/^0o[0-7]+$/i;var freeParseInt=parseInt;var freeGlobal=typeof global=="object"&&global&&global.Object===Object&&global;var freeSelf=typeof self=="object"&&self&&self.Object===Object&&self;var root=freeGlobal||freeSelf||Function("return this")();var freeExports=typeof exports=="object"&&exports&&!exports.nodeType&&exports;var freeModule=freeExports&&typeof module=="object"&&module&&!module.nodeType&&module;var objectProto=Object.prototype;var hasOwnProperty=objectProto.hasOwnProperty;var nativeObjectToString=objectProto.toString;var Symbol=root.Symbol,symToStringTag=Symbol?Symbol.toStringTag:undefined;var nativeMax=Math.max,nativeMin=Math.min;var realNames={};function lodash(){}function baseGetTag(value){if(value==null){return value===undefined?undefinedTag:nullTag}return symToStringTag&&symToStringTag in Object(value)?getRawTag(value):objectToString(value)}function getRawTag(value){var isOwn=hasOwnProperty.call(value,symToStringTag),tag=value[symToStringTag];try{value[symToStringTag]=undefined;var unmasked=true}catch(e){}var result=nativeObjectToString.call(value);if(unmasked){if(isOwn){value[symToStringTag]=tag}else{delete value[symToStringTag]}}return result}function objectToString(value){return nativeObjectToString.call(value)}var now=function(){return root.Date.now()};function debounce(func,wait,options){var lastArgs,lastThis,maxWait,result,timerId,lastCallTime,lastInvokeTime=0,leading=false,maxing=false,trailing=true;if(typeof func!="function"){throw new TypeError(FUNC_ERROR_TEXT)}wait=toNumber(wait)||0;if(isObject(options)){leading=!!options.leading;maxing="maxWait"in options;maxWait=maxing?nativeMax(toNumber(options.maxWait)||0,wait):maxWait;trailing="trailing"in options?!!options.trailing:trailing}function invokeFunc(time){var args=lastArgs,thisArg=lastThis;lastArgs=lastThis=undefined;lastInvokeTime=time;result=func.apply(thisArg,args);return result}function leadingEdge(time){lastInvokeTime=time;timerId=setTimeout(timerExpired,wait);return leading?invokeFunc(time):result}function remainingWait(time){var timeSinceLastCall=time-lastCallTime,timeSinceLastInvoke=time-lastInvokeTime,timeWaiting=wait-timeSinceLastCall;return maxing?nativeMin(timeWaiting,maxWait-timeSinceLastInvoke):timeWaiting}function shouldInvoke(time){var timeSinceLastCall=time-lastCallTime,timeSinceLastInvoke=time-lastInvokeTime;return lastCallTime===undefined||timeSinceLastCall>=wait||timeSinceLastCall<0||maxing&&timeSinceLastInvoke>=maxWait}function timerExpired(){var time=now();if(shouldInvoke(time)){return trailingEdge(time)}timerId=setTimeout(timerExpired,remainingWait(time))}function trailingEdge(time){timerId=undefined;if(trailing&&lastArgs){return invokeFunc(time)}lastArgs=lastThis=undefined;return result}function cancel(){if(timerId!==undefined){clearTimeout(timerId)}lastInvokeTime=0;lastArgs=lastCallTime=lastThis=timerId=undefined}function flush(){return timerId===undefined?result:trailingEdge(now())}function debounced(){var time=now(),isInvoking=shouldInvoke(time);lastArgs=arguments;lastThis=this;lastCallTime=time;if(isInvoking){if(timerId===undefined){return leadingEdge(lastCallTime)}if(maxing){timerId=setTimeout(timerExpired,wait);return invokeFunc(lastCallTime)}}if(timerId===undefined){timerId=setTimeout(timerExpired,wait)}return result}debounced.cancel=cancel;debounced.flush=flush;return debounced}function throttle(func,wait,options){var leading=true,trailing=true;if(typeof func!="function"){throw new TypeError(FUNC_ERROR_TEXT)}if(isObject(options)){leading="leading"in options?!!options.leading:leading;trailing="trailing"in options?!!options.trailing:trailing}return debounce(func,wait,{leading:leading,maxWait:wait,trailing:trailing})}function isObject(value){var type=typeof value;return value!=null&&(type=="object"||type=="function")}function isObjectLike(value){return value!=null&&typeof value=="object"}function isSymbol(value){return typeof value=="symbol"||isObjectLike(value)&&baseGetTag(value)==symbolTag}function toNumber(value){if(typeof value=="number"){return value}if(isSymbol(value)){return NAN}if(isObject(value)){var other=typeof value.valueOf=="function"?value.valueOf():value;value=isObject(other)?other+"":other}if(typeof value!="string"){return value===0?value:+value}value=value.replace(reTrim,"");var isBinary=reIsBinary.test(value);return isBinary||reIsOctal.test(value)?freeParseInt(value.slice(2),isBinary?2:8):reIsBadHex.test(value)?NAN:+value}lodash.debounce=debounce;lodash.throttle=throttle;lodash.isObject=isObject;lodash.isObjectLike=isObjectLike;lodash.isSymbol=isSymbol;lodash.now=now;lodash.toNumber=toNumber;lodash.VERSION=VERSION;if(typeof define=="function"&&typeof define.amd=="object"&&define.amd){root._=lodash;define(function(){return lodash})}else if(freeModule){(freeModule.exports=lodash)._=lodash;freeExports._=lodash}else{root._=lodash}}).call(this);;/*! lazysizes - v5.3.2 */!function(e){var t=function(u,D,f){"use strict";var k,H;if(function(){var e;var t={lazyClass:"lazyload",loadedClass:"lazyloaded",loadingClass:"lazyloading",preloadClass:"lazypreload",errorClass:"lazyerror",autosizesClass:"lazyautosizes",fastLoadedClass:"ls-is-cached",iframeLoadMode:0,srcAttr:"data-src",srcsetAttr:"data-srcset",sizesAttr:"data-sizes",minSize:40,customMedia:{},init:true,expFactor:1.5,hFac:.8,loadMode:2,loadHidden:true,ricTimeout:0,throttleDelay:125};H=u.lazySizesConfig||u.lazysizesConfig||{};for(e in t){if(!(e in H)){H[e]=t[e]}}}(),!D||!D.getElementsByClassName){return{init:function(){},cfg:H,noSupport:true}}var O=D.documentElement,i=u.HTMLPictureElement,P="addEventListener",$="getAttribute",q=u[P].bind(u),I=u.setTimeout,U=u.requestAnimationFrame||I,o=u.requestIdleCallback,j=/^picture$/i,r=["load","error","lazyincluded","_lazyloaded"],a={},G=Array.prototype.forEach,J=function(e,t){if(!a[t]){a[t]=new RegExp("(\\s|^)"+t+"(\\s|$)")}return a[t].test(e[$]("class")||"")&&a[t]},K=function(e,t){if(!J(e,t)){e.setAttribute("class",(e[$]("class")||"").trim()+" "+t)}},Q=function(e,t){var a;if(a=J(e,t)){e.setAttribute("class",(e[$]("class")||"").replace(a," "))}},V=function(t,a,e){var i=e?P:"removeEventListener";if(e){V(t,a)}r.forEach(function(e){t[i](e,a)})},X=function(e,t,a,i,r){var n=D.createEvent("Event");if(!a){a={}}a.instance=k;n.initEvent(t,!i,!r);n.detail=a;e.dispatchEvent(n);return n},Y=function(e,t){var a;if(!i&&(a=u.picturefill||H.pf)){if(t&&t.src&&!e[$]("srcset")){e.setAttribute("srcset",t.src)}a({reevaluate:true,elements:[e]})}else if(t&&t.src){e.src=t.src}},Z=function(e,t){return(getComputedStyle(e,null)||{})[t]},s=function(e,t,a){a=a||e.offsetWidth;while(a<H.minSize&&t&&!e._lazysizesWidth){a=t.offsetWidth;t=t.parentNode}return a},ee=function(){var a,i;var t=[];var r=[];var n=t;var s=function(){var e=n;n=t.length?r:t;a=true;i=false;while(e.length){e.shift()()}a=false};var e=function(e,t){if(a&&!t){e.apply(this,arguments)}else{n.push(e);if(!i){i=true;(D.hidden?I:U)(s)}}};e._lsFlush=s;return e}(),te=function(a,e){return e?function(){ee(a)}:function(){var e=this;var t=arguments;ee(function(){a.apply(e,t)})}},ae=function(e){var a;var i=0;var r=H.throttleDelay;var n=H.ricTimeout;var t=function(){a=false;i=f.now();e()};var s=o&&n>49?function(){o(t,{timeout:n});if(n!==H.ricTimeout){n=H.ricTimeout}}:te(function(){I(t)},true);return function(e){var t;if(e=e===true){n=33}if(a){return}a=true;t=r-(f.now()-i);if(t<0){t=0}if(e||t<9){s()}else{I(s,t)}}},ie=function(e){var t,a;var i=99;var r=function(){t=null;e()};var n=function(){var e=f.now()-a;if(e<i){I(n,i-e)}else{(o||r)(r)}};return function(){a=f.now();if(!t){t=I(n,i)}}},e=function(){var v,m,c,h,e;var y,z,g,p,C,b,A;var n=/^img$/i;var d=/^iframe$/i;var E="onscroll"in u&&!/(gle|ing)bot/.test(navigator.userAgent);var _=0;var w=0;var M=0;var N=-1;var L=function(e){M--;if(!e||M<0||!e.target){M=0}};var x=function(e){if(A==null){A=Z(D.body,"visibility")=="hidden"}return A||!(Z(e.parentNode,"visibility")=="hidden"&&Z(e,"visibility")=="hidden")};var W=function(e,t){var a;var i=e;var r=x(e);g-=t;b+=t;p-=t;C+=t;while(r&&(i=i.offsetParent)&&i!=D.body&&i!=O){r=(Z(i,"opacity")||1)>0;if(r&&Z(i,"overflow")!="visible"){a=i.getBoundingClientRect();r=C>a.left&&p<a.right&&b>a.top-1&&g<a.bottom+1}}return r};var t=function(){var e,t,a,i,r,n,s,o,l,u,f,c;var d=k.elements;if((h=H.loadMode)&&M<8&&(e=d.length)){t=0;N++;for(;t<e;t++){if(!d[t]||d[t]._lazyRace){continue}if(!E||k.prematureUnveil&&k.prematureUnveil(d[t])){R(d[t]);continue}if(!(o=d[t][$]("data-expand"))||!(n=o*1)){n=w}if(!u){u=!H.expand||H.expand<1?O.clientHeight>500&&O.clientWidth>500?500:370:H.expand;k._defEx=u;f=u*H.expFactor;c=H.hFac;A=null;if(w<f&&M<1&&N>2&&h>2&&!D.hidden){w=f;N=0}else if(h>1&&N>1&&M<6){w=u}else{w=_}}if(l!==n){y=innerWidth+n*c;z=innerHeight+n;s=n*-1;l=n}a=d[t].getBoundingClientRect();if((b=a.bottom)>=s&&(g=a.top)<=z&&(C=a.right)>=s*c&&(p=a.left)<=y&&(b||C||p||g)&&(H.loadHidden||x(d[t]))&&(m&&M<3&&!o&&(h<3||N<4)||W(d[t],n))){R(d[t]);r=true;if(M>9){break}}else if(!r&&m&&!i&&M<4&&N<4&&h>2&&(v[0]||H.preloadAfterLoad)&&(v[0]||!o&&(b||C||p||g||d[t][$](H.sizesAttr)!="auto"))){i=v[0]||d[t]}}if(i&&!r){R(i)}}};var a=ae(t);var S=function(e){var t=e.target;if(t._lazyCache){delete t._lazyCache;return}L(e);K(t,H.loadedClass);Q(t,H.loadingClass);V(t,B);X(t,"lazyloaded")};var i=te(S);var B=function(e){i({target:e.target})};var T=function(e,t){var a=e.getAttribute("data-load-mode")||H.iframeLoadMode;if(a==0){e.contentWindow.location.replace(t)}else if(a==1){e.src=t}};var F=function(e){var t;var a=e[$](H.srcsetAttr);if(t=H.customMedia[e[$]("data-media")||e[$]("media")]){e.setAttribute("media",t)}if(a){e.setAttribute("srcset",a)}};var s=te(function(t,e,a,i,r){var n,s,o,l,u,f;if(!(u=X(t,"lazybeforeunveil",e)).defaultPrevented){if(i){if(a){K(t,H.autosizesClass)}else{t.setAttribute("sizes",i)}}s=t[$](H.srcsetAttr);n=t[$](H.srcAttr);if(r){o=t.parentNode;l=o&&j.test(o.nodeName||"")}f=e.firesLoad||"src"in t&&(s||n||l);u={target:t};K(t,H.loadingClass);if(f){clearTimeout(c);c=I(L,2500);V(t,B,true)}if(l){G.call(o.getElementsByTagName("source"),F)}if(s){t.setAttribute("srcset",s)}else if(n&&!l){if(d.test(t.nodeName)){T(t,n)}else{t.src=n}}if(r&&(s||l)){Y(t,{src:n})}}if(t._lazyRace){delete t._lazyRace}Q(t,H.lazyClass);ee(function(){var e=t.complete&&t.naturalWidth>1;if(!f||e){if(e){K(t,H.fastLoadedClass)}S(u);t._lazyCache=true;I(function(){if("_lazyCache"in t){delete t._lazyCache}},9)}if(t.loading=="lazy"){M--}},true)});var R=function(e){if(e._lazyRace){return}var t;var a=n.test(e.nodeName);var i=a&&(e[$](H.sizesAttr)||e[$]("sizes"));var r=i=="auto";if((r||!m)&&a&&(e[$]("src")||e.srcset)&&!e.complete&&!J(e,H.errorClass)&&J(e,H.lazyClass)){return}t=X(e,"lazyunveilread").detail;if(r){re.updateElem(e,true,e.offsetWidth)}e._lazyRace=true;M++;s(e,t,r,i,a)};var r=ie(function(){H.loadMode=3;a()});var o=function(){if(H.loadMode==3){H.loadMode=2}r()};var l=function(){if(m){return}if(f.now()-e<999){I(l,999);return}m=true;H.loadMode=3;a();q("scroll",o,true)};return{_:function(){e=f.now();k.elements=D.getElementsByClassName(H.lazyClass);v=D.getElementsByClassName(H.lazyClass+" "+H.preloadClass);q("scroll",a,true);q("resize",a,true);q("pageshow",function(e){if(e.persisted){var t=D.querySelectorAll("."+H.loadingClass);if(t.length&&t.forEach){U(function(){t.forEach(function(e){if(e.complete){R(e)}})})}}});if(u.MutationObserver){new MutationObserver(a).observe(O,{childList:true,subtree:true,attributes:true})}else{O[P]("DOMNodeInserted",a,true);O[P]("DOMAttrModified",a,true);setInterval(a,999)}q("hashchange",a,true);["focus","mouseover","click","load","transitionend","animationend"].forEach(function(e){D[P](e,a,true)});if(/d$|^c/.test(D.readyState)){l()}else{q("load",l);D[P]("DOMContentLoaded",a);I(l,2e4)}if(k.elements.length){t();ee._lsFlush()}else{a()}},checkElems:a,unveil:R,_aLSL:o}}(),re=function(){var a;var n=te(function(e,t,a,i){var r,n,s;e._lazysizesWidth=i;i+="px";e.setAttribute("sizes",i);if(j.test(t.nodeName||"")){r=t.getElementsByTagName("source");for(n=0,s=r.length;n<s;n++){r[n].setAttribute("sizes",i)}}if(!a.detail.dataAttr){Y(e,a.detail)}});var i=function(e,t,a){var i;var r=e.parentNode;if(r){a=s(e,r,a);i=X(e,"lazybeforesizes",{width:a,dataAttr:!!t});if(!i.defaultPrevented){a=i.detail.width;if(a&&a!==e._lazysizesWidth){n(e,r,i,a)}}}};var e=function(){var e;var t=a.length;if(t){e=0;for(;e<t;e++){i(a[e])}}};var t=ie(e);return{_:function(){a=D.getElementsByClassName(H.autosizesClass);q("resize",t)},checkElems:t,updateElem:i}}(),t=function(){if(!t.i&&D.getElementsByClassName){t.i=true;re._();e._()}};return I(function(){H.init&&t()}),k={cfg:H,autoSizer:re,loader:e,init:t,uP:Y,aC:K,rC:Q,hC:J,fire:X,gW:s,rAF:ee}}(e,e.document,Date);e.lazySizes=t,"object"==typeof module&&module.exports&&(module.exports=t)}("undefined"!=typeof window?window:{});;/*! lazysizes - v5.3.2 */!function(e,t){var a=function(){t(e.lazySizes),e.removeEventListener("lazyunveilread",a,!0)};t=t.bind(null,e,e.document),"object"==typeof module&&module.exports?t(require("lazysizes")):"function"==typeof define&&define.amd?define(["lazysizes"],t):e.lazySizes?a():e.addEventListener("lazyunveilread",a,!0)}(window,function(e,i,o){"use strict";var l,d,u={};function s(e,t,a){var n,r;u[e]||(n=i.createElement(t?"link":"script"),r=i.getElementsByTagName("script")[0],t?(n.rel="stylesheet",n.href=e):(n.onload=function(){n.onerror=null,n.onload=null,a()},n.onerror=n.onload,n.src=e),u[e]=!0,u[n.src||n.href]=!0,r.parentNode.insertBefore(n,r))}i.addEventListener&&(l=function(e,t){var a=i.createElement("img");a.onload=function(){a.onload=null,a.onerror=null,a=null,t()},a.onerror=a.onload,a.src=e,a&&a.complete&&a.onload&&a.onload()},addEventListener("lazybeforeunveil",function(e){var t,a,n;if(e.detail.instance==o&&!e.defaultPrevented){var r=e.target;if("none"==r.preload&&(r.preload=r.getAttribute("data-preload")||"auto"),null!=r.getAttribute("data-autoplay"))if(r.getAttribute("data-expand")&&!r.autoplay)try{r.play()}catch(e){}else requestAnimationFrame(function(){r.setAttribute("data-expand","-10"),o.aC(r,o.cfg.lazyClass)});(t=r.getAttribute("data-link"))&&s(t,!0),(t=r.getAttribute("data-script"))&&(e.detail.firesLoad=!0,s(t,null,function(){e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)})),(t=r.getAttribute("data-require"))&&(o.cfg.requireJs?o.cfg.requireJs([t]):s(t)),(a=r.getAttribute("data-bg"))&&(e.detail.firesLoad=!0,l(a,function(){r.style.backgroundImage="url("+(d.test(a)?JSON.stringify(a):a)+")",e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)})),(n=r.getAttribute("data-poster"))&&(e.detail.firesLoad=!0,l(n,function(){r.poster=n,e.detail.firesLoad=!1,o.fire(r,"_lazyloaded",{},!0,!0)}))}},!(d=/\(|\)|\s|'/)))}); //# sourceMappingURL=initial.js.map </script> <script> window.dataLayer = window.dataLayer || []; window.dataLayer.push({ 'contentType': 'Item', // updated taxonomy TK 'publicationDate': '', 'articleTopic': '', 'articleTitle': '', 'authorName': '', 'seriesName': '', 'contentRegion': '', 'contentLanguage': 'en', 'craftId' : '', 'articleVersion' : '', 'contentLocation' : '', 'storyType': '', 'impact': "" }); </script> <!-- PRECONNECT --> <link href="https://assets.propublica.org" rel="preconnect"> <link href="https://assets.propublica.org" rel="dns-prefetch"> <link href="https://img.assets-c3.propublica.org" rel="dns-prefetch"> <link href="https://img.assets-d.propublica.org" rel="dns-prefetch"> <!-- STYLES --> <link rel="stylesheet" href="https://assets.propublica.org/static/prod/v5/css/main.b80cd9a9.css"> <!-- OTHER --> <link rel="icon" href="https://assets.propublica.org/static/prod/v5/images/favicon.ico"> <link rel="icon" href="https://assets.propublica.org/static/prod/v5/images/icon.min.svg" type="image/svg+xml"> <link rel="apple-touch-icon" href="https://assets.propublica.org/static/prod/v5/images/apple-touch-icon-180x180.png"> <!--mastodon--> <link rel="me" href="https://newsie.social/@ProPublica" /> <meta name="fediverse:creator" content="@propublica@newsie.social" /> <title>Investigative Reporting on Health Care — ProPublica</title><meta name="description" content="Read the latest health care investigations from ProPublica."> <meta name="referrer" content="no-referrer-when-downgrade"> <meta name="robots" content="all"> <meta content="13320939444" property="fb:profile_id"> <meta content="229862657130557" property="fb:app_id"> <meta content="en_US" property="og:locale"> <meta content="ProPublica" property="og:site_name"> <meta content="website" property="og:type"> <meta content="https://www.propublica.org/topics/health-care" property="og:url"> <meta content="Investigative Reporting on Health Care from ProPublica." property="og:title"> <meta content="Read the latest health care investigations from ProPublica." property="og:description"> <meta content="https://assets.propublica.org/2017-pp-open-graph-1200x630.jpg" property="og:image"> <meta content="https://vimeo.com/propublica" property="og:see_also"> <meta content="https://www.pinterest.com/propublica" property="og:see_also"> <meta content="https://www.instagram.com/propublica" property="og:see_also"> <meta content="https://www.linkedin.com/company/propublica/" property="og:see_also"> <meta content="https://github.com/propublica" property="og:see_also"> <meta content="https://www.youtube.com/user/propublica" property="og:see_also"> <meta content="https://en.wikipedia.org/wiki/ProPublica" property="og:see_also"> <meta content="https://www.facebook.com/propublica/" property="og:see_also"> <meta content="https://twitter.com/propublica" property="og:see_also"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:site" content="@propublica"> <meta name="twitter:creator" content="@propublica"> <meta name="twitter:title" content="Investigative Reporting on Health Care from ProPublica."> <meta name="twitter:description" content="Read the latest health care investigations from ProPublica."> <meta name="twitter:image" content="https://assets.propublica.org/2017-pp-open-graph-1200x630.jpg"> <link href="https://www.propublica.org/topics/health-care" rel="canonical"> <link href="https://www.propublica.org" rel="home"> <link type="text/plain" href="https://www.propublica.org/humans.txt" rel="author"> <link href="https://www.propublica.org/topics/health-care/p2" rel="next"></head> <body id="www-propublica-org" class="entry-type-topic-listing bg-white text-dark neutral-cool accent-blue" data-pp-location="v5 body"> <style> .site-header__banner { font-family: Graphik, sans-serif; font-size: 13px; line-height: 1.2; position: relative; z-index: 100; } @media screen and (min-width: 40em) { .site-header__banner { font-size: 15px; } } a.site-header__banner-link { align-items: center; background: linear-gradient( to right, #e98406, #cf176d, #2074df ); color: white; display: flex; justify-content: center; overflow: hidden; padding: 0.5em 1em; text-decoration: none; transition: unset; } .site-header__banner-link > * + * { margin-left: 8px; } .site-header__banner-cta { background: #da352b; border-radius: 0.2em; color: white; display: inline; font-size: 0.85em; font-weight: 700; padding: 0.5em 1em; text-transform: uppercase; text-align: center; /* see here for smooth box-shadow calculation: https://shadows.brumm.af */ /* box-shadow: 0 1.3px 1.3px rgba(0, 0, 0, 0.07), 0 4.5px 4.5px rgba(0, 0, 0, 0.042), 0 20px 20px rgba(0, 0, 0, 0.028) ; */ } /* .site-header__banner-copy { display: none; } @media screen and (min-width: 50em) { .site-header__banner-copy { display: block; } } */ /* .site-header__banner-link:focus .site-header__banner-cta, .site-header__banner-link:hover .site-header__banner-cta { background: #9b0000; color: white; } */ .site-header__banner-title { padding-right: 0.25em; } @media screen and (min-width: 60em) { .opener--grid { /* Tweak full height to account for promo bar height */ grid-template-rows: minmax(calc(100vh - 2.25rem), auto) auto auto; } } @media screen and (min-width: 60em) { .opener--grid .opener__art.opener__art--inset, .opener--grid .opener__art.opener__art--inset > img, .opener--grid .opener__art.opener__art--inset > video { /* Tweak full height to account for promo bar height */ max-height: calc( 100vh - 2.25rem - 2 * var(--opener-page-margins)); } } </style> <div class="site-header__banner" data-pp-location="promo-bar"> <a class="site-header__banner-link" href="https://give.propublica.org/give/346423/#!/donation/checkout?c_src=PB&c_src2=www"> <span class="site-header__banner-copy"> <strong class="site-header__banner-title">PROPUBLICA</strong> The news is chaos. The truth is not. Help ProPublica dig up the facts. </span> </br> <span class="site-header__banner-cta">DONATE</span> </a> </div> <!-- Load SiteHeader variant based on variable --> <script type="application/json" class="svelte-config"> {"componentName":"SiteHeader","props":{"type":"compact","fixedNavScrollStart":".opener"},"contextArray":[]} </script> <a class="site-header-skip-link a11y a11y-focusable--absolute svelte-5qrmpy" href="#main" data-svelte-h="svelte-19fmzuu">Skip to content</a> <div class="site-header--compact svelte-5qrmpy" data-pp-location="svelte-siteheader"><div class="variant-compact__inner-wrap svelte-5qrmpy variant-compact__inner-wrap--has-border"><div class="variant-compact__section-menu svelte-5qrmpy"> <button class="button shape--round-rect button-is-icon-only svelte-1qpwxqa" data-link="Menu" data-pp-skip="false" data-testid="compact-menu-button" style="--button-bg-color: transparent; --button-border: none; --button-color: var(--site-header-color-button-text, var(--color-neutral-80)); --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Menu</title><path fill-rule="evenodd" clip-rule="evenodd" d="M2 12C2 11.4477 2.44772 11 3 11H21C21.5523 11 22 11.4477 22 12C22 12.5523 21.5523 13 21 13H3C2.44772 13 2 12.5523 2 12Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M2 6C2 5.44772 2.44772 5 3 5H21C21.5523 5 22 5.44772 22 6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6Z" fill="currentColor"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M2 18C2 17.4477 2.44772 17 3 17H21C21.5523 17 22 17.4477 22 18C22 18.5523 21.5523 19 21 19H3C2.44772 19 2 18.5523 2 18Z" fill="currentColor"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Menu</span> </button></div> <a class="variant-compact__wordmark svelte-5qrmpy" href="https://www.propublica.org"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 574.24 75" fill="currentColor"><title>ProPublica</title><path d="M66.4,13.48,66,14.91l6.23,11.45,1.15.47L75,26.29V75H50.95A41.2,41.2,0,0,0,62.13,46.88a40.61,40.61,0,0,0-3.39-16.26,45.17,45.17,0,0,1,7.79-4.95l1.69-.2.14-.41L65,18.83H64.5l-.88,1.29c-2.91,1.9-4.67,2.3-8.54,3.79A41.35,41.35,0,0,0,20.46,5.42,39.87,39.87,0,0,0,0,10.91V0H75V8.81ZM57.32,47A37.54,37.54,0,0,1,44.65,75H0V16A37,37,0,0,1,57.32,47ZM43.7,37.06c0-8.13-6-12-17.75-12H7.18v3.66l4.2.95V62.2l-4.2.95v3.73H27.85V63.14l-7.18-.95V50.14h5.15C37.26,50.14,43.7,45.53,43.7,37.06Zm-9.76.27c0,5.15-2.78,8.33-7.25,8.33h-6V29.47H27C31.37,29.47,33.94,32.32,33.94,37.33Z"></path><path d="M116.53,60.07l9.15,1.08v4.2H99.39v-4.2l5.28-1.36v-44l-5.28-1.36V10.41H123c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.09-11.45h-7.25Z"></path><path d="M200.74,61.15v4.2H185.9l-16-20.6h-2.51v15l5.28,1.36v4.2H150.27v-4.2l5.28-1.36V23.35l-5-1.36V17.93H175.2c10.5,0,17.55,5.08,17.55,12.67,0,8.4-5.76,12.2-11,13.55l13.48,15.79ZM167.41,39.74h4.47c5.76,0,8.81-3.18,8.81-8.88,0-5.35-2.85-7.93-8.81-7.93h-4.47Z"></path><path d="M199.59,41.64c0-14.77,9.82-24.73,25.68-24.73s25.68,10,25.68,24.73-9.82,24.73-25.68,24.73S199.59,56.48,199.59,41.64Zm38.89,0c0-9.69-3.25-19.17-13.21-19.17S212.05,32,212.05,41.64s3.25,19.17,13.21,19.17S238.48,51.33,238.48,41.64Z"></path><path d="M270.79,60.07l9.15,1.08v4.2H253.31v-4.2l5.62-1.36v-44l-5.62-1.36V10.41h24c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.1-11.45h-7.25Z"></path><path d="M354.26,22l-4.95,1.36V47c0,12.87-7.79,19.38-20.05,19.38-13.62,0-20.73-7.86-20.73-20v-23L303.58,22V17.93h22V22l-5.08,1.36V47.74c0,7.25,4.34,12.06,11.45,12.06,6.84,0,11.25-4.47,11.25-11.31V23.35L338.14,22V17.93h16.12Z"></path><path d="M403.85,52.21c0,8.88-7.11,13.14-22,13.14H357.58v-4.2l5.56-1.36V23.35L358.26,22V17.93h23.92c12.6,0,19.51,3.79,19.51,11.72,0,6.17-4.06,9.08-10.91,9.89v.27C399.31,40.76,403.85,45.1,403.85,52.21ZM375,38.32h5.76c6.1,0,9-2.78,9-7.79,0-5.22-3.12-7.59-9-7.59H375Zm16.8,13.41c0-5.62-3.79-8.67-11.25-8.67H375V60.34h6.64C388.07,60.34,391.79,57.29,391.79,51.74Z"></path><path d="M451.07,48.62l-4.4,16.73H408v-4.2l5.28-1.36V23.35L407.65,22V17.93h22.76V22l-5.28,1.36v37l14.16-.81L447,47.26Z"></path><path d="M475.4,61.15v4.2H453v-4.2l5.28-1.36V23.35L453,22V17.93H475.4V22l-5.28,1.36V59.8Z"></path><path d="M478,41.78c0-15.85,12.13-24.86,27-24.86a35.6,35.6,0,0,1,18.29,5.15l-2,13.21h-4.2l-1.69-9.08a13.23,13.23,0,0,0-10.09-4.13c-9.15,0-14.7,6.57-14.7,18.22,0,13.21,6.84,19.31,15.24,19.31,6.17,0,10.23-3.39,13.41-9.55l4.27,2c-4.27,10-11.65,14.36-21.07,14.36C488.4,66.37,478,56.48,478,41.78Z"></path><path d="M574.24,61.15v4.2H551.48v-4.2L557,60l-2.85-8.13h-16.6l-3.12,8.2,5.42,1.15-.07,4.2-16.53-.07v-4.2l4.27-1.08,14.9-37.33-4-1.29V17.93h13.69L569.3,60Zm-27.57-31-.47-1.56-.47,1.56-6.23,16.73h12.94Z"></path></svg></a> <a data-pp-view="" href="https://give.propublica.org/give/346423/#!/donation/checkout?c_src=UpRed" class="button shape--round-rect svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--red-50); --button-border: none; --button-color: var(--white); --button-font-size: var(--scale-2); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale2); --icon-size: 1em;"> <span class="text font--serif svelte-1qpwxqa">Donate</span> </a></div></div> <div class="site-header-overlay svelte-5qrmpy" data-testid="overlay" data-pp-location="svelte-siteheader-overlay" style="opacity: 0; pointer-events: none;"><div class="variant-overlay__top-inner-wrap svelte-5qrmpy"><div class="variant-overlay__section-menu svelte-5qrmpy"> <button class="button shape--round-rect button-is-icon-only svelte-1qpwxqa" data-link="Menu" data-pp-skip="false" data-testid="close-overlay-button" style="--button-bg-color: transparent; --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: var(--scale0);"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>Close</title><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Close</span> </button></div> <a class="variant-overlay__wordmark svelte-5qrmpy" href="https://www.propublica.org"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 574.24 75" fill="currentColor"><title>ProPublica</title><path d="M66.4,13.48,66,14.91l6.23,11.45,1.15.47L75,26.29V75H50.95A41.2,41.2,0,0,0,62.13,46.88a40.61,40.61,0,0,0-3.39-16.26,45.17,45.17,0,0,1,7.79-4.95l1.69-.2.14-.41L65,18.83H64.5l-.88,1.29c-2.91,1.9-4.67,2.3-8.54,3.79A41.35,41.35,0,0,0,20.46,5.42,39.87,39.87,0,0,0,0,10.91V0H75V8.81ZM57.32,47A37.54,37.54,0,0,1,44.65,75H0V16A37,37,0,0,1,57.32,47ZM43.7,37.06c0-8.13-6-12-17.75-12H7.18v3.66l4.2.95V62.2l-4.2.95v3.73H27.85V63.14l-7.18-.95V50.14h5.15C37.26,50.14,43.7,45.53,43.7,37.06Zm-9.76.27c0,5.15-2.78,8.33-7.25,8.33h-6V29.47H27C31.37,29.47,33.94,32.32,33.94,37.33Z"></path><path d="M116.53,60.07l9.15,1.08v4.2H99.39v-4.2l5.28-1.36v-44l-5.28-1.36V10.41H123c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.09-11.45h-7.25Z"></path><path d="M200.74,61.15v4.2H185.9l-16-20.6h-2.51v15l5.28,1.36v4.2H150.27v-4.2l5.28-1.36V23.35l-5-1.36V17.93H175.2c10.5,0,17.55,5.08,17.55,12.67,0,8.4-5.76,12.2-11,13.55l13.48,15.79ZM167.41,39.74h4.47c5.76,0,8.81-3.18,8.81-8.88,0-5.35-2.85-7.93-8.81-7.93h-4.47Z"></path><path d="M199.59,41.64c0-14.77,9.82-24.73,25.68-24.73s25.68,10,25.68,24.73-9.82,24.73-25.68,24.73S199.59,56.48,199.59,41.64Zm38.89,0c0-9.69-3.25-19.17-13.21-19.17S212.05,32,212.05,41.64s3.25,19.17,13.21,19.17S238.48,51.33,238.48,41.64Z"></path><path d="M270.79,60.07l9.15,1.08v4.2H253.31v-4.2l5.62-1.36v-44l-5.62-1.36V10.41h24c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.1-11.45h-7.25Z"></path><path d="M354.26,22l-4.95,1.36V47c0,12.87-7.79,19.38-20.05,19.38-13.62,0-20.73-7.86-20.73-20v-23L303.58,22V17.93h22V22l-5.08,1.36V47.74c0,7.25,4.34,12.06,11.45,12.06,6.84,0,11.25-4.47,11.25-11.31V23.35L338.14,22V17.93h16.12Z"></path><path d="M403.85,52.21c0,8.88-7.11,13.14-22,13.14H357.58v-4.2l5.56-1.36V23.35L358.26,22V17.93h23.92c12.6,0,19.51,3.79,19.51,11.72,0,6.17-4.06,9.08-10.91,9.89v.27C399.31,40.76,403.85,45.1,403.85,52.21ZM375,38.32h5.76c6.1,0,9-2.78,9-7.79,0-5.22-3.12-7.59-9-7.59H375Zm16.8,13.41c0-5.62-3.79-8.67-11.25-8.67H375V60.34h6.64C388.07,60.34,391.79,57.29,391.79,51.74Z"></path><path d="M451.07,48.62l-4.4,16.73H408v-4.2l5.28-1.36V23.35L407.65,22V17.93h22.76V22l-5.28,1.36v37l14.16-.81L447,47.26Z"></path><path d="M475.4,61.15v4.2H453v-4.2l5.28-1.36V23.35L453,22V17.93H475.4V22l-5.28,1.36V59.8Z"></path><path d="M478,41.78c0-15.85,12.13-24.86,27-24.86a35.6,35.6,0,0,1,18.29,5.15l-2,13.21h-4.2l-1.69-9.08a13.23,13.23,0,0,0-10.09-4.13c-9.15,0-14.7,6.57-14.7,18.22,0,13.21,6.84,19.31,15.24,19.31,6.17,0,10.23-3.39,13.41-9.55l4.27,2c-4.27,10-11.65,14.36-21.07,14.36C488.4,66.37,478,56.48,478,41.78Z"></path><path d="M574.24,61.15v4.2H551.48v-4.2L557,60l-2.85-8.13h-16.6l-3.12,8.2,5.42,1.15-.07,4.2-16.53-.07v-4.2l4.27-1.08,14.9-37.33-4-1.29V17.93h13.69L569.3,60Zm-27.57-31-.47-1.56-.47,1.56-6.23,16.73h12.94Z"></path></svg></a> <a data-pp-view="" href="https://give.propublica.org/give/346423/#!/donation/checkout?c_src=UpRed" class="button shape--round-rect svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--red-50); --button-border: none; --button-color: var(--white); --button-font-size: var(--scale-2); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale2); --icon-size: 1em;"> <span class="text font--serif svelte-1qpwxqa">Donate</span> </a></div> <div class="site-header-overlay__wrap-expanded svelte-5qrmpy" data-pp-location="masthead wrap-expanded"> <div class="site-header__section-search svelte-5qrmpy"><form class="search-form svelte-5qrmpy" role="search" action="https://propublica.org/search" method="get"><label class="a11y hed-form hed-site-search" for="search-form__input-text" data-svelte-h="svelte-zdbb25">Search ProPublica:</label> <div class="search-form__input-wrap svelte-5qrmpy"><input placeholder="Search" id="search-form__input-text" class="search-form__input-text svelte-5qrmpy" type="search" value="" name="qss"> <button class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale4); --icon-size: var(--scale0);"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>Search</title><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Search</span> </button></div></form></div> <nav class="site-header__section-links-expanded svelte-5qrmpy" aria-label="Expanded Links" hidden><div class="site-header__links site-header__links-topics svelte-5qrmpy"><strong class="site-header__links-heading svelte-5qrmpy">Topics </strong> <ul class="site-header__links-list svelte-5qrmpy"><li class="svelte-5qrmpy"><span class="icon svelte-5qrmpy"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" fill="currentColor"><title>Racial Justice</title><path d="M15,12.23v0L14,4.55l.24.06.11,0a.38.38,0,0,0,.36-.27.38.38,0,0,0-.25-.47c-.19-.06-.39-.1-.59-.15a.38.38,0,0,0-.29-.26.37.37,0,0,0-.28.11c-.6-.15-1.21-.28-1.82-.39V1.29A1.29,1.29,0,0,0,10.17,0,1.32,1.32,0,0,0,9.11.57a1.37,1.37,0,0,0-2,.26A1.3,1.3,0,0,0,6.23.51a1.32,1.32,0,0,0-1.12.66A1.13,1.13,0,0,0,4.46,1,1.19,1.19,0,0,0,3.27,2.14V3.25c-.53.1-1,.21-1.57.34a.37.37,0,0,0-.28-.11.38.38,0,0,0-.29.26c-.19,0-.39.09-.58.15a.38.38,0,0,0-.25.47.38.38,0,0,0,.36.27l.11,0L1,4.55,0,12.21v0A2.67,2.67,0,0,0,2.6,15a2.67,2.67,0,0,0,2.57-2.73h0a.19.19,0,0,0,0-.07.13.13,0,0,0,0-.06h0L2,4.27c.41-.1.82-.18,1.24-.25v.37a4,4,0,0,0-.12,1A3.93,3.93,0,0,0,5.21,8.81v1.77a.38.38,0,1,0,.75,0v-2a.39.39,0,0,0-.21-.34A3.19,3.19,0,0,1,3.9,5.39a1.18,1.18,0,0,0,.56.16,1.2,1.2,0,0,0,.8-.32,1.35,1.35,0,0,0,1,.43,1.29,1.29,0,0,0,1-.44,1.29,1.29,0,0,0,.6.32,3.58,3.58,0,0,0-.89.85.37.37,0,0,0,.3.59.39.39,0,0,0,.31-.15A2.81,2.81,0,0,1,9.76,5.61a.38.38,0,0,0,0-.75H8.14a.59.59,0,0,1-.58-.59v-.5h2.82a.73.73,0,0,1,.75.71v.89A3.19,3.19,0,0,1,9.28,8.24a.39.39,0,0,0-.21.34v2a.38.38,0,1,0,.75,0V8.81a3.93,3.93,0,0,0,2.06-3.44V4.48A1.33,1.33,0,0,0,11.8,4c.4.07.79.15,1.18.24L9.87,12.11h0a.13.13,0,0,0,0,.06.25.25,0,0,0,0,.07h0A2.67,2.67,0,0,0,12.41,15,2.67,2.67,0,0,0,15,12.25ZM1.65,5.35l2.59,6.53H.83Zm1,8.9A1.88,1.88,0,0,1,.81,12.63H4.39A1.88,1.88,0,0,1,2.6,14.25ZM4.9,4.36a.44.44,0,0,1-.44.44A.44.44,0,0,1,4,4.36V2.14a.44.44,0,0,1,.44-.44.44.44,0,0,1,.44.44Zm1.91,0a.58.58,0,1,1-1.16,0V2.14a.7.7,0,0,0,0-.14.4.4,0,0,0,0-.15.58.58,0,1,1,1.16,0Zm.73-2.58a.43.43,0,0,0,0-.11.65.65,0,1,1,1.29,0V3H7.56V1.85S7.54,1.78,7.54,1.74ZM9.6,3V1.63s0,0,0-.06,0,0,0,0V1.29a.57.57,0,0,1,1.14,0V3.07a1.49,1.49,0,0,0-.36,0Zm4.58,8.86H10.77l2.59-6.53Zm-1.77,2.37a1.89,1.89,0,0,1-1.79-1.62H14.2A1.88,1.88,0,0,1,12.41,14.25Z"></path></svg> </span> <a class="site-header__link svelte-5qrmpy" data-link="Racial Justice" href="https://www.propublica.org/topics/racial-justice">Racial Justice</a> </li><li class="svelte-5qrmpy"><span class="icon svelte-5qrmpy"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" fill="currentColor"><title>Healthcare</title><path d="M6.77,4.81H6.28a10,10,0,0,1-4.19-.92L.44,3a.67.67,0,0,1-.36-.67.7.7,0,0,1,.49-.6L4.38.65a1.14,1.14,0,0,1,1,.19,1.08,1.08,0,0,1,.42.86.56.56,0,0,0,.54.56h.48a.37.37,0,0,1,.37.37A.38.38,0,0,1,6.77,3H6.29A1.3,1.3,0,0,1,5,1.7a.31.31,0,0,0-.13-.26.31.31,0,0,0-.29-.06L.92,2.43l1.5.79a9.35,9.35,0,0,0,3.86.84h.49a.38.38,0,0,1,0,.75Z"></path><path d="M8.76,4.81H8.29a.38.38,0,1,1,0-.75h.47a9.24,9.24,0,0,0,3.87-.85l1.5-.78L10.45,1.38a.3.3,0,0,0-.27.05.35.35,0,0,0-.13.27A1.3,1.3,0,0,1,8.77,3H8.29a.38.38,0,0,1-.38-.38.37.37,0,0,1,.38-.37h.47A.56.56,0,0,0,9.3,1.7,1.1,1.1,0,0,1,9.72.84a1.08,1.08,0,0,1,.93-.19l3.82,1.1A.7.7,0,0,1,14.61,3L13,3.88A9.92,9.92,0,0,1,8.76,4.81Z"></path><path d="M7.52,13.82a.34.34,0,0,1-.23-.08L6,12.76a1.72,1.72,0,0,1-.61-1.52,1.63,1.63,0,0,1,.77-1.33L9.61,8A.88.88,0,0,0,10,7.33a1.11,1.11,0,0,0-.28-.91l-.33-.29a.38.38,0,1,1,.51-.55l.32.29a1.8,1.8,0,0,1,.52,1.55A1.59,1.59,0,0,1,10,8.65L6.56,10.56a.89.89,0,0,0-.39.74,1,1,0,0,0,.32.87l1.26,1a.39.39,0,0,1,.07.53A.41.41,0,0,1,7.52,13.82Z"></path><path d="M7.53,13.82a.41.41,0,0,1-.3-.14.39.39,0,0,1,.07-.53l1.26-1a1,1,0,0,0,.32-.87.89.89,0,0,0-.39-.74L5.07,8.65a1.62,1.62,0,0,1-.76-1.24,1.82,1.82,0,0,1,.51-1.54l.32-.29a.38.38,0,0,1,.51.55l-.33.3a1.08,1.08,0,0,0-.27.89A.92.92,0,0,0,5.44,8L8.86,9.91a1.63,1.63,0,0,1,.77,1.33A1.72,1.72,0,0,1,9,12.76l-1.26,1A.34.34,0,0,1,7.53,13.82Z"></path><path d="M7.52,15a.37.37,0,0,1-.37-.38V.44A.37.37,0,0,1,7.52.06.38.38,0,0,1,7.9.44V14.57A.38.38,0,0,1,7.52,15Z"></path></svg> </span> <a class="site-header__link svelte-5qrmpy" data-link="Health Care" href="https://www.propublica.org/topics/health-care">Health Care</a> </li><li class="svelte-5qrmpy"><span class="icon svelte-5qrmpy"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" fill="currentColor"><title>Politics</title><path d="M12.54,14.89h-10a.38.38,0,0,1-.38-.37V11a.38.38,0,0,1,.38-.38h10a.38.38,0,0,1,.38.38v3.55A.38.38,0,0,1,12.54,14.89Zm-9.66-.75h9.29v-2.8H2.88Z"></path><path d="M14.52,14.89H.53a.38.38,0,0,1,0-.75h14a.38.38,0,0,1,0,.75Z"></path><path d="M11.71,11.35H3.34A.37.37,0,0,1,3,11V8.7a.38.38,0,0,1,.37-.38h8.37a.37.37,0,0,1,.37.38V11A.36.36,0,0,1,11.71,11.35Zm-8-.75h7.61V9.07H3.72Z"></path><path d="M8.36,5.11A.38.38,0,0,1,8,4.73V3.42H7.07V4.73a.38.38,0,1,1-.75,0V3a.37.37,0,0,1,.37-.37H8.36A.37.37,0,0,1,8.73,3V4.73A.38.38,0,0,1,8.36,5.11Z"></path><path d="M3.84,13.79a.38.38,0,0,1-.38-.37V12.25a.38.38,0,0,1,.75,0v1.17A.38.38,0,0,1,3.84,13.79Z"></path><path d="M5.31,13.79a.38.38,0,0,1-.37-.37V12.25a.38.38,0,0,1,.75,0v1.17A.38.38,0,0,1,5.31,13.79Z"></path><path d="M6.79,13.79a.37.37,0,0,1-.37-.37V12.25a.36.36,0,0,1,.37-.37.37.37,0,0,1,.38.37v1.17A.38.38,0,0,1,6.79,13.79Z"></path><path d="M8.27,13.79a.38.38,0,0,1-.38-.37V12.25a.37.37,0,0,1,.38-.37.36.36,0,0,1,.37.37v1.17A.37.37,0,0,1,8.27,13.79Z"></path><path d="M9.75,13.79a.38.38,0,0,1-.38-.37V12.25a.38.38,0,0,1,.75,0v1.17A.38.38,0,0,1,9.75,13.79Z"></path><path d="M11.22,13.79a.38.38,0,0,1-.37-.37V12.25a.38.38,0,0,1,.75,0v1.17A.38.38,0,0,1,11.22,13.79Z"></path><path d="M7.53,3.42A.37.37,0,0,1,7.16,3V.48A.37.37,0,0,1,7.53.11a.38.38,0,0,1,.38.37V3A.38.38,0,0,1,7.53,3.42Z"></path><path d="M11.72,9.06a.38.38,0,0,1-.38-.37A3.74,3.74,0,0,0,7.53,5,3.74,3.74,0,0,0,3.72,8.69a.38.38,0,0,1-.75,0A4.49,4.49,0,0,1,7.53,4.28a4.49,4.49,0,0,1,4.56,4.41A.37.37,0,0,1,11.72,9.06Z"></path></svg> </span> <a class="site-header__link svelte-5qrmpy" data-link="Politics" href="https://www.propublica.org/topics/politics">Politics</a> </li><li class="svelte-5qrmpy"><span class="icon svelte-5qrmpy"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 15 15" fill="currentColor"><title>Criminal Justice</title><path d="M13.48,4h-.11A20.22,20.22,0,0,0,1.76,4a.38.38,0,0,1-.47-.26.37.37,0,0,1,.25-.46,21,21,0,0,1,12.05,0,.37.37,0,0,1-.11.73Z"></path><path d="M10.53,15h-6a.38.38,0,1,1,0-.75h6a.38.38,0,0,1,0,.75Z"></path><path d="M7.5,15a.37.37,0,0,1-.37-.38V.42A.37.37,0,0,1,7.5,0a.38.38,0,0,1,.38.38V14.6A.38.38,0,0,1,7.5,15Z"></path><path d="M5.39,9.89H.46a.37.37,0,0,1-.31-.16.36.36,0,0,1,0-.35L2.57,3.16a.38.38,0,0,1,.35-.24h0a.38.38,0,0,1,.35.23L5.74,9.38a.36.36,0,0,1,0,.35A.37.37,0,0,1,5.39,9.89ZM1,9.14H4.84L2.92,4.31Z"></path><path d="M14.6,9.89H9.67a.37.37,0,0,1-.31-.16.36.36,0,0,1,0-.35l2.46-6.22a.38.38,0,0,1,.35-.24h0a.37.37,0,0,1,.35.23L15,9.38a.36.36,0,0,1,0,.35A.37.37,0,0,1,14.6,9.89Zm-4.38-.75h3.83L12.13,4.31Z"></path><path d="M2.92,11.75A3,3,0,0,1,.1,9.62a.36.36,0,0,1,.06-.33.38.38,0,0,1,.3-.15H5.39a.38.38,0,0,1,.3.15.39.39,0,0,1,.06.33A3,3,0,0,1,2.92,11.75ZM1,9.89A2.21,2.21,0,0,0,2.92,11,2.22,2.22,0,0,0,4.83,9.89Z"></path><path d="M12.13,11.75A3,3,0,0,1,9.3,9.62a.39.39,0,0,1,.06-.33.38.38,0,0,1,.3-.15h4.93a.38.38,0,0,1,.3.15.36.36,0,0,1,.06.33A3,3,0,0,1,12.13,11.75ZM10.22,9.89a2.19,2.19,0,0,0,3.81,0Z"></path></svg> </span> <a class="site-header__link svelte-5qrmpy" data-link="Criminal Justice" href="https://www.propublica.org/topics/criminal-justice">Criminal Justice</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="more…" href="https://www.propublica.org/topics/">more…</a> </li></ul> </div><div class="site-header__links site-header__links-region svelte-5qrmpy"><strong class="site-header__links-heading svelte-5qrmpy">Browse by Place </strong> <ul class="site-header__links-list svelte-5qrmpy"><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Midwest" href="https://www.propublica.org/midwest/">Midwest</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Northwest" href="https://www.propublica.org/northwest/">Northwest</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="South" href="https://www.propublica.org/south/">South</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Southwest" href="https://www.propublica.org/southwest/">Southwest</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Texas" href="https://www.propublica.org/texas/">Texas</a> </li></ul> </div><div class="site-header__links site-header__links-type svelte-5qrmpy"><strong class="site-header__links-heading svelte-5qrmpy">Type </strong> <ul class="site-header__links-list svelte-5qrmpy"><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Graphics & Data" href="https://www.propublica.org/newsapps/">Graphics & Data</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Newsletters" href="https://www.propublica.org/newsletters/">Newsletters</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Series" href="https://www.propublica.org/series/">Series</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Videos" href="https://www.propublica.org/video/">Videos</a> </li></ul> </div><div class="site-header__links site-header__links-special svelte-5qrmpy"> <ul class="site-header__links-list svelte-5qrmpy"><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Local Reporting Network" href="https://www.propublica.org/local-reporting-network/">Local Reporting Network</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Electionland" href="https://www.propublica.org/electionland/">Electionland</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Data Store" href="https://www.propublica.org/datastore/">Data Store</a> </li></ul> </div><div class="site-header__links site-header__links-info svelte-5qrmpy"><strong class="site-header__links-heading svelte-5qrmpy">Info </strong> <ul class="site-header__links-list svelte-5qrmpy"><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="About Us" href="https://www.propublica.org/about/">About Us</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Impact" href="https://www.propublica.org/impact/">Impact</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Jobs & Fellowships" href="https://www.propublica.org/jobs/">Jobs & Fellowships</a> </li><li class="svelte-5qrmpy"> <a class="site-header__link svelte-5qrmpy" data-link="Contact Us" href="https://www.propublica.org/contact/">Contact Us</a> </li></ul> </div> <div class="site-header__links site-header__links-follow svelte-5qrmpy"><strong class="site-header__links-heading svelte-5qrmpy" data-svelte-h="svelte-19sje8q">Follow ProPublica</strong> <ul class="site-header__links-list site-header__links-list-follow svelte-5qrmpy"><li data-link="Bluesky" class="svelte-5qrmpy"> <a href="https://bsky.app/profile/propublica.org" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>Bluesky</title><path d="M5.20079 2.42542C7.95442 4.48593 10.9155 8.67296 12 10.9221C13.0845 8.67768 16.0456 4.49064 18.7992 2.42542C20.7843 0.935439 24 -0.215052 24 3.45332C24 4.18416 23.5804 9.60656 23.3352 10.4883C22.477 13.5437 19.3556 14.3264 16.5784 13.8502C21.4303 14.6753 22.6656 17.4101 19.9969 20.1449C14.9328 25.3409 12.7214 18.8435 12.1556 17.179C12.0754 16.948 12.033 16.8113 12 16.8113C11.967 16.8113 11.9246 16.9527 11.8444 17.179C11.2786 18.8435 9.06248 25.3409 4.00314 20.1449C1.3391 17.4101 2.56974 14.6753 7.42161 13.8502C4.6444 14.3264 1.52299 13.5437 0.669548 10.4836C0.419646 9.60184 0 4.17945 0 3.4486C0 -0.219767 3.21572 0.930724 5.20079 2.4207V2.42542Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Bluesky</span> </a></li> <li data-link="Instagram" class="svelte-5qrmpy"> <a href="https://www.instagram.com/propublica" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>Instagram</title><path d="M12,2.32c3.15,0,3.53,0,4.77.07a6.51,6.51,0,0,1,2.19.4,3.58,3.58,0,0,1,1.36.89A3.58,3.58,0,0,1,21.21,5a6.51,6.51,0,0,1,.4,2.19c.06,1.24.07,1.62.07,4.77s0,3.53-.07,4.77a6.51,6.51,0,0,1-.4,2.19A4,4,0,0,1,19,21.21a6.51,6.51,0,0,1-2.19.4c-1.24.06-1.62.07-4.77.07s-3.53,0-4.77-.07A6.51,6.51,0,0,1,5,21.21a3.58,3.58,0,0,1-1.36-.89A3.58,3.58,0,0,1,2.79,19a6.51,6.51,0,0,1-.4-2.19c-.06-1.24-.07-1.62-.07-4.77s0-3.53.07-4.77A6.51,6.51,0,0,1,2.79,5a3.58,3.58,0,0,1,.89-1.36A3.58,3.58,0,0,1,5,2.79a6.51,6.51,0,0,1,2.19-.4c1.24-.06,1.62-.07,4.77-.07M12,.19C8.79.19,8.39.2,7.13.26A8.84,8.84,0,0,0,4.26.81,6,6,0,0,0,.81,4.26,8.84,8.84,0,0,0,.26,7.13C.2,8.39.19,8.79.19,12s0,3.61.07,4.87a8.84,8.84,0,0,0,.55,2.87,6,6,0,0,0,3.45,3.45,8.84,8.84,0,0,0,2.87.55c1.26.06,1.66.07,4.87.07s3.61,0,4.87-.07a8.84,8.84,0,0,0,2.87-.55,6,6,0,0,0,3.45-3.45,8.84,8.84,0,0,0,.55-2.87c.06-1.26.07-1.66.07-4.87s0-3.61-.07-4.87a8.84,8.84,0,0,0-.55-2.87A6,6,0,0,0,19.74.81,8.84,8.84,0,0,0,16.87.26C15.61.2,15.21.19,12,.19Z"></path><path d="M12,5.94A6.06,6.06,0,1,0,18.06,12,6.06,6.06,0,0,0,12,5.94Zm0,10A3.94,3.94,0,1,1,15.94,12,3.95,3.95,0,0,1,12,15.94Z"></path><circle cx="18.3" cy="5.7" r="1.42"></circle></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Instagram</span> </a></li> <li data-link="Facebook" class="svelte-5qrmpy"> <a href="https://www.facebook.com/propublica/" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>Facebook</title><path d="M8.25 14.0297V24H13.6875V14.0297H17.7422L18.5859 9.44531H13.6875V7.82344C13.6875 5.4 14.6391 4.47188 17.0953 4.47188C17.8594 4.47188 18.4734 4.49062 18.8297 4.52812V0.370313C18.1594 0.1875 16.5187 0 15.5719 0C10.5609 0 8.25 2.36719 8.25 7.47187V9.44531H5.15625V14.0297H8.25Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Facebook</span> </a></li> <li data-link="Twitter" class="svelte-5qrmpy"> <a href="https://x.com/propublica" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>X</title><path d="M18.2439 2.25H21.5532L14.3251 10.5094L22.8282 21.75H16.172L10.9548 14.9344L4.99229 21.75H1.67822L9.40791 12.9141L1.25635 2.25H8.08135L12.7923 8.47969L18.2439 2.25ZM17.0813 19.7719H18.9142L7.08291 4.125H5.11416L17.0813 19.7719Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">(Twitter)</span> </a></li> <li data-link="YouTube" class="svelte-5qrmpy"> <a href="https://www.youtube.com/user/propublica" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>YouTube</title><path d="M24 12C24 20 24 20 12 20C0 20 0 20 0 12C0 4 0 4 12 4C24 4 24 4 24 12ZM16.5 12L9 7.76471V16.2353L16.5 12Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">YouTube</span> </a></li> <li data-link="Threads" class="svelte-5qrmpy"> <a href="https://www.threads.net/@propublica" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><title>Threads</title><path d="M17.0391 11.0484C17.1422 11.0906 17.2359 11.1375 17.3344 11.1797C18.7031 11.8406 19.7063 12.8297 20.2313 14.0578C20.9672 15.7687 21.0375 18.5484 18.8109 20.7703C17.1141 22.4672 15.0469 23.2313 12.1266 23.2547H12.1125C8.82187 23.2313 6.29531 22.125 4.59375 19.9641C3.07969 18.0422 2.30156 15.3656 2.27344 12.0141V12V11.9906C2.29688 8.63906 3.075 5.9625 4.58906 4.04062C6.29063 1.87969 8.82187 0.773438 12.1125 0.75H12.1266C15.4219 0.773438 17.9812 1.875 19.7344 4.02656C20.5969 5.09063 21.2344 6.37031 21.6375 7.85625L19.7438 8.3625C19.4109 7.15312 18.9094 6.12188 18.2344 5.29688C16.8656 3.61875 14.8125 2.75625 12.1172 2.7375C9.44531 2.76094 7.425 3.61875 6.10781 5.2875C4.87969 6.84844 4.24219 9.10781 4.21875 12C4.24219 14.8922 4.87969 17.1516 6.10781 18.7172C7.42031 20.3859 9.44531 21.2438 12.1172 21.2672C14.5266 21.2484 16.1203 20.6766 17.4469 19.35C18.9609 17.8406 18.9328 15.9844 18.45 14.8547C18.1641 14.1891 17.6484 13.6359 16.9547 13.2188C16.7813 14.4797 16.4016 15.4828 15.7969 16.2562C14.9953 17.2781 13.8563 17.8313 12.3891 17.9109C11.2828 17.9719 10.2187 17.7047 9.39375 17.1609C8.41875 16.5141 7.84688 15.5297 7.78594 14.3812C7.66875 12.1172 9.45938 10.4906 12.2484 10.3312C13.2375 10.275 14.1656 10.3172 15.0234 10.4625C14.9109 9.76875 14.6812 9.21563 14.3391 8.8125C13.8703 8.26406 13.1391 7.98281 12.1734 7.97812H12.1406C11.3625 7.97812 10.3125 8.19375 9.64219 9.21094L8.02969 8.10469C8.92969 6.74062 10.3875 5.99063 12.1453 5.99063H12.1828C15.1172 6.00938 16.8656 7.84219 17.0438 11.0391L17.0344 11.0484H17.0391ZM9.72656 14.2734C9.7875 15.45 11.0578 15.9984 12.2859 15.9281C13.4859 15.8625 14.8453 15.3938 15.075 12.4969C14.4563 12.3609 13.7719 12.2906 13.0406 12.2906C12.8156 12.2906 12.5906 12.2953 12.3656 12.3094C10.3547 12.4219 9.68438 13.3969 9.73125 14.2687L9.72656 14.2734Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Threads</span> </a></li> <li data-link="LinkedIn" class="svelte-5qrmpy"> <a href="https://www.linkedin.com/company/propublica/posts/" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg viewBox="0 0 24 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg"><title>LinkedIn</title><path d="M6.65548 8.41229H2.64045C2.46226 8.41229 2.31787 8.55674 2.31787 8.73487V21.6335C2.31787 21.8116 2.46226 21.956 2.64045 21.956H6.65548C6.83368 21.956 6.97806 21.8116 6.97806 21.6335V8.73487C6.97806 8.55674 6.83368 8.41229 6.65548 8.41229Z"></path><path d="M4.64942 2C3.18852 2 2 3.18723 2 4.64652C2 6.10645 3.18852 7.29413 4.64942 7.29413C6.10916 7.29413 7.29671 6.10639 7.29671 4.64652C7.29677 3.18723 6.10916 2 4.64942 2Z"></path><path d="M16.868 8.09167C15.2554 8.09167 14.0634 8.7849 13.3403 9.57258V8.73484C13.3403 8.55671 13.1959 8.41226 13.0177 8.41226H9.17265C8.99445 8.41226 8.85007 8.55671 8.85007 8.73484V21.6334C8.85007 21.8116 8.99445 21.956 9.17265 21.956H13.1789C13.3571 21.956 13.5015 21.8116 13.5015 21.6334V15.2516C13.5015 13.1011 14.0856 12.2633 15.5847 12.2633C17.2174 12.2633 17.3471 13.6064 17.3471 15.3623V21.6335C17.3471 21.8117 17.4915 21.9561 17.6697 21.9561H21.6774C21.8556 21.9561 22 21.8117 22 21.6335V14.5584C22 11.3606 21.3903 8.09167 16.868 8.09167Z"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">LinkedIn</span> </a></li> <li data-link="RSS" class="svelte-5qrmpy"> <a href="https://www.propublica.org/feeds/propublica/main" class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: var(--cool-70); --button-border: none; --button-color: white; --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: 1em;"><span class="icon-before svelte-1qpwxqa"><svg role="img" width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><title>RSS</title><path d="M20 19.6598C20 19.75 19.9642 19.8365 19.9004 19.9002C19.8367 19.964 19.7502 19.9998 19.66 19.9998H17.3401C17.2499 19.9998 17.1635 19.964 17.0997 19.9002C17.0359 19.8365 17.0001 19.75 17.0001 19.6598C17.0022 18.5247 16.8508 17.3945 16.5501 16.3C16.2604 15.2486 15.8334 14.2399 15.2802 13.3001C14.7244 12.3657 14.0524 11.5055 13.2803 10.7402C12.5149 9.96799 11.6548 9.29599 10.7204 8.74024C9.77847 8.19108 8.77037 7.76432 7.72047 7.47029C6.62038 7.16109 5.48333 7.00298 4.3406 7.00031C4.29566 7.00271 4.25076 6.99497 4.20921 6.97766C4.16767 6.96035 4.13055 6.93392 4.10061 6.90032C4.06701 6.87038 4.04058 6.83326 4.02327 6.79172C4.00596 6.75017 3.99822 6.70527 4.00062 6.66033V4.34041C3.99822 4.29547 4.00596 4.25057 4.02327 4.20902C4.04058 4.16748 4.06701 4.13036 4.10061 4.10042C4.13055 4.06682 4.16767 4.04039 4.20921 4.02308C4.25076 4.00577 4.29566 3.99803 4.3406 4.00043C5.746 4.00053 7.14505 4.18886 8.50044 4.56041C9.81129 4.91981 11.0688 5.45106 12.2403 6.14035C13.3965 6.81934 14.4616 7.64258 15.4102 8.59025C16.3578 9.53878 17.1811 10.6039 17.8601 11.7601C18.5494 12.9316 19.0806 14.1891 19.44 15.5C19.8116 16.8554 19.9999 18.2544 20 19.6598ZM15.0002 19.6598C15.0002 19.75 14.9644 19.8365 14.9006 19.9002C14.8369 19.964 14.7504 19.9998 14.6602 19.9998H12.3403C12.2501 19.9998 12.1636 19.964 12.0999 19.9002C12.0361 19.8365 12.0003 19.75 12.0003 19.6598C12.0074 18.6284 11.7997 17.6067 11.3903 16.6599C10.6228 14.8248 9.15935 13.3686 7.32049 12.6101C6.37989 12.2034 5.36534 11.9958 4.3406 12.0001C4.29566 12.0025 4.25076 11.9948 4.20921 11.9775C4.16767 11.9602 4.13055 11.9337 4.10061 11.9001C4.06701 11.8702 4.04058 11.8331 4.02327 11.7915C4.00596 11.75 3.99822 11.7051 4.00062 11.6601V9.34022C3.99822 9.29528 4.00596 9.25037 4.02327 9.20883C4.04058 9.16729 4.06701 9.13017 4.10061 9.10023C4.13055 9.06663 4.16767 9.04019 4.20921 9.02288C4.25076 9.00557 4.29566 8.99783 4.3406 9.00023C5.29329 9.00091 6.24162 9.1287 7.1605 9.38022C8.05554 9.62739 8.91568 9.98691 9.7204 10.4502C10.5061 10.9162 11.2315 11.4771 11.8803 12.1201C12.5233 12.769 13.0842 13.4944 13.5502 14.28C14.0135 15.0847 14.373 15.9449 14.6202 16.8399C14.8717 17.7588 14.9995 18.7071 15.0002 19.6598ZM9.00042 17.4999C9.0038 17.8288 8.94091 18.155 8.81549 18.4591C8.69008 18.7632 8.50471 19.0389 8.27045 19.2698C8.04096 19.506 7.7655 19.6926 7.46109 19.8181C7.15667 19.9437 6.82976 20.0055 6.50052 19.9998C6.17104 20.0073 5.84359 19.9463 5.53891 19.8207C5.23424 19.695 4.95899 19.5074 4.73059 19.2698C4.493 19.0414 4.30543 18.7662 4.17977 18.4615C4.05412 18.1568 3.99311 17.8294 4.00062 17.4999C3.99492 17.1707 4.05675 16.8438 4.1823 16.5393C4.30785 16.2349 4.49445 15.9595 4.73059 15.73C4.9615 15.4957 5.23721 15.3103 5.5413 15.1849C5.84538 15.0595 6.17161 14.9966 6.50052 15C6.82881 14.997 7.15425 15.061 7.45689 15.1883C7.75953 15.3155 8.03297 15.5033 8.26045 15.74C8.49717 15.9675 8.68491 16.2409 8.81215 16.5435C8.9394 16.8462 9.00346 17.1716 9.00042 17.4999Z" fill="currentColor"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">RSS</span> </a></li></ul></div> </nav> </div> </div> <!--svelte-component-end--> <main class="content" id="main"> <!-- Topic page header --> <header class="topics-listing-header | stack stack--col"> <h1 class="topics-listing-header__name">Health Care</h1> <p class="topics-listing-header__tagline">Pulling Back the Curtain on the Health Industry and Regulation</p> </header> <script type="application/json" class="svelte-config"> { "componentName": "TopicPageSubnav", "props": { "breadcrumbs": [{"text":"Topics","href":"\/topics"},{"text":"Health Care","href":"https:\/\/www.propublica.org\/topics\/health-care"}], "links": [{"text":"Abortion","href":"https:\/\/www.propublica.org\/topics\/abortion"},{"text":"Health Insurance","href":"https:\/\/www.propublica.org\/topics\/health-insurance"},{"text":"Pregnancy","href":"https:\/\/www.propublica.org\/topics\/pregnancy"},{"text":"Mental Health","href":"https:\/\/www.propublica.org\/topics\/mental-health"}] }, "contextArray": [] } </script> <div class="topic-page-subnav svelte-1xlv1z6"> <div class="subnav svelte-755um"><div class="subnav__inner stack stack--row stack--justify-between stack--align-center stack--spacing3 svelte-755um"><div class="hide-if-not-fixed"><nav class="subnav__breadcrumbs stack__item-no-shrink stack stack--row stack--align-center stack--spacing-2 "> </nav></div> <nav class="subnav__links stack__item-no-shrink stack stack--row stack--align-baseline stack--spacing0 "><a href="#" class="subnav__link svelte-1nbt1bn"> </a></nav></div> </div> </div> <!--svelte-component-end--> <div class="stack stack--col stack--spacing3"> <div class="topics-listing-section-featured-stories topics-listing-section"> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/st-lukes-hospital-idaho-abortion-ban"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20250307-gordon-st-lukes-controversies-3x2-72dpi.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=d54e156c324ce494fb90b15e9cd7b55f 400w, https://img.assets-d.propublica.org/v5/images/20250307-gordon-st-lukes-controversies-3x2-72dpi.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=f81ef05460f2961b0dcf490024158079 800w, https://img.assets-d.propublica.org/v5/images/20250307-gordon-st-lukes-controversies-3x2-72dpi.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=b606fedb0c02ca91b49edca233ee2dff 1200w, https://img.assets-d.propublica.org/v5/images/20250307-gordon-st-lukes-controversies-3x2-72dpi.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=4716e5cac1155adff34aec448001ec61 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/st-lukes-hospital-idaho-abortion-ban"> This Hospital System Fought COVID, Then a Far-Right Leader. Now It’s Taking on Idaho’s Abortion Ban. </a> </h3> <p class="story-card__dek" > St. Luke’s, Idaho’s largest health system, was outspoken in defending its staff during a backlash against masks and vaccines. It also sued right-wing figure Ammon Bundy — and won. Now it’s backing its doctors on the abortion front. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a>, ProPublica, and <span class="name">Kelcie Moseley-Morris</span>, <a href="https://statesnewsroom.com/">States Newsroom</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-03-12EDT05:00">March 12, 2025, 5 a.m. EDT</time> </span> </p> </div> </div> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/lincare-wrongful-death-lawsuit-sleep-apnea-oxygen"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/Big-Oxygen-Death-Lawsuit-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5011&fp-y=0.3409&h=267&q=75&w=400&s=a1295b163e7c00ddbf2288320123d82b 400w, https://img.assets-d.propublica.org/v5/images/Big-Oxygen-Death-Lawsuit-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5011&fp-y=0.3409&h=533&q=75&w=800&s=d0620e9a1574415bc96a382b9f8cf579 800w, https://img.assets-d.propublica.org/v5/images/Big-Oxygen-Death-Lawsuit-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5011&fp-y=0.3409&h=800&q=75&w=1200&s=f8d28da5112952e88b044fefd6abfc66 1200w, https://img.assets-d.propublica.org/v5/images/Big-Oxygen-Death-Lawsuit-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5011&fp-y=0.3409&h=1067&q=75&w=1600&s=8af3d22a189b91c8ba90c3c4984d90c4 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/lincare-wrongful-death-lawsuit-sleep-apnea-oxygen"> What a Wrongful Death Lawsuit Reveals About America’s Largest Oxygen Provider </a> </h3> <p class="story-card__dek" > When an at-risk sleep apnea patient needed his breathing machine replaced, Lincare, a $2.4 billion behemoth with a decadeslong history of regulatory and legal problems, acted slowly. The result was disastrous. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/peter-elkind">Peter Elkind</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-03-10EDT06:00">March 10, 2025, 6 a.m. EDT</time> </span> </p> </div> </div> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/missouri-pregnancy-resource-centers-anti-abortion-tax-credit-bill"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/MO-Abortion-SB681-v2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=04698f4436ecdb36c69f7be1236d8847 400w, https://img.assets-d.propublica.org/v5/images/MO-Abortion-SB681-v2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=69ce7846eae881790981e5fd4952dd9f 800w, https://img.assets-d.propublica.org/v5/images/MO-Abortion-SB681-v2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=818d9bf6e4fe74e4d375964259ef0727 1200w, https://img.assets-d.propublica.org/v5/images/MO-Abortion-SB681-v2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=fcec0e7990ea5107e4de5c196a0ca578 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/missouri-pregnancy-resource-centers-anti-abortion-tax-credit-bill"> A New Missouri Bill Would Let Residents Donate to Anti-Abortion Centers Instead of Paying Any Taxes </a> </h3> <p class="story-card__dek" > Four months after Missouri voted to legalize abortion, Republican lawmakers are proposing a 100% tax credit — capped at $50,000 per year — for taxpayers who donate to crisis pregnancy centers. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/jeremy-kohler">Jeremy Kohler</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-03-05EST05:00">March 5, 2025, 5 a.m. EST</time> </span> </p> </div> </div> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/georgia-maternal-mortality-committee-members-names-not-released"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1240668906_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.716&fp-y=0.2197&h=267&q=75&w=400&s=b887f30b5c76fffa5147cb8f9d8f82bd 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1240668906_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.716&fp-y=0.2197&h=533&q=75&w=800&s=8e264843d973de2277ea0e72dc3d56a4 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1240668906_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.716&fp-y=0.2197&h=800&q=75&w=1200&s=7ee9d7856e8d03f906f3bf896a16fd3b 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1240668906_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.716&fp-y=0.2197&h=1067&q=75&w=1600&s=57fc129656235551fc35fde96e3a65cf 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <a class="story-card__series" href="https://www.propublica.org/series/life-of-the-mother">Life of the Mother</a> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/georgia-maternal-mortality-committee-members-names-not-released"> Georgia Won’t Say Who’s Now Serving on Its Maternal Mortality Committee After Dismissing All Members Last Year </a> </h3> <p class="story-card__dek" > Before ProPublica’s reporting on the deaths of Amber Thurman and Candi Miller, the names of committee members had been publicly released. Now, Georgia says releasing the identities would be a violation of state law. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/amy-yurkanin">Amy Yurkanin</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-03-04EST06:00">March 4, 2025, 6 a.m. EST</time> </span> </p> </div> </div> </div> <div class="topics-listing-section topics-listing-featured-staff | stack stack--col | scrollable-overflow scrollable-overflow--snap scrollable-overflow--full js-scrollable-overflow--check-if-overflowing"> <h2 class="topics-listing-featured-staff__section-hed | center">Featured Reporters</h2> <div class="stack stack--col"> <div class="stack stack--row stack--spacing1 stack--justify-center scrollable-overflow--justify-start-when-overflowing"> <div class="stack stack--col stack--align-center | stretched-link-contain"> <div class="topics-listing-featured-staff__photo"></div> <a href="https://www.propublica.org/people/david-armstrong" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">David Armstrong</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Caroline Chen" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/20190703-caroline-chen-sized.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/20190703-caroline-chen-sized.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/20190703-caroline-chen-sized.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/caroline-chen" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Caroline Chen</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Duaa Eldeib" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/20200121-duaa-eldeib-portrait-sized-1x1.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/20200121-duaa-eldeib-portrait-sized-1x1.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/20200121-duaa-eldeib-portrait-sized-1x1.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/duaa-eldeib" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Duaa Eldeib</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Robin Fields" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/20180409_portraits0181-robin-fields-sized.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/20180409_portraits0181-robin-fields-sized.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/20180409_portraits0181-robin-fields-sized.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/robin-fields" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Robin Fields</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Ryan Gabrielson" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/ryan-gabrielson-1000x1000.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/ryan-gabrielson-1000x1000.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/ryan-gabrielson-1000x1000.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/ryan-gabrielson" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Ryan Gabrielson</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Ava Kofman" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/ava-koffman.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/ava-koffman.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/ava-koffman.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/ava-kofman" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Ava Kofman</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of J. David McSwane" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/david-mcswane-sized.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/david-mcswane-sized.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/david-mcswane-sized.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/j-david-mcswane" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">J. David McSwane</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Maya Miller" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/maya-miller-sized.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/maya-miller-sized.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/maya-miller-sized.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/maya-miller" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Maya Miller</a> </div> <div class="stack stack--col stack--align-center | stretched-link-contain"> <img class="topics-listing-featured-staff__photo" alt="Portrait of Annie Waldman" src="https://assets-c3.propublica.org/images/bio/_oneOne75w/20171214_portraits_00433-annie-waldman-sized-new.jpg" width="75" height="75" srcset="https://assets-c3.propublica.org/images/bio/_oneOne75w/20171214_portraits_00433-annie-waldman-sized-new.jpg 75w, https://assets-c3.propublica.org/images/bio/_oneOne150w/20171214_portraits_00433-annie-waldman-sized-new.jpg 150w" loading="lazy"/> <a href="https://www.propublica.org/people/annie-waldman" class="topics-listing-featured-staff__name | scrollable-overflow--snap__item | link-style--no-decoration link-style--hover-color | stretched-link">Annie Waldman</a> </div> </div> </div> </div> <!-- end .topics-listing__featured-staff --> <div class="stack stack--row stack--spacing-gutter stack--collapse-below-lg stack--justify-center"> <div class="topics-listing-section-impact topics-listing-section | stack stack--col"> <h2 class="listing-section__hed"> <a href="/impact" class="link-style--no-decoration link-style--hover-underline">Impact of Our Reporting</a> <div class="icon"> <svg role="img" xmlns="http://www.w3.org/2000/svg" fill="none" height="16" viewBox="0 0 16 16" width="16"> <title>Caret</title> <path clip-rule="evenodd" d="m9.5858 8.00008-5.29289-5.2929 1.41421-1.41421 6.70708 6.70711-6.70708 6.70712-1.41421-1.4142z" fill="currentColor" fill-rule="evenodd"/> </svg> </div> </h2> <div class="stack stack--col"> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/idaho-coroners-system-reform-bill"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=e50f6d8f2328bcdb16b4e7887d634a77 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=4ec7563aa005d63670b1991df388ce91 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=d7ba95d872b1850140e4ce01f9a176d5 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=0c34839c42d85d6d8437e848c3830325 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/idaho-coroners-system-reform-bill"> As Idaho Pushes to Reform Its Coroner System, Counties Seek to Make It Less Transparent </a> </h3> <p class="story-card__dek" > A bill moving forward with bipartisan support is described as a first step to addressing problems highlighted in a state report and by ProPublica. Meanwhile, counties seek to end access to coroners’ records that were key to ProPublica’s findings. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-03-05EST13:05">March 5, 2025, 1:05 p.m. EST</time> </span> </p> </div> </div> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/department-labor-investigation-health-insurance-doctors-healthcare"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=267&q=75&w=400&s=d7938b727ad19623a1d93e7a0a82ba55 400w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=533&q=75&w=800&s=ea871bd781deb1e9a8aee243178e8064 800w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=800&q=75&w=1200&s=920eee9cf8b09dc0fef749d0105dd463 1200w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=1067&q=75&w=1600&s=104667e916ca8b5a31ae616940cad9ce 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <a class="story-card__series" href="https://www.propublica.org/series/americas-mental-barrier">America’s Mental Barrier</a> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/department-labor-investigation-health-insurance-doctors-healthcare"> Insurers Failed to Comply With Mental Health Coverage Law, Department of Labor Report Finds </a> </h3> <p class="story-card__dek" > The probe found widespread noncompliance and violations of federal law in how health plans and insurers cover mental health care, echoing the findings of a recent ProPublica investigation. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/duaa-eldeib">Duaa Eldeib</a>, <a class="name" href="https://www.propublica.org/people/maya-miller">Maya Miller</a>, <a class="name" href="https://www.propublica.org/people/annie-waldman">Annie Waldman</a> and <a class="name" href="https://www.propublica.org/people/max-blau">Max Blau</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-01-24EST06:00">Jan. 24, 2025, 6 a.m. EST</time> </span> </p> </div> </div> <div class="story-card story-card--standard"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/state-lawmakers-seek-expanded-access-to-abortion-care"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=267&q=75&w=400&s=5eac90e0afe493bed86d5242c8f1c4ed 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=533&q=75&w=800&s=bde397635255e55d65bd7e814405f2d3 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=800&q=75&w=1200&s=88d86df0037e4429641a0768d154c813 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=1067&q=75&w=1600&s=9b78471cad7e87bae8a83465c88f34c0 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> <div class="story-card__description"> <a class="story-card__series" href="https://www.propublica.org/series/life-of-the-mother">Life of the Mother</a> <h3 class="story-card__hed" > <a href="https://www.propublica.org/article/state-lawmakers-seek-expanded-access-to-abortion-care"> Lawmakers in at Least Seven States Seek Expanded Abortion Access </a> </h3> <p class="story-card__dek" > Some of the bills were filed in direct response to ProPublica’s reporting on the fatal consequences of abortion bans. </p> <p class="story-card__byline"> <span class="story-card__byline-author"> by <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a> and <a class="name" href="https://www.propublica.org/people/cassandra-jaramillo">Cassandra Jaramillo</a>, </span> <span class="story-card__byline-dateline"> <time class="timestamp" datetime="2025-01-17EST07:00">Jan. 17, 2025, 7 a.m. EST</time> </span> </p> </div> </div> </div> </div> <div class="topics-listing-section-series topics-listing-section"> <div class="stack stack--col"> <div class="stack stack--row" style="position: relative;"> <h2 class="listing-section__hed" style="width: 100%;">Series</h2> <div class="stack stack--row stack--spacing-2" style="position: absolute; top: -0.4rem; right: 0;"> <button class="btn btn--circular btn--icon-only | hide-below-lg | scrollable-overflow__arrow scrollable-overflow--show-when-overflowing" js-scrollable-overflow--target-container=".topics-listing-section-series .scrollable-overflow" js-scrollable-overflow--scroll-direction="left" > <span class="a11y">Previous</span> <div class="btn__icon" style="transform: rotate(180deg);"> <svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <title>Arrow Right</title> <line x1="5" y1="12" x2="19" y2="12"></line> <polyline points="12 5 19 12 12 19"></polyline> </svg> </div> </button> <button class="btn btn--circular btn--icon-only | hide-below-lg | scrollable-overflow__arrow scrollable-overflow--show-when-overflowing" js-scrollable-overflow--target-container=".topics-listing-section-series .scrollable-overflow" js-scrollable-overflow--scroll-direction="right" > <span class="a11y">Next</span> <div class="btn__icon"> <svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <title>Arrow Right</title> <line x1="5" y1="12" x2="19" y2="12"></line> <polyline points="12 5 19 12 12 19"></polyline> </svg> </div> </button> </div> </div> <div class="topics-listing-section-series__content | stack stack--row stack--collapse-below-lg | scrollable-overflow scrollable-overflow--snap scrollable-overflow--full-below-lg | js-scrollable-overflow--check-if-overflowing js-scrollable-overflow--mask-overflowing"> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/life-of-the-mother" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=13155306325de40f6283157b2d3b0bce" srcset="https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=111cb238a501d7819ba97de958ed9c25 400w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=13155306325de40f6283157b2d3b0bce 800w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=318f94dd9d6095717d98172ba7488a9b 1200w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=41140f1334873fa15cec644d8eaeb8fd 1300w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=651e1062f5fe157aff5a5d2fbe896541 1450w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=57626a0b29177ac58135400f3f31765d 1600w, https://img.assets-c3.propublica.org/images/series/abortion-deaths-3x2_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=59a51ffe9fe18a0dbfcf4340660f1b03 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Life of the Mother:</span> <span class="promo-series__tagline">How Abortion Bans Lead to Preventable Deaths</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/americas-mental-barrier" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a8cd2dab66bd4ea0e743c24f9858a011" srcset="https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=7ff12b6fac5435b4fa8cea5d9f1c2f35 400w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a8cd2dab66bd4ea0e743c24f9858a011 800w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=ea1e4bfdd192ff8ae87fb03b5f062d1a 1200w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=ae3acc1aa1ce07dad17e2d14125dc39b 1300w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=bfe7f87e81d2a818208773991e286e88 1450w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=6fdc8a6d57e892dbc8c775fa06be361f 1600w, https://img.assets-c3.propublica.org/images/series/20240617-Luong-Mental-Health-Project-3834_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=dcbc016631bc59c8b75c18f894a6fe96 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">America’s Mental Barrier:</span> <span class="promo-series__tagline">How Insurers Interfere With Mental Health Care</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/veterans-without-assistance" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5b82e6066a834dd2e878d84eeed855aa" srcset="https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=e951bc13364e4461559d6b9bfd977a4a 400w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5b82e6066a834dd2e878d84eeed855aa 800w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=c01abce4d9c5e782a2e85635dbfbd941 1200w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=946e82e58f5771dec04c220d71138d8f 1300w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=db5acf6861b4d91897202ebd51976aaa 1450w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=b80dd91edc30aa323d934ccff3f38c4a 1600w, https://img.assets-c3.propublica.org/images/series/20240105-MMH-Report-Lead_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=040de6deb2e42e34f0a8bf481549894d 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Veterans Without Assistance:</span> <span class="promo-series__tagline">Investigating Mental Health Care in the VA System</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/long-term-challenge" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f8ba918b2c9c08a60844d4006e0e526c" srcset="https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=53a2e88e14d3dde82bc04c51ee482af5 400w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f8ba918b2c9c08a60844d4006e0e526c 800w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=5ecf6a0c80a7d0f50c8127d63163582e 1200w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=d61317d2f1c2f198c80b2bf79d53725d 1300w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=6095e7e21dbf1503ffa924257cfbe5e9 1450w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=3304685b9ff1690a63bd2e5a4e683b4d 1600w, https://img.assets-c3.propublica.org/images/series/20230920-Rice-ElderlyWoodlands-0128_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=b0391ad807bcfd108de8b082fb037d47 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Long-Term Challenge:</span> <span class="promo-series__tagline">Maine’s Lax Oversight of Residential Care Facilities</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/with-every-breath" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=800&q=75&w=800&s=87aecc5d7681506a4db9166d3c7a1b73" srcset="https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=400&q=75&w=400&s=bbadf2fee3867fa5edeb5ba0fdc9e4d8 400w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=800&q=75&w=800&s=87aecc5d7681506a4db9166d3c7a1b73 800w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=1200&q=75&w=1200&s=d2b4b8ea1aed1c10c8b4357e26b660d2 1200w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=1300&q=75&w=1300&s=72ce5218d3eb4aa5250cf77ae67e72f0 1300w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=1450&q=75&w=1450&s=ec45f9fa12b72db552d5f3952a6ec126 1450w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=1600&q=75&w=1600&s=fbeb290fafed53de7b62e50d0f74bba4 1600w, https://img.assets-c3.propublica.org/images/series/inside_royal_philips_opener_fallback_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5344&fp-y=0.647&h=2000&q=75&w=2000&s=37ab512daeb392c0532bc0fa85f6f2fb 2000w" style="object-position: 53.44% 64.7%;" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">With Every Breath:</span> <span class="promo-series__tagline">Millions of Breathing Machines. One Dangerous Defect</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/arterial-motives" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a301b9dfc80194bf10c1b04a7bbd8d47" srcset="https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=2cea6e2b61387855a5278ec0b0163fdc 400w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a301b9dfc80194bf10c1b04a7bbd8d47 800w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=158b4c7558cebdb871f9f390bcb756e7 1200w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=c94458b854ed82b2a84cebe8b645c5ec 1300w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=7310848de7f938face2e8ef654a6c884 1450w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=de9a5d99ce21edd074cf7be029ad769d 1600w, https://img.assets-c3.propublica.org/images/series/20220216-Kansas-Scheme-Lead.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=9853a44075cc916d9c1e3fe36a50672e 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Arterial Motives:</span> <span class="promo-series__tagline">The Big Business of Clogged Arteries</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/the-hospice-hustle" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=6a0c1a02bcce42286acb43937599cd03" srcset="https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=a41aeb98eccfc6a0e1b97a26f736c4f5 400w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=6a0c1a02bcce42286acb43937599cd03 800w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=605919749b5bc902e9e884fcc52efb0a 1200w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=d74e6b710af5426088187b5e0a550f61 1300w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=c479a28eaaaa2ca2f6670ece759adc00 1450w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=45124ef96c3cca8e864ad126131afcce 1600w, https://img.assets-c3.propublica.org/images/series/20221219_HospiceSeries_3X2_01.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=41b313efac99a9e71c2c00c201369179 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">The Hospice Hustle:</span> <span class="promo-series__tagline">How a Visionary Movement Became a Plaything for Profiteers</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/culture-of-cruelty" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5be4a18a856aaf5694c93c8c9cb8e92b" srcset="https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=9dd5f54848ede1efb754037d52af482a 400w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5be4a18a856aaf5694c93c8c9cb8e92b 800w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=9276de27f66f27f2e314cce48df08c8f 1200w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=f47ada379a4a4a9586ec717c71b37b39 1300w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=9a3bdb5fe91bda2dc49286c13458779e 1450w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=b3cd5a4ab287a397b17bc760fa1fc17a 1600w, https://img.assets-c3.propublica.org/images/series/Choate-Landing-Page-2x3.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=f5f0c2d61f3356d8bd392377ca993051 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Culture of Cruelty:</span> <span class="promo-series__tagline">Inside Illinois’ Mental Health System</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/stillbirths" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=239d3757e3de409c54016b95d0fe3926" srcset="https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=23a401e3b99a49c36208cf2319a62050 400w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=239d3757e3de409c54016b95d0fe3926 800w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=8c21987f55a331642462e5d40e61f157 1200w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=487742667444956523195863670f2363 1300w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=7ce31ea9dd3760a2a1a59d0a0af7a430 1450w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=914f1470bf7c76dd60134bccf57f0354 1600w, https://img.assets-c3.propublica.org/images/series/2022-stillbirths-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=0533b0614ca5f11f0e823061b79f67d0 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Stillbirths:</span> <span class="promo-series__tagline">When Babies Die Before Taking Their First Breath</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/crisis-point" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=2bbbf2da333a4e992ce6f95aad47fca2" srcset="https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=2acc99d9ad35a7220e57eefed7a1fc25 400w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=2bbbf2da333a4e992ce6f95aad47fca2 800w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=b03e95fc3b0932ef43def9e0bf177a6e 1200w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=73f7b0c957432275b61d0eacb723f952 1300w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=1f187d018df62c47980d728647507273 1450w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=6870fb721eb59508bf4060bdefe9ad59 1600w, https://img.assets-c3.propublica.org/images/series/20220610-psych-hospitals-series.jpeg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=c9d0b03e4d7ae48c46bf11aef73145b4 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Crisis Point:</span> <span class="promo-series__tagline">How New York Wrecked Mental Health Care for Kids</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/heartware" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=7956c291807a9e276d9d4f8c5f7cc316" srcset="https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=1ade0f1aae835977aa3e972ff9350783 400w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=7956c291807a9e276d9d4f8c5f7cc316 800w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=d78a8aef4a07ab6392f08d595f6ff251 1200w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=110df9c68792da999b9e66da3af8fc68 1300w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=597b2985fda8d057da44d127e51f3989 1450w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=282080aae0cb6e8a4c44755f172c1d3b 1600w, https://img.assets-c3.propublica.org/images/series/20220105-heartware-final-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=a04fe69dd1930696c544143ff02fe190 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">HeartWare:</span> <span class="promo-series__tagline">Deadly Malfunctions, FDA Inaction and Vulnerable Patients</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/st-judes-unspent-billions" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=b6fd70a146cfd33602be5d2848085d89" srcset="https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=e2c4a5d9c07bd47b908af1b8894a0a57 400w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=b6fd70a146cfd33602be5d2848085d89 800w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=71b57c89b23c639cf6d4c2167840d3fc 1200w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=21459d0bde0c2eec69cc6a933b74bb38 1300w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=30017583dc5b3f480fb3fed3c63f3755 1450w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=15f1aad8fb30bf23992125f97f2be627 1600w, https://img.assets-c3.propublica.org/images/series/202111xx-st-jude-3000x2000.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=ca28cc6ca1ffb253590ed982f067dfb9 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">St. Jude’s Unspent Billions:</span> <span class="promo-series__tagline">Behind the Hospital’s Claims to Donors</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/birth-rights" class="stretched-link"> <img class="promo-series__art" alt="Families looking pensive at an edifice made of paperwork protecting doctors and lawyers talking to each other." width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=38e58b5f1c2db33124d1c8279dad6006" srcset="https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=267d51e8be57457b172143c296b1bb24 400w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=38e58b5f1c2db33124d1c8279dad6006 800w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=3fc7379a478f508066afe91a490104d2 1200w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=118e6b6bd9e9a957e89f4795c51de77c 1300w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=9450e6d42b14b2aba44447bc85a64ebb 1450w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=e59423cf30bc1d0c5ebb31b4b76e220c 1600w, https://img.assets-c3.propublica.org/images/series/20210420-NICA-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=a1e9e4cf20b5e233ab3549ed2d28f934 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Birth Rights:</span> <span class="promo-series__tagline">Investigating Florida’s NICA Program</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/state-of-denial" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f5b91c2bb3e69d506cd1f605ffc3265d" srcset="https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=fa3ff7b962a71e2750f2e2bd2447a7cb 400w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f5b91c2bb3e69d506cd1f605ffc3265d 800w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=187bede208b63a1c77d46473d9c2415c 1200w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=18e4d99777e31d7b001ad3d8a859ca6c 1300w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=502fa8d7d7857aa0336f44619cb8d1cd 1450w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=64fd840fdd3042190f9c2719fbb5b9a8 1600w, https://img.assets-c3.propublica.org/images/series/20201105-series-state-of-denial-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=8e6a2e51f159bca2922ef79a9b031944 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">State of Denial:</span> <span class="promo-series__tagline">Inside Arizona’s Division of Developmental Disabilities</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/critical-condition" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a4e642f44f308e7f8d0c0d220442e93e" srcset="https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=94d43fbe14e6b3459caa042756a4dc9e 400w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=a4e642f44f308e7f8d0c0d220442e93e 800w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=42f552024755ec9c0b623a489c9382c2 1200w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=1eb5706aee1a600b72fb8c25e0217940 1300w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=9956c43a71fb16155ad0de3cff628ae6 1450w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=172a7aaaee5664cd7f9ce4df5a0a0063 1600w, https://img.assets-c3.propublica.org/images/series/20200610-ok-hospital-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=fcfab084b144998582a1283e64b9804a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Critical Condition:</span> <span class="promo-series__tagline">Investigating the Business of Oklahoma’s Rural Hospitals</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/coronavirus" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5835ccc8555e078300112604d7e71b22" srcset="https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=39ee993a5e73c0bbb2c6b565a8cf88be 400w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=5835ccc8555e078300112604d7e71b22 800w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=5dea0df9540b777c8263e94d142342d0 1200w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=7f9f0b4f622f30254f2179e41282bb4d 1300w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=e00fcb75aa01b562c10dbcd2ad402a98 1450w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=e1c88a7d7ab2fee41709a171cbfa0a9a 1600w, https://img.assets-c3.propublica.org/images/series/20200701-coronavirus-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=8aafa2c3174fd7a959b61cd63b8b1ed4 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Coronavirus:</span> <span class="promo-series__tagline">The U.S. Response to COVID-19</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/opioid-billionaires" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=63d2e7be49da3f12e8e229dbd139fd21" srcset="https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=5f3757c84f41372a77c3ae3a958f9b34 400w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=63d2e7be49da3f12e8e229dbd139fd21 800w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=58e7d0784520a5aba2aa81c937efef06 1200w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=0f97556ab51f1a28ca8b7caba53e9f26 1300w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=64b81c206f37361ad66b0eb00cf8dc63 1450w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=ee6ff99a79ddbea5f297c21f9b9882fd 1600w, https://img.assets-c3.propublica.org/images/series/20190221-sackler-oxycontin-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=b73f6b7e46ec9d4379d4a08468dc8243 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Opioid Billionaires:</span> <span class="promo-series__tagline">The Deceptive Marketing of OxyContin</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/a-911-emergency" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=716bedb2838e3bc8423955654e88962e" srcset="https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=dd6530d273d3d9eb5bfa36d80a9b94f2 400w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=716bedb2838e3bc8423955654e88962e 800w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=40979bad68593406b2b415cf97783e2c 1200w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=66d4f48a74d4e6bcf8c6d4033bfa7daa 1300w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=56b6d03f6da75326b512b9714fde8653 1450w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=2dd2a67186f59104ee2fa5c7a630ce5a 1600w, https://img.assets-c3.propublica.org/images/series/20190320-audio-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=ee9d91890515c6979854dd293169343b 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">A 911 Emergency:</span> <span class="promo-series__tagline">Rhode Island’s Deadly 911 Flaws</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/research-breakdown-uic-university-of-illinois-chicago-mani-pavuluri" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d8b047fe01f13325af781d98de571a79" srcset="https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=479340b3eb544732ef8defef21143bcf 400w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d8b047fe01f13325af781d98de571a79 800w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=0f8f6e33b4bb37885d832fbb4efcdec1 1200w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=6906d90b30aa4ef80dc3840666e3d3fb 1300w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=370e806ebfe96aa00b8b97a295587f4c 1450w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=c71a96cb1f287ace134aca2806718e0e 1600w, https://img.assets-c3.propublica.org/images/series/20180426-uic-research-misconduct-lead-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=d5b3ff6eb1d744e5cce03e41b32b737a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">The $3 Million Research Breakdown:</span> <span class="promo-series__tagline">University of Illinois at Chicago’s Troubling Study</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/sloan-kettering-cancer-centers-crisis" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=1fe26742318b802b1b961cc14342f461" srcset="https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=d7b3ee1b009bb815374d1cd4213cb37d 400w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=1fe26742318b802b1b961cc14342f461 800w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=9685540602734c486e98a44ed61551f1 1200w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=e6d8c170e181bc6d475827777ae0fca7 1300w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=f35d468bfb5eb2ccae3a16c04547ef29 1450w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=5a6d5b811a4943e00e996f07ec4ef6a4 1600w, https://img.assets-c3.propublica.org/images/series/20181231-corporate-board-MSK-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=62c25abf80ede84ba8a660ca8f9be29b 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Sloan Kettering’s Crisis:</span> <span class="promo-series__tagline">A Reckoning Over Industry Ties</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/a-sick-system" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=9d0c67b8fbe9a6c2e439f5f192e7faed" srcset="https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=6d1b8c1e8e8c107eecd096c0b0c796cc 400w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=9d0c67b8fbe9a6c2e439f5f192e7faed 800w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=e8aed958b970f9f2a92dccf52691b2fe 1200w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=ee2ac671e8534f922c38335e8acd0bc1 1300w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=80e7fd3ffa06fec6bfe10a5783bd1bf9 1450w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=f4af34a5c35070a5d796a55acd4fb09f 1600w, https://img.assets-c3.propublica.org/images/series/20180425-records-longjaw-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=54d2807c38e888dc37af5a5c19cf0ebf 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">A Sick System:</span> <span class="promo-series__tagline">Repeat Attacks After Pleading Insanity</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/trauma-after-tragedy" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=1b7f5c5303c0ee7f45bb44fe04ffa0dc" srcset="https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=5430b1a6b9cf9d75517ec894d30de592 400w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=1b7f5c5303c0ee7f45bb44fe04ffa0dc 800w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=e340389af0de50429608ad55fd695079 1200w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=3d1d71382f291be2f41e9e34e7a9d46a 1300w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=934597d99e5a9217b8ac0f21249b978b 1450w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=78a0b088181131c72f245d09cbab92fa 1600w, https://img.assets-c3.propublica.org/images/series/20180611-pulse-anniversary-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=18068cb9fe00b0d72a5969a2cefc9a46 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Trauma After Tragedy:</span> <span class="promo-series__tagline">PTSD in First Responders</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/stuck-kids" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=e1bab3708ef166d0714746c72198836a" srcset="https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=bcbb9c1e1091db9295d3d31aea73d0cb 400w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=e1bab3708ef166d0714746c72198836a 800w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=bb418bc9d47b98dd4dbc66cfbb34fb8a 1200w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=7b3bea9c989b37e9a0500eacddb3ce78 1300w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=7d459becdb68c57c46e80851777bc07c 1450w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=307e69a5d59fec50d615d5b0cdc9a772 1600w, https://img.assets-c3.propublica.org/images/series/20180530-DCFSpsych-illo-cover-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=c55cbcab66ca8aabc3ba78f1b4fab070 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Stuck Kids:</span> <span class="promo-series__tagline">Illinois Children Languish in Psychiatric Hospitals</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/the-health-insurance-hustle" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=0e3107f948b9711fde2a89bb90620465" srcset="https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=f9e56c7665068e4eee50c8f32a9089ce 400w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=0e3107f948b9711fde2a89bb90620465 800w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=3c4edd3921738803ae20669d8474c77f 1200w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=490f6bf4db93cdc8a0f787573368fe2e 1300w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=e8a50188c2c522ab48214d15054219c4 1450w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=c590b55b33e850045d750b77c9bf2556 1600w, https://img.assets-c3.propublica.org/images/series/20180608-health-hustle-series-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=ac5870dd01b68841a70c645f933870d1 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Health Insurance Hustle:</span> <span class="promo-series__tagline">The Confounding Way We Pay for Care</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/heart-failure" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=41cf0eacc074711d09290ff3947c032f" srcset="https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=e1d76a29ff7370ac842af25d2503563c 400w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=41cf0eacc074711d09290ff3947c032f 800w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=312a2d561acc2f249fab52ccd24c89de 1200w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=ebdcf6df9c34d04c402ebdb8e4fc1876 1300w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=c006af8f65f008b3bccf634b347c1c4a 1450w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=6ed7b552b9c055811b4b09870e2a4d68 1600w, https://img.assets-c3.propublica.org/images/series/20180524-heart-failure-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=0ed449fd2e702df3b0a9d6b70db88720 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Heart Failure:</span> <span class="promo-series__tagline">The Decline of a Historic Transplant Program</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/lost-mothers" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=56f7c40442c584a77918f63bbe159ae7" srcset="https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=ebb9535c2050a60754e557d05c3cd19e 400w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=56f7c40442c584a77918f63bbe159ae7 800w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=f42a2bc4eb3d1f225c56e3507d667b68 1200w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=1a3332477217605001536a692c078734 1300w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=41cfa85fcceafc434c0e17cfd0e57447 1450w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=f44fbd5c0285e93ea3adb858f819fdf5 1600w, https://img.assets-c3.propublica.org/images/series/20170512-maternal-mortality-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=1e2a689edc5aded40e911ed711c07f00 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Lost Mothers:</span> <span class="promo-series__tagline">Maternal Care and Preventable Deaths</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/wasted-medicine" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=4e059e17afe33f569f38870f1ab7160f" srcset="https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=08ed1cd64c0a6f656149e35b540b9d16 400w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=4e059e17afe33f569f38870f1ab7160f 800w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=7ec780d5d0cb53fb2ddf574dc1a00b12 1200w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=4b30fdd221d5d661b54b4a5a1ea1822f 1300w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=d8ca7caa81f9e46c11cb1625fcfdf27a 1450w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=3360b6ad607238cc0cf79308d6d3b276 1600w, https://img.assets-c3.propublica.org/images/series/20170426-wasted-medicine-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=d896dc481c6c9475d97f0308dc05fe5a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Wasted Medicine:</span> <span class="promo-series__tagline">Squandered Health Care Dollars</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/patient-privacy" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=efbb25d40478ba0c8ccff881d026c4ae" srcset="https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=8f8905b47ef08b4f054514c893d2fb62 400w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=efbb25d40478ba0c8ccff881d026c4ae 800w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=5a90e42495b05d3479bb9ce981c9db3c 1200w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=54b16c0e481dd9ca23d102af75416119 1300w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=488eab2b4636db0474239ea241375b2d 1450w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=8108fdfae5fc97b7fd4e3a05b70e66ec 1600w, https://img.assets-c3.propublica.org/images/series/patient-privacy-series-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=4890038013e3629f6ee2ebc85cecebb5 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Policing Patient Privacy:</span> <span class="promo-series__tagline">Patient Privacy and Medical Care</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/examining-medicare" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=b67482e7e7c79ce6d55103088d0f4e12" srcset="https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=d91be869f98d151f8540109436c02a4c 400w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=b67482e7e7c79ce6d55103088d0f4e12 800w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=276a574e342ce8b43e78d7e18b27d4d2 1200w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=16f26e9539fc056a1f6dace5e14bf8d9 1300w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=343afab70e5d73b6213e1baa5627c4c2 1450w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=7f913f8d16ab3158cd9cd4d572060df0 1600w, https://img.assets-c3.propublica.org/images/series/pp_dollar_xray_300x200_140515.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=c9dd1c806068038d2ad2e951c4e125d5 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Examining Medicare:</span> <span class="promo-series__tagline">A Closer Look at Medicare Part B</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/obamacare-and-you" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=895fbfde62841063152269bf41c75208" srcset="https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=6c505c0212938ffcdb595d134babfd2b 400w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=895fbfde62841063152269bf41c75208 800w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=ec6e15a079709ec4047f41221daaca09 1200w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=f9b4d30c26e9f2a9ce545b5c914cb77c 1300w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=ed82bae694d9934058f6336332d96506 1450w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=45b6251a8ba3d6bcdbd550518ff3a1f4 1600w, https://img.assets-c3.propublica.org/images/series/gt_obama_aca_300x200_131108.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=f05bfd2c995d1566b9e65392572f0c7a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Obamacare and You:</span> <span class="promo-series__tagline">The Rollout of the Affordable Care Act</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/overdose" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=053c8b211b96f980ced08785a912768f" srcset="https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=57baf96f247093923b1da5a05150da74 400w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=053c8b211b96f980ced08785a912768f 800w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=4ad1fb3f848ff8eee5fe12280e3abfc3 1200w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=9104ce6699f4be1ffd62611a46dbd02e 1300w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=1b4cb9f5c7edc97e39d2508983dce182 1450w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=924da0e47ffdc778ba8158bac8752ddc 1600w, https://img.assets-c3.propublica.org/images/series/pp_overdose_series_300x200_130923.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=b14fbe7ca45d450f3a949ddbb49ebcec 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Overdose:</span> <span class="promo-series__tagline">Acetaminophen and Accidental Overdoses</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/nursing-homes" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d086685213a33dc2f22bd134704124da" srcset="https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=0763f125f34e2a2ce6c551a94fe3df38 400w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d086685213a33dc2f22bd134704124da 800w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=76b5cdad9ca06b83444a49a81926b351 1200w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=d763d986d8c7214fd1b46cac2929c086 1300w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=0b042708c48ac9ed3fc3b6fbe50b99c6 1450w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=ba761654be71fa313ddb60b7ce119ac7 1600w, https://img.assets-c3.propublica.org/images/series/nh-story300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=bbc561c45e20e94861c44ed41682b48a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Nursing Homes</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/patient-safety" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d63abea4f746dc70bbf9b762aff63133" srcset="https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=495921b0688e48198eeb76d88aef6082 400w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=d63abea4f746dc70bbf9b762aff63133 800w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=0db00ed45df91981ae3369a996c1cbd3 1200w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=8f5e04c162bb0a217ec19d38a3d8747a 1300w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=c2ff4b9192d4567673b4878ecf837882 1450w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=e8ceb2df30f73c01b0af5b0d97045810 1600w, https://img.assets-c3.propublica.org/images/series/series_icon-300x200.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=97edb4bec5e6f460186ce684784c73fa 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Patient Safety:</span> <span class="promo-series__tagline">Exploring Quality of Care in the U.S.</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/dialysis" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=2f7cff0c8c14fe90b6e42bed4883e12b" srcset="https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=0a7a9c85eb4b8c59f82e80def22e1574 400w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=2f7cff0c8c14fe90b6e42bed4883e12b 800w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=44bae10f94b2f7fc0e8082cd535b021e 1200w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=e910a5387e16f7b55ee85e2942ac0709 1300w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=a80069829bf9f0de171d757fec5bee2b 1450w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=936bb11dd359a2fb7ccea43448c1af24 1600w, https://img.assets-c3.propublica.org/images/series/20190829-Dialysis-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=a60be371e387967282176346de7494f3 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Dialysis:</span> <span class="promo-series__tagline">High Costs and Hidden Perils of a Treatment Guaranteed to All</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/dollars-for-docs" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f1350ef1db70eedeba067e1cdc057c98" srcset="https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=9290506b7083d34777b29d05445cbf2f 400w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=f1350ef1db70eedeba067e1cdc057c98 800w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=2a8aad11df37dc6b27d463fd3205f9f7 1200w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=ecb2c02a03f7db0340366e03c9c2fd63 1300w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=67ea323cbaf8600623dc91292e675e55 1450w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=83b91585703ef2217f01f25e6c208f09 1600w, https://img.assets-c3.propublica.org/images/series/20190128-d4d-promo-3x2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=74b6232c1ecdbb57a09138773ea41e6a 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Dollars for Doctors:</span> <span class="promo-series__tagline">How Industry Money Reaches Physicians</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/general-electric-omniscan" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=6f4a8055d5381a5f98653b7eeb008e22" srcset="https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=15b3dfc5e769573415ab65c001d7165d 400w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=6f4a8055d5381a5f98653b7eeb008e22 800w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=944c071e1e5db62f129e502726b20ad8 1200w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=857684ab225cdc75524c7d75a0242fae 1300w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=b01c8fb90994b500423738552882dbc4 1450w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=d69419956d539a42c1481d324efb67de 1600w, https://img.assets-c3.propublica.org/images/series/ge_trial-390x260.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=3d1b50f2061bcfa0b9cc701250166621 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">Omniscan:</span> <span class="promo-series__tagline">Specter of MRI Disease Haunts General Electric</span> </h3> </div> </div> <div class="promo-series scrollable-overflow--snap__item"> <div class=" promo-series__header stretched-link-contain " > <a href="https://www.propublica.org/series/nurses" class="stretched-link"> <img class="promo-series__art" alt="" width="400" height="400" loading="lazy" js-autosizes src="https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=109007d4668a65ba1bdd34369bfc1928" srcset="https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=400&q=75&w=400&s=8bf9245aa53cbefed1296e47e1f6219f 400w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=800&s=109007d4668a65ba1bdd34369bfc1928 800w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1200&q=75&w=1200&s=92176e7b4f396f3e9ed6f1165683c19e 1200w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1300&q=75&w=1300&s=5e854f42106b6d3bbbbada12c6500c74 1300w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1450&q=75&w=1450&s=5d7877d665c3f3fe50a3b347d47b61a3 1450w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1600&q=75&w=1600&s=0a940993edc7f754cf4e1b6d383a1fe8 1600w, https://img.assets-c3.propublica.org/images/series/20160407-ny-nurses-b-630x420.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=2000&q=75&w=2000&s=a77c6105ab628ecbe75772d63dc43d62 2000w" /> </a> <h3 class="promo-series__name"> <span class="a11y">Series: </span> <span class="promo-series__title">When Caregivers Harm:</span> <span class="promo-series__tagline">America’s Unwatched Nurses</span> </h3> </div> </div> </div> </div> </div> </div> <div class="listing-river | stack stack--col"> <span class="listing-river__story-count">888 stories published since 2008</span> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/idaho-coroners-system-reform-bill"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=e50f6d8f2328bcdb16b4e7887d634a77 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=4ec7563aa005d63670b1991df388ce91 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=d7ba95d872b1850140e4ce01f9a176d5 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1233077725_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=0c34839c42d85d6d8437e848c3830325 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/idaho-coroners-system-reform-bill">As Idaho Pushes to Reform Its Coroner System, Counties Seek to Make It Less Transparent</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-03-05EST13:05">March 5, 2025, 1:05 p.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/thomas-weiner-montana-medical-license-renewed"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/LJohns_WeinerStory-37_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4715&fp-y=0.2163&h=267&q=75&w=400&s=7d81c3dfa9c135aa593292d04c05f693 400w, https://img.assets-d.propublica.org/v5/images/LJohns_WeinerStory-37_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4715&fp-y=0.2163&h=533&q=75&w=800&s=c7de6bbbb612c27075abeaf51aa6852d 800w, https://img.assets-d.propublica.org/v5/images/LJohns_WeinerStory-37_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4715&fp-y=0.2163&h=800&q=75&w=1200&s=4a5372d8eef9690ae189f50b2d057f2f 1200w, https://img.assets-d.propublica.org/v5/images/LJohns_WeinerStory-37_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4715&fp-y=0.2163&h=1067&q=75&w=1600&s=dc9aa84c761db4be5ee0eceb2f967100 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/thomas-weiner-montana-medical-license-renewed">Montana Renews Accused Cancer Doctor’s License Despite Criminal, Civil Inquiries</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <span class="name">Mara Silvers</span>, <a href="https://montanafreepress.org/">Montana Free Press</a>, and <a class="name" href="https://www.propublica.org/people/j-david-mcswane">J. David McSwane</a>, ProPublica<span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-26EST15:10">Feb. 26, 2025, 3:10 p.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/texas-abortion-ban-sepsis-maternal-mortality-analysis"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-discharge-data-promo-FINAL-v2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=63dbc2ceea4bc7cc87d73d9803bdfd8b 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-discharge-data-promo-FINAL-v2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=a1cfdf36c2bbc86b17e70dfa69b2a0a3 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-discharge-data-promo-FINAL-v2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=7c071b14fec0354f0e61eb5184c4fd7b 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-discharge-data-promo-FINAL-v2.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=a06e9dddca459c8d68a743fd58f4416d 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/texas-abortion-ban-sepsis-maternal-mortality-analysis">Texas Banned Abortion. Then Sepsis Rates Soared.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a>, <a class="name" href="https://www.propublica.org/people/andrea-suozzo">Andrea Suozzo</a>, <a class="name" href="https://www.propublica.org/people/sophie-chou">Sophie Chou</a> and <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-20EST05:00">Feb. 20, 2025, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/texas-maternal-mortality-analysis-methodology"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20250220-sepsis-all-hospitalizations-promo-3x2.png?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=80&w=400&s=f469bb8ca959600c47bb540e024a81f0 400w, https://img.assets-d.propublica.org/v5/images/20250220-sepsis-all-hospitalizations-promo-3x2.png?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=80&w=800&s=17a2665b3a429c5260261dca5e991686 800w, https://img.assets-d.propublica.org/v5/images/20250220-sepsis-all-hospitalizations-promo-3x2.png?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=80&w=1200&s=f9e59c8ad4e763683f370c06c2f57ab9 1200w, https://img.assets-d.propublica.org/v5/images/20250220-sepsis-all-hospitalizations-promo-3x2.png?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=80&w=1600&s=08f09a48859372d0d4c8d3914325b55b 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/texas-maternal-mortality-analysis-methodology">Texas Won’t Study How Its Abortion Ban Impacts Women, So We Did</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/andrea-suozzo">Andrea Suozzo</a>, <a class="name" href="https://www.propublica.org/people/sophie-chou">Sophie Chou</a> and <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-20EST04:55">Feb. 20, 2025, 4:55 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/georgia-medicaid-work-requirement-pathways-to-coverage-hurdles"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20250218-Bellet-Pathways-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=54b68f57094a365795f9f80069b462d5 400w, https://img.assets-d.propublica.org/v5/images/20250218-Bellet-Pathways-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=b2f3c35cb4c7580c42e666677e60bb75 800w, https://img.assets-d.propublica.org/v5/images/20250218-Bellet-Pathways-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=fe56111d35ab05005d97e5622c78f49c 1200w, https://img.assets-d.propublica.org/v5/images/20250218-Bellet-Pathways-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=5130e799f6a96ca1c47065c1c0a5e819 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/georgia-medicaid-work-requirement-pathways-to-coverage-hurdles">Georgia Touts Its Medicaid Experiment as a Success. The Numbers Tell a Different Story.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://thecurrentga.org/author/margaret-coker-2/">Margaret Coker</a>, <a href="https://thecurrentga.org">The Current</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-19EST06:00">Feb. 19, 2025, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/zolgensma-sma-novartis-drug-prices-gene-therapy-avexis"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/ProPublica_Owen_Gent_Zolgensma_Final_Artwork-3x2web.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=3fe3b1e2cd11dee9e7652f96994380d5 400w, https://img.assets-d.propublica.org/v5/images/ProPublica_Owen_Gent_Zolgensma_Final_Artwork-3x2web.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=c67ead55b5aa66d325b31e27c96b87da 800w, https://img.assets-d.propublica.org/v5/images/ProPublica_Owen_Gent_Zolgensma_Final_Artwork-3x2web.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=9fa2baf31549fdc4954e8b0aa9f8bb04 1200w, https://img.assets-d.propublica.org/v5/images/ProPublica_Owen_Gent_Zolgensma_Final_Artwork-3x2web.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=2cb591027141f21b359cdf663a712706 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/zolgensma-sma-novartis-drug-prices-gene-therapy-avexis">What a $2 Million Per Dose Gene Therapy Reveals About Drug Pricing</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/robin-fields">Robin Fields</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-12EST08:00">Feb. 12, 2025, 8 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/missouri-abortion-ban-amendment-planned-parenthood-lawsuit"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/MOAbortion2-2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=1336da1d61e7b293bc4f9dac9ec26b28 400w, https://img.assets-d.propublica.org/v5/images/MOAbortion2-2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=a072ef557dafc3c796027a34a9c11786 800w, https://img.assets-d.propublica.org/v5/images/MOAbortion2-2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=6a759efe39a7c84ad57397bf9f0b8909 1200w, https://img.assets-d.propublica.org/v5/images/MOAbortion2-2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=940693d162adf39526e174870bcf3e1d 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/missouri-abortion-ban-amendment-planned-parenthood-lawsuit">Three Months After Missouri Voted to Make Abortion Legal, Access Is Still Being Blocked</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/jeremy-kohler">Jeremy Kohler</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-02-05EST16:40">Feb. 5, 2025, 4:40 p.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/arizona-sober-homes-deaths-medicaid-fraud"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241213-Zehbrauskas-Sober-Homes019_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=7e2c8a896a7bc772ef8ac8b59097eb3f 400w, https://img.assets-d.propublica.org/v5/images/20241213-Zehbrauskas-Sober-Homes019_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=6ca5116e0968ba6962feb0fd5adac380 800w, https://img.assets-d.propublica.org/v5/images/20241213-Zehbrauskas-Sober-Homes019_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=e8f307b0af8a20a5070f81a7ad4f7138 1200w, https://img.assets-d.propublica.org/v5/images/20241213-Zehbrauskas-Sober-Homes019_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=118933a42ef6ef5176a5695777a53eae 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/arizona-sober-homes-deaths-medicaid-fraud">Dozens of People Died in Arizona Sober Living Homes as State Officials Fumbled Medicaid Fraud Response</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/mary-hudetz">Mary Hudetz</a>, ProPublica, and <a class="name" href="https://azcir.org/news/author/hbassett/">Hannah Bassett</a>, <a href="http://azcir.org">Arizona Center for Investigative Reporting</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-01-27EST07:00">Jan. 27, 2025, 7 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/department-labor-investigation-health-insurance-doctors-healthcare"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=267&q=75&w=400&s=d7938b727ad19623a1d93e7a0a82ba55 400w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=533&q=75&w=800&s=ea871bd781deb1e9a8aee243178e8064 800w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=800&q=75&w=1200&s=920eee9cf8b09dc0fef749d0105dd463 1200w, https://img.assets-d.propublica.org/v5/images/mental-health-doctors-folo-FINAL_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.822&fp-y=0.5161&h=1067&q=75&w=1600&s=104667e916ca8b5a31ae616940cad9ce 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/department-labor-investigation-health-insurance-doctors-healthcare">Insurers Failed to Comply With Mental Health Coverage Law, Department of Labor Report Finds</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/duaa-eldeib">Duaa Eldeib</a>, <a class="name" href="https://www.propublica.org/people/maya-miller">Maya Miller</a>, <a class="name" href="https://www.propublica.org/people/annie-waldman">Annie Waldman</a> and <a class="name" href="https://www.propublica.org/people/max-blau">Max Blau</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-01-24EST06:00">Jan. 24, 2025, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/mississippi-law-mental-health-jailings-data"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/3X0A0297_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-22-185237_addh.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=b0fa9118ca9ae9bca05d8dfe0a701634 400w, https://img.assets-d.propublica.org/v5/images/3X0A0297_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-22-185237_addh.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=57785d03a1a25699faf68fa4bf153d99 800w, https://img.assets-d.propublica.org/v5/images/3X0A0297_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-22-185237_addh.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=36009ed7902e482c69644f5936a17a29 1200w, https://img.assets-d.propublica.org/v5/images/3X0A0297_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-22-185237_addh.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=49234e627a8a0ccc1468ea466e2d13bf 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/mississippi-law-mental-health-jailings-data">Is a New Mississippi Law Decreasing Jailings of People Awaiting Mental Health Treatment? The State Doesn’t Know.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <span class="name">Gwen Dilworth</span>, <a href="https://mississippitoday.org/">Mississippi Today</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-01-23EST05:00">Jan. 23, 2025, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/state-lawmakers-seek-expanded-access-to-abortion-care"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=267&q=75&w=400&s=5eac90e0afe493bed86d5242c8f1c4ed 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=533&q=75&w=800&s=bde397635255e55d65bd7e814405f2d3 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=800&q=75&w=1200&s=88d86df0037e4429641a0768d154c813 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-impact-roundup-final-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2025-01-16-204703_tiwq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9966&fp-y=0.4515&h=1067&q=75&w=1600&s=9b78471cad7e87bae8a83465c88f34c0 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/state-lawmakers-seek-expanded-access-to-abortion-care">Lawmakers in at Least Seven States Seek Expanded Abortion Access</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a> and <a class="name" href="https://www.propublica.org/people/cassandra-jaramillo">Cassandra Jaramillo</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2025-01-17EST07:00">Jan. 17, 2025, 7 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/mental-health-insurance-denials-patient-progress"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0037_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4211&fp-y=0.1896&h=267&q=75&w=400&s=cb833261e36b0c45bf243f8b866149be 400w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0037_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4211&fp-y=0.1896&h=533&q=75&w=800&s=a8a67cd93ac2fe7f22f91acecc8c696d 800w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0037_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4211&fp-y=0.1896&h=800&q=75&w=1200&s=8618bbea6667fd7ee4c528d7e8ca2827 1200w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0037_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4211&fp-y=0.1896&h=1067&q=75&w=1600&s=e144ec129e5940afbd9acc7aa340dcc0 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/mental-health-insurance-denials-patient-progress">Her Mental Health Treatment Was Helping. That’s Why Insurance Cut Off Her Coverage.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/maya-miller">Maya Miller</a> and <a class="name" href="https://www.propublica.org/people/duaa-eldeib">Duaa Eldeib</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-31EST05:00">Dec. 31, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/mental-health-insurance-denials-unitedhealthcare-cigna-doctors"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0102.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5079&fp-y=0.2291&h=267&q=75&w=400&s=4bba3272384b08e58fac6ad0d998ca3e 400w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0102.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5079&fp-y=0.2291&h=533&q=75&w=800&s=098a717d2b2c73c1d58d311d6c2e4a2c 800w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0102.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5079&fp-y=0.2291&h=800&q=75&w=1200&s=89385b540dad844680703cf439929d7a 1200w, https://img.assets-d.propublica.org/v5/images/20241028-PanichLinsman-Mental-Health-Sequence_0102.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5079&fp-y=0.2291&h=1067&q=75&w=1600&s=e80ca7cb4fab73b39cd56589ffefebba 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/mental-health-insurance-denials-unitedhealthcare-cigna-doctors">Insurers Continue to Rely on Doctors Whose Judgments Have Been Criticized by Courts</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/duaa-eldeib">Duaa Eldeib</a> and <a class="name" href="https://www.propublica.org/people/maya-miller">Maya Miller</a>, with research by <a class="name" href="https://www.propublica.org/people/kirsten-berg">Kirsten Berg</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-30EST06:00">Dec. 30, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/abortion-ban-deaths-cdc-maternal-health-care"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_CDC_Final_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=d1073a0036c73b0e5f185700508f19d4 400w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_CDC_Final_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=07238eb95b0a2e6c9891bbb20bdefe05 800w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_CDC_Final_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=546fe7da12adef64bb78da84b8c8b61d 1200w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_CDC_Final_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=814ba78a1b7fb902d2325711564b4cbf 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/abortion-ban-deaths-cdc-maternal-health-care">The CDC Hasn’t Asked States to Track Deaths Linked to Abortion Bans</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a>, <a class="name" href="https://www.propublica.org/people/robin-fields">Robin Fields</a> and <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-20EST05:00">Dec. 20, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/abortion-ban-deaths-report-ron-wyden"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1231345788_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.543&fp-y=0.5716&h=267&q=75&w=400&s=894daba0d2afe541ef58792b0aa1f3ff 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1231345788_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.543&fp-y=0.5716&h=533&q=75&w=800&s=eee4005d0b428a373e212e389857e006 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1231345788_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.543&fp-y=0.5716&h=800&q=75&w=1200&s=7c0bed9e3bd666df290721e5d777aa0a 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1231345788_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.543&fp-y=0.5716&h=1067&q=75&w=1600&s=9d3d2afa8882402d300dbbc2c553da54 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/abortion-ban-deaths-report-ron-wyden">Report: Hospitals Rarely Advise Doctors on How to Treat Patients Under Abortion Bans</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-19EST12:30">Dec. 19, 2024, 12:30 p.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/miscarriage-abortion-bans-dilation-and-curettage-dilation-and-evacuation"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1251750400-positive_2024-12-18-191629_ljfj.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.7934&fp-y=0.6172&h=267&q=75&w=400&s=c0080bf84d8ff64f00ddc18c8304281a 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1251750400-positive_2024-12-18-191629_ljfj.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.7934&fp-y=0.6172&h=533&q=75&w=800&s=e945a5013c242e0891823e301f3add8c 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1251750400-positive_2024-12-18-191629_ljfj.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.7934&fp-y=0.6172&h=800&q=75&w=1200&s=71dfece59e47c322dd5e0bc00b085849 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1251750400-positive_2024-12-18-191629_ljfj.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.7934&fp-y=0.6172&h=1067&q=75&w=1600&s=684e4d33985154021e49d7754a244040 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/miscarriage-abortion-bans-dilation-and-curettage-dilation-and-evacuation">If You’re Pregnant, Here’s What You Should Know About the Medical Procedures That Could Save Your Life</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a> and <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-19EST05:00">Dec. 19, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/abortion-bans-deaths-state-maternal-mortality-committees"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_Committees_Final-PROMO.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9251&fp-y=0.672&h=267&q=75&w=400&s=c5f00623b40f4b2b6380c9d9138247a3 400w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_Committees_Final-PROMO.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9251&fp-y=0.672&h=533&q=75&w=800&s=3fdd88cf1f97dfedd53b2e9f74d5eddc 800w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_Committees_Final-PROMO.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9251&fp-y=0.672&h=800&q=75&w=1200&s=077ffafa1e5810513efd84319ab07185 1200w, https://img.assets-d.propublica.org/v5/images/SABA_ProPublica_AbortionDeaths_Committees_Final-PROMO.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.9251&fp-y=0.672&h=1067&q=75&w=1600&s=8714dfa7800ad769f9fa23f4c7bc36f5 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/abortion-bans-deaths-state-maternal-mortality-committees">Are Abortion Bans Across America Causing Deaths? The States That Passed Them Are Doing Little to Find Out.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a>, <a class="name" href="https://www.propublica.org/people/mariam-elba">Mariam Elba</a>, <span class="name">Cassandra Jaramillo</span>, <a class="name" href="https://www.propublica.org/people/robin-fields">Robin Fields</a> and <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-18EST05:00">Dec. 18, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/unitedhealthcare-insurance-autism-denials-applied-behavior-analysis-medicaid"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241204-Flanagan-MentalHealthUnitedAutism-0007_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4992&fp-y=0.4573&h=267&q=75&w=400&s=a9b2dbdaf40668dac612deecb28f4e97 400w, https://img.assets-d.propublica.org/v5/images/20241204-Flanagan-MentalHealthUnitedAutism-0007_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4992&fp-y=0.4573&h=533&q=75&w=800&s=a16c86547efac4ceff2e0d2967ed6e3f 800w, https://img.assets-d.propublica.org/v5/images/20241204-Flanagan-MentalHealthUnitedAutism-0007_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4992&fp-y=0.4573&h=800&q=75&w=1200&s=95d6948189fda96cc7672fb94c044f1d 1200w, https://img.assets-d.propublica.org/v5/images/20241204-Flanagan-MentalHealthUnitedAutism-0007_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4992&fp-y=0.4573&h=1067&q=75&w=1600&s=cf4bc800984c8e492857b64a0b8aa5ba 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/unitedhealthcare-insurance-autism-denials-applied-behavior-analysis-medicaid">UnitedHealth Is Strategically Limiting Access to Critical Treatment for Kids With Autism</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/annie-waldman">Annie Waldman</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-13EST06:00">Dec. 13, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/elizabeth-nakagawa-miscarriage-military-tricare-abortion-policy"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241107-Bujalski-Life-of-a-Mother-016_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=5df4621d0044e703e33d2945d5b2c55d 400w, https://img.assets-d.propublica.org/v5/images/20241107-Bujalski-Life-of-a-Mother-016_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=114aae7bb14123753fcdf0f52a717b60 800w, https://img.assets-d.propublica.org/v5/images/20241107-Bujalski-Life-of-a-Mother-016_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=5631a3e6daa87325823128982b94853a 1200w, https://img.assets-d.propublica.org/v5/images/20241107-Bujalski-Life-of-a-Mother-016_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=4bfab56b00f1e73a9807f8df5f8b02d4 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/elizabeth-nakagawa-miscarriage-military-tricare-abortion-policy">A Coast Guard Commander Miscarried. She Nearly Died After Being Denied Care.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <span class="name">Erin Edwards</span> for <a href="https://www.propublica.org">ProPublica</a> and <a class="name" href="https://www.propublica.org/people/robin-fields">Robin Fields</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-13EST05:00">Dec. 13, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/glenmark-pharmaceuticals-recalls-fda-oversight"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/FDArecall_opener_FINAL.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=70281fdd7581a0ff1a53f5bd282283f7 400w, https://img.assets-d.propublica.org/v5/images/FDArecall_opener_FINAL.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=02dfebc3e642f3f7e12acf0a4ad506b5 800w, https://img.assets-d.propublica.org/v5/images/FDArecall_opener_FINAL.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=8b593521d76435de36f4620622727f25 1200w, https://img.assets-d.propublica.org/v5/images/FDArecall_opener_FINAL.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=86f5fca542f8185fa6cdd387c3c218c4 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/glenmark-pharmaceuticals-recalls-fda-oversight">The FDA Hasn’t Inspected This Drug Factory After 7 Recalls for the Same Flaw, 1 Potentially Deadly</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/patricia-callahan">Patricia Callahan</a>, <a class="name" href="https://www.propublica.org/people/debbie-cenziper">Debbie Cenziper</a> and <a class="name" href="https://www.propublica.org/people/megan-rose">Megan Rose</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-12EST05:00">Dec. 12, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/getinvolved/before-a-breath-stillbirth-documentary-callout"> <img alt="" src="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/SB_Poster_3x2_NoText-PROMO_2024-12-05-205442_blge.jpg" width="400" height="267" srcset="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/SB_Poster_3x2_NoText-PROMO_2024-12-05-205442_blge.jpg 400w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo800w/SB_Poster_3x2_NoText-PROMO_2024-12-05-205442_blge.jpg 800w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1200w/SB_Poster_3x2_NoText-PROMO_2024-12-05-205442_blge.jpg 1200w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1600w/SB_Poster_3x2_NoText-PROMO_2024-12-05-205442_blge.jpg 1600w " loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/getinvolved/before-a-breath-stillbirth-documentary-callout">Sign Up to Screen Our New Documentary About Stillbirths</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/nadia-sussman">Nadia Sussman</a>, <a class="name" href="https://www.propublica.org/people/duaa-eldeib">Duaa Eldeib</a>, <a class="name" href="https://www.propublica.org/people/liz-moughon">Liz Moughon</a> and <a class="name" href="https://www.propublica.org/people/lisa-riordan-seville">Lisa Riordan Seville</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-09EST06:00">Dec. 9, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/thomas-weiner-montana-st-peters-hospital-oncology"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/Montana-Doc-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=d360a691c330417fd6468a607c88fe88 400w, https://img.assets-d.propublica.org/v5/images/Montana-Doc-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=735f7e857fec5b39298fc86b9b228470 800w, https://img.assets-d.propublica.org/v5/images/Montana-Doc-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=ec64975e14840ace1959811d6c243861 1200w, https://img.assets-d.propublica.org/v5/images/Montana-Doc-Promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=993e21a44e97cf3c72d8aabb3138ac03 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/thomas-weiner-montana-st-peters-hospital-oncology">“Eat What You Kill”</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/j-david-mcswane">J. David McSwane</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-07EST05:00">Dec. 7, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/missouri-abortion-amendment-republican-bill-proposals"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/AP24232840540554_2024-12-04-220110_jtln.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5649&fp-y=0.3174&h=267&q=75&w=400&s=a8d881939509adb2ef0175c395d472dc 400w, https://img.assets-d.propublica.org/v5/images/AP24232840540554_2024-12-04-220110_jtln.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5649&fp-y=0.3174&h=533&q=75&w=800&s=a1d657c5fa7c718a4c6c8fb64b0e27a4 800w, https://img.assets-d.propublica.org/v5/images/AP24232840540554_2024-12-04-220110_jtln.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5649&fp-y=0.3174&h=800&q=75&w=1200&s=2deb2afaef08f02c34a2e2471de52982 1200w, https://img.assets-d.propublica.org/v5/images/AP24232840540554_2024-12-04-220110_jtln.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5649&fp-y=0.3174&h=1067&q=75&w=1600&s=948f996bb2d9ca42a1bbc4b301bf789c 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/missouri-abortion-amendment-republican-bill-proposals">Missouri Voters Enshrined Abortion Rights. GOP Lawmakers Are Already Working to Roll Them Back.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/jeremy-kohler">Jeremy Kohler</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-05EST05:00">Dec. 5, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/trump-medicaid-cuts-texas-residents"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/0313-Medicaid-Hospital-Hostage-Cedar-Park-Final-MC-251_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=34189fe921d35edbae2affdd2aac11c5 400w, https://img.assets-d.propublica.org/v5/images/0313-Medicaid-Hospital-Hostage-Cedar-Park-Final-MC-251_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=6e8863e0b7d10fe58195d7f8972e8003 800w, https://img.assets-d.propublica.org/v5/images/0313-Medicaid-Hospital-Hostage-Cedar-Park-Final-MC-251_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=4ed8cbbcc5abbf49cfd1697200cab49e 1200w, https://img.assets-d.propublica.org/v5/images/0313-Medicaid-Hospital-Hostage-Cedar-Park-Final-MC-251_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=1ae330d262e3221e452ed9926b27bb78 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/trump-medicaid-cuts-texas-residents">If Trump Makes Cuts to Medicaid, Texas Officials Could Seize the Opportunity to Further Slash the Program</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/lomi-kriel">Lomi Kriel</a> and <a class="name" href="https://www.propublica.org/people/jessica-priest">Jessica Priest</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-04EST11:30">Dec. 4, 2024, 10:30 a.m. CST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/idaho-coroner-reform-timeline"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/Idaho-Coroners-Reform-Timeline-Promo_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=c956695abb69ae090750548d3b6c0c85 400w, https://img.assets-d.propublica.org/v5/images/Idaho-Coroners-Reform-Timeline-Promo_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=a70261f20e1830a95a1c7f96531a14c0 800w, https://img.assets-d.propublica.org/v5/images/Idaho-Coroners-Reform-Timeline-Promo_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=f3f46ebb33c67e7490af26aff2a8f942 1200w, https://img.assets-d.propublica.org/v5/images/Idaho-Coroners-Reform-Timeline-Promo_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=7b78227c2aaadb58fb523fbf47b2e98d 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/idaho-coroner-reform-timeline">A Timeline of Failed Efforts to Reform Idaho’s Coroner System</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-02EST05:05">Dec. 2, 2024, 5:05 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/idaho-coroner-law-failed-reform"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20240714-Behring-Idaho-Coroners-60_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=c0dfeb1db097a2b616d1f388ef02414a 400w, https://img.assets-d.propublica.org/v5/images/20240714-Behring-Idaho-Coroners-60_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=9a603111d49472781a1c9d5e2a66b1dc 800w, https://img.assets-d.propublica.org/v5/images/20240714-Behring-Idaho-Coroners-60_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=171e30dc881d69985d1bd2e75d784a82 1200w, https://img.assets-d.propublica.org/v5/images/20240714-Behring-Idaho-Coroners-60_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=8399f44bd4af067b3c9bdc75fd1fc6b4 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/idaho-coroner-law-failed-reform">For Decades, Calls for Reform to Idaho’s Troubled Coroner System Have Gone Unanswered</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-12-02EST05:00">Dec. 2, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/maine-care-facilities-staffing-increases"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20230920-Rice-ElderlyWoodlands-0109_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=63732d64c05ad98297732f22226e5ab8 400w, https://img.assets-d.propublica.org/v5/images/20230920-Rice-ElderlyWoodlands-0109_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=9ff38bdbae89f420fd508321be9af707 800w, https://img.assets-d.propublica.org/v5/images/20230920-Rice-ElderlyWoodlands-0109_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=3d35bdc214b6023dd40baeae229c03b5 1200w, https://img.assets-d.propublica.org/v5/images/20230920-Rice-ElderlyWoodlands-0109_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=e08da8adb8143b0d9049e20a3efe4674 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/maine-care-facilities-staffing-increases">Maine Proposes Major Staffing Increases for Assisted Living and Residential Care Facilities</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> <a class="name" href="https://themainemonitor.org/author/roselundy/">Rose Lundy</a>, <a href="https://www.themainemonitor.org/">The Maine Monitor</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-27EST06:00">Nov. 27, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/porsha-ngumezi-miscarriage-death-texas-abortion-ban"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241118-Villasana-Abortion-Deaths-42_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=870163410d87aa46e70dd4e205274d85 400w, https://img.assets-d.propublica.org/v5/images/20241118-Villasana-Abortion-Deaths-42_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=06842b0e866549bbca884f9849191800 800w, https://img.assets-d.propublica.org/v5/images/20241118-Villasana-Abortion-Deaths-42_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=8b72cd5e13cf7f0a76914d1c3337c1f7 1200w, https://img.assets-d.propublica.org/v5/images/20241118-Villasana-Abortion-Deaths-42_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=777f945978fa2520cefa8bc595dc0152 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/porsha-ngumezi-miscarriage-death-texas-abortion-ban">A Third Woman Died Under Texas’ Abortion Ban. Doctors Are Avoiding D&Cs and Reaching for Riskier Miscarriage Treatments.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a> and <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-25EST06:00">Nov. 25, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/lincare-philips-cpap-breathing-machines-recall-healthcare"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20231126_IeyoubFamily_122_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-21-213421_mmrq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=601a1ec0616a8ed2b86fc11d3e124eef 400w, https://img.assets-d.propublica.org/v5/images/20231126_IeyoubFamily_122_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-21-213421_mmrq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=b82b404f1894dcf0000a30e9fbdd581d 800w, https://img.assets-d.propublica.org/v5/images/20231126_IeyoubFamily_122_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-21-213421_mmrq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=8769e9a71607a74d70ee6f437e83a011 1200w, https://img.assets-d.propublica.org/v5/images/20231126_IeyoubFamily_122_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-21-213421_mmrq.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=73a45e6b816fa293b4eced75da246f3f 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/lincare-philips-cpap-breathing-machines-recall-healthcare">How Lincare Cashed In on the Disastrous Recall of Philips Breathing Machines — at the Expense of Patients</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/peter-elkind">Peter Elkind</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-22EST05:00">Nov. 22, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/georgia-dismisses-maternal-mortality-committee-amber-thurman-candi-miller"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-1221513965_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=c43231f1cb949f14e0d6c9d026446370 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-1221513965_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=c6d73d228cd1959cafb06ac196eebdb8 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-1221513965_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=393c3acd24fd8748011091a2bd6537ce 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-1221513965_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=dff05545a158d966b3e8f42838b4fb39 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/georgia-dismisses-maternal-mortality-committee-amber-thurman-candi-miller">Georgia Dismissed All Members of Maternal Mortality Committee After ProPublica Obtained Internal Details of Two Deaths</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/amy-yurkanin">Amy Yurkanin</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-21EST05:00">Nov. 21, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/texas-abortion-ban-exceptions-deaths"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-texas-impact_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=2a8754ebeaf2f487794d2ec16acf787f 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-texas-impact_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=66403a9ae6525436879bbc55c692b7ed 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-texas-impact_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=363379b0ebf7062e4684253f9ea7d93e 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-texas-impact_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=1fb8db4de2499642f700480a067e96d3 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/texas-abortion-ban-exceptions-deaths">Texas Lawmakers Push for New Exceptions to State’s Strict Abortion Ban After the Deaths of Two Women</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/cassandra-jaramillo">Cassandra Jaramillo</a>, <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a>, <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a> and <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-20EST05:00">Nov. 20, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/unitedhealth-mental-health-care-denied-illegal-algorithm"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/mental-health-united-fallback.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5171&fp-y=0.1621&h=267&q=75&w=400&s=b454b17a075bbc0009926b92a06a60fe 400w, https://img.assets-d.propublica.org/v5/images/mental-health-united-fallback.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5171&fp-y=0.1621&h=533&q=75&w=800&s=954fab4133c82680e9c854c4e20fd2f1 800w, https://img.assets-d.propublica.org/v5/images/mental-health-united-fallback.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5171&fp-y=0.1621&h=800&q=75&w=1200&s=53ffb481d605eabe501dc685571542a0 1200w, https://img.assets-d.propublica.org/v5/images/mental-health-united-fallback.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5171&fp-y=0.1621&h=1067&q=75&w=1600&s=7325bb5818599521512d78fe2f0db8ca 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/unitedhealth-mental-health-care-denied-illegal-algorithm">How UnitedHealth’s Playbook for Limiting Mental Health Coverage Puts Countless Americans’ Treatment at Risk</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/annie-waldman">Annie Waldman</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-19EST05:00">Nov. 19, 2024, 5 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/ghost-networks-health-insurance-regulators"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/MentalHealthGhostRegulations_Final1_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-14-162910_wuob.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6553&fp-y=0.8438&h=267&q=75&w=400&s=d63978e34528ba3b752f6f863da2ba15 400w, https://img.assets-d.propublica.org/v5/images/MentalHealthGhostRegulations_Final1_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-14-162910_wuob.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6553&fp-y=0.8438&h=533&q=75&w=800&s=83f08f140d7e9d64366f4b36a96f80bf 800w, https://img.assets-d.propublica.org/v5/images/MentalHealthGhostRegulations_Final1_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-14-162910_wuob.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6553&fp-y=0.8438&h=800&q=75&w=1200&s=5b77e94eb3405b4abbed17678053c1bb 1200w, https://img.assets-d.propublica.org/v5/images/MentalHealthGhostRegulations_Final1_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95_2024-11-14-162910_wuob.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6553&fp-y=0.8438&h=1067&q=75&w=1600&s=2cc39e67ae463278162ac04d132dd55b 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/ghost-networks-health-insurance-regulators">State Regulators Know Health Insurance Directories Are Full of Wrong Information. They’re Doing Little to Fix It.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/max-blau">Max Blau</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-14EST12:01">Nov. 14, 2024, 12:01 p.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/lincare-medicare-lawsuit-settlements-oxygen-equipment"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241015-Stumpf-BioOxygenLincare-047_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4877&fp-y=0.3346&h=267&q=75&w=400&s=1c486943c790aa32f62f415f3f582ef1 400w, https://img.assets-d.propublica.org/v5/images/20241015-Stumpf-BioOxygenLincare-047_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4877&fp-y=0.3346&h=533&q=75&w=800&s=7b63ec63b2518ac5a36cacf67bd0bc5a 800w, https://img.assets-d.propublica.org/v5/images/20241015-Stumpf-BioOxygenLincare-047_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4877&fp-y=0.3346&h=800&q=75&w=1200&s=169432204d0b19f43b2c624c9906a0f4 1200w, https://img.assets-d.propublica.org/v5/images/20241015-Stumpf-BioOxygenLincare-047_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4877&fp-y=0.3346&h=1067&q=75&w=1600&s=b76c56f3b2bba8ce2a82683fa6c66c69 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/lincare-medicare-lawsuit-settlements-oxygen-equipment">How Lincare Became a Multibillion-Dollar Medicare Scofflaw</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/peter-elkind">Peter Elkind</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-13EST06:00">Nov. 13, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/idaho-coroners-baby-deaths"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241012-DiamondNBB_7701_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=8508e68f198ba20a42971fa701d9f028 400w, https://img.assets-d.propublica.org/v5/images/20241012-DiamondNBB_7701_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=cd5f42ff0332a14c14b50fb994db8cce 800w, https://img.assets-d.propublica.org/v5/images/20241012-DiamondNBB_7701_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=884b0358692c7c983d31c0bbd3ae1090 1200w, https://img.assets-d.propublica.org/v5/images/20241012-DiamondNBB_7701_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=3a588822c3cd972e465fd6e7b3f1634c 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/idaho-coroners-baby-deaths">An Idaho Baby’s Unexplained Death Got No Autopsy and a Scant Coroner’s Investigation. State Law Says That’s Fine.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/audrey-dutton">Audrey Dutton</a>, photography by <span class="name">Natalie Behring</span> for <a href="https://www.propublica.org">ProPublica</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-11EST06:00">Nov. 11, 2024, 6 a.m. EST</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/election-issues-2024-immigration-abortion-economy"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/GettyImages-2178184196_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=e5153b3e793cf41be6c9c244880b2171 400w, https://img.assets-d.propublica.org/v5/images/GettyImages-2178184196_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=906892f2dafdec096e0fb203b5e6c57c 800w, https://img.assets-d.propublica.org/v5/images/GettyImages-2178184196_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=06d52a4794c20ea422deb24022c47ae4 1200w, https://img.assets-d.propublica.org/v5/images/GettyImages-2178184196_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=26f97073ef5d7076390dc9ed70a71a81 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/election-issues-2024-immigration-abortion-economy">ProPublica’s Coverage of the Election Issues That Matter to Voters</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/propublica">ProPublica</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-02EDT06:00">Nov. 2, 2024, 6 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/josseli-barnica-death-miscarriage-texas-abortion-ban-2"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/vanessa.barnica.5-9_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=c4f09b759eee699143c76179401cfa0c 400w, https://img.assets-d.propublica.org/v5/images/vanessa.barnica.5-9_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=1a686e35738ecb3c9aa8fb48ab163fa6 800w, https://img.assets-d.propublica.org/v5/images/vanessa.barnica.5-9_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=fdacff7615e2f69bc1860aa820571652 1200w, https://img.assets-d.propublica.org/v5/images/vanessa.barnica.5-9_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=74f33b1cd5a48369759e44bbe823ba5c 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" lang="es"> <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/josseli-barnica-death-miscarriage-texas-abortion-ban-2">Una mujer de Texas murió después de que el hospital dijera que sería un “delito” intervenir en su aborto espontáneo</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> por <a class="name" href="https://www.propublica.org/people/cassandra-jaramillo">Cassandra Jaramillo</a> y <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-01EDT10:00">Nov. 1, 2024, 10 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/nevaeh-crain-death-texas-abortion-ban-emtala"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241024-Villasana-AbortionDeathsNevaeh-29.jpg-_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=28e01cbe3700edc2f5c18e07eaaa640a 400w, https://img.assets-d.propublica.org/v5/images/20241024-Villasana-AbortionDeathsNevaeh-29.jpg-_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=2d369781422f569adc567b93be051421 800w, https://img.assets-d.propublica.org/v5/images/20241024-Villasana-AbortionDeathsNevaeh-29.jpg-_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=7e44d3df423a29f494b4a64b76c115b7 1200w, https://img.assets-d.propublica.org/v5/images/20241024-Villasana-AbortionDeathsNevaeh-29.jpg-_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=dc783315de6cd1aa52dfb81fcfd2812b 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/nevaeh-crain-death-texas-abortion-ban-emtala">A Pregnant Teenager Died After Trying to Get Care in Three Visits to Texas Emergency Rooms</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/lizzie-presser">Lizzie Presser</a> and <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-11-01EDT06:00">Nov. 1, 2024, 6 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/josseli-barnica-death-miscarriage-texas-abortion-ban"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/JosseliBarnica_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5104&fp-y=0.1827&h=267&q=75&w=400&s=8d7c146b838a9b682cea46c7855d9110 400w, https://img.assets-d.propublica.org/v5/images/JosseliBarnica_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5104&fp-y=0.1827&h=533&q=75&w=800&s=235f3419e9e368ee7cc2b199a7bb6913 800w, https://img.assets-d.propublica.org/v5/images/JosseliBarnica_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5104&fp-y=0.1827&h=800&q=75&w=1200&s=e9fdec560c35288be5503ca7930bc077 1200w, https://img.assets-d.propublica.org/v5/images/JosseliBarnica_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5104&fp-y=0.1827&h=1067&q=75&w=1600&s=c51de9a057ab29dcfbfc3f9fa11076a9 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/josseli-barnica-death-miscarriage-texas-abortion-ban">A Woman Died After Being Told It Would Be a “Crime” to Intervene in Her Miscarriage at a Texas Hospital</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/cassandra-jaramillo">Cassandra Jaramillo</a> and <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-30EDT05:00">Oct. 30, 2024, 5 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/getinvolved/propublica-atraso-texas-medicaid-snap"> <img alt="" src="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg" width="400" height="267" srcset="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 400w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo800w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 800w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1200w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 1200w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1600w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 1600w " loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" lang="es"> <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/getinvolved/propublica-atraso-texas-medicaid-snap">¿Está atrapado en el atraso por la acumulación de solicitudes en Texas para tener Medicaid y cupones de alimentos? ¿Conoce a alguien en esta situación? Ayúdenos a informar.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> por <a class="name" href="https://www.propublica.org/people/jessica-priest">Jessica Priest</a> y <a class="name" href="https://www.propublica.org/people/lomi-kriel">Lomi Kriel</a>, <a href="https://www.propublica.org/texas">ProPublica y The Texas Tribune</a>, y <a class="name" href="https://www.texastribune.org/about/staff/eleanor-klibanoff/">Eleanor Klibanoff</a>, <a href="https://www.texastribune.org/">The Texas Tribune</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-25EDT13:46">Oct. 25, 2024, 12:46 p.m. CDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/texas-medicaid-desconexion-consecuencias"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=f6158731956166fe29f0c48aa7a61d4b 400w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=553f2e8a3dac1a074622a76b1eebc06d 800w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=23817bea7e58f1338e04fe991df91703 1200w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=a77c57fbf53c13d5b4efc18f63a7fe0c 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" lang="es"> <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/texas-medicaid-desconexion-consecuencias">A pesar de las constantes advertencias, Texas se apresuró a despojar a millones de personas de Medicaid</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> por <a class="name" href="https://www.texastribune.org/about/staff/eleanor-klibanoff/">Eleanor Klibanoff</a>, <a href="https://www.texastribune.org/">The Texas Tribune</a>, y <a class="name" href="https://www.propublica.org/people/lomi-kriel">Lomi Kriel</a>, <a href="https://www.propublica.org/texas">ProPublica y The Texas Tribune</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-25EDT13:45">Oct. 25, 2024, 12:45 p.m. CDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/evicore-health-insurance-denials-cigna-unitedhealthcare-aetna-prior-authorizations"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20241022-evicore-denials1x1a.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=785886dbd153e233d798d7d701c1b979 400w, https://img.assets-d.propublica.org/v5/images/20241022-evicore-denials1x1a.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=fc844b47f697cb4edf582ac29e43519d 800w, https://img.assets-d.propublica.org/v5/images/20241022-evicore-denials1x1a.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=690a0930ef2ad473484e51e94b6a37db 1200w, https://img.assets-d.propublica.org/v5/images/20241022-evicore-denials1x1a.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=6813d2b3ac3cb39a2b35c4f00a351616 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/evicore-health-insurance-denials-cigna-unitedhealthcare-aetna-prior-authorizations">“Not Medically Necessary”: Inside the Company Helping America’s Biggest Health Insurers Deny Coverage for Care</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/t-christian-miller">T. Christian Miller</a>, ProPublica; <span class="name">Patrick Rucker</span>, <a href="https://thecapitolforum.com/">The Capitol Forum</a>; and <a class="name" href="https://www.propublica.org/people/david-armstrong">David Armstrong</a>, ProPublica<span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-23EDT13:30">Oct. 23, 2024, 1:30 p.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/missouri-abortion-rights-amendment-anti-transgender-campaign-messaging"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/Missouri-Abortion-Billboard_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4948&fp-y=0.381&h=267&q=75&w=400&s=8e97ae721a8ddbaf06fa86b978312993 400w, https://img.assets-d.propublica.org/v5/images/Missouri-Abortion-Billboard_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4948&fp-y=0.381&h=533&q=75&w=800&s=de8bac6c851fbcbda975854fef7b07df 800w, https://img.assets-d.propublica.org/v5/images/Missouri-Abortion-Billboard_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4948&fp-y=0.381&h=800&q=75&w=1200&s=0821323d4a26b082abcefbe907cab7d5 1200w, https://img.assets-d.propublica.org/v5/images/Missouri-Abortion-Billboard_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.4948&fp-y=0.381&h=1067&q=75&w=1600&s=332d129d78a439d7a04b22480bbb9098 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/missouri-abortion-rights-amendment-anti-transgender-campaign-messaging">Opponents of Missouri Abortion Rights Amendment Turn to Anti-Trans Messaging and Misinformation</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/jeremy-kohler">Jeremy Kohler</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-18EDT05:00">Oct. 18, 2024, 5 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/help-propublica-report-on-maternal-health-abortion-bans"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-column-callout_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=2de68e9005882fe9f367dee849092dc1 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-column-callout_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=f36fdad5678da62de4d4d5eba6d38ab6 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-column-callout_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=de22e37cfe7838df750364dd9a2b42e8 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-column-callout_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=5a60c3ce1e97f4f41a9aca458a618642 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/help-propublica-report-on-maternal-health-abortion-bans">How We Report on Maternal Health — and How to Get in Touch With Our Team</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/alexandra-zayas">Alexandra Zayas</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-03EDT11:00">Oct. 3, 2024, 11 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/georgia-judge-lifts-six-week-abortion-ban-after-deaths"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20240929-Blas-Abortion-Vigil-Sequence_72_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=f21622fb900bb5f92a93e578f5ecfb83 400w, https://img.assets-d.propublica.org/v5/images/20240929-Blas-Abortion-Vigil-Sequence_72_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=673055c798dd2f17ff980fa7a6ade905 800w, https://img.assets-d.propublica.org/v5/images/20240929-Blas-Abortion-Vigil-Sequence_72_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=72378b392ec06667463bfac084de84d8 1200w, https://img.assets-d.propublica.org/v5/images/20240929-Blas-Abortion-Vigil-Sequence_72_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=e50d3a86836103aec3dcd60bbdb50e73 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/georgia-judge-lifts-six-week-abortion-ban-after-deaths">Georgia Judge Lifts Six-Week Abortion Ban After Deaths of Two Women Who Couldn’t Access Care</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-03EDT05:00">Oct. 3, 2024, 5 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/newark-beth-israel-lawsuit-darryl-young-heart-transplant"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20191002-DFreeman-Newark-iPhone-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=87fea612976029f46b0145cf9c2adfd8 400w, https://img.assets-d.propublica.org/v5/images/20191002-DFreeman-Newark-iPhone-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=0046bf867946d521f3cf643283a38a66 800w, https://img.assets-d.propublica.org/v5/images/20191002-DFreeman-Newark-iPhone-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=eb4c90663b116bdf0d846dbc39b0639b 1200w, https://img.assets-d.propublica.org/v5/images/20191002-DFreeman-Newark-iPhone-3x2_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=19b16670adb3d54c8f3f17cdf79009ac 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/newark-beth-israel-lawsuit-darryl-young-heart-transplant">A Hospital Kept a Brain-Damaged Patient on Life Support to Boost Statistics. His Sister Is Now Suing for Malpractice.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/caroline-chen">Caroline Chen</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-10-02EDT06:00">Oct. 2, 2024, 6 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/getinvolved/help-propublica-report-on-texas-medicaid-snap-backlog"> <img alt="" src="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg" width="400" height="267" srcset="https://assets-c3.propublica.org/images/getInvolved/_threeTwo400w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 400w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo800w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 800w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1200w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 1200w, https://assets-c3.propublica.org/images/getInvolved/_threeTwo1600w/20240805-Villasana-TX-Motherhood-36_maxWidth_3000_maxHeight_3000_ppi_72_quality_95_embedColorProfile_true_2024-09-25-184154_zacc.jpg 1600w " loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/getinvolved/help-propublica-report-on-texas-medicaid-snap-backlog">Caught in Texas’ Medicaid and Food Stamp Application Backlog? Know Someone Who Is? Help Us Report.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/jessica-priest">Jessica Priest</a> and <a class="name" href="https://www.propublica.org/people/lomi-kriel">Lomi Kriel</a>, <a href="https://www.propublica.org/texas">ProPublica and The Texas Tribune</a>, and <a class="name" href="https://www.texastribune.org/about/staff/eleanor-klibanoff/">Eleanor Klibanoff</a>, <a href="https://www.texastribune.org/">The Texas Tribune</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-09-26EDT06:05">Sept. 26, 2024, 5:05 a.m. CDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/texas-medicaid-unwinding-consequences"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=f6158731956166fe29f0c48aa7a61d4b 400w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=553f2e8a3dac1a074622a76b1eebc06d 800w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=23817bea7e58f1338e04fe991df91703 1200w, https://img.assets-d.propublica.org/v5/images/20240804-Villasana-TX-Motherhood-14_preview_maxWidth_3000_maxHeight_3000_ppi_72_embedColorProfile_true_quality_95.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=a77c57fbf53c13d5b4efc18f63a7fe0c 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/texas-medicaid-unwinding-consequences">Despite Persistent Warnings, Texas Rushed to Remove Millions From Medicaid. That Move Cost Eligible Residents Care.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.texastribune.org/about/staff/eleanor-klibanoff/">Eleanor Klibanoff</a>, <a href="https://www.texastribune.org/">The Texas Tribune</a>, and <a class="name" href="https://www.propublica.org/people/lomi-kriel">Lomi Kriel</a>, <a href="https://www.propublica.org/texas">ProPublica and The Texas Tribune</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-09-26EDT06:00">Sept. 26, 2024, 5 a.m. CDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/amber-thurman-georgia-abortion-wyden-emtala"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/20240917-Blas-Abortion-Death-06.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6034&fp-y=0.5554&h=267&q=75&w=400&s=2555f61af1d6e6ce6f3d2ff9f5815080 400w, https://img.assets-d.propublica.org/v5/images/20240917-Blas-Abortion-Death-06.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6034&fp-y=0.5554&h=533&q=75&w=800&s=a0a96e3f3340cbacd5987e694304aae9 800w, https://img.assets-d.propublica.org/v5/images/20240917-Blas-Abortion-Death-06.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6034&fp-y=0.5554&h=800&q=75&w=1200&s=5d0e49c09ec3a98f6319afe38802b022 1200w, https://img.assets-d.propublica.org/v5/images/20240917-Blas-Abortion-Death-06.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.6034&fp-y=0.5554&h=1067&q=75&w=1600&s=d7c3d5c32281e9631c01a3760de92fc3 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/amber-thurman-georgia-abortion-wyden-emtala">Did a Georgia Hospital Break Federal Law When It Failed to Save Amber Thurman? A Senate Committee Chair Wants Answers.</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/ziva-branstetter">Ziva Branstetter</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-09-23EDT11:15">Sept. 23, 2024, 11:15 a.m. EDT</time> </p> </div> </div> <div class="story-river-item"> <div class="story-river-item__art"> <div class="lead-art"> <a class="aspect-3-2" href="https://www.propublica.org/article/candi-miller-abortion-ban-death-georgia"> <img alt="" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%273%27%20height%3D%272%27%20style%3D%27background%3Atransparent%27%2F%3E" srcset="https://img.assets-d.propublica.org/v5/images/abortion-deaths-candi-promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=267&q=75&w=400&s=3721c8ace9a0431197695152e2d88ea2 400w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-candi-promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=533&q=75&w=800&s=502355afea8c0faddab92c18c4e52c9b 800w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-candi-promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=800&q=75&w=1200&s=98826a19703f253f513adb656bc20368 1200w, https://img.assets-d.propublica.org/v5/images/abortion-deaths-candi-promo.jpg?crop=focalpoint&fit=crop&fm=webp&fp-x=0.5&fp-y=0.5&h=1067&q=75&w=1600&s=6ec0c72bb885ae125220314255aa1724 1600w" width="400" height="267" loading="lazy" js-autosizes /> </a> </div> </div> <h4 class="story-river-item__hed" > <a class="link-style--no-decoration link-style--hover-underline-color" href="https://www.propublica.org/article/candi-miller-abortion-ban-death-georgia">Afraid to Seek Care Amid Georgia’s Abortion Ban, She Stayed at Home and Died</a> </h4> <div class="story-river-item__meta"> <p class="story-river-item__byline"> by <a class="name" href="https://www.propublica.org/people/kavitha-surana">Kavitha Surana</a><span class="hide-above-lg">, </span> </p> <p class="story-river-item__dateline"><time class="timestamp" datetime="2024-09-18EDT06:00">Sept. 18, 2024, 6 a.m. EDT</time> </p> </div> </div> <nav class="pagination | stack stack--row stack--spacing-2 stack--align-center stack--justify-center"> <span class="pagination__number pagination__number--current">1</span> <a class="pagination__number" href="https://www.propublica.org/topics/health-care/p2">2</a> <a class="pagination__number" href="https://www.propublica.org/topics/health-care/p3">3</a> <span class="pagination__truncation">…</span> <a class="pagination__number" href="https://www.propublica.org/topics/health-care/p18">18</a> <a href="https://www.propublica.org/topics/health-care/p2" class="pagination__arrow | btn btn--circular btn--icon-only" style="--button-color: var(--color-neutral-10); --button-text-color: var(--color-light-none)" > <span class="a11y">Next</span> <div class="btn__icon"> <svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"> <title>Arrow Right</title> <line x1="5" y1="12" x2="19" y2="12"></line> <polyline points="12 5 19 12 12 19"></polyline> </svg> </div> </a> </nav> </div> <!-- end .listing-river --> </div> </main><!-- end .content --> <style> /* re-assert som CSS Custom Properties from v5 */ .admin-shortcuts { --fonts-sans: "Graphik", sans-serif; --scale0: 1rem; --scale-1: 13px; --scale-2: 11px; --scale-3: 9px; --spacing-2: 4px; --spacing-1: 8px; --spacing0: 16px; --spacing1: 24px; --spacing2: 32px; --spacing3: 64px; } .admin-shortcuts { position: fixed; z-index: 10000; bottom: 0; right: var(--spacing0); width: auto; display: flex; flex-direction: row; justify-content: center; align-content: center; gap: var(--spacing0); padding: var(--spacing-1) var(--spacing0); background-color: black; color: white; font-size: var(--scale-1); font-family: var(--fonts-sans); border-radius: 0.25rem 0.25rem 0 0; } .admin-shortcuts__link { display: inline-block; text-decoration: none; color: inherit; display: flex; gap: 0.33em; } .admin-shortcuts__user:before { content: ""; width: 0.66em; height: 0.66em; border-radius: 100%; background-color: #14b84f; /* green 50 */ } .admin-shortcuts__user { padding-right: calc(var(--spacing-2) * 4); border-right: 1px solid hsla(0, 0%, 100%, 0.2); } .admin-shortcuts__user:before, .admin-shortcuts__icon { align-self: center; } .admin-shortcuts__icon { width: 1.1em; height: 1.1em; } </style> <script type="application/json" class="svelte-config"> {"componentName":"SiteFooter","props":{"newsletterSignupProps":{"source":"https://www.propublica.org/","region":"national"}},"contextArray":[]} </script> <footer class="site-footer hide-print svelte-m9jkvx" id="site-footer" data-pp-location="footer"><div class="site-footer__section-newsletter svelte-m9jkvx"><div class="site-footer__newsletter-wrap svelte-m9jkvx"><strong class="site-footer__newsletter-heading svelte-m9jkvx" data-svelte-h="svelte-1f8pah3">Stay informed with the Daily Digest.</strong> <div class="newsletter-signup__input-wrap svelte-m9jkvx"><form class="newsletter-signup" action="https://signup.propublica.org/newsletter/turing" method="post" name="newsletterSignup"><div role="region" aria-live="polite" class="newsletter-signup__feedback" data-svelte-h="svelte-2nawdb"><p class="newsletter-signup__error-message"></p></div> <div class="newsletter-signup__input-wrap newsletter-signup__input-wrap--null svelte-10wydf7"><span class="icon"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>Mail</title><path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path><polyline points="22,6 12,13 2,6"></polyline></svg></span> <label for="site-footer-signup" class="a11y">Email Address:</label> <input class="newsletter-signup__input-text svelte-10wydf7" type="email" placeholder="Enter your email" id="site-footer-signup" name="email" onfocus="recaptchaInit()" required> <div class="newsletter-signup__submit-btn-wrapper svelte-10wydf7"> <button class="button shape--circle button-is-icon-only svelte-1qpwxqa" data-pp-skip="false" style="--button-bg-color: transparent; --button-border: none; --button-color: var(--color-light-none); --button-font-size: var(--scale-1); --button-horizontal-spacing: var(--scale-1); --button-size: var(--scale3); --icon-size: fill;"><span class="icon-before svelte-1qpwxqa"><svg role="img" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><title>Arrow Right</title><path fill-rule="evenodd" clip-rule="evenodd" d="M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12ZM16.7064 11.2922L12.7071 7.29289C12.3166 6.90237 11.6834 6.90237 11.2929 7.29289C10.9024 7.68342 10.9024 8.31658 11.2929 8.70711L13.5858 11H8C7.44772 11 7 11.4477 7 12C7 12.5523 7.44772 13 8 13H13.5858L11.2929 15.2929C10.9024 15.6834 10.9024 16.3166 11.2929 16.7071C11.6834 17.0976 12.3166 17.0976 12.7071 16.7071L16.7064 12.7078L16.7136 12.7005C16.8901 12.5208 16.9992 12.2746 17 12.003L17 12L17 11.997C16.9996 11.8625 16.9727 11.7343 16.9241 11.6172C16.8764 11.502 16.8063 11.3938 16.7136 11.2995L16.7064 11.2922Z" fill="currentColor"></path></svg></span> <span class="text font--sans svelte-1qpwxqa a11y">Sign Up</span> </button></div> <input type="hidden" name="stlist" value="The Daily Digest"> <input type="hidden" name="success_location" value="https://www.propublica.org/forms/thankyou"> <input type="hidden" name="error_location" value="https://www.propublica.org/forms/error"> <input type="hidden" name="placement" value="site-footer"> <input type="hidden" name="region" value="national"> <input type="hidden" name="source" value="https://www.propublica.org/"></div> <div class="newsletter-signup__post-signup-prompt" role="region" aria-live="polite" data-svelte-h="svelte-1uvtbcq"></div></form> </div></div> </div> <div class="site-footer__wrap-outer svelte-m9jkvx"><div class="site-footer__wrap-inner svelte-m9jkvx"> <div class="site-footer__section-logo svelte-m9jkvx"><a class="site-footer__wordmark svelte-m9jkvx" href="https://www.propublica.org/"><svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 574.24 75" fill="currentColor"><title>ProPublica</title><path d="M66.4,13.48,66,14.91l6.23,11.45,1.15.47L75,26.29V75H50.95A41.2,41.2,0,0,0,62.13,46.88a40.61,40.61,0,0,0-3.39-16.26,45.17,45.17,0,0,1,7.79-4.95l1.69-.2.14-.41L65,18.83H64.5l-.88,1.29c-2.91,1.9-4.67,2.3-8.54,3.79A41.35,41.35,0,0,0,20.46,5.42,39.87,39.87,0,0,0,0,10.91V0H75V8.81ZM57.32,47A37.54,37.54,0,0,1,44.65,75H0V16A37,37,0,0,1,57.32,47ZM43.7,37.06c0-8.13-6-12-17.75-12H7.18v3.66l4.2.95V62.2l-4.2.95v3.73H27.85V63.14l-7.18-.95V50.14h5.15C37.26,50.14,43.7,45.53,43.7,37.06Zm-9.76.27c0,5.15-2.78,8.33-7.25,8.33h-6V29.47H27C31.37,29.47,33.94,32.32,33.94,37.33Z"></path><path d="M116.53,60.07l9.15,1.08v4.2H99.39v-4.2l5.28-1.36v-44l-5.28-1.36V10.41H123c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.09-11.45h-7.25Z"></path><path d="M200.74,61.15v4.2H185.9l-16-20.6h-2.51v15l5.28,1.36v4.2H150.27v-4.2l5.28-1.36V23.35l-5-1.36V17.93H175.2c10.5,0,17.55,5.08,17.55,12.67,0,8.4-5.76,12.2-11,13.55l13.48,15.79ZM167.41,39.74h4.47c5.76,0,8.81-3.18,8.81-8.88,0-5.35-2.85-7.93-8.81-7.93h-4.47Z"></path><path d="M199.59,41.64c0-14.77,9.82-24.73,25.68-24.73s25.68,10,25.68,24.73-9.82,24.73-25.68,24.73S199.59,56.48,199.59,41.64Zm38.89,0c0-9.69-3.25-19.17-13.21-19.17S212.05,32,212.05,41.64s3.25,19.17,13.21,19.17S238.48,51.33,238.48,41.64Z"></path><path d="M270.79,60.07l9.15,1.08v4.2H253.31v-4.2l5.62-1.36v-44l-5.62-1.36V10.41h24c15.31,0,22.9,5.28,22.9,16.13,0,11.18-8.33,17.41-23.1,17.41h-6.3Zm0-21.14h6.84c6.44,0,10.5-4.61,10.5-12.06,0-7.18-3.73-11.45-10.1-11.45h-7.25Z"></path><path d="M354.26,22l-4.95,1.36V47c0,12.87-7.79,19.38-20.05,19.38-13.62,0-20.73-7.86-20.73-20v-23L303.58,22V17.93h22V22l-5.08,1.36V47.74c0,7.25,4.34,12.06,11.45,12.06,6.84,0,11.25-4.47,11.25-11.31V23.35L338.14,22V17.93h16.12Z"></path><path d="M403.85,52.21c0,8.88-7.11,13.14-22,13.14H357.58v-4.2l5.56-1.36V23.35L358.26,22V17.93h23.92c12.6,0,19.51,3.79,19.51,11.72,0,6.17-4.06,9.08-10.91,9.89v.27C399.31,40.76,403.85,45.1,403.85,52.21ZM375,38.32h5.76c6.1,0,9-2.78,9-7.79,0-5.22-3.12-7.59-9-7.59H375Zm16.8,13.41c0-5.62-3.79-8.67-11.25-8.67H375V60.34h6.64C388.07,60.34,391.79,57.29,391.79,51.74Z"></path><path d="M451.07,48.62l-4.4,16.73H408v-4.2l5.28-1.36V23.35L407.65,22V17.93h22.76V22l-5.28,1.36v37l14.16-.81L447,47.26Z"></path><path d="M475.4,61.15v4.2H453v-4.2l5.28-1.36V23.35L453,22V17.93H475.4V22l-5.28,1.36V59.8Z"></path><path d="M478,41.78c0-15.85,12.13-24.86,27-24.86a35.6,35.6,0,0,1,18.29,5.15l-2,13.21h-4.2l-1.69-9.08a13.23,13.23,0,0,0-10.09-4.13c-9.15,0-14.7,6.57-14.7,18.22,0,13.21,6.84,19.31,15.24,19.31,6.17,0,10.23-3.39,13.41-9.55l4.27,2c-4.27,10-11.65,14.36-21.07,14.36C488.4,66.37,478,56.48,478,41.78Z"></path><path d="M574.24,61.15v4.2H551.48v-4.2L557,60l-2.85-8.13h-16.6l-3.12,8.2,5.42,1.15-.07,4.2-16.53-.07v-4.2l4.27-1.08,14.9-37.33-4-1.29V17.93h13.69L569.3,60Zm-27.57-31-.47-1.56-.47,1.56-6.23,16.73h12.94Z"></path></svg></a> <strong class="site-footer__tagline svelte-m9jkvx" data-svelte-h="svelte-1xxi0b1">Investigative Journalism in the Public Interest</strong> <p class="site-footer__copyright svelte-m9jkvx">© Copyright 2025 Pro Publica Inc.</p></div> <nav class="site-footer__section-links svelte-m9jkvx"> <div class="site-footer__links-sites svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">Sites</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-sites"><li class="site-footer__link"><a href="https://www.propublica.org/" class="svelte-m9jkvx">ProPublica</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/local-reporting-network/" class="svelte-m9jkvx">Local Reporting Network</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/texas/" class="svelte-m9jkvx">Texas Tribune Partnership</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/datastore/" class="svelte-m9jkvx">The Data Store</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/electionland/" class="svelte-m9jkvx">Electionland</a> </li></ul> </div> <div class="site-footer__links-sections svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">Sections</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-sections"><li class="site-footer__link"><a href="https://www.propublica.org/topics/" class="svelte-m9jkvx">Topics</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/series/" class="svelte-m9jkvx">Series</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/video/" class="svelte-m9jkvx">Videos</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/newsapps/" class="svelte-m9jkvx">News Apps</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/getinvolved/" class="svelte-m9jkvx">Get Involved</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/nerds/" class="svelte-m9jkvx">The Nerd Blog</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/atpropublica/" class="svelte-m9jkvx">@ProPublica</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/events/" class="svelte-m9jkvx">Events</a> </li></ul> </div> <div class="site-footer__links-info svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">Info</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-info"><li class="site-footer__link"><a href="https://www.propublica.org/about/" class="svelte-m9jkvx">About</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/leadership/" class="svelte-m9jkvx">Board and Advisors</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/staff/" class="svelte-m9jkvx">Officers and Staff</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/diversity/" class="svelte-m9jkvx">Diversity</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/jobs/" class="svelte-m9jkvx">Jobs</a> and <a href="https://www.propublica.org/fellowships/" class="svelte-m9jkvx">Fellowships</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/media-center/" class="svelte-m9jkvx">Media Center</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/reports/" class="svelte-m9jkvx">Reports</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/impact/" class="svelte-m9jkvx">Impact</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/awards/" class="svelte-m9jkvx">Awards</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/corrections/" class="svelte-m9jkvx">Corrections</a> </li></ul> </div> <div class="site-footer__links-policies svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">Policies</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-policies"><li class="site-footer__link"><a href="https://www.propublica.org/code-of-ethics/" class="svelte-m9jkvx">Code of Ethics</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/advertising/" class="svelte-m9jkvx">Advertising Policy</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/legal/" class="svelte-m9jkvx">Privacy Policy</a> </li></ul> </div> <div class="site-footer__links-follow svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">Follow</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-follow"><li class="site-footer__link"><a href="https://www.propublica.org/newsletters/" data-pp-view="" data-pp-action="visit" class="svelte-m9jkvx">Newsletters</a> </li><li class="site-footer__link"><a href="https://itunes.apple.com/us/app/propublica/id355298887?mt=8" class="svelte-m9jkvx">iOS</a> and <a href="https://play.google.com/store/apps/details?id=com.propublica&amp;hl=en" class="svelte-m9jkvx">Android</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/feeds/propublica/main" class="svelte-m9jkvx">RSS Feed</a> </li></ul> </div> <div class="site-footer__links-more svelte-m9jkvx"> <strong class="site-footer__links-heading svelte-m9jkvx">More</strong> <ul class="site-footer__links-list svelte-m9jkvx hide-below-sm" id="site-footer__links-list-more"><li class="site-footer__link"><a href="https://www.propublica.org/tips/" class="svelte-m9jkvx">Send Us Tips</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/steal-our-stories/" class="svelte-m9jkvx">Steal Our Stories</a> </li><li class="site-footer__link"><a href="http://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/" class="svelte-m9jkvx">Browse via Tor</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/contact/" class="svelte-m9jkvx">Contact Us</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/donate/" data-pp-view="" data-pp-action="visit classy" class="svelte-m9jkvx">Donate</a> </li><li class="site-footer__link"><a href="https://www.propublica.org/support/other-ways-to-give/" class="svelte-m9jkvx">More Ways to Give</a> </li></ul> </div></nav> </div> </div> </footer> <!--svelte-component-end--> <script type="application/json" class="svelte-config"> {"componentName":"BottomPanelCta","props":{"contentUrl":"https://www.propublica.org//api_components/modal-default.json"},"contextArray":[]} </script> <div data-pp-location="modal" data-pp-view data-pp-category="newsletter_signup" id="cta" class="cta cta-type-panel cta-fixed cta-closed svelte-rz6ji1" aria-hidden="true"><button id="cta-close" class="cta-close svelte-rz6ji1" data-svelte-h="svelte-12f7hfy"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svelte-rz6ji1"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></button> <div class="cta-container cta-undefined svelte-rz6ji1"><div class="cta-message svelte-rz6ji1"><h2 class="cta-heading svelte-rz6ji1">undefined</h2> <p class="cta-text svelte-rz6ji1">undefined</p></div> </div></div> <div id="cta-toast" class="cta-toast svelte-rz6ji1" role="alert" style="background-color: var(--blue-70);"><div id="cta-toast-text" class="cta-toast-text svelte-rz6ji1"></div> <button id="cta-toast-button" class="cta-toast-button svelte-rz6ji1" data-svelte-h="svelte-8kx5h6"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="svelte-rz6ji1"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg></button> </div> <!--svelte-component-end--> <script src="https://assets.propublica.org/static/prod/v5/js/main.341eb5fd.js"></script> <script> // Google Tag Manager (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-K8BNLGX'); // End Google Tag Manager PP.utils.loadJS('https://ak.sail-horizon.com/spm/spm.v1.min.js',function() { while(!window.hasOwnProperty("Sailthru")) { setTimeout(Function.prototype(), 500); } Sailthru.init({ "customerId" : "c1d320b4976cc13366759531bf948c3a" }); }); // Parse.ly PP.utils.loadJS('//cdn.parsely.com/keys/propublica.org/p.js'); </script> <!-- GA4 (for no-JS pages) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-K8BNLGX" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <script>PP.utils.loadJS('https://www.google.com/recaptcha/api.js?onload=grecaptchaLoaded&render=6LcC1roqAAAAAK9equRCqsCagWPYzf79SKrxGFGY');</script> <script> const noAds = new URLSearchParams(window.location.search).get('__no-ads'); let adTimeout = new URLSearchParams(window.location.search).get('__ad-timeout'); if( noAds === null ) { if( adTimeout === null ) { adTimeout = 0; } setTimeout(function() { PP.utils.loadJS('https://htlbid.com/v3/propublica.org/htlbid.js',function() { window.htlbid = window.htlbid || {}; htlbid.cmd = htlbid.cmd || []; htlbid.cmd.push(function() { htlbid.layout("universal"); // Leave as "universal" or add custom layout htlbid.setTargeting("is_testing", "no"); htlbid.setTargeting("is_home", "no"); // Set to "yes" on the homepage htlbid.setTargeting("post_tags", ""); }); }); }, adTimeout); } </script> <!-- Begin Convert Experiences code--> <script> // This variable prevents Convert from creating an overlay that can cover the page. Because we use deferred loading, we never want this overlay. // https://support.convert.com/hc/en-us/articles/205160025-Disable-Body-Hiding-in-Convert-Experiences var _conv_prevent_bodyhide = true; </script> <script defer src="//cdn-4.convertexperiments.com/js/1004759-1004714.js"></script> <!-- End Convert Experiences code --> <!-- Hotjar Tracking Code for ProPublica --> <script> (function(h,o,t,j,a,r){ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)}; h._hjSettings={hjid:3261149,hjsv:6}; a=o.getElementsByTagName('head')[0]; r=o.createElement('script');r.async=1; r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv; a.appendChild(r); })(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv='); </script> <!-- Iterate Code --> <!-- Iterate baseline styles: additional styles included in pp-v5-shared --> <style> .iterate__container { font-family: var(--fonts-sans, "graphik") !important; } </style> <script> // Iterate setup script window.iterateSettings = { apiKey: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjb21wYW55X2lkIjoiNjJmM2M2ZGNjYmVhNDQwMDAxNDZmMjRjIiwiaWF0IjoxNjYwMTQzMzI1fQ.HJYYZWnRLo7nKQHPteT9eeNeXePWXpYAyhaNyFAES-Y', }; (function(i,t,e,r,a){if(t.getElementById(r)){return} i.IterateObjectName=a;var z=function(){z.c(arguments)};z.q=[]; z.c=function(args){z.q.push(args)};i[a]=z; function l() {var js,fjs=t.getElementsByTagName(e)[0];js=t.createElement(e);js.id=r;js.async=1;js.src="https://platform.iteratehq.com/loader.js";fjs.parentNode.insertBefore(js,fjs)}; if(t.readyState==="complete") {l();} else if(i.attachEvent) {i.attachEvent('onload', l);} else{i.addEventListener('load', l, false);} }(window, document,'script','iterate-js','Iterate')); // Start Iterate: this will check the server to see if a survey should be displayed Iterate('install') // Pass custom properties to Iterate: the 2nd parameter is user-level data, the 3rd parameter is response-level data var url = new URL(window.location.href); Iterate('identify', null, { canonical: 'https://v3-www.propublica.org/topics/health-care', utm_campaign: url.searchParams.get("utm_campaign"), utm_medium: url.searchParams.get("utm_medium"), utm_source: url.searchParams.get("utm_source") }) </script> <!-- End Iterate Code --> <script type="application/ld+json">{"@context":"http://schema.org","@graph":[{"@type":"WebPage","author":{"@id":"https://www.propublica.org#identity"},"copyrightHolder":{"@id":"https://www.propublica.org#identity"},"copyrightYear":"2019","creator":{"@id":"#creator"},"dateCreated":"2019-12-09T23:12:43-05:00","dateModified":"2023-08-03T13:34:16-04:00","datePublished":"2019-12-09T23:12:43-05:00","description":"Read the latest health care investigations from ProPublica.","headline":"Investigative Reporting on Health Care","image":{"@type":"ImageObject","url":"https://assets.propublica.org/2017-pp-open-graph-1200x630.jpg"},"inLanguage":"en-us","mainEntityOfPage":"https://www.propublica.org/topics/health-care","name":"Investigative Reporting on Health Care","publisher":{"@id":"#creator"},"url":"https://www.propublica.org/topics/health-care"},{"@id":"https://www.propublica.org#identity","@type":"NewsMediaOrganization","address":{"@type":"PostalAddress","addressCountry":"US","addressLocality":"New York","addressRegion":"NY","postalCode":"10013","streetAddress":"155 Avenue of the Americas, 13th Floor"},"description":"ProPublica is an independent, non-profit newsroom that produces investigative journalism in the public interest.","email":"info@propublica.org","name":"ProPublica","sameAs":["https://twitter.com/propublica","https://www.facebook.com/propublica/","https://en.wikipedia.org/wiki/ProPublica","https://www.youtube.com/user/propublica","https://github.com/propublica","https://www.linkedin.com/company/propublica/","https://www.instagram.com/propublica","https://www.pinterest.com/propublica","https://vimeo.com/propublica"],"telephone":"1-212-514-5250","url":"https://www.propublica.org"},{"@id":"#creator","@type":"Organization"},{"@type":"BreadcrumbList","description":"Breadcrumbs list","itemListElement":[{"@type":"ListItem","item":"https://www.propublica.org","name":"Homepage","position":1},{"@type":"ListItem","item":"https://www.propublica.org/topics","name":"Topics","position":2},{"@type":"ListItem","item":"https://www.propublica.org/topics/health-care","name":"Health Care","position":3}],"name":"Breadcrumbs"}]}</script></body> </html>