<?xml version="1.0" encoding="UTF-8"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" version="2.0"><channel><title><![CDATA[WPLG]]></title><link>https://www.local10.com</link><atom:link href="https://www.local10.com/arc/outboundfeeds/google-news-feed/" rel="self" type="application/rss+xml"/><description><![CDATA[WPLG News Feed]]></description><lastBuildDate>Fri, 31 Jul 2026 21:42:13 +0000</lastBuildDate><language>en</language><ttl>1</ttl><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><item><title><![CDATA[Broward adds arts, technology programs as district prepares for more closures]]></title><link>https://www.local10.com/news/local/2026/07/31/broward-adds-arts-technology-programs-as-district-prepares-for-more-closures/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/broward-adds-arts-technology-programs-as-district-prepares-for-more-closures/</guid><dc:creator><![CDATA[Janine Stanwood]]></dc:creator><description><![CDATA[Broward County Public Schools is making a last-minute pitch to families as the district faces declining enrollment and the possibility of more school closures.]]></description><pubDate>Fri, 31 Jul 2026 21:41:08 +0000</pubDate><content:encoded><![CDATA[<p>Broward County Public Schools is making a last-minute pitch to families as the district faces declining enrollment and the possibility of more school closures.</p><p>Superintendent Howard Hepburn did not shy away from the challenges facing the district, saying enrollment is down and more schools will have to close.</p><p>“We will have to close schools again this year. We have to align ourselves to our enrollment realities and inherently align ourselves to our budget realities,” Hepburn said.</p><p>The superintendent said the district has about 50,000 vacant seats, and projections show the decline is continuing.</p><p>At the same time, Broward schools are expanding their curriculum to attract and support students.</p><p>All elementary schools will now offer at least three special courses, including art and physical education.</p><p>“These are challenging times for us financially, but we prioritize our students first and went through the budget line by line, and we did some trade-offs to make sure something like this could happen,” Hepburn said.</p><p>The district is also adding special space programs and expanding access to high-tech tools, including 3D printing and virtual reality. Technology currently available in a lab at Nova Middle School will be offered across the district.</p><p>Students using the virtual reality equipment can create 3D drawings while building skills like spatial reasoning.</p><p>Hepburn said the goal remains to provide opportunities for all students.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Early voting begins Monday in Miami-Dade County]]></title><link>https://www.local10.com/news/politics/2026/07/31/early-voting-begins-monday-in-miami-dade-county/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/early-voting-begins-monday-in-miami-dade-county/</guid><dc:creator><![CDATA[Aaron Maybin]]></dc:creator><description><![CDATA[The clock is ticking as early voting gets ready to begin for a pivotal primary election in Miami-Dade County.]]></description><pubDate>Fri, 31 Jul 2026 20:41:43 +0000</pubDate><content:encoded><![CDATA[<p>The clock is ticking as <a href="https://www.local10.com/news/politics/2026/07/31/local-10-editorial-early-voting-begins-next-week-get-out-and-vote/" target="_self" rel="" title="https://www.local10.com/news/politics/2026/07/31/local-10-editorial-early-voting-begins-next-week-get-out-and-vote/">early voting gets ready to begin for a pivotal primary election in Miami-Dade County.</a></p><p>Early voting starts Monday, and election workers spent Friday putting the finishing touches on all 23 early voting locations, including the Office of the Supervisor of Elections in Doral.</p><p>Miami-Dade Supervisor of Elections Alina Garcia said her office is focused on making the voting process smooth and efficient for voters.</p><p>“It’s five minutes, but you have to do your homework,” Garcia said. “People take long because they don’t know who their candidates are.”</p><p>Early voting will run through Aug. 16.</p><p>For specific hours and voting locations, check your county elections website or by clicking this <a href="https://www.local10.com/news/politics/2026/03/18/voter-guide-here-is-how-to-prepare-for-floridas-primary-election/" target="_self" rel="" title="https://www.local10.com/news/politics/2026/03/18/voter-guide-here-is-how-to-prepare-for-floridas-primary-election/">link.</a></p>]]></content:encoded></item><item><title><![CDATA[Zelenskyy asks Trump to help him get Elon Musk's OK to use Starlink to help with strikes on Russia]]></title><link>https://www.local10.com/news/politics/2026/07/31/zelenskyy-asks-trump-to-help-him-get-elon-musks-ok-to-use-starlink-to-help-with-strikes-on-russia/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/zelenskyy-asks-trump-to-help-him-get-elon-musks-ok-to-use-starlink-to-help-with-strikes-on-russia/</guid><dc:creator><![CDATA[By LISA MASCARO, AAMER MADHANI and COLLIN BINKLEY, Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — Ukrainian President Volodymyr Zelenskyy has pitched President Donald Trump and other American officials on helping Ukraine win permission from tech titan Elon Musk to use his Starlink satellite communications system to guide strikes inside Russia.]]></description><pubDate>Fri, 31 Jul 2026 21:33:13 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — Ukrainian President Volodymyr Zelenskyy has pitched President Donald Trump and other American officials on helping Ukraine win permission from tech titan Elon Musk to use his Starlink satellite communications system to guide strikes inside Russia.</p><p>The push for expanded use of Starlink comes as Zelenskyy looks for alternate ways to mitigate the need for U.S. Patriot air defense systems to thwart the steady barrage of Russian missile and drone attacks on Ukrainian territory. The interceptors are in shorter supply as the U.S. and Israeli war against Iran continues to rage, and Trump on Friday appeared to back away from a recent commitment to give Ukraine a license to produce them.</p><p>Zelenskyy made the request directly to Trump in an Oval Office meeting this week during his whirlwind trip to Washington, according to one person familiar with the matter. He also told lawmakers later on Capitol Hill that he wanted Starlink to help with targeting inside Russia, according to a person in the room. Both officials spoke on the condition of anonymity to discuss the sensitive private discussions. Trump did not commit to Zelenskyy’s request.</p><p>Zelenskyy has been pushing to expand Starlink use for weeks</p><p>Musk has allowed the Ukrainians to use Starlink inside their own territory, including in Ukrainian regions occupied by the Russians, but has restricted use of the satellite system inside Russia.</p><p>Zelenskyy has been making the case for expanded use of Starlink with U.S. officials for at least several weeks. The White House, the Ukrainian Embassy in Washington and officials at SpaceX, which owns Starlink, did not immediately respond to requests for comment on Zelenskyy’s request. Zelenskyy’s efforts to get Musk’s permission to use Starlink to help with Ukrainian attacks inside Russia was first reported by The Atlantic.</p><p>Granting permission for an expanded use of Starlink could come with risk for Musk. The Associated Press reported in December that two NATO-nation intelligence services suspect Russia is developing a new anti-satellite weapon to target Musk’s Starlink constellation with destructive orbiting clouds of shrapnel.</p><p>The intelligence findings were shown to the AP on condition that the services involved were not identified, and the news organization was not able to independently verify the findings’ conclusions.</p><p>Russia views Starlink as a grave threat, the findings indicate. The thousands of low-orbiting satellites have been pivotal for Ukraine’s survival against Russia’s full-scale invasion, which began in February 2022.</p><p>Ukrainian leader also pitched US lawmakers during recent visit</p><p>Zelenskyy had traveled to Washington to attend Sen. Lindsey Graham's memorial service and used the visit to check in with Trump and allies on Capitol Hill.</p><p>Zelenskyy visited the Capitol following his meeting with Trump in the White House earlier in the day. Senators said the requests the Ukrainian president made were similar to what he had told them earlier in July during a meeting at the NATO summit in Turkey.</p><p>“They need access to Starlink long term to make their longer-range and intermediate-range systems more accurate,” said Sen. Mike Rounds, a Republican from South Dakota, who is a member of the Senate Armed Services Committee.</p><p>“They prefer to be exactly on target, as opposed to, in the general area,” Rounds said. “He made that pretty clear.”</p><p>Zelenskyy spoke with lawmakers late Tuesday evening ahead of a Senate vote on a punishing new Russia sanctions package, which advanced toward a final vote expected next week.</p><p>Zelenskyy also reiterated Ukraine's need for more U.S. Patriots and the previously discussed licensing agreement so Ukraine could start producing the system in house, said Rounds, who was part of the delegation of U.S. lawmakers at the NATO conference in Ankara.</p><p>“There was a consistency from what President Zelenskyy shared with us in Turkey two weeks ago to what he shared with us again once again, in terms of what their needs are,” Rounds said. “It’s pretty straightforward.”</p><p>Trump appears to edge away from Patriots licensing commitment</p><p>But Trump appeared to edge away from the earlier commitment to give Ukraine a license to make Patriots for its military needs during a gathering of his Cabinet at the presidential retreat at Camp David, Maryland, on Friday.</p><p>Trump at the NATO summit in Turkey declared “we’ll give them the right to make Patriots” to counter missile attacks from Russia in their more than four-year war.</p><p>The president told reporters on Friday that the licensing matter remains under discussion and said he hasn't made a decision on it.</p><p>“We’re talking about it. But it’s a hard thing to give away that kind of technology,” Trump said.</p><p>Trump's relationship has improved with Zelenskyy as Ukraine has gained strength on the battlefield with Russia in recent months. And Zelenskyy has sought to portray that his war with Russia is connected to the U.S. and Israel's conflict with Iran.</p><p>U.S. intelligence has shown that Tehran provided Russia with drones to use against Ukraine. More recently, Russia has prepared to ship drones for Iran, including upgraded versions of the technology that Tehran originally supplied to Moscow after its invasion of Ukraine, according to U.S. and European officials.</p><p>Zelenskyy said ahead of this week's visit to Washington that he'd share evidence with the United States that shows Russia is assisting Iran in targeting U.S. bases in the Middle East via satellite surveillance.</p><p>Zelenskyy also has been making the case to the Trump administration that his country is well positioned to help the U.S. counter Iranian drone attacks on U.S. bases in the Middle East and Gulf allies' infrastructure.</p><p>“He has been very emphatic they are going to provide more aid to us in unmanned warfare, aerial unmanned warfare, which has been so instrumental in Iran — his people have been there, they’ve been providing technology and know-how — and they’re ready, willing and able to do it in even greater magnitude,” said Sen. Richard Blumenthal, a Democrat from Connecticut, who sits on the Armed Services Committee. “He was very emphatic on that point.”</p><p>___</p><p>AP writers John Leicester in Paris and Emma Burrows in London contributed reporting.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/QA4SBVY7QZWBSKCYLRLT5JRWFQ.jpg?auth=9bf64e73ef44c8afd6096cd8043c69628ff573eabfcca44c49cab5831153e577&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[President Donald Trump, center, walks from Air Force One at Morristown Municipal Airport in Morristown, N.J., Friday, July 31, 2026, from Camp David, the presidential retreat. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/Q7CHD6ELV7UNCY3YSNVNEWJIKM.jpg?auth=e16004dfbc3ddb4f5daa7327d8ba63a627841dd604ba5fea270013f3cbbf2028&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Defense Secretary Pete Hegseth speaks alongside President Donald Trump during a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/SOSUDKHBOO7PEB2LBDYBJAC6TA.jpg?auth=1077da42031ced660f74c0dc55155a9ed1d40a4ed2503a59f90e51fbbc8ce604&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Ukraine's President Volodymyr Zelenskyy arrives to the Capitol building, Tuesday, July 28, 2026, in Washington. (AP Photo/Allison Robbert)]]></media:description><media:credit role="author" scheme="urn:ebu">Allison Robbert</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/ELW45Z3APXNWILAM7AICYJLA7Y.jpg?auth=2507abde8c1b9b4b533cd2bb9b73d9ae777454b7b8c247dbf16d9abd32df6a9a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Ukraine President Volodymyr Zelenskyy, center, is joined by from left: Sen. Richard Blumenthal, D-Conn., Sen. Katie Boyd Britt, Sen. Jeanne Shaheen, D-N.H., R-Ala., Sen. Roger Wicker, R-Miss., and Sen. James Risch, R-Idaho, as he arrives at the U.S. Capitol for a meeting of bipartisan leaders of the Lindsey O. Graham Sanctioning Russia and Iran Act of 2026, Tuesday, July 28, 2026, in Washington. (AP Photo/Rod Lamkey, Jr.)]]></media:description><media:credit role="author" scheme="urn:ebu">Rod Lamkey</media:credit></media:content></item><item><title><![CDATA[Giants running back Cam Skattebo is ready to play football and take a break from backflips]]></title><link>https://www.local10.com/sports/2026/07/31/giants-running-back-cam-skattebo-is-ready-to-play-football-and-take-a-break-from-backflips/</link><guid isPermaLink="true">https://www.local10.com/sports/2026/07/31/giants-running-back-cam-skattebo-is-ready-to-play-football-and-take-a-break-from-backflips/</guid><dc:creator><![CDATA[By STEPHEN WHYNO, Associated Press]]></dc:creator><description><![CDATA[WHITE SULPHUR SPRINGS, W.Va. (AP) — Cam Skattebo is all systems go at practice. His signature celebration is on hiatus.]]></description><pubDate>Fri, 31 Jul 2026 21:32:25 +0000</pubDate><content:encoded><![CDATA[<p>WHITE SULPHUR SPRINGS, W.Va. (AP) — Cam Skattebo is all systems go at practice. His signature celebration is on hiatus.</p><p>Skattebo declared himself nearly fully healthy at New York Giants training camp, nine months removed from his gruesome right ankle and leg injury. But after getting into some hot water with the organization for doing a backflip and landing awkwardly on that surgically repaired ankle earlier this month, he's planning to stay grounded for a while.</p><p>“Obviously, I do some dumb things here and there, but I learn from it,” Skattebo said Friday. “We’ll see when game time comes around. But right now, we’re focused on training camp, and we’ll keep the backflips off the field for now.”</p><p>Skattebo alarmed, among others, coach John Harbaugh and general manager Joe Schoen when they saw video of the backflip at Fanatics Fest in New York on July 18. He turned out to be fine, but a text message and some difficult conversations followed.</p><p>“He’s a young man that’s still getting used to the spotlight and in New York City, and you've got to be conscious of your actions, not only from a health standpoint but a perception standpoint,” Schoen said. “He knows I’d rather him not do that, especially this close to camp.”</p><p>It is not the first time Skattebo has been second-guessed for something off the field since reaching the NFL and getting hurt. He took part in a WWE show in November, weeks after surgery, took criticism from radio hosts but was not worse for the wear.</p><p>The botched backflip was a much riskier endeavor the Giants would rather he not repeat.</p><p>“The big picture message is you want to take care of yourself," Harbaugh said. "You want to take care of your team: do everything you can do to be healthy, be back, be right, be good.”</p><p>The 24-year-old running back declared in May he'd be ready for the season opener Sept. 13 against Dallas. Skattebo also told the coaching staff he'd be good for the start of camp and hit that deadline.</p><p>As a result, he has no limitations and is doing just about as well as he can.</p><p>“I've felt 99%,” Skattebo said. “I think the 100% is when I put shoulder pads on and I'm able to hit someone. That's when I tell you I'm 100%, but for now I'm 99.9% OK."</p><p>Skattebo will get that chance when the pads go on beginning Monday.</p><p>A 2025 fourth-round pick out of Arizona State, Skattebo rushed for 410 yards and five touchdowns on 101 carries before having his rookie year cut short Oct. 26 at Philadelphia. This past spring, he set a goal of playing 17-plus games and rushing for over 2,000 yards on 300 carries.</p><p>Skattebo didn't shy away from those lofty aspirations — which would give him a top-10 season in league history — but his main focus is on moving past the injury and rehab process and getting back to what he does best.</p><p>"It was a long, hard road," Skattebo said. “It’s time to play football.”</p><p>Malik Nabers did not practice Friday</p><p>After being the talk of the start of camp for getting on the field for individual drills after his own lengthy rehab from a torn ACL, Malik Nabers did not take part in practice Friday. Harbaugh called it “part of the process.”</p><p>“We’ll work through it, and every single day will be what it is that given day,” Harbaugh said. “He’s worked real hard, made a lot of progress and that’s what we decided to do today for practice.”</p><p>Neither Nabers nor the Giants have set a timetable for his return to game action.</p><p>___</p><p>AP NFL: https://apnews.com/hub/nfl</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/JH7LZEMBYJEUAPBGEE2QE2NX2U.jpg?auth=25373d8e436aa954e5753c8bdb92faea185d86f5d8b8ea6d971b18bd80502699&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[New York Giants running back Cam Skattebo practices during an NFL football training camp, Friday, July 31, 2026, in White Sulphur Springs, W.Va. (AP Photo/Chris Carlson)]]></media:description><media:credit role="author" scheme="urn:ebu">Chris Carlson</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/2AB54VDCWJSRFG53P4QEX3YK4Y.jpg?auth=b0bbf8c7fb7e850506089fad804f7ea1d7a8c027dff932486ad53ef2e59efcbc&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[New York Giants running back Cam Skattebo practices during an NFL football training camp, Friday, July 31, 2026, in White Sulphur Springs, W.Va. (AP Photo/Chris Carlson)]]></media:description><media:credit role="author" scheme="urn:ebu">Chris Carlson</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/LKEULNFRUFHBK5CFLDF5RQOYBQ.jpg?auth=bde7015a6ce5e38484b0a41cd783f6c8dee383712a847ccd97d60dedcbce09a5&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[New York Giants running back Cam Skattebo practices during an NFL football training camp, Wednesday, July 29, 2026, in White Sulphur Springs, W.Va. (AP Photo/Chris Carlson)]]></media:description><media:credit role="author" scheme="urn:ebu">Chris Carlson</media:credit></media:content></item><item><title><![CDATA[Suspect arrested after woman shot in Wilton Manors, police say ]]></title><link>https://www.local10.com/news/local/2026/07/31/man-detained-after-possible-shooting-in-wilton-manors/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/man-detained-after-possible-shooting-in-wilton-manors/</guid><dc:creator><![CDATA[Michaila Hightower, Amanda Batchelor]]></dc:creator><description><![CDATA[A suspect fled from a Wilton Manors shopping center Friday morning after shooting a woman in the leg, police confirmed.  ]]></description><pubDate>Fri, 31 Jul 2026 11:31:02 +0000</pubDate><content:encoded><![CDATA[<p>A man has been arrested in connection with a shooting at a Wilton Manors shopping plaza that police say left a woman injured Friday morning. </p><p><a href="https://www.local10.com/espanol/2026/07/31/detienen-a-hombre-despues-de-que-una-mujer-fuera-baleada-en-wilton-manors-dice-testigo/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/detienen-a-hombre-despues-de-que-una-mujer-fuera-baleada-en-wilton-manors-dice-testigo/">Leer en español</a></p><p>Wilton Manors police identified the suspect as 20-year-old Daniel Selvin. </p><p>The shooting happened around 5:15 a.m. at the Palm Gardens shopping center near North Andrews Avenue and Northeast 26th Drive, according to investigators. </p><p>Police said surveillance video from the shopping plaza shows people running for cover as gunfire erupted and a bullet struck the ground.</p><p>According to a witness, an argument happened before several shots were fired.</p><p>Dwayne Lewis told Local 10 News he was waiting at a nearby bus stop when he heard the gunshots.</p><p>“From the car, I probably heard three or four,” Lewis said.</p><p>Police said a woman was shot in the leg and taken to the hospital. Lewis said she appeared calm and alert after the shooting.</p><p>“I think she’ll be alright,” he said.</p><p>A bullet also went through the driver’s-side window of a Honda Accord parked at the shopping center.</p><p>Lewis said he saw an argument before the shooting.</p><p>“They were just arguing and I heard a woman say, ‘Baby, no; baby, no,’ then he just let off some shots,” Lewis said. “Then the two he was shooting at just ran inside the little office area there, the tax office. The shooter turned around and went away to his car.”</p><p>Police said the suspect initially fled the scene in a white vehicle.</p><p>Officers provided aid to the injured woman before Fort Lauderdale Fire Rescue transported her to Broward Health Medical Center.</p><p>The victim remained hospitalized as of Friday afternoon. Police have not released additional details about Selvin’s arrest or what led detectives to identify him as the suspect.</p><p>Anyone with information about the shooting is asked to contact the Wilton Manors Police Department or Broward Crime Stoppers at 954-493-8477.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[OnlyFans model Courtney Clenney taking plea deal in Miami murder case]]></title><link>https://www.local10.com/news/local/2026/07/31/onlyfans-model-courtney-clenney-taking-plea-deal-in-miami-murder-case/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/onlyfans-model-courtney-clenney-taking-plea-deal-in-miami-murder-case/</guid><dc:creator><![CDATA[Chris Gothner, Magdala Louissaint, Bridgette Matter]]></dc:creator><description><![CDATA[OnlyFans model Courtney Clenney is taking a plea deal in her Miami murder case, her lawyers confirmed on Friday afternoon. Specifics about the agreement weren’t immediately made available.]]></description><pubDate>Fri, 31 Jul 2026 20:49:00 +0000</pubDate><content:encoded><![CDATA[<p>OnlyFans model <a href="https://www.local10.com/topic/Courtney_Clenney/" target="_self" rel="" title="https://www.local10.com/topic/Courtney_Clenney/">Courtney Clenney</a> is taking a plea deal in her Miami murder case, her lawyers confirmed on Friday afternoon. Specifics about the agreement weren’t immediately made available.</p><p>Clenney, 30, has been in the Miami-Dade jail since August 2022, charged with second-degree murder in the stabbing death of her boyfriend Christian Obumseli.</p><p>Miami police said the crime happened on April 3, 2022 at the One Paraiso condominium building, located at 3131 NE Seventh Ave. in the city’s Edgewater neighborhood.</p><p>Clenney ― also known as Courtney Tailor ― admitted to stabbing Obumseli, 27, after an altercation, though her attorneys claimed the then-25-year-old did so in self-defense.</p><p>Prosecutors said Obumseli was unarmed and the stabbing was not in self-defense.</p><p>Clenney was facing a possible life sentence.</p><p>Her attorneys declined to comment further on the plea deal ahead of an Aug. 10 hearing in Miami-Dade court.</p><p>Larry Handfield, the attorney for the Obumseli family, told Local 10 News that his clients were very involved in the conversations about the plea, saying all parties have agreed to a resolution and that the agreement will start their healing process.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Miami Gardens cop arrested on domestic assault charge in Opa-locka, attorney says]]></title><link>https://www.local10.com/news/local/2026/07/31/miami-gardens-cop-arrested-on-domestic-assault-charge-in-opa-locka-attorney-says/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/miami-gardens-cop-arrested-on-domestic-assault-charge-in-opa-locka-attorney-says/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[A Miami Gardens police officer was arrested Thursday after investigators said he threatened his girlfriend with a handgun during an argument in Opa-locka, allegedly choked her and later tried to persuade her not to cooperate with detectives.]]></description><pubDate>Fri, 31 Jul 2026 21:01:38 +0000</pubDate><content:encoded><![CDATA[<p>A Miami Gardens police officer was arrested Thursday after investigators said he threatened his girlfriend with a handgun during an argument in Opa-locka, choked her and later tried to persuade her not to cooperate with detectives.</p><p>According to an Opa-locka Police Department arrest report, the suspect was identified as Kolei Kulani McKinney, 41, of northwest Miami-Dade. His attorney, Stephan Lopez, said McKinney is a Miami Gardens police officer and a U.S. Navy veteran.</p><p>The report states that McKinney and the victim had been in a romantic relationship for about eight months but maintained separate residences.</p><p>Investigators said the incident began around 5:45 a.m. July 17 after the couple, who were driving separately, stopped near Northwest 22nd Avenue and State Road 9 in Opa-locka following what the victim described as McKinney driving erratically.</p><p>According to the report, McKinney got into the passenger seat of the victim’s vehicle, where the two argued. </p><p>The victim told detectives McKinney said, “I can’t f---ing take this no more; I’m just going to end this s---,” before pulling a black handgun from his waistband, pointing and waving it toward the windshield," investigators said. </p><p>The report states the victim asked McKinney to put the firearm away. Instead, investigators said he threw it onto the dashboard, continued acting erratically and repeatedly struck the passenger-side dashboard.</p><p>According to the report, when the victim asked McKinney to leave her vehicle, he grabbed her by the neck with both hands and began choking her. Investigators said he then placed the handgun in the vehicle’s center console and told her, “Here, you want to end it, just f---ing end it.”</p><p>The victim told detectives she feared for her life because she did not know what McKinney intended to do after he pulled out a gun, according to the report.</p><p>Authorities said the victim reported the incident to the Miami Gardens Police Department on July 19, and an Opa-locka police officer completed the initial incident report.</p><p>According to investigators, McKinney was served with a temporary injunction on July 20. The victim later told detectives that McKinney contacted her and asked her to recant her statement and stop cooperating with the investigation, the report states. </p><p>The report also states that McKinney also contacted the victim by phone on July 22 while she was at work, prompting her to file a separate report with the Fort Lauderdale Police Department alleging he violated the temporary injunction.</p><p>Investigators noted they observed no visible injuries on the victim’s neck during an interview, and there were no known witnesses or surveillance video capturing the altercation.</p><p>Police said McKinney voluntarily surrendered at the Opa-locka Police Department on Thursday while accompanied by Lopez. He was taken into custody without incident and transported to the Turner Guilford Knight Correctional Center.</p><p>Jail records show McKinney is facing one count each of aggravated assault with a firearm, illegal use or display of a firearm while committing a felony and misdemeanor witness or victim tampering.</p><p>As of Friday evening, he remained jailed at TGK on a $6,000 bond.</p><p>In a statement to Local 10 News, Lopez said McKinney “vehemently denies these allegations” and alleged the claims were “manufactured by an obsessed woman” who had been stalking and harassing his client. Lopez also said McKinney previously sought, but was unable to obtain, an injunction against her for alleged stalking and harassment.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Texas man arrested in Miami Beach after foster child with autism found running through traffic, police say]]></title><link>https://www.local10.com/news/local/2026/07/31/texas-man-arrested-in-miami-beach-after-foster-child-with-autism-found-running-through-traffic-police-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/texas-man-arrested-in-miami-beach-after-foster-child-with-autism-found-running-through-traffic-police-say/</guid><dc:creator><![CDATA[Amanda Batchelor, Rosh Lowe]]></dc:creator><description><![CDATA[A Texas man was arrested Thursday in Miami Beach after police said his 12-year-old foster son, who has autism, was found running through traffic wearing only a white T-shirt and his underwear while the child’s younger sibling remained unattended in a hotel room.]]></description><pubDate>Fri, 31 Jul 2026 20:26:04 +0000</pubDate><content:encoded><![CDATA[<p>A Texas man was arrested Thursday in Miami Beach after police said his 12-year-old foster son, who has autism, was found running through traffic wearing only a white T-shirt and his underwear while the child’s younger sibling remained unattended in a hotel room.</p><p>According to an arrest report from the Miami Beach Police Department, Francisco Javier Lara, 55, who is a teacher from Austin, Texas, was arrested on two counts of child neglect without great bodily harm. </p><figure><img src="https://www.local10.com/resizer/v2/YSMDQZ3JAFAAHBI6DABQSAGC24.jpg?auth=d880e22f8c5a830e8f82d2b8d6e074424c9e90bd8fff48f527dc95433b57f826&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>Police said officers responded to reports of a child running in and out of traffic near 33rd Street and Pinetree Drive at about 12:15 p.m.</p><p>Officers located the pre-teen running southbound before he entered a home in the 3000 block of Pinetree Drive, where officers were able to safely secure him, authorities said.</p><p>Investigators said the boy was unable to provide much information but was able to give officers a phone number belonging to his foster father. The child was then taken to the Miami Beach Police Department while officers worked to locate his caregiver.</p><p>Using police databases and cellphone location information, detectives traced the number to Lara and determined he was staying at the Catalina Hotel on Collins Avenue, the arrest report stated.</p><p>According to the report, when detectives knocked on the hotel room door, Lara eventually answered and appeared unaware that one of the children was missing until detectives asked about his foster son’s whereabouts.</p><p>“Utilizing compassion and patience, we were able to get his name and a phone number which allowed out detectives to get a location of where his father was at,” Miami Beach Police Detective Christopher Bess told Local 10’s Rosh Lowe. </p><p>The report states that officers detected a strong odor of alcohol on Lara’s breath. When asked what time it was, he reportedly told detectives he believed it was around 7 a.m., although it was approximately 2 p.m.</p><p>Inside the hotel room, detectives also found the child’s 10-year-old nonverbal foster brother, who also has autism, authorities said.</p><p>The boy was taken to the police station along with his brother, where victim advocates provided both children with food and shoes, the report stated.</p><p>According to authorities, during a post-Miranda interview, Lara told detectives he had traveled to Miami Beach from Texas with his two foster children for a vacation and planned to return home with them Friday. </p><p>Police said Lara claimed that he had put the children to bed around 9 p.m. on Wednesday before leaving the hotel room around midnight to eat at a nearby Mexican restaurant and have several alcoholic drinks. He told detectives he consumed four to five drinks at the restaurant before going to another bar, where he had two additional alcoholic beverages, the report stated.</p><p>According to the report, Lara told investigators he returned to the hotel around 4 a.m., found both children asleep and then “passed out,” remembering nothing else until police knocked on his hotel room door later that day.</p><p>However, detectives said hotel surveillance video showed Lara returning to the hotel at 5:10 a.m., leaving again at 9:03 a.m., and returning once more at 10:29 a.m. Police said Lara told investigators he had no recollection of leaving the room again and admitted it was his fault for drinking too much and blacking out.</p><p>According to the report, surveillance footage captured the eldest boy leaving the hotel alone while Lara was out before running north on Collins Avenue.</p><p>A review of employment records confirmed Lara worked as an elementary school teacher for Miami-Dade County Public Schools last year. He now lives in Texas and was visiting Miami Beach on vacation, authorities said.</p><p>Police confirmed that both boys were handed over to the Florida Department of Children and Families as Lara was taken into custody.</p><p>As of Friday afternoon, Lara was being held at the Turner Guilford Knight Correctional Center on a $2,000 bond. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Seattle mayor defends ousting police chief after festival shootout]]></title><link>https://www.local10.com/news/national/2026/07/31/seattle-mayor-defends-ousting-police-chief-after-festival-shootout/</link><guid isPermaLink="true">https://www.local10.com/news/national/2026/07/31/seattle-mayor-defends-ousting-police-chief-after-festival-shootout/</guid><dc:creator><![CDATA[By GENE JOHNSON, Associated Press]]></dc:creator><description><![CDATA[SEATTLE (AP) — Seattle Mayor Katie Wilson on Friday defended her decision to oust the city's police chief as the “right decision at the right time,” but she declined to explain why.]]></description><pubDate>Fri, 31 Jul 2026 20:06:40 +0000</pubDate><content:encoded><![CDATA[<p>SEATTLE (AP) — Seattle Mayor Katie Wilson on Friday defended her decision to oust the city's police chief as the “right decision at the right time,” but she declined to explain why.</p><p>The leadership change came as police continue searching for people involved in a fatal, gang-related shootout at a food festival near the Space Needle last weekend. A 15-year-old was arrested at the scene and has been charged with assault, but charging documents say the gun he was seen firing wasn't involved in the deaths of two bystanders.</p><p>Wilson and then-Police Chief Shon Barnes faced criticism for being slow to release key information about the shootout on Sunday, including whether suspects remained at large.</p><p>Barnes, who was the city's second Black police chief, has been credited with boosting the recruitment of officers and helping reduce crime downtown. A number of Black community organizations, a major business group and several City Council members issued statements criticizing Wilson's decision to replace him Thursday.</p><p>At a news conference Friday with Andre Sayles, a Seattle deputy chief the mayor named as interim chief, Wilson credited Barnes for his service and said that as mayor she had a clearer window into the operations at the Seattle Police Department than her critics.</p><p>The lack of communication about a mass shooting at a major public event in Seattle was not the only reason she asked Barnes to resign, she said.</p><p>“There were multiple factors,” Wilson said. “The events of Sunday played into it.”</p><p>Sayles told the news conference the department would boost police staffing at public festivals for the remainder of the summer. He also said he believed investigators are close to finding and arresting additional suspects in the shootout.</p><p>The gunfire erupted in the waning hours of the Bite of Seattle, an annual three-day festival that draws hundreds of food and retail vendors and performers. Three people, including a suspect, were killed, and four people were wounded. One of the people injured was a 2-year-old boy.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/IYA3MM72A4YDYVHZYKOXUTNXOI.jpg?auth=96c8a313e1d032b127241bd749b84a0ac2d61b89fd138377e2b9cbe6ef4c3952&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Seattle Mayor Katie Wilson holds a news conference to introduce Andre Sayles as interim police chief on Friday, July 31, 2026 in Seattle. (AP Photo/Manuel Valdes)]]></media:description><media:credit role="author" scheme="urn:ebu">Manuel Valdes</media:credit></media:content></item><item><title><![CDATA[FCC chairman defends actions against ABC, says broadcasters must operate 'in the public interest']]></title><link>https://www.local10.com/business/2026/07/31/fcc-chairman-defends-actions-against-abc-says-broadcasters-must-operate-in-the-public-interest/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/fcc-chairman-defends-actions-against-abc-says-broadcasters-must-operate-in-the-public-interest/</guid><dc:creator><![CDATA[By JOCELYN NOVECK, Associated Press]]></dc:creator><description><![CDATA[Federal Communications Commission Chairman Brendan Carr on Friday defended his agency’s recent actions against ABC, saying broadcasters have a duty to “operate in the public interest” and the FCC is merely trying to restore that standard.]]></description><pubDate>Fri, 31 Jul 2026 19:58:38 +0000</pubDate><content:encoded><![CDATA[<p>Federal Communications Commission Chairman Brendan Carr on Friday defended his agency’s recent actions against ABC, saying broadcasters have a duty to “operate in the public interest” and the FCC is merely trying to restore that standard.</p><p>Broadcasters like ABC, Carr said in an interview on the Fox Business Network, “struck a deal with the American people. You broadcasters get subsidized access, free access to a valuable public resource, the airwaves, worth billions of dollars. In exchange, you have to operate in the public interest.”</p><p>“Look, as a country, we should have a trusted, respected news media, and we’re not there,” Carr told anchor Maria Bartiromo. “So I hope more broadcasters return to their public interest obligations.”</p><p>The FCC has been pushing ABC</p><p>The remarks came a day after ABC, issuing another salvo in an ever-escalating battle with President Donald Trump’s FCC, again accused the agency of a brazen attempt to chill its constitutionally protected free speech — and by extension, that of every media outlet in the country.</p><p>ABC accused the agency of retaliating against it simply because it doesn't like the political content of ABC’s shows.</p><p>The network's new comments came in its latest filing to the agency, expressing its formal opposition to the FCC's early review, launched in April, of eight ABC local broadcast licenses well before they expire.</p><p>“There is no question why the Commission is singling out these eight stations,” the filing said. “Each is owned by ABC, and the Administration has openly and repeatedly called for the revocation of ABC’s licenses, because it dislikes the content and viewpoints expressed on ABC network programs.”</p><p>“The retaliation against ABC is a signal to every media company in the country,” it continued. “Accommodate the Administration’s view of what news coverage should look like or pay the price. … The tools vary; the objective does not: a media industry too fearful of official reprisal to report the news freely. “</p><p>The license review is only one part of a long-simmering confrontation between ABC and the FCC. The network is also battling Carr’s efforts to make "The View,” a talk show whose hosts and guests have frequently angered Trump, subject to equal-time rules — a question ABC says the agency itself resolved more than two decades ago.</p><p>The rules require granting equal airtime to competing candidates for office. Bona fide news programs are exempt. The FCC qualified the show as such in a 2002 decision.</p><p>Kimmel has also been a target</p><p>Trump has also repeatedly called for late-night host Jimmy Kimmel to be fired.</p><p>When the FCC launched its early review of ABC’s licenses in April, it came amid a fight with Kimmel over a joke that offended Trump. The agency, however, cited diversity, equity and inclusion practices at the company, and Carr brought them up in the Fox interview.</p><p>Operating in the public interest, he said, “means you can’t run news distortions, broadcast hoax. You can’t be engaging in this invidious form of DEI discrimination.” He did not elaborate.</p><p>In its filing Thursday, ABC referred to over 140,000 comments from viewers, part of the public comment period on the issue, posted to the FCC website — more than 95% of which it said were supportive of ABC’s position.</p><p>“The outpouring of support for the Stations has been unprecedented for a license renewal proceeding," it said. “These supporters span the ideological spectrum but share a fundamental commitment to free speech and press freedom.”</p><p>In its lengthy filing, ABC also noted how rare it is that the FCC would call for early license renewal applications.</p><p>“Until the day before the Commission took this step, it had not called for license renewal applications ahead of schedule for more than fifty years,” ABC said. “The Commission’s departure from those norms lays bare what is really going on: the Administration is retaliating against ABC for the exercise of its First Amendment rights.</p><p>"That alone should stop these proceedings in their tracks.“</p><p>___</p><p>Jocelyn Noveck covers the intersection of media and entertainment for The Associated Press.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/YOTWLYOIPZRQBFJ73FHFDNUP44.jpg?auth=b632e7648f53e3dcbdcb8b82bb1ad6f9dc54da1093f665e084e880c53762d337&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Federal Communications Commission Chairman Brendan Carr departs an event in the East Room of the White House, March 20, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Julia Demaree Nikhinson</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/RLUSH2ZSP7WNW3ZOI47CJM4SXA.jpg?auth=114455ce790c8210d825821f4b8471dfcb8e42a293edd9abfb9934f5538108ff&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Federal Communications Commission chairman Brendan Carr testifies before the House Committee on Energy and Commerce, Subcommittee on Communications and Technology oversight hearing of the Federal Communications Commission on Capitol Hill in Washington, Jan. 14, 2026. (AP Photo/Jose Luis Magana, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Jose Luis Magana</media:credit></media:content></item><item><title><![CDATA[Avance del sargazo amenaza al Caribe, gobierno y empresas buscan cómo combatirlo]]></title><link>https://www.local10.com/espanol/2026/07/31/avance-del-sargazo-amenaza-al-caribe-gobierno-y-empresas-buscan-como-combatirlo/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/avance-del-sargazo-amenaza-al-caribe-gobierno-y-empresas-buscan-como-combatirlo/</guid><dc:creator><![CDATA[Por FABIOLA SÁNCHEZ y DÁNICA COTO, Associated Press]]></dc:creator><description><![CDATA[PUERTO MORELOS, México (AP) — La cantidad de extensas algas pardas que cubren parte de las aguas del Caribe ya ha superado el registro histórico del año pasado. Mientras para muchas especies marinas estas alfombras flotantes representan alimento y albergue, para los habitantes costeros el sargazo se ha convertido en un dolor de cabeza por sus efectos en el ambiente, la pesca y el turismo.]]></description><pubDate>Fri, 31 Jul 2026 19:56:48 +0000</pubDate><content:encoded><![CDATA[<p>PUERTO MORELOS, México (AP) — La cantidad de extensas algas pardas que cubren parte de las aguas del Caribe ya ha superado el registro histórico del año pasado. Mientras para muchas especies marinas estas alfombras flotantes representan alimento y albergue, para los habitantes costeros el sargazo se ha convertido en un dolor de cabeza por sus efectos en el ambiente, la pesca y el turismo.</p><p>Agobiado por el fétido olor que llega desde la orilla, el mesonero mexicano Alan Vázquez observaba desde la barra de un restaurante vacío en la turística localidad de Playa del Carmen, en el Caribe mexicano, cómo el sargazo descompuesto teñía de marrón las aguas turquesas.</p><p>“Es triste que un lugar tan bonito y tan alegre, que era para la fiesta y para brindar emociones a la gente, haya terminado así”, dijo el mesonero de 32 años.</p><p>Vázquez admitió que teme correr la misma suerte que otros cuatro compañeros que fueron despedidos hace dos meses ante la merma de turistas que ha golpeado a hoteles y comercios del estado de Quintana Roo, una de las joyas del turismo mexicano, donde las ventas cayeron 30% en la primera mitad del año, según estimaciones del empresariado local.</p><p>La cantidad de sargazo en las costas del Caribe mexicano se ha cuadruplicado este año en comparación con 2025 y es 27 veces mayor que el promedio histórico. Hasta junio ya se habían acumulado unas cinco millones de toneladas, según el Observatorio de Oceanografía Óptica de la Universidad de Florida.</p><p>El sargazo que está llegando al Caribe es de las especies Sargassum natans y Sargassum fluitans, originarias del Atlántico y que flotan gracias a vesículas de aire.</p><p>Para María Eugenia Allende Arandía, oceanóloga de la Universidad Nacional Autónoma de México, el sargazo se ha vuelto un “problema muy severo” para las comunidades de las costas caribeñas.</p><p>Pese a la adversidad, Vázquez afirmó que no está dispuesto a rendirse ni a retornar a su estado natal de Michoacán, de donde salió hace 12 años. “Me adoptó Playa del Carmen y no lo voy a dejar ahora, sé que las cosas van a mejorar”.</p><p>Un problema que se expande por el Caribe</p><p>En Puerto Rico el sargazo ha cubierto las aguas que rodean zonas turísticas muy frecuentadas, entre ellas La Parguera.</p><p>“No recuerdo haber tenido tanta concentración en tantos sitios a la vez”, expresó Waldemar Quiles, secretario de Recursos Naturales del territorio estadounidense.</p><p>En 2025 una cantidad récord de 40 millones de toneladas métricas de sargazo flotó a la deriva por el océano Atlántico. Gran parte acabó en la costa de Puerto Rico, lo que llevó al gobernador a declarar el estado de emergencia.</p><p>“Ya no se trata de un fenómeno aislado”, señaló Emmanuel Maldonado González, sociólogo medioambiental de la Universidad de Carolina del Este. “Se está convirtiendo en un peligro cada vez mayor”.</p><p>Aunque el sargazo proporciona un lugar de cría para animales como tortugas, peces y aves marinas, también reduce el oxígeno del agua, asfixia las raíces de los manglares e impide que la luz solar llegue a los corales y a las praderas marinas. Una vez que llega a la costa también impide que las tortugas recién nacidas alcancen el océano, según los científicos.</p><p>La macroalga contiene altos niveles de arsénico y otros metales pesados y contaminantes orgánicos. Al descomponerse en las playas produce sulfuro de hidrógeno, un gas que huele como huevos podridos que puede causar irritación respiratoria.</p><p>El sargazo también ha llegado a las costas de las Islas Vírgenes de Estados Unidos donde actualmente se puede caminar cerca de siete metros mar adentro sin mojarse los pies, según la consultora medioambiental Amy Dempsey, quien consideró la situación como la peor en los últimos cinco años.</p><p>Es la primera vez que los científicos observan un crecimiento a gran escala del sargazo en zonas como el Caribe y el Golfo de México. Por lo general, estas algas se reproducen de forma asexual a medida que se desplazan desde África occidental, explicó Brian Barnes, científico marino y profesor asistente de investigación de la Universidad del Sur de Florida.</p><p>El sargazo que ha comenzado a reproducirse en la región antes de lo habitual este año tiene su origen en la cifra récord de 40 millones de toneladas métricas registrada el año pasado.</p><p>“La floración de 2025 fue tan grande que, en realidad, nunca desapareció”, explicó Barnes. “Fue suficiente para dar lugar a una nueva floración a nivel local”.</p><p>Pesca del sargazo en alta mar, la estrategia mexicana</p><p>El gobierno de México dejó desde hace siete años en manos de la Secretaría de Marina la recolección de las miles de toneladas de sargazo que llegan a diario a sus costas en el Caribe.</p><p>Para esa operación, de la que participan unos 500 marinos, se han dispuesto 11 buques sargaceros, un buque oceánico, un sargacero anfibio, 18 embarcaciones menores y 16.000 metros de barrera de contención que se han colocado en puntos de alta afluencia turística en las localidades de Cancún, Tulum, Puerto Morelos, Playa del Carmen y Mahahual.</p><p>Según las autoridades esta operación permite recoger alrededor de 1.200 toneladas de sargazo por día, apenas el 30% de lo que llega al Caribe mexicano.</p><p>Ante la previsión de un aumento en el arribo de la macroalga y su consecuente efecto social, económico y ambiental, la presidenta mexicana Claudia Sheinbaum anunció la víspera una inversión de unos 115 millones de dólares para adquirir dos remolcadores, seis sargaceras costeras, barreras de contención y otros equipos para elevar este año a 1.800 toneladas diarias la recolección y llevarla a 4.000 toneladas diarias el próximo año. Todas las embarcaciones serán construidas por la Armada mexicana.</p><p>Con las nuevas embarcaciones se busca incrementar la recolección en el mar y no en las playas, que concentran en la actualidad la mayor parte de la actividad, dijo a The Associated Press el contralmirante Topiltzin Flores Jaramillo, coordinador de la Estrategia de Contención del Sargazo.</p><p>La reutilización es otra alternativa</p><p>Desde la empresa privada, la academia y el gobierno se han impulsado varias iniciativas para reutilizar el sargazo como una alternativa para enfrentar el fenómeno y garantizar una fuente de ingresos a las comunidades costeras mexicanas.</p><p>Una de esas iniciativas es impulsada por un grupo interdisciplinario de la Universidad Nacional Autónoma de México que desde 2021 trabaja en siete escuelas de las comunidades turísticas de Cozumel, Akumal y Puerto Morelos, en Quintana Roo, para promover entre los adolescentes proyectos para la reutilización del sargazo en la elaboración de jabones, calzado y libretas, entre otros productos, indicó Allende Arandía, una de las integrantes del grupo de investigadores.</p><p>También diferentes empresas privadas de ese estado han desarrollado pequeñas plantas para procesar la macroalga y transformarla en biofertilizantes, ladrillos y hasta productos cosméticos.</p><p>La empresa mexicana Carbonwave se dedica a la transformación del sargazo en bioestimulantes agrícolas y emulsionantes cosméticos.</p><p>Rafael Carranza, director de Operaciones y Finanzas de Carbonwave, reconoció que aunque el arranque de la planta en 2020 fue difícil, en los últimos años han logrado posicionar el bioestimulante agrícola en el mercado local e incluso exportarlo a Estados Unidos, Ecuador y Brasil.</p><p>El año pasado la planta procesó cerca de 300 toneladas de sargazo fresco y este año espera superar esa meta, precisó Carranza.</p><p>En tanto, el gobierno mexicano busca coordinar los esfuerzos internacionales para combatir el sargazo y tiene previsto celebrar un encuentro el 1 y 2 de octubre con países del Caribe, Brasil y Japón.</p><p>La secretaria de Medio Ambiente, Alicia Bárcena, dijo la víspera que la ayuda de Brasil es fundamental porque la falta de tratamiento del agua en el Amazonas hace que cuando desemboca en el mar tenga más compuestos que alimentan el alga. Agregó que Japón ya ha mostrado su disposición a apoyar con barcos balleneros que ya no utiliza y que pueden ser adaptados para recolectar sargazo.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/BXWXVYVJGCF4YHOA2WUFMSDPWM.jpg?auth=1b957d12034fd7687a120c528c9a542b907fe11369e7f181fe62f49271338b75&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[El sargazo se acumula en las aguas frente a la costa de Tulum, México, el jueves 30 de julio de 2026. (AP Foto/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/5H7LPMF2JRKGYCF7SB2745TVTI.jpg?auth=1b42e51507ce83d558ab770f1543c99f7378e089c0240472c0cb7a9c0276b33e&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Miembros de la Armada mexicana retiran sargazo de la costa de Puerto Morelos, México, el jueves 30 de julio de 2026. (AP Foto/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/QGIXZJXK2FMS33YKPXOO3VBVKQ.jpg?auth=2e7b49b824a3595236811da2ce67df6c7d07ba5df2d778377c5d1ab31d54331c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[El sargazo se acumula en las aguas frente a la costa de Tulum, México, el jueves 30 de julio de 2026. (AP Foto/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/O5CXJN53GS377YPDAXRXKTKI5Y.jpg?auth=beec5b023a7b60b4a73c244c383b57b2442f87023782341f01a9d142de971f2b&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Carteles publicitarios se exhiben cerca de una playa cubierta de sargazo en Tulum, México, el jueves 30 de julio de 2026. (AP Foto/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/L5KHFEHJJEHW2TQDLOJ46RYB4M.jpg?auth=467dc9d1b304f8c2aeb68a4421242f5726e9ee94e0669292fc970d7488d070ba&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[El sargazo cubre la costa de Tulum, México, el jueves 30 de julio de 2026. (AP Foto/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content></item><item><title><![CDATA[Man whose slain brother led Mexican cartel pleads guilty to drug charges in US]]></title><link>https://www.local10.com/news/politics/2026/07/31/man-whose-slain-brother-led-mexican-cartel-pleads-guilty-to-drug-charges-in-us/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/man-whose-slain-brother-led-mexican-cartel-pleads-guilty-to-drug-charges-in-us/</guid><dc:creator><![CDATA[Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — A man whose slain brother led one of Mexico’s most powerful and violent drug cartels pleaded guilty Friday in Washington to conspiring to traffic cocaine and methamphetamine into the U.S.]]></description><pubDate>Fri, 31 Jul 2026 19:49:52 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — A man whose slain brother led one of Mexico’s most powerful and violent drug cartels pleaded guilty Friday in Washington to conspiring to traffic cocaine and methamphetamine into the U.S.</p><p>Antonio Oseguera Cervantes worked for cartels with his brother Nemesio Rubén Oseguera Cervantes, the drug lord known as “El Mencho” who was killed by the Mexican army in February, according to federal prosecutors.</p><p>El Mencho co-founded and led the Cartel de Jalisco Nueva Generación, known by its Spanish-language acronym CJNG. Last year, President Donald Trump’s administration designated the CJNG and other cartels as foreign terrorist organizations.</p><p>Antonio Oseguera Cervantes, 67, of Michoacán, Mexico, faces a mandatory minimum sentence of 15 years in prison. U.S. District Judge Beryl Howell is scheduled to sentence him on Nov. 13.</p><p>Besides the conspiracy charge, Oseguera Cervantes also pleaded guilty to possessing a firearm in furtherance of a drug trafficking conspiracy.</p><p>Oseguera Cervantes was transferred from Mexico to the U.S. for prosecution in February 2025. He was a member of the Milenio Cartel before his brother co-founded the CJNG.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/FICEPUE2FJZASKLA7DCKKSV364.jpg?auth=749be74dc3d662c00674bc6423eb3e4679fdcea38dee031011f511656e012cee&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A soldier stands guard by a charred vehicle after it was set on fire in Cointzio, Michoacán state, Mexico, Feb. 22, 2026, following the death of the leader of the Jalisco New Generation Cartel, Nemesio Oseguera, also known as "El Mencho." (AP Photo/Armando Solis, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Armando Solis</media:credit></media:content></item><item><title><![CDATA[Trump says anti-weaponization fund in IRS settlement is 'dead' even as he defends it]]></title><link>https://www.local10.com/news/politics/2026/07/31/trump-says-anti-weaponization-fund-in-irs-settlement-is-dead-even-as-he-defends-it/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/trump-says-anti-weaponization-fund-in-irs-settlement-is-dead-even-as-he-defends-it/</guid><dc:creator><![CDATA[By MARY CLARE JALONICK, SEUNG MIN KIM and ALANNA DURKIN RICHER, Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — President Donald Trump said Friday that his $1.8 billion anti-weaponization fund is “dead” while also continuing to defend it, further complicating his administration’s negotiations with two Republican senators who are blocking his attorney general nominee in protest.]]></description><pubDate>Fri, 31 Jul 2026 20:28:19 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — President Donald Trump said Friday that his $1.8 billion anti-weaponization fund is “dead” while also continuing to defend it, further complicating his administration’s negotiations with two Republican senators who are blocking his attorney general nominee in protest.</p><p>Trump told reporters at Camp David on Friday morning that administration officials had “agreed not to have a fund” that compensates his political allies, yet made clear that he disagrees with that decision.</p><p>The comments came hours after an early morning social media post in which Trump said people who had been prosecuted by the Justice Department — many of them for their involvement in the violent Jan. 6, 2001, attack on the Capitol — “are suffering still, many ruined, and I felt that they should be given compensation for what has been done to them.”</p><p>Trump’s reluctant declaration that the fund won't be created came as Republican Sens. John Cornyn of Texas and Thom Tillis of North Carolina, both members of the Senate Judiciary Committee, say they won’t support Todd Blanche’s nomination for attorney general until they see that promise in writing. They have been working for weeks with the White House and Blanche, who is now the acting attorney general, to produce a document to that effect, but both senators have said they aren’t satisfied so far.</p><p>“The President made it clear today that the so-called Anti Weaponization Fund is still alive, which is exactly why we are attempting to formally end it,” Tillis said after Trump’s initial social media post.</p><p>Trump said in his post that Blanche should be immediately confirmed and is a “pawn in this whole thing.”</p><p>Cornyn, Tillis want promises in writing</p><p>Blanche said at a hearing two months ago that the anti-weaponization fund would not move forward after Republican senators revolted and held up an immigration funding bill.</p><p>But Tillis, who is retiring when his term ends in January, and Cornyn, who lost reelection this year after Trump endorsed his primary opponent, said they want to ensure that the White House doesn’t reverse course, especially as Trump continues to argue that a fund is needed.</p><p>The Justice Department has provided the senators with language that says Blanche’s May 18 order establishing the “Anti-Weaponization Fund” is “rescinded and shall have no force or effect,” according to a document reviewed by The Associated Press.</p><p>Cornyn and Tillis have said they also want some clarifications on a separate piece of the settlement that would grant Trump and members of his family immunity from tax audits. Cornyn said this week that it was his understanding that the audits could extend to more than 100 different Trump organization subsidiaries into the future.</p><p>“Todd Blanche said it was limited to the parties to the litigation — and it was retrospective, not prospective,” Cornyn said. “And all we’re doing is asking them to put that in writing.”</p><p>Blanche nomination is delayed in the Senate</p><p>The Judiciary Committee postponed a vote on Blanche’s nomination that had been scheduled for Thursday morning after Tillis and Cornyn said they needed more from the administration before they could provide the necessary votes.</p><p>After the meeting was delayed, Trump said in a social media post that he might pull Blanche’s nomination and resubmit it after Cornyn and Tillis leave office next year. But the two sides continued to negotiate through Thursday afternoon, when Blanche, Cornyn and Tillis met on Capitol Hill.</p><p>On Friday, a person familiar with the negotiations said talks had been positive but the senators were still awaiting a new offer from the Justice Department. The person requested anonymity to discuss the private negotiations.</p><p>The two senators have repeatedly said the Justice Department seemed interested in reaching an agreement, but the White House wouldn’t budge even to aid the confirmation of Trump’s loyal former personal attorney, who has aggressively pursued the administration’s priorities as acting attorney general.</p><p>“I think as far as Blanche and the Department of Justice, we were pretty much on the same page,” Cornyn said Thursday. “But then when the president got wind of it, he wasn’t willing to go along with it.”</p><p>Tillis said Blanche has been “has been forthright, thoughtful and patient” but attributed the holdup to an “incompetent personal adviser” to the president, even as Trump himself continued to advocate for the fund.</p><p>Behind the scenes, Trump legal adviser Boris Epshteyn is being blamed as an obstacle to an agreement that would let Blanche move forward, according to three people who have direct knowledge of the discussions and requested anonymity to discuss them.</p><p>Saying the AP’s “sources are wrong,” White House communications director Steven Cheung said “anyone trying to assign blame to the President or his team has no earthly idea of what is going on and clearly is trying to deflect from the issue at hand — Todd Blanche will be an exceptional Attorney General and he should be confirmed immediately.”</p><p>Also on Friday, Trump’s attorneys notified a court it would appeal a judge’s scathing ruling that characterized the settlement of the president’s lawsuit against the IRS as an improper exercise in self-dealing. The judge in her order earlier this month referred one of Trump’s attorneys for potential disciplinary action and criticized Blanche’s involvement in the settlement, given his prior representation of Trump.</p><p>Blanche has said he disagrees “with the judge’s insinuations” about him.</p><p>Settlement fund could have benefited Jan. 6 rioters</p><p>Even as they are usually deferential to Trump, a number of Republican senators have expressed strong objections to the settlement.</p><p>“The criminals who assaulted police officers and defiled our nation’s Capitol are not ‘great American patriots’ who are ‘victims of government abuse,’” Tillis said, echoing Trump’s comments about the rioters who could potentially have received payouts. On his first day back in office, Trump pardoned more than 1,500 people who had been charged in the attack.</p><p>Republican Sen. John Kennedy of Louisiana said Thursday that the majority of Senate Republicans aren’t comfortable with the settlement fund.</p><p>“Blanche said it’s dead, and he testified that it’s not coming back,” Kennedy said. “But for whatever reason, somebody didn’t want to put it in writing.”</p><p>___</p><p>Associated Press writers Eric Tucker and Lisa Mascaro contributed to this report.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/FO6TBY3MQ75WSYGXD3SQNS2S6E.jpg?auth=9911412e038a794d651a4a33c7dabf8f76b2d232230ebce4b3a08b9e583bb7f6&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[President Donald Trump listens during a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/MX6IUV37MG3JEVQLMK57VYTRNQ.jpg?auth=55f0b91179e8690623ed75f8fba1fbc53cf6666e105441054f064511dac99ed6&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Health and Human Services Secretary Robert F. Kennedy Jr., from left, acting Attorney General Todd Blanche and Vice President JD Vance attend a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content></item><item><title><![CDATA[Divulgan nuevos detalles tras accidente en Oakland Park que dejó una mujer muerta y un hombre herido]]></title><link>https://www.local10.com/espanol/2026/07/31/divulgan-nuevos-detalles-tras-accidente-en-oakland-park-que-dejo-una-mujer-muerta-y-un-hombre-herido/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/divulgan-nuevos-detalles-tras-accidente-en-oakland-park-que-dejo-una-mujer-muerta-y-un-hombre-herido/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez]]></dc:creator><description><![CDATA[Divulgaron nuevos detalles el viernes, dos días después de que una mujer murió y un hombre resultó herido en un accidente de dos vehículos en Oakland Park.]]></description><pubDate>Fri, 31 Jul 2026 19:42:02 +0000</pubDate><content:encoded><![CDATA[<p>Divulgaron nuevos detalles el viernes, dos días después de que una mujer murió y un hombre resultó herido en un accidente de <a href="https://www.local10.com/news/local/2026/07/29/1-dead-1-injured-in-oakland-park-crash/" target="_blank" rel="noreferrer" title="https://www.local10.com/news/local/2026/07/29/1-dead-1-injured-in-oakland-park-crash/">dos vehículos en Oakland Park</a>.</p><p>Según la Oficina del Sheriff de Broward (BSO), agentes y equipos de Oakland Park Fire Rescue respondieron alrededor de las 6:35 p.m. del miércoles a la intersección de Northwest 44th Street y Northwest 31st Avenue tras reportes de un accidente.</p><p>Los detectives informaron que Milton Pérez, de 51 años, conducía un BMW 640i modelo 2012 en dirección sur por Northwest 31st Avenue, acercándose a Northwest 44th Street, cuando ocurrió el accidente.</p><p>Los investigadores dijeron que una mujer, cuya identidad no ha sido divulgada públicamente, giraba a la izquierda desde Northwest 31st Avenue hacia Northwest 44th Street cuando el BMW impactó su Honda Civic modelo 2014.</p><p>Según los detectives, el impacto provocó que el Civic girara en sentido contrario a las agujas del reloj. Mientras el vehículo giraba, la conductora salió expulsada por la ventana del lado del pasajero y quedó junto al vehículo.</p><p>Paramédicos de Oakland Park Fire Rescue declararon muerta a la mujer en el lugar, informaron los investigadores.</p><p>Según la BSO, Pérez fue trasladado a un hospital local con heridas que no ponen en peligro su vida.</p><p>Los detectives no han informado a quién consideran responsable de la colisión.</p><p>La investigación continúa en curso.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/HKBZUVYQERCMJK6D2V5GMYQUKU.jpeg?auth=9c8f90794bb442e25605bc99dc840c182ec7b62240ce861736bb1d52ce451225&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[New details released after woman killed, man injured in Oakland Park crash]]></title><link>https://www.local10.com/news/local/2026/07/31/new-details-released-after-woman-killed-man-injured-in-oakland-park-crash/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/new-details-released-after-woman-killed-man-injured-in-oakland-park-crash/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez]]></dc:creator><description><![CDATA[New details were released Friday, two days after a woman was killed and a man was injured in a two-vehicle crash in Oakland Park.]]></description><pubDate>Fri, 31 Jul 2026 18:24:24 +0000</pubDate><content:encoded><![CDATA[<p>New details were released Friday, two days after a woman was killed and a man was injured in a <a href="https://www.local10.com/news/local/2026/07/29/1-dead-1-injured-in-oakland-park-crash/" target="_self" rel="" title="https://www.local10.com/news/local/2026/07/29/1-dead-1-injured-in-oakland-park-crash/">two-vehicle crash in Oakland Park.</a></p><p><a href="https://www.local10.com/espanol/2026/07/31/divulgan-nuevos-detalles-tras-accidente-en-oakland-park-que-dejo-una-mujer-muerta-y-un-hombre-herido/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/divulgan-nuevos-detalles-tras-accidente-en-oakland-park-que-dejo-una-mujer-muerta-y-un-hombre-herido/">Leer en español</a></p><p>According to the Broward Sheriff’s Office, deputies and Oakland Park Fire Rescue crews responded around 6:35 p.m. Wednesday to the intersection of Northwest 44th Street and Northwest 31st Avenue following reports of a crash.</p><p>Detectives said 51-year-old Milton Perez was driving a 2012 BMW 640i southbound on Northwest 31st Avenue, approaching Northwest 44th Street when the crash occurred. </p><p>Investigators said a woman, whose identity has not been publicly released, was making a left turn from Northwest 31st Avenue onto Northwest 44th Street when the BMW struck her 2014 Honda Civic.</p><p>According to detectives, the impact caused the Civic to rotate counterclockwise. As the vehicle spun, the driver was ejected from the passenger-side window and came to rest next to the vehicle. </p><p>Paramedics with Oakland Park Fire Rescue pronounced the woman dead at the scene, investigators said. </p><p>Perez was transported to a local hospital with non-life threatening injuries, according to BSO.</p><p>Detectives have not said who they believe was at fault for the collision.</p><p>The investigation remains ongoing. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/HKBZUVYQERCMJK6D2V5GMYQUKU.jpeg?auth=9c8f90794bb442e25605bc99dc840c182ec7b62240ce861736bb1d52ce451225&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Arrestan a hombre de Texas por ataque grabado en video contra mesera del Hard Rock Cafe de Bayside, dice la Policía]]></title><link>https://www.local10.com/espanol/2026/07/31/arrestan-a-hombre-de-texas-por-ataque-grabado-en-video-contra-mesera-del-hard-rock-cafe-de-bayside-dice-la-policia/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/arrestan-a-hombre-de-texas-por-ataque-grabado-en-video-contra-mesera-del-hard-rock-cafe-de-bayside-dice-la-policia/</guid><dc:creator><![CDATA[Chris Gothner, Roy Ramos]]></dc:creator><description><![CDATA[Una pista de Miami-Dade Crime Stoppers condujo al arresto de un hombre de Texas por un ataque grabado en video contra una mesera del Hard Rock Cafe en Bayside Marketplace, en el centro de Miami, según la Policía.]]></description><pubDate>Fri, 31 Jul 2026 16:39:04 +0000</pubDate><content:encoded><![CDATA[<p>Una pista de Miami-Dade Crime Stoppers condujo al arresto de un hombre de Texas por un <a href="https://www.local10.com/espanol/2026/07/29/video-buscan-a-sospechoso-por-impactante-ataque-contra-bartender-en-bayside-marketplace/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/29/video-buscan-a-sospechoso-por-impactante-ataque-contra-bartender-en-bayside-marketplace/">ataque grabado en video contra una mesera del Hard Rock Cafe</a> en Bayside Marketplace, en el centro de Miami, según la Policía.</p><p>Daniel Ramirez, de 47 años y residente de Lubbock, Texas, fue arrestado la mañana del viernes por el Departamento de Policía de Miami en una terminal de cruceros de Royal Caribbean en PortMiami. Enfrenta un cargo grave de agresión.</p><p>La Policía de Miami informó que el incidente ocurrió el domingo por la noche después de que la empleada sorprendiera a Ramirez “dentro de un área exclusiva para empleados consumiendo guarniciones” y le pidiera que dejara de hacerlo.</p><p>Las autoridades indicaron que Ramirez respondió: “Perra, ¿qué quieres que haga, que lo escupa?”, y ambos abandonaron el área del bar.</p><p>Sin embargo, según el informe de arresto del Departamento de Policía de Miami, el gerente de la mesera la llamó nuevamente después de que Ramirez presentara una queja.</p><p>“Según la víctima, (Ramirez) le dijo al gerente que ninguna mujer podía decirle qué hacer y que la víctima debía ser reprendida”, señala el informe de arresto.</p><p>La Policía informó que el gerente le pidió a la mesera que fingiera que estaba siendo reprendida.</p><p>Las autoridades indicaron que más tarde, después de que la víctima entró por la puerta principal para hablar con otro empleado, Ramirez “la empujó con fuerza, provocando que cayera contra un perchero metálico”.</p><p>“Como resultado de la caída, la víctima se golpeó la cabeza y se fracturó uno de los dientes frontales”, señala el informe.</p><p>La Policía informó que la víctima logró tomarle fotografías antes de que se marchara, pero cuando Ramirez “se dio cuenta de que ella lo estaba fotografiando, se dio la vuelta, le golpeó el teléfono celular de la mano, la empujó en el rostro y provocó que cayera al suelo” y perdiera el conocimiento. Luego, Ramirez huyó, según la Policía.</p><figure><img src="https://www.local10.com/resizer/v2/6HMJFJR2TFD3VNUU6AFE73G2JY.png?auth=af151d58239cfcae009a3c20a0a06562d3cdb9331afd0341b5ad62e26ee20c6d&smart=true&width=1200&height=900" alt="Bayside Marketplace suspect" height="900" width="1200"/><figcaption>Bayside Marketplace suspect</figcaption></figure><p>Según el informe, un agente del Departamento de Policía de Miami “intentó entrevistar a la familia que permanecía en la mesa con el acusado para obtener la identidad de (Ramirez)”, pero todos se negaron a cooperar o proporcionar información.</p><p>La Policía informó que, tras recibir la pista de Miami-Dade Crime Stoppers, logró identificar a Ramirez y la víctima lo reconoció en una rueda de reconocimiento.</p><p>Alrededor de las 6:40 a.m. del viernes, la Policía indicó que la Oficina de Aduanas y Protección Fronteriza de Estados Unidos (CBP) informó al Departamento de Policía de Miami que había detenido a Ramirez en el puerto.</p><p>Los investigadores señalaron que, al ser detenido, Ramirez “de manera espontánea manifestó que había ‘chocado con una mujer’”.</p><p>La Policía indicó que posteriormente se negó a hablar con los investigadores del Departamento de Policía de Miami.</p><p>Hasta la tarde del viernes, Ramirez permanecía detenido en el Centro Correccional Turner Guilford Knight y, según los registros de la cárcel en línea, su fianza figuraba como “pendiente de fijarse”.</p>]]></content:encoded></item><item><title><![CDATA[2 Las Vegas women accused of shipping meth to Miami-Dade in alleged drug trafficking ring]]></title><link>https://www.local10.com/news/local/2026/07/31/2-las-vegas-women-accused-of-shipping-meth-to-miami-dade-in-alleged-drug-trafficking-ring/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/2-las-vegas-women-accused-of-shipping-meth-to-miami-dade-in-alleged-drug-trafficking-ring/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Two Las Vegas women have been arrested and accused of being part of a drug trafficking organization that investigators say shipped multiple pounds of methamphetamine from Nevada to Miami-Dade County through the U.S. Postal Service.]]></description><pubDate>Fri, 31 Jul 2026 19:21:42 +0000</pubDate><content:encoded><![CDATA[<p>Two Las Vegas women have been arrested and accused of being part of a drug trafficking organization that investigators say shipped multiple pounds of methamphetamine from Nevada to Miami-Dade County through the U.S. Postal Service.</p><p><a href="https://www.local10.com/espanol/2026/07/31/acusan-a-dos-mujeres-de-las-vegas-de-enviar-metanfetamina-a-miami-dade-en-presunta-red-de-narcotrafico/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/acusan-a-dos-mujeres-de-las-vegas-de-enviar-metanfetamina-a-miami-dade-en-presunta-red-de-narcotrafico/">Leer en español</a></p><p>According to an arrest report, Maguadalupe Barajas Sandoval, 66, and Cynthia Leslie Hurtado, 35, were arrested Thursday by the Miami-Dade Sheriff’s Office following a multi-agency investigation involving the Florida Department of Law Enforcement, Homeland Security Investigations, the Drug Enforcement Administration and the U.S. Postal Inspection Service.</p><p>The report states investigators began looking into the operation in July 2025 after receiving information that Barajas Sandoval and other suspects were involved in trafficking “multi-pound quantities of crystalline methamphetamine” from Las Vegas to the Miami area.</p><p>Investigators said the organization used USPS facilities in Nevada to mail packages containing methamphetamine to Miami-Dade County. </p><p>The report states undercover agents received multiple shipments during the investigation that tested positive for methamphetamine.</p><p>According to the report, investigators in June intercepted two USPS Priority Mail Express packages addressed to undercover agents in Miami. </p><p>The report states one of those packages contained about 1,425 grams of suspected methamphetamine, or roughly 3 pounds, while another contained about 955 grams, or roughly 2 pounds.</p><p>The report also states undercover agents arranged several drug purchases from the suspects and sent payments through Zelle accounts connected to members of the alleged organization.</p><p>Investigators said Barajas Sandoval, Hurtado and other suspects communicated with undercover agents about the drug transactions, including arranging payments and shipments.</p><p>Barajas Sandoval is facing five counts each of controlled substance importation into Florida, trafficking more than 200 grams of amphetamine and unlawful use of a communications device, according to jail records. Hurtado is facing four counts each of the same charges.</p><p>As of Friday, Barajas Sandoval was being held at the Turner Guilford Knight Correctional Center on a $1.025 million bond. Hurtado was also being held at TGK on an $820,000 bond.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/UTPCJUENJVACRJA2ELQR6I2WCU.jpg?auth=4373d08140aad0f9a20b84db51bf2fa04caa7642e7f0963d89a335ede913c93c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Acusan a dos mujeres de Las Vegas de enviar metanfetamina a Miami-Dade en presunta red de narcotráfico]]></title><link>https://www.local10.com/espanol/2026/07/31/acusan-a-dos-mujeres-de-las-vegas-de-enviar-metanfetamina-a-miami-dade-en-presunta-red-de-narcotrafico/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/acusan-a-dos-mujeres-de-las-vegas-de-enviar-metanfetamina-a-miami-dade-en-presunta-red-de-narcotrafico/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Dos mujeres de Las Vegas fueron arrestadas y acusadas de formar parte de una organización de narcotráfico que, según los investigadores, envió múltiples libras de metanfetamina desde Nevada hasta el condado Miami-Dade a través del Servicio Postal de Estados Unidos.]]></description><pubDate>Fri, 31 Jul 2026 19:38:24 +0000</pubDate><content:encoded><![CDATA[<p>Dos mujeres de Las Vegas fueron arrestadas y acusadas de formar parte de una organización de narcotráfico que, según los investigadores, envió múltiples libras de metanfetamina desde Nevada hasta el condado Miami-Dade a través del Servicio Postal de Estados Unidos.</p><p>Según un informe de arresto, Maguadalupe Barajas Sandoval, de 66 años, y Cynthia Leslie Hurtado, de 35, fueron arrestadas el jueves por la Oficina del Sheriff de Miami-Dade tras una investigación conjunta en la que participaron el Departamento de Cumplimiento de la Ley de Florida (FDLE), Investigaciones de Seguridad Nacional (HSI), la Administración para el Control de Drogas (DEA) y el Servicio de Inspección Postal de Estados Unidos.</p><p>El informe indica que los investigadores comenzaron a indagar sobre la operación en julio de 2025 tras recibir información de que Barajas Sandoval y otros sospechosos estaban involucrados en el tráfico de “múltiples libras de metanfetamina cristalina” desde Las Vegas hacia el área de Miami.</p><p>Los investigadores dijeron que la organización utilizaba instalaciones del Servicio Postal de Estados Unidos (USPS) en Nevada para enviar por correo paquetes que contenían metanfetamina al condado Miami-Dade.</p><p>El informe indica que agentes encubiertos recibieron múltiples envíos durante la investigación que dieron positivo a metanfetamina.</p><p>Según el informe, en junio los investigadores interceptaron dos paquetes de USPS Priority Mail Express dirigidos a agentes encubiertos en Miami.</p><p>El informe señala que uno de esos paquetes contenía aproximadamente 1,425 gramos de presunta metanfetamina, es decir, alrededor de tres libras, mientras que otro contenía aproximadamente 955 gramos, o alrededor de dos libras.</p><p>El informe también indica que agentes encubiertos coordinaron varias compras de droga con los sospechosos y enviaron los pagos a través de cuentas de Zelle vinculadas con miembros de la presunta organización.</p><p>Los investigadores dijeron que Barajas Sandoval, Hurtado y otros sospechosos se comunicaban con los agentes encubiertos sobre las transacciones de droga, incluida la coordinación de pagos y envíos.</p><p>Según los registros de la cárcel, Barajas Sandoval enfrenta cinco cargos de importación de sustancias controladas a Florida, cinco cargos de tráfico de más de 200 gramos de anfetamina y cinco cargos por uso ilegal de un dispositivo de comunicación. Hurtado enfrenta cuatro cargos por cada uno de esos mismos delitos.</p><p>Hasta el viernes, Barajas Sandoval permanecía detenida en el Centro Correccional Turner Guilford Knight con una fianza de $1,025,000 USD. Hurtado también permanecía detenida en el TGK con una fianza de $820,000 USD.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/UTPCJUENJVACRJA2ELQR6I2WCU.jpg?auth=4373d08140aad0f9a20b84db51bf2fa04caa7642e7f0963d89a335ede913c93c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Authorities release early ransom note in Nancy Guthrie case, hoping someone recognizes it]]></title><link>https://www.local10.com/news/2026/07/31/authorities-release-early-ransom-note-in-nancy-guthrie-case-hoping-someone-recognizes-it/</link><guid isPermaLink="true">https://www.local10.com/news/2026/07/31/authorities-release-early-ransom-note-in-nancy-guthrie-case-hoping-someone-recognizes-it/</guid><dc:creator><![CDATA[By JACQUES BILLEAUD, Associated Press]]></dc:creator><description><![CDATA[PHOENIX (AP) — Authorities released an early ransom note in the investigation into the disappearance of Nancy Guthrie in hopes that someone will recognize the writing style. A second note released Friday indicated Guthrie died shortly after she was kidnapped.]]></description><pubDate>Fri, 31 Jul 2026 21:09:07 +0000</pubDate><content:encoded><![CDATA[<p>PHOENIX (AP) — Authorities released an early ransom note in the investigation into the disappearance of Nancy Guthrie in hopes that someone will recognize the writing style. A second note released Friday indicated Guthrie died shortly after she was kidnapped.</p><p>Both notes initially went to a Tucson television station days after the 84-year-old mother of “Today” show host Savannah Guthrie went missing from her home outside Tucson on Feb. 1. Authorities have not said whether Nancy Guthrie is still alive.</p><p>The Pima County Sheriff's Department said “we believe these distinctive linguistic characteristics may be recognizable to someone who knows or has interacted with the notes’ writer.”</p><p>The first note, sent Feb. 2, said Guthrie was safe but scared and would be released unharmed once her captors received $4 million in cryptocurrency, with the ransom amount increasing if the first demand was not met.</p><p>It said Guthrie would be released within 12 hours if the payment was received. It also included a threat to kill her if the ransom wasn’t paid.</p><p>"Your mother is aware of this and her life is in your hands,” the first note read. “It is in the best interest of everyone to have this completed as soon as possible.”</p><p>The second note was sent Feb. 6 and said Guthrie died shortly after she was taken. “She is buried in nature now,” the second note said. “Nothing you could have done could have changed the outcome.” The note ends with an apology, “We are truly sorry.”</p><p>Investigators hope the writing itself will help identify its author</p><p>The sheriff’s department said the notes reveal a distinctive pattern of word choices and provide insight into the writer’s mindset. The agency said someone who knows the notes’ writer may recognize the patterns.</p><p>Authorities similarly used a suspect’s own writings as a tool to apprehend Theodore “Ted” Kaczynski, branded the “Unabomber” by the FBI. Kaczynski, who killed three people and injured 23 others with mail bombs over a 17-year span, pressured The Washington Post, in conjunction with The New York Times, to publish his 35,000-word manifesto in 1995. Federal authorities encouraged its publication, leading Kaczynski’s brother and sister-in-law to recognize the syntax and anti-technology themes and tip off the FBI, bringing to a close the agency’s longest and costliest investigation at the time.</p><p>In a statement Friday, the sheriff’s department also appealed to people who may know something about the case, saying it may be difficult to come forward due to a personal relationship with someone involved or just for their own safety.</p><p>“We recognize relationships and loyalties change over time as do people and their perspectives,” the sheriff’s department wrote. “It is not too late to come forward.”</p><p>Authorities say new evidence suggests the kidnapping was planned</p><p>The sheriff’s office also said Friday that two videos recovered from Guthrie’s doorbell camera might be from two separate days and indicate an unidentified male prepared ahead of when Guthrie was taken. Authorities are seeking information on anyone who was behaving differently, changed their physical appearance, suddenly left the Tucson area, or had a noticeable or unexplained interest or disinterest in the case.</p><p>“Investigators continue to pursue every available technological and investigative lead,” the sheriff’s office said. “However, community members remain a vital resource as we seek to provide answers for Nancy’s family.”</p><p>On Feb. 4, Savannah Guthrie and her siblings first shared a video statement saying they were aware of media reports of a purported ransom letter and that they were ready to talk and listen, but they wanted proof that their mother was alive. Camron Guthrie, the brother of the “Today” co-anchor, said the following day that the family had not heard directly from whoever took their mother.</p><p>A day after the second note was sent, Savannah Guthrie said on Feb. 7 that the siblings received a message and “understand,” without sharing details. She said they were begging for their mother to be returned to them. “We will pay,” Guthrie said.</p><p>The family has continued to share their pleas for information in videos posted to social media.</p><p>Two men previously detained have filed a lawsuit</p><p>Also, two men detained and released early in the investigation into Nancy Guthrie’s disappearance are seeking a combined $3 million against a southern Arizona sheriff’s department. In a legal claim, they say they were wrongfully held by law enforcement.</p><p>The claim made Thursday against Pima County Sheriff Chris Nanos’ department centers on the separate detentions of Carlos Alfredo Palazuelos and Daniel Maddow on Feb. 10. It said they were released hours later but have suffered from having been mentioned in the investigation.</p><p>Nanos’ office declined to comment on the notice of claim, a necessary precursor to filing a lawsuit against government entities.</p><p>___</p><p>Associated Press writer Hannah Schoenbaum in Salt Lake City contributed to this report.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/4GC4GEXBF6B52ZDCYYPNT5Z3WY.jpg?auth=d0a3e554f1e1d7a5a94dfc1e184759861704fcd219615eb76697b7c66180879a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Savannah Guthrie visits the Today show at Rockefeller Plaza in New York, March 5, 2026. (Photo by Charles Sykes/Invision/AP, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Charles Sykes</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/KW6WM4BVEWVXXCGBKMAQGG2KZ4.jpg?auth=564945a3c47c2a44064d730baabd78f34c72451ae2b40a2e68b19b90430d6c7e&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A collection of yellow flowers and notes sit at the home of Nancy Guthrie, the missing mother of "Today" show host Savannah Guthrie, in Tucson, Ariz., March 6, 2026. (AP Photo/Rebecca Noble, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Rebecca Noble</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/Z6OWG5TTZU5TO7UC5F44RHIMV4.jpg?auth=ae594dd140fa2f9eb12f641545422375147d50f760be089edd72565f063acad3&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - People visit a banner for Nancy Guthrie, the missing mother of "Today" show host Savannah Guthrie, outside the KVOA Newsroom in Tucson, Ariz., on March 6, 2026. (AP Photo/Rebecca Noble, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Rebecca Noble</media:credit></media:content></item><item><title><![CDATA[Texas man arrested in videoed attack on Bayside Hard Rock Cafe server, police say]]></title><link>https://www.local10.com/news/local/2026/07/31/texas-man-arrested-in-videoed-attack-on-bayside-hard-rock-cafe-server-police-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/texas-man-arrested-in-videoed-attack-on-bayside-hard-rock-cafe-server-police-say/</guid><dc:creator><![CDATA[Chris Gothner, Roy Ramos]]></dc:creator><description><![CDATA[A Miami-Dade Crime Stoppers tip led to the arrest of a Texas man in a video-recorded attack on a Hard Rock Cafe server at Bayside Marketplace in downtown Miami, according to police.]]></description><pubDate>Fri, 31 Jul 2026 16:28:21 +0000</pubDate><content:encoded><![CDATA[<p>A Miami-Dade Crime Stoppers tip led to the arrest of a Texas man in a video-recorded <a href="https://www.local10.com/news/local/2026/07/29/video-cops-seek-suspect-in-jarring-attack-on-bartender-at-bayside-marketplace/" target="_self" rel="" title="https://www.local10.com/news/local/2026/07/29/video-cops-seek-suspect-in-jarring-attack-on-bartender-at-bayside-marketplace/">attack on a Hard Rock Cafe server</a> at Bayside Marketplace in downtown Miami, according to police.</p><p><a href="https://www.local10.com/espanol/2026/07/31/arrestan-a-hombre-de-texas-por-ataque-grabado-en-video-contra-mesera-del-hard-rock-cafe-de-bayside-dice-la-policia/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/arrestan-a-hombre-de-texas-por-ataque-grabado-en-video-contra-mesera-del-hard-rock-cafe-de-bayside-dice-la-policia/">Leer en español</a></p><p>Daniel Ramirez, 47, of Lubbock, Texas, was taken into custody by the Miami Police Department Friday morning at a Royal Caribbean cruise terminal at PortMiami. He’s facing a felony battery charge.</p><p>Miami police said the incident happened on Sunday evening after the employee spotted Ramirez “inside an employee-only area consuming garnishes” and told him not to eat them.</p><p>Authorities said Ramirez responded, “B----, what do you want me to do, spit it out?” and both left the bar area.</p><p>However, according to an MPD arrest report, the server’s manager called her back over after Ramirez made a complaint.</p><p>“According to the victim, (Ramirez) told the manager that no woman was allowed to tell him what to do and that the victim needed to be reprimanded,” the arrest report states.</p><p>Police said the manager told the server to pretend like she was being reprimanded.</p><p>Authorities said later, after the victim went inside through the front entrance to talk to another employee, Ramirez “forcefully shoved her, causing her to fall into a metal garment rack.”</p><p>“As a result of the fall, the victim struck her (head) and chipped one of her front teeth,” the report states.</p><p>She was able to snap photos of him before he left, police said, but when Ramirez “realized she was photographing him, he turned around, struck the cellular phone out of her hand, pushed her in the face and caused her to fall to the ground” and lose consciousness. Ramirez fled, police said.</p><figure><img src="https://www.local10.com/resizer/v2/6HMJFJR2TFD3VNUU6AFE73G2JY.png?auth=af151d58239cfcae009a3c20a0a06562d3cdb9331afd0341b5ad62e26ee20c6d&smart=true&width=1200&height=900" alt="Bayside Marketplace suspect" height="900" width="1200"/><figcaption>Bayside Marketplace suspect</figcaption></figure><p>According to the report, an MPD officer “attempted to interview the family who had remained at the table with the defendant in an effort to obtain (Ramirez’s) identity,” but they all refused to cooperate or provide information.</p><p>Police said after receiving the Crime Stoppers tip, they were able to identify Ramirez and the victim picked him out of a lineup.</p><p>At around 6:40 a.m. Friday, police said U.S. Customs and Border Protection informed MPD that they apprehended Ramirez at the port.</p><p>Investigators said Ramirez, upon being apprehended, “spontaneously stated that he had ‘run into a lady.’”</p><p>Police said he later declined to speak with MPD investigators.</p><p>“I’m really thankful that he was apprehended and arrested and that he’s sitting there thinking about his actions,” the server, who has asked to remain anonymous, told Local 10 News. “It’s very disgusting ― and I wonder how he would feel if it was done to somebody in his family.”</p><p>As of Friday afternoon, Ramirez was being held in the Turner Guilford Knight Correctional Center with a bond listed as “to be set” in online jail records.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[La ONU advierte que un inusual fenómeno de El Niño empeorará “un planeta que ya está en llamas”]]></title><link>https://www.local10.com/espanol/2026/07/31/la-onu-advierte-que-un-inusual-fenomeno-de-el-nino-empeorara-un-planeta-que-ya-esta-en-llamas/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/la-onu-advierte-que-un-inusual-fenomeno-de-el-nino-empeorara-un-planeta-que-ya-esta-en-llamas/</guid><dc:creator><![CDATA[Por SETH BORENSTEIN y EDITH M. LEDERER, Associated Press]]></dc:creator><description><![CDATA[NACIONES UNIDAS (AP) — Un fenómeno meteorológico de El Niño cada vez más fuerte ya ha batido récords de intensidad en sus primeras etapas, y probablemente provocará un clima aún más extremo en todo el mundo a medida que crezca, “echando leña a un planeta que ya está en llamas”, advirtieron funcionarios de las Naciones Unidas el viernes.]]></description><pubDate>Fri, 31 Jul 2026 19:13:51 +0000</pubDate><content:encoded><![CDATA[<p>NACIONES UNIDAS (AP) — Un fenómeno meteorológico de El Niño cada vez más fuerte ya ha batido récords de intensidad en sus primeras etapas, y probablemente provocará un clima aún más extremo en todo el mundo a medida que crezca, “echando leña a un planeta que ya está en llamas”, advirtieron funcionarios de las Naciones Unidas el viernes.</p><p>Una zona clave del océano Pacífico que se usa para medir la fuerza de El Niño alcanzó esta semana su nivel más cálido e intenso jamás registrado por 15ta semana desde que se formó, lo cual es muy temprano en su ciclo de vida, informaron científicos de la Universidad de Columbia.</p><p>El Niño, un calentamiento natural del Pacífico cerca del ecuador que distorsiona los patrones meteorológicos en todo el mundo, no alcanzará su punto máximo sino hasta dentro de varios meses y debería durar hasta la primavera de 2027. La Organización Meteorológica Mundial OMM), un organismo de la ONU, advirtió el viernes que probablemente desencadenará calor extremo, sequía y lluvias intensas hasta bien entrado el próximo año.</p><p>“Hace dos meses advertí que El Niño estaba llegando a nuestra puerta. Ahora está dentro de la casa, y subiendo la temperatura”, dijo el viernes a los periodistas el secretario general de las Naciones Unidas, Antonio Guterres. “Ya hemos soportado un verano de extremos: domos de calor que rompieron récords, incendios forestales apocalípticos que arrasan España, Francia y mucho más allá, miles de vidas perdidas en condiciones abrasadoras”.</p><p>“Pero según la ciencia más reciente, esto es solo un acto de preparación”, afirmó Guterres, y añadió que, a medida que El Niño se fortalezca, estará “echando leña a un planeta que ya está en llamas”.</p><p>“Estamos en territorio desconocido”, sostuvo. “La crisis climática está a toda marcha”.</p><p>La mayoría de los modelos de pronóstico por computadora muestran que este fenómeno de El Niño probablemente romperá el récord histórico de intensidad cuando alcance su punto máximo, en algún momento hacia finales del otoño o por esas fechas, pero eso no está garantizado, señalaron los científicos.</p><p>Se avecinan extremos caóticos de lluvia, sequía y un calor nunca visto</p><p>Aún es temprano en la vida —casi de un año— de un El Niño típico como para ver muchos efectos directos, pero llegarán, indicaron los científicos, lo cual coincide con las advertencias de Guterres. Los efectos de El Niño se combinarán con el calentamiento global de largo plazo provocado por la quema de carbón, petróleo y gas.</p><p>“Estamos viendo algo que es el julio más cálido jamás registrado para esa región específica”, utilizada como indicador de El Niño, dijo Jeffrey Shaman, climatólogo de la Universidad de Columbia. “Dentro de un año, va a hacer muchísimo calor en el hemisferio norte. Y posiblemente tengamos un verano como nunca hemos experimentado a nivel mundial”.</p><p>Pero antes de eso, es probable que el potente fenómeno cause cambios en los patrones de lluvia que traerán extremos caóticos a distintas partes del mundo en otoño e invierno. Hay una alta probabilidad de sequía e incendios forestales en Indonesia, India y otras partes de Asia, el sur y el este de Australia, zonas de Sudamérica y regiones del sur de África, advirtió la OMM. Otras áreas, entre ellas, gran parte de Estados Unidos y el sur de Europa afectado por incendios, recibirán lluvias por encima del promedio.</p><p>“Este El Niño, que se desarrolla sobre el telón de fondo de un calor oceánico sin precedentes y temperaturas en aumento, brinda a los gobiernos y las comunidades una ventana de oportunidad para anticipar riesgos y actuar antes de que se desplieguen los impactos”, dijo Celeste Saulo, secretaria general de la OMM.</p><p>El Niño amplifica el calentamiento causado por el ser humano</p><p>Aunque El Niño y el cambio climático son fenómenos separados, sus efectos crean una combinación dañina, y la gente no toma este vínculo con la seriedad suficiente, dijo Guterres.</p><p>“Escuchamos mucho sobre calor, sequía e incendios forestales récord, pero no lo suficiente sobre el verdadero cambio que impulsa estos eventos: la crisis climática que se acelera, alimentada por los combustibles fósiles”, expresó Guterres.</p><p>Guterres señaló que el mundo está demasiado absorto en dramáticas guerras en Ucrania, Oriente Medio y Sudán como para notar los peligros del cambio climático. Además, “existe una campaña deliberada, en particular por parte de la industria de los combustibles fósiles y algunos países, para fingir que los problemas que estamos presenciando en realidad no existen”.</p><p>La ONU debe ser más activa y movilizar la opinión pública “para decirles a los gobiernos que es hora de reconocer esta amenaza como una amenaza existencial para todos nosotros”, declaró a los periodistas.</p><p>Gran parte del calor producido por la quema de combustibles fósiles queda atrapado en los océanos, pero “durante un El Niño el océano, en cierto sentido, puede devolver parte de las acumulaciones de calor del calentamiento global a la atmósfera”, explicó Shaman. Aunque este El Niño terminará, el calor liberado permanece en el aire, junto con las temperaturas más altas, que volverán a subir en el próximo El Niño, agregó.</p><p>Guterres pidió más sistemas de alerta temprana y sistemas de enfriamiento para afrontar el calor extremo. Afirmó que la industria y los gobiernos deben hacer que el trabajo sea más seguro, y destacó la industria de la confección, que cuenta con 90 millones de trabajadores, la mayoría mujeres. En 17 de los 23 mayores centros de fabricación de ropa, los días peligrosamente calurosos aumentaron en más de un 10% en los últimos 20 años, “y sin embargo la mayoría de las marcas globales no fija ningún estándar de calor para las fábricas que las abastecen”.</p><p>Pero, sobre todo, dijo Guterres, “el mundo debe dejar de alimentar la crisis.... Más carbón, petróleo y gas provocarán un futuro más combustible”.</p><p>___</p><p>Borenstein informó desde Washington.</p><p>___</p><p>La cobertura climática y ambiental de The Associated Press recibe apoyo financiero de múltiples fundaciones privadas. La AP es la única responsable de todo el contenido. Encuentra los estándares de la AP para trabajar con organizaciones filantrópicas, una lista de las fundaciones y las áreas de cobertura que financian en AP.org.</p><p>___</p><p>Esta historia fue traducida del inglés por un editor de AP con la ayuda de una herramienta de inteligencia artificial generativa.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/TXC73727OFW2A6NJH5I2TSZRZQ.jpg?auth=e718b2541b6970fa38134d340143bb7cb8595e983ce634df1dd9478586121128&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[ARCHIVO – Un bombero retira del fuego varios panales mientras combate un incendio forestal en San Martin de Valdeiglesias, al oeste de Madrid, España, el 26 de julio de 2026. (AP Foto/Manu Fernandez, Archivo)]]></media:description><media:credit role="author" scheme="urn:ebu">Manu Fernandez</media:credit></media:content></item><item><title><![CDATA[Thousands of migrant children in the US could face new deportation risks as legal aid deal expires]]></title><link>https://www.local10.com/news/world/2026/07/31/thousands-of-migrant-children-in-the-us-could-face-new-deportation-risks-as-legal-aid-deal-expires/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/thousands-of-migrant-children-in-the-us-could-face-new-deportation-risks-as-legal-aid-deal-expires/</guid><dc:creator><![CDATA[By REBECCA SANTANA and VALERIE GONZALEZ, Associated Press]]></dc:creator><description><![CDATA[HARLINGEN, Texas (AP) — Advocates warn that tens of thousands of migrant children who came to the United States alone could lose legal representation in immigration court and increase their risk of deportation as the Trump administration allows a contract with legal services providers to expire.]]></description><pubDate>Fri, 31 Jul 2026 20:09:33 +0000</pubDate><content:encoded><![CDATA[<p>HARLINGEN, Texas (AP) — Advocates warn that tens of thousands of migrant children who came to the United States alone could lose legal representation in immigration court and increase their risk of deportation as the Trump administration allows a contract with legal services providers to expire.</p><p>Friday marks the last day of a contract under which the federal government pays for legal services for children who enter the U.S. without a parent or guardian. The government contracts out those services to a network of nearly 100 legal groups across the country that provide services to roughly 20,000 children.</p><p>The Trump administration did not immediately respond to a request for comment on why it was allowing the contract to expire. But it comes as the administration has redoubled its efforts to achieve its policy of mass deportations, and after migrant children became a target for removal from the country during the first year of President Donald Trump’s second term in office.</p><p>As part of the expiring contract, the legal groups can enter government-funded shelters and give presentations to children about their legal rights, and directly represent the children as they go through immigration court proceedings.</p><p>But as that contract ends, the providers say it’s unclear what will happen come Monday or whether they'll be able to visit their clients in the shelters where they live.</p><p>“We have no understanding of what’s going to happen to those children come next week. We don’t know if they’re going to have legal representation. The government as of yet has not identified who will take over this representation,” said Melissa Lopez, the executive director of Estrella El Paso, during a news conference earlier this week. The organization currently represents 243 unaccompanied children in western Texas and New Mexico.</p><p>The providers say their ability to enter the shelters, check on their clients and give presentations to new arrivals serves as an important oversight measure for a vulnerable population. The providers warn that without a lawyer to assist them in court and help them navigate the complexities of immigration law, children will be much more likely to be deported back to countries they initially fled.</p><p>“The government is trying to eliminate our work in this program because they know that without attorneys children will be deported,” said Lopez.</p><p>Health and Human Services, which is responsible for caring for unaccompanied migrant children while they are in government care and which administers the contract, did not respond to a request for comment Friday.</p><p>In a Texas immigration court, children play with action figures as lawyer warns of future</p><p>Dozens of children and teens filed early Friday morning into the Harlingen courthouse for a hearing before an immigration judge. In the lobby, other children waiting for their hearings played with puzzles and action figures or drew in coloring books.</p><p>One 8-year-old boy walked into the courtroom holding an Etch-a-Sketch as he sat next to his attorney.</p><p>These were children who had come to the U.S. without a parent or guardian and now their cases were making their way through the immigration courts. But Lauren Fisher Flores, an attorney for the American Bar Association’s ProBar project, which is contracted to provide legal services in southwestern Texas, warned the court of the looming contract expiration.</p><p>She explained that come Monday, lawyers wouldn't be able to provide the legal information sessions that they usually give to children in shelters that let children know their rights and lawyers also would no longer be able to step in and provide the “Friend of the Court” services where they assist those children who sometimes show up in court without a lawyer. Fisher Flores said the organization didn't know what the government's plan was going forward.</p><p>“We sincerely hope there will be someone to step in next week,” she said.</p><p>The judge thanked the attorney and said she was sorry to hear the news.</p><p>Legal groups already laying off staff after months of no payments</p><p>The end of the contract comes as the legal service providers representing these children say they have not been paid for more than half a year. The organizations say that the Trump administration has been withholding payments as it demands detailed information from the providers about their clients that the providers say they have never been asked for before and that they ethically cannot provide.</p><p>“They are clearly trying to destroy the program by grinding down the financial health of nonprofits. We’ve seen layoffs and furloughs, and we will see a lot more of that if these invoices aren’t paid,” said Michael Lukens, the executive director of the Amica Center</p><p>Some groups have been trying to secure private funding to continue their work, while others have begun laying off staff and shuttering offices. ProBar in south Texas this week laid off 20% of its staff.</p><p>Mid-South Immigration Advocates is a nonprofit law firm based in Memphis, Tennessee, which helps over 400 unaccompanied minors. The organization’s legal director, Sally Joyner, said the organization is owed over $500,000 from the federal government to reimburse them for their work with the children. They've already had to lay off seven employees since 2025 and more layoffs are planned. They're closing their physical offices in Nashville and Memphis at the end of September and expect to close their law firm entirely soon.</p><p>As their budget tightens, she said they're doing everything they can to continue representing the children who are their clients. She warns that without attorneys to represent them, migrant children, including infants and teens, could be ordered deported in the coming weeks.</p><p>“These are kids who have been living in our communities, going to our schools for you know three, four, five years,” Joyner said. “Some of them they only know the United States and will have gone to high school, graduate high school just in time for ICE to send them to prison.”</p><p>Migrant children coming to the U.S. alone usually have special protections</p><p>Migrant children traveling alone are usually entrusted to U.S. government care, and there are various legal protections that apply to them once they’re in the U.S. and navigating the immigration system, including the Trafficking Victims Protection Reauthorization Act of 2008.</p><p>The law said the government should facilitate legal representation for children put into deportation proceedings.</p><p>With some limited exceptions, it requires that children be placed in the “least restrictive setting possible,” which generally means they can be released to a sponsor, such as a relative in the U.S., while their immigration proceedings play out.</p><p>The children can apply for a specially protected status if they can’t return to their home country because of abuse or neglect and they can also apply for asylum.</p><p>___</p><p>Santana reported from Sacramento. Associated Press reporter Laura Turbay in Little Rock contributed to this report.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/NPUXJQRDDSZKRT322IWHH72NLE.jpg?auth=b21b5892d7447948a89b936857af2595204d195cdf5a7f9ad1f12bd1ce78e393&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Immigrants play soccer at a new U.S. government holding center for migrant children, in Carrizo Springs, Texas, July 9, 2019. (AP Photo/Eric Gay, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Eric Gay</media:credit></media:content></item><item><title><![CDATA[Big Ten believes its reputation as a top-heavy league is unfair as it claims conference supremacy]]></title><link>https://www.local10.com/sports/2026/07/31/big-ten-believes-its-reputation-as-a-top-heavy-league-is-unfair-as-it-claims-conference-supremacy/</link><guid isPermaLink="true">https://www.local10.com/sports/2026/07/31/big-ten-believes-its-reputation-as-a-top-heavy-league-is-unfair-as-it-claims-conference-supremacy/</guid><dc:creator><![CDATA[By STEVE MEGARGEE, Associated Press]]></dc:creator><description><![CDATA[In the debate over which college football conference is strongest, the Southeastern Conference argues its superior depth makes up for the Big Ten winning the last three national titles.]]></description><pubDate>Fri, 31 Jul 2026 18:48:34 +0000</pubDate><content:encoded><![CDATA[<p>In the debate over which college football conference is strongest, the Southeastern Conference argues its superior depth makes up for the Big Ten winning the last three national titles.</p><p>The Big Ten calls its reputation as a top-heavy conference unfair.</p><p>Big Ten Commissioner Tony Petitti considers those three College Football Playoff championships — from Michigan in 2023, Ohio State in 2024 and Indiana in 2025 — testaments to the league’s strength from top to bottom.</p><p>“You cannot send your top teams out into the CFP unless they’ve played — and have them be successful, which we have been very successful — if they’re not going through a gauntlet in the regular season,” Petitti said this week. “This idea that the middle of our conference isn’t hard is just not right.”</p><p>The balance of power between college football’s heavyweight conferences has been a major talking point at the leagues’ media days.</p><p>Petitti spoke to reporters while standing beside the Big Ten’s three recent CFP trophies. Illinois coach Bret Bielema said the SEC was living in the past. Indiana coach Curt Cignetti said “there’s no doubt” the Big Ten is best.</p><p>“The numbers speak for themselves,” Cignetti said. “We don’t run a hype machine up here in the Midwest. We believe everything is earned, not given. When we fall short, we say, ‘We fell short.’ We don’t cry a river, whine and complain. That’s why we’re the best.”</p><p>SEC Commissioner Greg Sankey argued his league’s case a week earlier.</p><p>“When you look at our schedule, no one has created the kind of weekly competition that exists in the Southeastern Conference,” Sankey said.</p><p>Five different SEC schools combined to win 13 national titles from 2006-22, but no SEC team has reached any of the last three championship games.</p><p>Both have evidence to support their claims</p><p>In the first two years under a 12-team CFP format, seven different SEC schools have made eight playoff appearances. The Big Ten had four schools total seven playoff berths.</p><p>Certain metrics support the idea that the 16-team SEC is stronger than the 18-school Big Ten at the bottom. ESPN’s Bill Connelly produces the SP+ rankings, a predictive measure rating each team’s efficiency while adjusting for tempo and an opponent’s strength.</p><p>The Big Ten had three of the top four teams in the 2025 season-ending SP+ rankings, while the SEC had nobody in the top five. But seven Big Ten programs ranked below the lowest SEC team on the list: No. 67 Kentucky.</p><p>Recent head-to-head results favor Big Ten</p><p>Over the last two seasons, the Big Ten went 10-7 against the SEC, including a 3-0 playoff record and a 5-2 mark in other bowl games. The Big Ten won as an underdog in all five of those non-playoff victories.</p><p>Illinois produced two of those upsets, beating South Carolina in the Citrus Bowl in 2024 and defeating Tennessee in the Music City Bowl last season. So Bielema had reason to feel good about himself and his conference this week when he commented that SEC backers “kind of want to live in 2005 forever.”</p><p>The 2005 reference was curious because Texas won the title that season when it was still a Big 12 member, a year before the SEC began a string of seven straight titles. Bielema said he chose 2005 because that’s the year before his head coaching career began at Wisconsin.</p><p>“The transfer portal and revenue share or NIL, however you want to describe it, when those two elements came into college football, the whole world changed,” said Bielema, who went 29-34 while coaching SEC school Arkansas from 2013-17. “I mean, it’s overly obvious to say that, but I think anything to predate that is just a different time in college football. It just is.”</p><p>Big Ten capitalizes on changing times</p><p>Fourteen of the 22 playoff games over the last two years have featured Big Ten teams, including two in which conference rivals faced off. No wonder even Big Ten coaches with SEC backgrounds claim bragging rights.</p><p>“I just look at what the stats are, you know, and the last three years, the national champion has come out of this conference,” said Purdue’s Barry Odom, who went 25-25 at Missouri from 2016-19. “You also look at the number of playoff wins compared to any other conference, we’ve won twice as many as the next conference in the playoffs.”</p><p>UCLA quarterback Nico Iamaleava has experience playing in both conferences after reaching the playoff with Tennessee in 2024.</p><p>“I think it’s two great leagues — two great, physical leagues,” Iamaleava said. “I think the SEC brings a lot of physicality, but over the years, it’s kind of leveled out in terms of the playing field.
I think everybody is able to get high-level athletes. ... I think there’s definitely a lot of tough SEC teams, so that every week is going to be a game, but I feel the same way in the Big Ten.”</p><p>The intensity of the debate frustrates coaches eager to settle it on the field, perhaps with more head-to-head matchups.</p><p>“You never hear in the NFL, ‘Wow, the NFC’s better than the AFC,’” Washington coach Jedd Fisch said. “You don’t ever hear, ’Check us out, we’ve won the Super Bowl the last few years.' We’ve kind of made this some competition rather than just take a step back and say, ‘Who cares?’ Let’s play.”</p><p>___</p><p>AP freelance writer Luke DeCock contributed to this report.</p><p>___</p><p>AP college football: https://apnews.com/hub/ap-top-25-college-football-poll and https://apnews.com/hub/college-football</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/OF57ZY6LTEMXZAMF7TUNJVV4DE.jpg?auth=1f161efd9f5d7af8c93c79fc686658f3c384c833c500329bf32fda9245450492&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Indiana head coach Curt Cignetti reacts during the second half of the College Football Playoff national championship game against Miami, Jan. 19, 2026, in Miami Gardens, Fla. (AP Photo/Marta Lavandier)]]></media:description><media:credit role="author" scheme="urn:ebu">Marta Lavandier</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/TWPUEOQHJWGYEN7MFEFB5EYUIQ.jpg?auth=20a9e8e55877865c1caf080a8c02cc54f9a50f21a006c0ba3b7429c631f07069&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Big Ten Conference Commissioner Tony Petitti speaks during an news conference at the Big Ten Conference NCAA college football media days at Lucas Oil Stadium, July 26, 2023, in Indianapolis. (AP Photo/Darron Cummings, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Darron Cummings</media:credit></media:content></item><item><title><![CDATA[Trump administration pushes tougher English rules for Mexican train crews crossing into the US]]></title><link>https://www.local10.com/business/2026/07/31/trump-administration-pushes-tougher-english-rules-for-mexican-train-crews-crossing-into-the-us/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/trump-administration-pushes-tougher-english-rules-for-mexican-train-crews-crossing-into-the-us/</guid><dc:creator><![CDATA[By JOSH FUNK, Associated Press]]></dc:creator><description><![CDATA[The Trump administration wants to make sure that the Mexican train crews who haul freight over the border can understand key safety safety information in English and that the common practice of using foreign crews to cross into America doesn't threaten U.S. jobs.]]></description><pubDate>Fri, 31 Jul 2026 20:02:23 +0000</pubDate><content:encoded><![CDATA[<p>The Trump administration wants to make sure that the Mexican train crews who haul freight over the border can understand key safety safety information in English and that the common practice of using foreign crews to cross into America doesn't threaten U.S. jobs.</p><p>Two major rail unions praised the proposed rule announced Friday that would also strengthen the standards for certifying that crews can safely operate a train.</p><p>The government had concerns after inspecting two Texas railyards near the border last fall on the two railroads directly affected by these restrictions on Mexican crews — Union Pacific and CPKC. UP didn’t immediately respond but CPKC and the Association of American Railroads trade group declined to comment while they study the rule.</p><p>The Federal Railroad Administration sent letters to both CPKC and UP in December after those inspections found several instances of train crews having trouble understanding English. The government urged those railroads to reexamine their practices and make sure that Mexican crews can speak English and don’t operate a train more than 10 miles (16 kilometers) inside America.</p><p>The Federal Railroad Administration said at the time the concern was that these Mexican crews bringing trains into Union Pacific’s Eagle Pass rail yard and CPKC’s facility in Laredo were having a hard time understanding operating bulletins and U.S. regulations that require information about hazardous materials and emergency responses to be maintained in English.</p><p>Both UP and CPKC have pledged to make sure they were following the existing rules, including that the Mexican crews do not travel more than 10 miles into the United States. But now the federal government wants to strengthen the rules “because railroad crews must be able to communicate fully and accurately when crossing into the United States, most notably with dispatchers and emergency responders during a crisis, as a safety-critical function.”</p><p>This rail safety effort aligns closely with the Transportation Department's efforts to ensure that truck drivers can understand English, so they can read road signs and warnings and communicate with first responders after an accident or during an inspection. The government has tried to withhold millions of dollars in highway funding from New York and California because it isn’t satisfied with the steps those states have taken to make sure the commercial driver’s licenses they issue are valid.</p><p>Mark Wallace, the national president of the Brotherhood of Locomotive Engineers and Trainmen union, has been raising concerns about this practice of using Mexican train crews for several years because of safety, security and job concerns.</p><p>The union has said that the handoffs used to happen right at the border, but now Union Pacific and CPKC routinely ask Mexican crews to bring trains several miles over the border to one of their railyards where the crew switches can be done more safely. But the firm 10-mile (16-kilometer) restriction in this rule will prevent the railroads from expanding this practice to railyards further into America like the union said UP was considering in New Mexico.</p><p>“Trains originating from Mexico, operated by foreign crews were unable to communicate with dispatchers in English and the language barrier posed a hazard in the event of a derailment or other incident,” Wallace said.</p><p>But the railroads have said that this practice of using Mexican train crews to bring the trains into railyards in America was developed in 2018 with the approval of the first Trump administration to address smuggling concerns. When trains are stopped at the border smugglers often try to conceal drugs or other contraband aboard them and immigrants might jump aboard to get into the United States.</p><p>It is also routine for Canadian crews to bring trains a few miles over the northern border with the United States before handing off to American crews.</p><p>The SMART-TD union that represents conductors and other rail workers also said the provisions of the rule that will prohibit train crews from using a system that's similar to cruise control for freight trains when they take their certification tests will help ensure they can operate a train safely.</p><p>“Railroad certifications should represent proven ability, not simply possession of a certificate,” said Jared Cassity, who is SMART-TD’s top safety expert. “When lives are on the line, the FRA must know that an engineer can safely operate a train, not just supervise a computer doing it.”</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/5RABGF7BSSYAKBIWB6WSQT7AFM.jpg?auth=6c02eaf0d6be13489dfbaca780e00f74a0656210226ccde284879fd4e3fed0cb&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - The Union Pacific International Railroad Bridge is seen behind concertina wire, Sept. 22, 2023, in Eagle Pass, Texas. (AP Photo/Eric Gay, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Eric Gay</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/MSFZH7MGJIA5WIRUU5QGGCJDJQ.jpg?auth=a0a29b3db1ed203eda482ee0b83fc3e07d87957c5f30d82c112c2d64a6442cf3&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A Canada Pacific (CPKC) train stopped in a railyard near the CPKC offices located in Kansas City, Mo., Aug. 19, 2024. (AP Photo/Nick Ingram, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Nick Ingram</media:credit></media:content></item><item><title><![CDATA[US to make visa bond requirements permanent, affecting mostly African countries]]></title><link>https://www.local10.com/news/world/2026/07/31/us-to-make-visa-bond-requirements-permanent-affecting-mostly-african-countries/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/us-to-make-visa-bond-requirements-permanent-affecting-mostly-african-countries/</guid><dc:creator><![CDATA[By MATTHEW LEE, Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — The State Department is making permanent a pilot program under which citizens from 50 countries, mainly in Africa, are required to post bonds to apply for a U.S. visa, and it’s raising the cost as well, to as much as $20,000.]]></description><pubDate>Fri, 31 Jul 2026 18:44:07 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — The State Department is making permanent a pilot program under which citizens from 50 countries, mainly in Africa, are required to post bonds to apply for a U.S. visa, and it’s raising the cost as well, to as much as $20,000.</p><p>A draft notice published Friday in the Federal Register says a nearly year-long review “provided sufficient data” to suggest the bond program effectively enforces compliance with visa conditions, and would be made permanent.</p><p>The notice is to be formally released on Monday, the day the program becomes permanent, and additional countries may be added to the list, which can be found here. The pilot program set the maximum bond amount at $15,000, with lower amounts of $5,000 and $10,000 based on a consular officer’s discretion. The final regulation raises the maximum to $20,000 and removes the $5,000 low-end payment.</p><p>The program requires holders of passports from the affected countries to pay the bond to be interviewed for business and tourist visas — known as B1 and B2 visas — to travel to the United States. The bond is refunded if the visa application is denied or, if granted, if the person adheres to the visa terms.</p><p>The Trump administration rolled out the program last August to crack down on visa overstays and as part of its broader efforts to curtail illegal migration. The government estimates that arresting and deporting visitors who have overstayed their visa costs about $18,000 per person.</p><p>State Department officials have hailed the program as a great success. In 2024, nearly 45,500 visitors from the 50 countries in the program overstayed their visas, according to the notice. In the first 10 months of the pilot visa bond program, the number of overstays from those countries was fewer than 50, it said.</p><p>Critics have said it imposes an unnecessarily harsh burden on people from impoverished countries to visit family members or to pursue education or business opportunities in the U.S.</p><p>According to government projections and statistics from the first year of the program, the State Department initially expected that about 2,000 visa applicants would be required to post the bond. Instead, the department found that roughly 20,000 applicants were covered by the bond requirement.</p><p>Nearly half of those applicants chose not to pay the bond and there was an 83% decline in the number of business and tourist visas issued to citizens of countries on the list.</p><p>“The department expects that this final rule will contribute to the continued reduction of demand for B1/B2 visa applications from nationals of countries subject to the program,” the notice said.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/TGD2YT3RHHB4WPJLAKN7JBUFS4.jpg?auth=d56988effc53b82024a21eaa29d4cd5dddc2e98a1d6f7adedb3499075bac0b16&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - The State Department seal is seen on the briefing room lectern at the State Department in Washington, Jan. 31, 2022. (Mandel Ngan, Pool via AP, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Mandel Ngan</media:credit></media:content></item><item><title><![CDATA[Jags 2-way player Travis Hunter returns stronger and fast after knee injury cuts short rookie year]]></title><link>https://www.local10.com/sports/2026/07/31/jags-2-way-player-travis-hunter-returns-stronger-and-fast-after-knee-injury-cuts-short-rookie-year/</link><guid isPermaLink="true">https://www.local10.com/sports/2026/07/31/jags-2-way-player-travis-hunter-returns-stronger-and-fast-after-knee-injury-cuts-short-rookie-year/</guid><dc:creator><![CDATA[By DOUG FERGUSON, Associated Press]]></dc:creator><description><![CDATA[JACKSONVILLE, Fla. (AP) — As if two-way player Travis Hunter doesn't already have enough on his plate.]]></description><pubDate>Fri, 31 Jul 2026 18:20:25 +0000</pubDate><content:encoded><![CDATA[<p>JACKSONVILLE, Fla. (AP) — As if two-way player Travis Hunter doesn't already have enough on his plate.</p><p>The week before the Jacksonville Jaguars opened training camp, Hunter was photographed wearing a police vest posing with Sheriff T.K. Waters and members of the Jacksonville Fire Rescue Department. It had the look of a ride-along, though Hunter wasn't saying.</p><p>“I was just out there just having fun with Sheriff T.K.,” Hunter said Friday.</p><p>Hunter, the Heisman Trophy winner out of Colorado whom the Jaguars made the No. 2 pick in last year's draft, has enough to keep him occupied in training camp. Hunter is returning from injury, his rookie year ending two months into the season when he tore knee ligaments during noncontact drills.</p><p>In seven games, he played 324 snaps at receiver and 162 snaps at cornerback. The plan to use him on both sides of the ball has not changed, especially after the Jaguars shored up the core of their secondary by re-signing Montaric “Buster” Brown in March.</p><p>Hunter has been wearing a teal jersey for offense in three days of camp, with a white bib and his No. 12 he can slip on when he plays in the secondary.</p><p>“How do we balance his reps here, knowing that we’re trying to ease him in, but he also at some point needs to get double the amount that a normal player gets,” coach Liam Coen said. “And so what does that ramp-up look like? We have it all kind of mapped out ... on every single practice schedule, his reps are highlighted in here — where he’s in, what plays he’s in, where he’s at on the field. We’ve been extremely intentional about it.”</p><p>Hunter, who had surgery Nov. 11 to repair the lateral collateral ligament in his right knee, was limited during offseason workouts. But he used that time to build up some 10 pounds of muscle in his upper body and managed to get even faster.</p><p>He was clocked running at 22.6 mph at the team's facility last week.</p><p>“I was a small guy coming in. Everybody was like, ’Gain weight, gain weight,’” Hunter said. “I was scared at first. I'm like: ‘Dang, I’ve never played at this weight. I'm going to feel heavy, not going to be able to do what I do.' Training and being able to put those months in — not just on the grass but in the weight room — just putting in extra work, it made me feel lighter on my feet when I finally touched the grass.”</p><p>He looked like he was flying on grass when he ran the 22.6 mph — no pads, no one around him, not in a game — but it was another indication all was well.</p><p>“I'm trying to hit 23 now,” Hunter said. “That's the next goal.”</p><p>The Jaguars could use the production considering how much they gave up in a trade to get the second pick in 2025 — their No. 5 pick last year and No. 1 pick this year. They won nine of their last 10 games last year after Hunter was injured to win the AFC South.</p><p>For his part, Hunter feels like last year never happened in terms of his health.</p><p>“I put nine months in, so it doesn’t feel like I’m coming off an injury,” he said. "Just get the rust off right now. I’ve been gone for nine months, not able to be out here with my teammates for nine months, so finally being able to hit the grass, knock the rust off and just continue to click with the quarterbacks and click with the defense.”</p><p>Defensive coordinator Anthony Campanile said Hunter is getting back into the flow, and the added muscle in his upper body is noticeable.</p><p>“You never want to see anybody get injured, but I think he really put his best foot forward in the weight room as he was recovering from a lower-body injury,” Campanile said. “He just looks really physical in the team work and in the individual period. So he's done a good job.”</p><p>And now it's all football, though the Engine 36 B-Shift crew said in its Facebook post for Hunter to let them know when he was ready for a ride-along.</p><p>“We promise, it's just as hot as training camp,” the post said.</p><p>___</p><p>AP NFL: https://apnews.com/hub/nfl</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/QTJCYTXOWSWXVHZFQPBHJSNRHU.jpg?auth=154b9b6132031636592acae358bbe54e628fbf0436aed874b1c72a12d9d0472e&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Jacksonville Jaguars wide receiver and cornerback Travis Hunter (12) particpates in drills during practice at the team's NFL football training camp, Thursday, July 30, 2026, in Jacksonville, Fla. (AP Photo/Kelly Jordan)]]></media:description><media:credit role="author" scheme="urn:ebu">Kelly Jordan</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/KMJ7UL3ZIPCQEFBGNWYC3GMK2I.jpg?auth=38f2dcf674de96f67c263e8a31c4e609332c1ed557f602dd2979509aab99598f&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Jacksonville Jaguars wide receiver and cornerback Travis Hunter (12) warms-up during practice at the team's NFL football training camp, Thursday, July 30, 2026, in Jacksonville, Fla. (AP Photo/Kelly Jordan)]]></media:description><media:credit role="author" scheme="urn:ebu">Kelly Jordan</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/N6IRBVK4UQ7VUYLIGQIM6XT2WU.jpg?auth=7b39b075335bda86f36b3fbe6d79ef7ccfc657b7f8124bb9e9d6e3b249b6d47c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Jacksonville Jaguars wide receiver and cornerback Travis Hunter (12) during practice at the team's NFL football training camp, Wednesday, July 29, 2026, in Jacksonville, Fla. (AP Photo/Kelly Jordan)]]></media:description><media:credit role="author" scheme="urn:ebu">Kelly Jordan</media:credit></media:content></item><item><title><![CDATA[$5,000 reward offered for information in fatal Hallandale Beach shooting investigation]]></title><link>https://www.local10.com/news/local/2026/07/31/5000-reward-offered-for-information-in-fatal-hallandale-beach-shooting-investigation/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/5000-reward-offered-for-information-in-fatal-hallandale-beach-shooting-investigation/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[Broward Crime Stoppers is offering a reward of up to $5,000 for information leading to the arrest of the suspect or suspects responsible for the fatal shooting of Elijah Salomon.]]></description><pubDate>Fri, 31 Jul 2026 17:38:47 +0000</pubDate><content:encoded><![CDATA[<p>Broward Crime Stoppers is offering a reward of up to $5,000 for information leading to the arrest of the suspect or suspects responsible for the fatal shooting of Elijah Salomon.</p><p><a href="https://www.local10.com/espanol/2026/07/31/ofrecen-recompensa-de-5000-usd-por-informacion-sobre-investigacion-de-balacera-mortal-en-hallandale-beach/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/ofrecen-recompensa-de-5000-usd-por-informacion-sobre-investigacion-de-balacera-mortal-en-hallandale-beach/">Leer en español</a></p><p>Hallandale Beach police said officers responded to a 911 call about a shooting at approximately <a href="https://www.local10.com/news/local/2026/07/28/neighbors-frightened-after-hearing-gunshots-in-hallandale-beach/" target="_self" rel="" title="https://www.local10.com/news/local/2026/07/28/neighbors-frightened-after-hearing-gunshots-in-hallandale-beach/">10:39 p.m. Monday near the 1000 block of Pembroke Road.</a></p><p>Officers arrived and found the victim suffering from multiple gunshot wounds inside a vehicle, police said. </p><p>Police say they provided emergency aid until Broward Sheriff’s Office Fire Rescue personnel arrived. Salomon later died from his injuries.</p><p>Detectives said their preliminary investigation indicates the shooting occurred at 642 NW Fourth Court. </p><p>According to investigators, the vehicle travelled to Pembroke Road, where the call for help was made. </p><p>The motive for the shooting remains under investigation, with no arrests made, police said. </p><p>Detectives added that they have no information indicating there is an ongoing threat to the public.</p><p>According to the department, this case remains active, and detectives continue to work through evidence and interviews to identify those responsible. </p><p>Anyone with information is urged to contact the Hallandale Beach Police Department at 954-457-1400 or Broward Crime Stoppers at 954-493-8477. Tips to Crime Stoppers can remain anonymous and tipsters may be eligible for a reward of up to $5,000 if the tip leads to an arrest and conviction. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/IENOJ6TP6ZCFNLBZYGVWAWS6XE.jpg?auth=2cf2dd5e078e3121111fda6e26080347b1f0a2dfd2df0e7d2b7fcfc840278848&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Ofrecen recompensa de $5,000 USD por información sobre investigación de balacera mortal en Hallandale Beach]]></title><link>https://www.local10.com/espanol/2026/07/31/ofrecen-recompensa-de-5000-usd-por-informacion-sobre-investigacion-de-balacera-mortal-en-hallandale-beach/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/ofrecen-recompensa-de-5000-usd-por-informacion-sobre-investigacion-de-balacera-mortal-en-hallandale-beach/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[Broward Crime Stoppers ofrece una recompensa de hasta $5,000 USD por información que conduzca al arresto del sospechoso o los sospechosos responsables de la balacera mortal en la que murió Elijah Salomon.]]></description><pubDate>Fri, 31 Jul 2026 18:07:32 +0000</pubDate><content:encoded><![CDATA[<p>Broward Crime Stoppers ofrece una recompensa de hasta $5,000 USD por información que conduzca al arresto del sospechoso o los sospechosos responsables de la balacera mortal en la que murió Elijah Salomon.</p><p>La Policía de Hallandale Beach informó que los agentes respondieron a una llamada al 911 por una <a href="https://www.local10.com/espanol/2026/07/28/fuerte-presencia-policial-en-estacionamiento-de-hallandale-beach-tras-balacera-contra-vehiculo/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/28/fuerte-presencia-policial-en-estacionamiento-de-hallandale-beach-tras-balacera-contra-vehiculo/">balacera aproximadamente a las 10:39 p.m. del lunes cerca de la cuadra 1000 de Pembroke Road</a>.</p><p>Los agentes llegaron al lugar y encontraron a la víctima dentro de un vehículo con múltiples heridas de bala, informó la Policía.</p><p>La Policía indicó que los agentes brindaron asistencia de emergencia hasta la llegada del personal de Broward Sheriff’s Office Fire Rescue. Posteriormente, Salomon murió a causa de sus heridas.</p><p>Los detectives informaron que la investigación preliminar indica que la balacera ocurrió en el 642 de Northwest Fourth Court.</p><p>Según los investigadores, el vehículo se desplazó hasta Pembroke Road, donde se realizó la llamada de auxilio.</p><p>La Policía informó que el motivo de la balacera continúa bajo investigación y que no se han realizado arrestos.</p><p>Los detectives agregaron que no tienen información que indique una amenaza continua para el público.</p><p>Según el departamento, el caso permanece activo y los detectives continúan analizando las pruebas y realizando entrevistas para identificar a los responsables.</p><p>Cualquier persona con información debe comunicarse con el Departamento de Policía de Hallandale Beach al 954-457-1400 o con Broward Crime Stoppers al 954-493-8477. Las denuncias a Crime Stoppers pueden hacerse de forma anónima y quienes proporcionen información podrían ser elegibles para una recompensa de hasta $5,000 USD si esta conduce a un arresto y una condena.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/IENOJ6TP6ZCFNLBZYGVWAWS6XE.jpg?auth=2cf2dd5e078e3121111fda6e26080347b1f0a2dfd2df0e7d2b7fcfc840278848&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[MLB trade deadline: Tarik Skubal is the big prize, but buyers have other options, too]]></title><link>https://www.local10.com/sports/2026/07/31/mlb-trade-deadline-tarik-skubal-is-the-big-prize-but-buyers-have-other-options-too/</link><guid isPermaLink="true">https://www.local10.com/sports/2026/07/31/mlb-trade-deadline-tarik-skubal-is-the-big-prize-but-buyers-have-other-options-too/</guid><dc:creator><![CDATA[By DAVID BRANDT, Associated Press]]></dc:creator><description><![CDATA[A trio of powerful pitching arms — including two-time Cy Young Award winner Tarik Skubal, Freddy Peralta and Mason Miller — highlight the intriguing candidates who could switch teams as Major League Baseball's trade deadline approaches.]]></description><pubDate>Fri, 31 Jul 2026 17:57:29 +0000</pubDate><content:encoded><![CDATA[<p>A trio of powerful pitching arms — including two-time Cy Young Award winner Tarik Skubal, Freddy Peralta and Mason Miller — highlight the intriguing candidates who could switch teams as Major League Baseball's trade deadline approaches.</p><p>The deadline is Monday at 6 p.m. EDT.</p><p>Skubal — a 29-year-old left-hander who will be a free agent this offseason — is in the midst of another strong year for the Detroit Tigers after winning back-to-back Cy Youngs in 2024 and 2025. The left-hander missed about five weeks earlier in the season because of surgery to remove loose bodies in his elbow, but he has bounced back quickly.</p><p>He's been excellent over his last five starts, with a 2.03 ERA and 41 strikeouts in 31 innings.</p><p>One thing complicating Skubal's availability is the Tigers have played better of late and they're hanging around the American League wild-card race, just 4 1/2 games back for the final playoff spot going into Friday's games — albeit with five teams ahead of them. But if a juicy offer is presented, it'll be hard to say no.</p><p>Detroit's uncertain playoff fate is a common problem for teams as the deadline approaches.</p><p>There is a handful of obvious buyers at the deadline like the Yankees, Rays, Brewers, Braves and Dodgers. There is also a small group of obvious sellers like the Rockies, Giants, Angels, Mets, Athletics and Royals.</p><p>But that leaves nearly 20 other teams who are in the middle and could be buyers, sellers or a combination of both.</p><p>Here's a look at some of the top trade candidates as Monday's deadline approaches.</p><p>The starting pitchers</p><p>— Peralta, Mets: The right-hander has had a disappointing season, which is a common refrain for the Mets, but his strikeout numbers are still good. He was excellent for the Brewers over the previous three seasons. If he can fix his command issues, he could help a contender.</p><p>— Joe Ryan, Twins: Another powerful arm, the right-hander has been an All-Star in each of the past two seasons. It's unclear if the Twins are buyers or sellers in a crowded American League race — they added reliever A.J. Minter from the Mets on Friday, so continued buying seems more likely. If the Twins decide to move Ryan, though, it could bring back a solid return.</p><p>— Foster Griffin, Nationals: The veteran lefty has been outstanding in his return to MLB after spending three seasons in Japan with a 12-2 record and 2.76 ERA. The Nationals are still in the mix for a playoff spot in the National League, but they will likely still be willing to listen to offers.</p><p>— Reid Detmers, Angels: The left-hander has been a bright spot in a mostly dismal season for the Angels with 145 strikeouts in 125 innings. Los Angeles will want a sizable return for the 27-year-old, who is still under team control for the next two seasons.</p><p>— Clay Holmes, Mets: The 33-year-old made a successful transition from reliever to starter in 2025 and was having another solid season before he fractured his right fibula on a comeback liner in May. The right-hander is in the midst of a minor-league rehab assignment and nearing his return.</p><p>— Robbie Ray, Giants: The two-time All-Star and 2021 Cy Young winner doesn't have the wipeout, strikeout stuff that he possessed early in his career, but he's been very good for San Francisco this season with a 10-6 record and 3.08 ERA.</p><p>The relief pitchers</p><p>— Miller, Padres: The game's most dominant closer, Miller has a jaw-dropping 85 strikeouts over 45 2/3 innings, 28 saves and an 0.79 ERA. Relievers usually don't command huge returns during trade deadline deals, but Miller is an exception, particularly because the 6-foot-5 righty is still under team control for three more years.</p><p>— Adrián Morejón, Padres: The left-handed Cuban has been a key part of the Padres' bullpen for the past three seasons. He's a free agent after the season which means he could be on the move.</p><p>— Luke Weaver, Mets: The veteran righty has found his niche after making the full-time move to the bullpen in 2024. He's not necessarily a closer, but he does have some experience in the role. He was very good for the Yankees in the playoffs during their run to the World Series in 2024.</p><p>— Jeff Hoffman, Blue Jays: The right-hander lost his job as the team's closer earlier this season, but his strikeout numbers are still excellent with 72 punchouts over 46 innings.</p><p>Position players</p><p>— Luis Arraez, Giants, 2B: The three-time batting champion and four-time All-Star is in the midst of one of his best seasons and has flashed improved defense at second base. He is an elite contact hitter who rarely strikes out and is a free agent after the season.</p><p>— Ryan Jeffers, Twins, C: Jeffers recently returned from the injured list and has a career-high .928 OPS this season. His ability to provide pop from the right side will make him a popular trade target, though the Twins might not be willing to make a deal since they're still in the playoff hunt.</p><p>— Daulton Varsho, Blue Jays, OF: The 30-year-old slugger is one of the game's better athletes and won a Gold Glove in 2024. He's an upcoming free agent, but he has playoff experience and can still provide great defense with some left-handed power.</p><p>— CJ Abrams, Nationals, SS: Washington will want a big return for the All-Star shortstop, who is in the midst of his best year and is under team control for the next two seasons. But if a contender is willing to offer a big package of prospects, the ascending Nationals will likely listen.</p><p>— Zach Neto, Angels, SS: Neto has been one of the Angels' best players over the last three seasons. He's a solid defender and provides a good amount of right-handed power, though his strikeout numbers have been high this season.</p><p>— Luis García Jr., Nationals, 1B: The left-handed slugger has quietly put together his best season with 23 homers and 76 RBIs. He doesn't walk much, but has one more year of team control and is still just 26 years old.</p><p>___</p><p>AP MLB: https://apnews.com/hub/mlb</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/GP4G5ZTERT4K7AY34X5BBUKAAY.jpg?auth=468a4f9a66a61b9a9bf52347fac9e85c11093e0e8631352c284b76715031c682&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Detroit Tigers pitcher Tarik Skubal throws during the seventh inning of a baseball game against the Baltimore Orioles Wednesday, July 29, 2026, in Detroit. (AP Photo/Paul Sancya)]]></media:description><media:credit role="author" scheme="urn:ebu">Paul Sancya</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/U3RHKGNWH4QOLIWPHXZ5Y7AJVE.jpg?auth=3225bc216cdebb508cc68933b6d9eccc683ea3c4946ddb0ed53c95527b2a7153&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[New York Mets' Freddy Peralta pitches during the second inning of a baseball game against the Milwaukee Brewers, Monday, July 20, 2026, in Milwaukee. (AP Photo/Aaron Gash)]]></media:description><media:credit role="author" scheme="urn:ebu">Aaron Gash</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/4AVBZRULH7VPXISHPQ27ZFCC2U.jpg?auth=f2e1147296499b0feedc21428f9795e37e108623584373dfd6e72ba4c621326a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[San Diego Padres pitcher Mason Miller celebrates after the third out of the ninth inning of a baseball game against the Colorado Rockies Tuesday, July 28, 2026, in San Diego. (AP Photo/Gregory Bull)]]></media:description><media:credit role="author" scheme="urn:ebu">Gregory Bull</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/47CJZ3VBF52PRL7V6XMT5NWFJQ.jpg?auth=1719c40a0ff916821c8127233dc33d5adcd35a0e355e687cf53170bed19110a9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Washington Nationals' Dylan Crews, left. celebrates his solo home run with CJ Abrams, right, during the fourth inning of a baseball game against the Toronto Blue Jays, Tuesday, July 28, 2026, in Washington. (AP Photo/Nick Wass)]]></media:description><media:credit role="author" scheme="urn:ebu">Nick Wass</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/GIPI3KGHBDOVRNERTSUHQVJFXU.jpg?auth=ca6077807f28a13129ad60e43becf32ff135ab539eca21d16037a6c695b5ba81&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Toronto Blue Jays closing pitcher Louis Varland (77) receives a hug from Daulton Varsho after the Blue Jays defeated the Washington Nationals in a baseball game, Wednesday, July 29, 2026, in Washington. (AP Photo/John McDonnell)]]></media:description><media:credit role="author" scheme="urn:ebu">John McDonnell</media:credit></media:content></item><item><title><![CDATA[Regulators propose overhaul to law governing how banks lend to low-and-middle income communities]]></title><link>https://www.local10.com/business/2026/07/31/regulators-propose-overhaul-to-law-governing-how-banks-lend-to-low-and-middle-income-communities/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/regulators-propose-overhaul-to-law-governing-how-banks-lend-to-low-and-middle-income-communities/</guid><dc:creator><![CDATA[By KEN SWEET, Associated Press]]></dc:creator><description><![CDATA[NEW YORK (AP) — The Trump Administration has announced an overhaul to the rules governing a critical piece of Civil Rights-era legislation, most notably a reduction in the number of banks that will need to fully comply with the law.]]></description><pubDate>Fri, 31 Jul 2026 17:54:55 +0000</pubDate><content:encoded><![CDATA[<p>NEW YORK (AP) — The Trump Administration has announced an overhaul to the rules governing a critical piece of Civil Rights-era legislation, most notably a reduction in the number of banks that will need to fully comply with the law.</p><p>The Office of the Comptroller of the Currency and the Federal Deposit Insurance Corporation on Friday jointly announced the proposed changes to the Community Reinvestment Act, a law that requires regulators to document how well banks do in lending to low-to-middle income neighborhoods. It would be the first major revision of the law’s rules and regulations in nearly three decades.</p><p>Under the proposed revisions, bank examiners would put more weight on the lending banks do in certain communities and geographies, and less on how many branches they open or how much in deposits they take in from a local community.</p><p>The number of banks that would need to comply with the law would be reduced as well. The definition of a small bank will increase from banks with under $412 million in assets to banks with $1 billion in assets. Banks between $1 billion and $10 billion in assets will now be classified as an intermediate bank.</p><p>This would reduce the number of banks who need to comply with parts of the CRA by 800 banks. Only 86 banks, or roughly 3% of all institutions, would be subject to the full extent of CRA under the new regulations.</p><p>Another change that is likely to be fought over relates to how banks give money to community development groups. Under the CRA, banks can donate money to local organizations that do poverty or low-income housing work in their communities to show they are providing resources to a local community. The new regulations could narrow the groups and programs that banks could donate to in order to meet those obligations.</p><p>In a summary of the changes, the bank regulators said these changes would ensure community development grants “are not diverted to activist causes or consumed by excessive operating costs.” Banks would also need to collect more detailed information on who gets their community grants, including addresses, which would give more transparency to who is receiving grants from banks.</p><p>That change could negatively impact groups like the National Community Reinvestment Coalition, an umbrella group for community development groups that often receive money from banks under the CRA. The new rules discourage banks making grants to national organizations and instead focus their grants on local groups.</p><p>Jesse Van Tol, the CEO of NCRC, said that it was “unfortunate” that the bank regulators were politicizing grant making under the CRA.</p><p>“CRA was created to work for low-to-middle income people. A lot of these changes are going to discourage banks from making grants, particularly in rural areas, where I expect there will be significant drops in activity,” Van Tol said.</p><p>The proposal announced Friday by the OCC and FDIC did not include the other major bank regulator, the Federal Reserve. Banking groups had been pushing for a joint proposal from all three regulators, to make sure all three were aligned on the same requirements under the CRA.</p><p>The CRA was passed in 1977 to combat redlining, a practice whereby banks would discriminate against the poor and minorities by choosing not to lend or open branches in minority-majority neighborhoods or in poor neighborhoods.</p><p>The law is complex, requiring banks to document how they do business in the cities and areas they operate in. Banks must sit for regular examinations to see whether they are complying with the law. A bad CRA examination could restrict a bank’s ability to open new branches or merge with another bank or have other consequences. The data collected through CRA is also used by the Department of Justice in redlining cases.</p><p>The last major revision of the CRA’s regulations happened in 1995, and there have been repeated attempts by administrations of both parties to update the rules to reflect how banking and financial services have changed in the past 30 years. But those revisions have repeatedly failed, either due to opposition from other regulators, the banks, or community groups, or have been blocked by courts. The Biden administration tried its own revisions of the CRA rules but those changes were blocked by courts in Texas.</p><p>The proposed rules will now go out for a 60-day comment period where they will be finalized after banks, community groups and other parties have a chance to weigh in on the changes.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/KRO4VMDNQHBVIHJ6ZNFYUDHDKM.jpg?auth=c42bbd2df8ca3d6c4ad87cc6dbf74280d01c9f65fc4bb73ec88bd7a6fc0d8ce2&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - The official seal of the Office of the Comptroller of the Currency is seen on an office building in Washington, Feb. 13, 2026. (AP Photo/Cliff Owen, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Cliff Owen</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/3VOUFIOLNQIP7ABPG7PS7RT6FU.jpg?auth=eda7f5c35622ff2852f7a832e2fbd78b2a7118ae077fdbacb5011b4ddb2d0bfd&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - The Federal Deposit Insurance Corporation seal is shown outside its headquarters, March 14, 2023. (AP Photo/Manuel Balce Ceneta, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Manuel Balce Ceneta</media:credit></media:content></item><item><title><![CDATA[A blanket of seaweed smothers coastlines from the Caribbean to Mexico]]></title><link>https://www.local10.com/health/2026/07/31/caribbean-and-gulf-of-mexico-beaches-swathed-in-record-levels-of-seaweed/</link><guid isPermaLink="true">https://www.local10.com/health/2026/07/31/caribbean-and-gulf-of-mexico-beaches-swathed-in-record-levels-of-seaweed/</guid><dc:creator><![CDATA[By FABIOLA SÁNCHEZ and DÁNICA COTO, Associated Press]]></dc:creator><description><![CDATA[PUERTO MORELOS, Mexico (AP) — Swaths of seaweed are blanketing the beaches and coastlines of the Caribbean and Gulf of Mexico, suffocating shorelines and snuffing out marine life while spooking visitors in areas that depend heavily on tourism.]]></description><pubDate>Fri, 31 Jul 2026 18:23:32 +0000</pubDate><content:encoded><![CDATA[<p>PUERTO MORELOS, Mexico (AP) — Swaths of seaweed are blanketing the beaches and coastlines of the Caribbean and Gulf of Mexico, suffocating shorelines and snuffing out marine life while spooking visitors in areas that depend heavily on tourism.</p><p>Some 27 million metric tons of self-sustaining sargassum have been recorded in the Atlantic, Caribbean and Gulf of Mexico in July, according to a report released Friday by the University of South Florida’s Optical Oceanography Lab.</p><p>The prickly seaweed covers miles of coastline, releasing a foul smell as it rots onshore.</p><p>This year marks the first time that scientists have observed sargassum growing in large quantities in areas including the Caribbean and Gulf of Mexico, instead of being swept into those areas by ocean currents.</p><p>The algae usually reproduces asexually as it travels from Western Africa, said Brian Barnes, a marine scientist and research assistant professor at the University of South Florida. “None of this is normal,” he said. “Every year is a little bit of a new story.”</p><p>The Great Atlantic Sargassum Belt has been growing since 2011, dumping an increasing amount of seaweed along coastlines in the Caribbean and Gulf of Mexico. Experts have said that agricultural runoff, warming waters and changes in wind, current and rain could be factors.</p><p>The sargassum that began reproducing in the region earlier than usual this year stems from a record 40 million metric tons reported last year.</p><p>“The 2025 bloom was so big it never really left,” Barnes said. “It was enough to start a new bloom locally.”</p><p>Seaweed threatens tourism</p><p>Sargassum levels in the Caribbean reached record levels in June, while the amount present in the Gulf hit 5 million metric tons in June, nearly double last year’s record, according to the University of South Florida.</p><p>Scientists expect 2026 to be the second largest amount of sargassum recorded in the Atlantic, Caribbean and Gulf of Mexico, noting that June alone saw 34 million metric tons, which was only 10% lower than the year-earlier period.</p><p>Mexico said Thursday it plans to invest $115 million to tackle the blooming algae, which poses an environmental and economic threat. The government estimates that up to 9,000 tons reach its Caribbean coastline on the worst days. Given current resources, Mexico says it can only gather 1,200 tons of sargassum a day.</p><p>On a recent evening, Alan Vázquez closed the restaurant where he works as a waiter in the popular tourist town of Playa del Carmen because there were no customers. He had resisted closing for several hours, hoping he would receive a tip and salvage the day, but vast quantities of decomposing sargassum are turning the famed turquoise waters black, driving away tourists.</p><p>“It’s sad that such a beautiful and lively place...has ended up like this,” Vázquez said.</p><p>He fears suffering the same fate as four of his colleagues who were laid off two months ago due to a drop in tourism that has devastated hotels and businesses in the state of Quintana Roo, one of Mexico’s tourism gems, where sales fell 30% in the first half of the year, according to estimates from local businesses.</p><p>In Puerto Rico, sargassum blankets the waters around popular tourist areas, including La Parguera.</p><p>“I don’t recall ever having that much concentration in so many places at once,” said Waldemar Quiles, the U.S. territory’s natural resources secretary.</p><p>Much of the record sargassum reported last year ended up along Puerto Rico’s coastline, prompting the governor to declare a state of emergency.</p><p>It surpassed the previous record set in 2022 with a peak of some 22 million metric tons.</p><p>“It’s not a one-off event anymore,” said Emmanuel Maldonado González, an environmental sociologist at East Carolina University. “It’s becoming a growing hazard.”</p><p>Experts warn proliferation will worsen</p><p>Patches of sargassum in open waters provide a healthy breeding ground for wildlife, including turtles, fish and seabirds, and can be “a bit of an oasis of life in the middle of the ocean,” Barnes said.</p><p>But once it’s closer to shore, it reduces oxygen in the water, smothers mangrove roots and blocks sunlight from reaching coral and sea grass.</p><p>Once it washes ashore it can prevent newly hatched sea turtles from reaching the ocean, while the heavy machinery used to remove it from beaches risk destroying fragile turtle nests, scientists say.</p><p>“The coastlines are not built for this,” Barnes said.</p><p>In the U.S. Virgin Islands, people are walking up to 25 feet (seven meters) on mats of seaweed before even reaching the water, according to Amy Dempsey, an environmental consultant.</p><p>“This is by far the worst I’ve seen it in the last five years,” she said. “We are getting slammed in the Virgin Islands.”</p><p>The smell of rotten eggs permeates communities where large piles of decaying sargassum emit ammonia and hydrogen sulfide.</p><p>“The effects of these gases on people can be severe,” warns the U.S. Environmental Protection Agency, noting it can cause nausea, headaches and lung irritation.</p><p>Used in composting and bioenergy production</p><p>Officials on the French Caribbean island of Martinique recently opened a shelter to temporarily house those affected by the toxic gases after residents protested.</p><p>So far this year, crews in Martinique have collected more than 11,500 tons of sargassum — including 638 tons in four days alone this month — according to government data. Sea barriers catch some of the seaweed, while crews on shore collect the remainder by hand, storing and processing it for composting and bioenergy production.</p><p>Researchers at the University of South Florida and the U.S. National Oceanic and Atmospheric Administration used artificial intelligence and found that from 2003 to 2022, macroalgae blooms increased by more than 13% per year in the tropical Atlantic and Western Pacific.</p><p>Overall, the blooms reached 16.9 million square miles (43.8 million square kilometers), according to a study published earlier this year.</p><p>___</p><p>Associated Press reporter María Verza in Mexico City contributed.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/5ZFA4BGNSHFGRTS7DZNN2QD7LA.jpg?auth=ccb70e9764e675aef6021204ebe26a00b37e9c56548678006a01cd4667a5a6e4&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Sargassum gathers in the water off the coast of Tulum, Mexico, Thursday, July 30, 2026. (AP Photo/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/ZJ27GT7BK2KCP4NXCO7MMBWWOY.jpg?auth=4e58501e039a419935a6000b6f2b86daec79b77ea180f1be8bc317770532e3ab&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Members of Mexican Navy remove sargassum along the shore of Puerto Morelos, Mexico, Thursday, July 30, 2026. (AP Photo/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/62P6SKJ2J3O3LYC2RKAGVRIO3E.jpg?auth=5ef4403018635e843c027bb74fb7559f2a7018282c057e5bbf219bcb70c7a3a2&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Sargassum gathers in the water off the coast of Tulum, Mexico, Thursday, July 30, 2026. (AP Photo/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/4UQTECDUFA2IOX6ZZWHYZPXMOM.jpg?auth=236160fdb76f603ead0491edc703c40fae36e65431a1f50ca4fb022c93374a1b&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Promotional boards are displayed near to a beach covered with sargassum in Tulum, Mexico, Thursday, July 30, 2026. (AP Photo/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/H5CDT7BQJAVOE5OUGN623YRE5A.jpg?auth=b580dba1e4f66e9847190c0ffc879ba546a4646ade84e808b25d201392ab9cd7&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Sargassum covers the coast of Tulum, Mexico, Thursday, July 30, 2026. (AP Photo/Fernando Llano)]]></media:description><media:credit role="author" scheme="urn:ebu">Fernando Llano</media:credit></media:content></item><item><title><![CDATA[Pair accused of stealing more than $27K worth of luggage at MIA]]></title><link>https://www.local10.com/news/local/2026/07/31/pair-accused-of-stealing-more-than-27k-worth-of-luggage-at-mia/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/pair-accused-of-stealing-more-than-27k-worth-of-luggage-at-mia/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Two men are accused of stealing more than $27,000 worth of luggage from baggage carousels at Miami International Airport, according to an arrest report from the Miami-Dade Sheriff’s Office.]]></description><pubDate>Fri, 31 Jul 2026 17:12:22 +0000</pubDate><content:encoded><![CDATA[<p>Two men were arrested Thursday after they allegedly stole more than $27,000 worth of luggage from baggage carousels at Miami International Airport earlier this year, according to an arrest report from the Miami-Dade Sheriff’s Office.</p><p><a href="https://www.local10.com/espanol/2026/07/31/acusan-a-dos-personas-de-robar-equipaje-valorado-en-mas-de-27000-usd-en-el-aeropuerto-internacional-de-miami/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/acusan-a-dos-personas-de-robar-equipaje-valorado-en-mas-de-27000-usd-en-el-aeropuerto-internacional-de-miami/">Leer en español</a></p><p>Deputies identified the suspects as David Williams, 44, of Miami, and Alexander Oscar, 46.</p><p>According to the report, surveillance video captured Williams and Oscar entering MIA through the curbside arrivals area on multiple occasions and walking to baggage carousels, where the pair removed luggage before leaving the terminal and entered “waiting vehicles.”</p><p>Investigators said the thefts happened in April and involved multiple cases at MIA. </p><p>They said in one case, Williams and Oscar allegedly stole luggage valued at $6,305 from Carousel 26. </p><p>In another case, the pair allegedly took luggage valued at approximately $4,000 from that same carousel, according to deputies. </p><p>The report also states Williams was captured on surveillance video in several other incidents, allegedly removing luggage from carousels 22, 23 and 25 at MIA. </p><p>Investigators said the total value of property stolen in all cases was listed at $27,205.</p><p>Jail records show Williams is facing six counts of third-degree grand theft, while Oscar is facing two counts of the same charge. </p><p>Records show Williams was previously arrested on one count of armed robbery with a deadly weapon in an unrelated case. </p><p>As of Friday afternoon, both men were being held at the Turner Guilford Knight Correctional Center, with Williams’ bond set at $20,000 and Oscar’s set at $7,500.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/QDJTFQRXVREFPCBGBWFHIEKNLY.jpg?auth=70d09758bf2956fd63a16d47e27a4f75acb9ff359b8f76cd656869a1644d5e2a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Acusan a dos personas de robar equipaje valorado en más de $27,000 USD en el Aeropuerto Internacional de Miami]]></title><link>https://www.local10.com/espanol/2026/07/31/acusan-a-dos-personas-de-robar-equipaje-valorado-en-mas-de-27000-usd-en-el-aeropuerto-internacional-de-miami/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/acusan-a-dos-personas-de-robar-equipaje-valorado-en-mas-de-27000-usd-en-el-aeropuerto-internacional-de-miami/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Dos hombres están acusados de robar equipaje valorado en más de $27,000 USD de las bandas de reclamo de equipaje del Aeropuerto Internacional de Miami, según un informe de arresto de la Oficina del Sheriff de Miami-Dade.]]></description><pubDate>Fri, 31 Jul 2026 17:36:10 +0000</pubDate><content:encoded><![CDATA[<p>Dos hombres fueron arrestados el jueves después de que presuntamente robaran equipaje valorado en más de $27,000 USD de las bandas de reclamo de equipaje del Aeropuerto Internacional de Miami a principios de este año, según un informe de arresto de la Oficina del Sheriff de Miami-Dade.</p><p>Los agentes identificaron a los sospechosos como David Williams, de 44 años, de Miami, y Alexander Oscar, de 46.</p><p>Según el informe, videos de vigilancia captaron a Williams y Oscar entrando al Aeropuerto Internacional de Miami por el área de llegadas en la acera en múltiples ocasiones y caminando hasta las bandas de reclamo de equipaje, donde ambos retiraban maletas antes de salir de la terminal y abordar “vehículos que los esperaban”.</p><p>Los investigadores informaron que los robos ocurrieron en abril e involucraron múltiples casos en el aeropuerto.</p><p>Indicaron que, en uno de los casos, Williams y Oscar presuntamente robaron equipaje valorado en $6,305 USD de la banda de reclamo 26.</p><p>En otro caso, ambos presuntamente sustrajeron equipaje valorado en aproximadamente $4,000 USD de esa misma banda, según los agentes.</p><p>El informe también señala que Williams fue captado en videos de vigilancia en varios incidentes adicionales, presuntamente retirando equipaje de las bandas de reclamo 22, 23 y 25 del aeropuerto.</p><p>Los investigadores informaron que el valor total de la propiedad robada en todos los casos asciende a $27,205 USD.</p><p>Los registros de la cárcel muestran que Williams enfrenta seis cargos de hurto mayor en tercer grado, mientras que Oscar enfrenta dos cargos por el mismo delito.</p><p>Los registros también muestran que Williams había sido arrestado anteriormente por un cargo de robo a mano armada con un arma mortal en un caso no relacionado.</p><p>Hasta la tarde del viernes, ambos permanecían detenidos en el Centro Correccional Turner Guilford Knight. La fianza de Williams fue fijada en $20,000 USD y la de Oscar en $7,500 USD.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/QDJTFQRXVREFPCBGBWFHIEKNLY.jpg?auth=70d09758bf2956fd63a16d47e27a4f75acb9ff359b8f76cd656869a1644d5e2a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[First US refueling aircraft arrive at air base in Bulgaria to support Middle East operations]]></title><link>https://www.local10.com/news/world/2026/07/31/first-us-refueling-aircraft-arrive-at-air-base-in-bulgaria-to-support-middle-east-operations/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/first-us-refueling-aircraft-arrive-at-air-base-in-bulgaria-to-support-middle-east-operations/</guid><dc:creator><![CDATA[By VESELIN TOSHKOV, Associated Press]]></dc:creator><description><![CDATA[SOFIA, Bulgaria (AP) — The first two U.S. military aircraft intended to provide support for operations in the Middle East arrived Friday at an air base in southeastern Bulgaria, drawing a complaint from Iran as Bulgarian residents have also been protesting the deployment.]]></description><pubDate>Fri, 31 Jul 2026 17:03:19 +0000</pubDate><content:encoded><![CDATA[<p>SOFIA, Bulgaria (AP) — The first two U.S. military aircraft intended to provide support for operations in the Middle East arrived Friday at an air base in southeastern Bulgaria, drawing a complaint from Iran as Bulgarian residents have also been protesting the deployment.</p><p>The Trump administration has faced pushback from some European allies over the use of air bases in support of its war with Iran.</p><p>But lawmakers in Bulgaria — a member of NATO and the European Union — voted earlier in July to allow the deployment of up to eight U.S. KC-135 refueling aircraft, as well as 250 personnel with personal weapons and ammunition and airfield equipment, at Bezmer Air Base.</p><p>Under a 2006 U.S.-Bulgaria defense agreement, the Bezmer facility, about 260 kilometers (160 miles) southeast of the capital, Sofia, is a joint-use facility. Any new use of the base requires parliamentary approval.</p><p>The deployment, requested by the U.S. Embassy in Bulgaria, is authorized until Oct. 1, 2026.</p><p>U.S. President Donald Trump thanked Bulgarian Prime Minister Rumen Radev in a Truth Social post for allowing the deployment “despite Iran’s threats.”</p><p>On Thursday, Bulgarian Foreign Minister Velislava Petrova assured her Iranian counterpart, Abbas Araghchi, that the deployment “in no way means a change in Bulgaria’s approach toward Iran." The two countries are important trade partners.</p><p>A Bulgarian Foreign Ministry statement quoted Petrova as saying “it was out of the question" that any direct military actions linked to the conflict in the Middle East would be carried out from Bulgarian territory.</p><p>The statement did not indicate what Araghchi said. But the Bulgarian state news agency, BTA, said Araghchi protested to Petrova over Bulgaria’s support for U.S. military operations against Iran during a telephone conversation initiated by the Bulgarian side. The report cited a report from Iran's state-run IRNA news agency.</p><p>Residents of the village of Bezmer and nearby settlements, including the regional capital Yambol, have staged peaceful protests in recent days against the deployment of the U.S. aircraft.</p><p>Government officials visited the region to address people’s fears, assuring them that the deployment is solely for logistical missions involving in-flight refueling outside Bulgarian airspace.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/IDWUVXY5GRDQQXZTTLPVJOBNGI.jpg?auth=fd8ae0601c4f41708b464726680255259efdad190e8aa01463a6d8bb05795a7b&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Prime Minister Rumen Radev speaks during debated as Bulgarian Parliament approved deployment of U.S. military aircraft on Bulgarian territory in a 136-13 vote, Wednesday, July 22, 2026. (Bulgarian News Agency via AP)]]></media:description><media:credit role="author" scheme="urn:ebu">Bulgarian News Agency</media:credit></media:content></item><item><title><![CDATA[Tax returns show California's Newsom earning between $1.7 million and $2 million annually]]></title><link>https://www.local10.com/business/2026/07/31/tax-returns-show-californias-newsom-earning-between-17-million-and-2-million-annually/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/tax-returns-show-californias-newsom-earning-between-17-million-and-2-million-annually/</guid><dc:creator><![CDATA[By SOPHIE AUSTIN, Associated Press]]></dc:creator><description><![CDATA[SACRAMENTO, Calif. (AP) — California Gov. Gavin Newsom and his wife made between $1.7 million and $2 million annually from 2022 through 2024, and they paid about half a million a year in federal and state taxes, according to tax returns released by his office.]]></description><pubDate>Fri, 31 Jul 2026 17:00:04 +0000</pubDate><content:encoded><![CDATA[<p>SACRAMENTO, Calif. (AP) — California Gov. Gavin Newsom and his wife made between $1.7 million and $2 million annually from 2022 through 2024, and they paid about half a million a year in federal and state taxes, according to tax returns released by his office.</p><p>The Democrat's office released more than 700 pages of tax filings spanning four years for reporters to review, offering a window into Newsom's finances as he prepares to leave office and considers a 2028 presidential bid. Newsom’s office did not release returns for 2025, because the couple filed for an extension and will complete those returns in October.</p><p>The returns show the Newsoms' income has remained relatively consistent since when he took office in 2019, when the couple reported $1.7 million in annual income. The exception was in 2021, when the family sold a house for nearly $6 million in Marin County, making roughly $800,000 from the sale. That year, they made $4.2 million and paid more than $1 million in federal and state taxes. They earned roughly $2 million in 2022.</p><p>The release of the couple's tax filings comes as their finances have been under scrutiny after the U.S. Justice Department launched investigations into the Newsoms, the governor announced last month. Newsom has blasted the probes as politically motivated.</p><p>It was the first time Newsom released returns since 2022.</p><p>Newsom made nearly $200,000 annually from serving as governor, but most of his income comes from winery and restaurant businesses that he put in a blind trust when he took office. The returns don’t name each individual business, making it impossible to know which ones gained and lost money.</p><p>The PlumpJack Group, a company he owns that includes a suite of wineries and restaurants, is now run by his sister and cousin.</p><p>His wife Jennifer Siebel Newsom, a film director, lost money most years from Girls Club Entertainment, a production company she founded. The business produced “Miss Representation,” a 2011 documentary about disparaging portrayals of women and girls in media, and two other films.</p><p>The Newsoms paid between roughly $14,000 and $44,000 a year for childcare for three of their four children, according to the tax filings.</p><p>They gave between $40,000 and $65,000 in gifts to charity each year, mostly through monetary donations. They also donated thousands of dollars worth of clothing, toys and other items to thrift stores and nonprofits, including in 2022, when they gave away Armani business wear they originally bought for $45,000 to a racial justice organization in Oakland.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/YHA6APAOPFXJY4Q6Z5423INFEM.jpg?auth=6e6e565513bff7f5f6230b5c802a55d74a40206be6706f03289335814e560755&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Gov. Gavin Newsom is introduced at the National Association of Latino Elected and Appointed Officials conference in Los Angeles, Tuesday, July 14, 2026. (AP Photo/Jae C. Hong)]]></media:description><media:credit role="author" scheme="urn:ebu">Jae C. Hong</media:credit></media:content></item><item><title><![CDATA[Arizona, California y Nevada tomarán menos agua del río Colorado, dice propuesta]]></title><link>https://www.local10.com/espanol/2026/07/31/arizona-california-y-nevada-tomaran-menos-agua-del-rio-colorado-dice-propuesta/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/arizona-california-y-nevada-tomaran-menos-agua-del-rio-colorado-dice-propuesta/</guid><dc:creator><![CDATA[The Associated Press, Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — Arizona, California y Nevada tomarían menos agua del río Colorado bajo una propuesta anunciada el viernes por el gobierno federal para evitar una crisis en la atribulada vía fluvial.]]></description><pubDate>Fri, 31 Jul 2026 16:59:50 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — Arizona, California y Nevada tomarían menos agua del río Colorado bajo una propuesta anunciada el viernes por el gobierno federal para evitar una crisis en la atribulada vía fluvial.</p><p>La propuesta de la Oficina de Reclamación exime por ahora a Colorado, Utah, Nuevo México y Wyoming de enfrentar recortes obligatorios. Pero se trata de una solución temporal, mientras los estados que dependen del río siguen enfrentados por un plan de gestión a largo plazo para el recurso menguante que abastece de energía a enormes extensiones del oeste norteamericano.</p><p>Según el plan, los estados de la Cuenca Baja podrían afrontar recortes colectivos de hasta 3 millones de acres-pie (130.000 millones de pies cúbicos) hasta 2036, “sujeto a la hidrología”, de acuerdo con un comunicado de prensa del Departamento del Interior. Eso equivale aproximadamente a suficiente agua para abastecer a más de 25 millones de personas al año.</p><p>El plan también permitiría liberaciones anuales de entre 5 millones y 12 millones de acres-pie desde el lago Powell, el segundo embalse más grande de la cuenca. En el marco federal de 10 años, las decisiones de gestión del agua se tomarán cada dos años.</p><p>“Este marco proporciona la flexibilidad para responder a condiciones hidrológicas cambiantes, al tiempo que preserva la oportunidad de que los estados de la cuenca sigan trabajando hacia soluciones duraderas por consenso”, declaró el secretario del Interior, Doug Burgum, en un comunicado.</p><p>Los recortes propuestos en los estados de la Cuenca Baja —California, Arizona y Nevada— serían los mayores hasta la fecha y podrían tener enormes impactos en ciudades y granjas: precios del agua más altos, mayor dependencia del agua subterránea, más tierras agrícolas fuera de producción y mandatos de conservación en lugares donde antes no existían.</p><p>El plan federal llega tras años de negociaciones estancadas y un invierno con sequía récord que llevó los embalses del río Colorado a mínimos históricos combinados. Se espera que los funcionarios federales finalicen el plan en los próximos días.</p><p>Más de 40 millones de personas en siete estados, varias naciones tribales y México, así como agricultores, fauna silvestre, industrias y la energía hidroeléctrica, dependen del menguante río Colorado, de 2.334 kilómetros (1.450 millas). Años de uso excesivo, combinados con el aumento de las temperaturas y la sequía, han reducido gravemente los caudales del Colorado en comparación con décadas pasadas.</p><p>__________________________________</p><p>The Associated Press recibe apoyo de la Walton Family Foundation para la cobertura de políticas ambientales y sobre agua. La AP es la única responsable de todo el contenido. Encuentra los estándares de la AP para trabajar con organizaciones filantrópicas, una lista de las fundaciones y las áreas de cobertura que financian en AP.org.</p><p>__________________________________</p><p>Esta historia fue traducida del inglés por un editor de AP con ayuda de una herramienta de inteligencia artificial generativa.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/FQBOGNIUAHY5XCBAUCH67OMU4U.jpg?auth=dbebecf4e9d27d89e77a39bedd4fd7466309659c6d968ba45f3414d3051bfe84&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[El Lago Powell cerca de Page, Nevada, el 15 de julio del 2026. (AP foto/John Locher)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content></item><item><title><![CDATA[USPS carrier accused of stealing winning Florida Lottery ticket from mail, claiming prize]]></title><link>https://www.local10.com/news/local/2026/07/31/usps-carrier-accused-of-stealing-winning-florida-lottery-ticket-from-mail-claiming-prize/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/usps-carrier-accused-of-stealing-winning-florida-lottery-ticket-from-mail-claiming-prize/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[A United States Postal Service employee is facing multiple felony charges after investigators say she stole a winning Florida Lottery ticket from the mail and fraudulently claimed a $2,600 prize.]]></description><pubDate>Fri, 31 Jul 2026 16:06:48 +0000</pubDate><content:encoded><![CDATA[<p>A United States Postal Service employee from Broward County is facing multiple felony charges after investigators say she stole a winning Florida Lottery ticket from the mail and fraudulently claimed a $2,600 prize.</p><p><a href="https://www.local10.com/espanol/2026/07/31/acusan-a-cartero-del-usps-de-robar-un-boleto-ganador-de-la-loteria-de-florida-enviado-por-correo-y-cobrar-el-premio/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/acusan-a-cartero-del-usps-de-robar-un-boleto-ganador-de-la-loteria-de-florida-enviado-por-correo-y-cobrar-el-premio/">Leer en español</a></p><p>According to the Florida Lottery, the case stemmed from a joint investigation by the agency’s Division of Security and the U.S. Postal Service Office of Inspector General.</p><p>Investigators said the investigation began after a Florida Lottery player reported that a winning Pick 4 ticket she mailed through the U.S. Postal Service never arrived at its intended destination.</p><p>According to an arrest report, the winning ticket was purchased at a Publix store in Tampa and was worth $2,600. Because the prize exceeded the $599 maximum payout that can be claimed at a lottery retailer, the terminal instructed that the ticket be returned to the player, investigators said.</p><p>They said the winner later mailed the ticket to a relative in Fort Lauderdale to help pay for another person’s funeral expenses, but the ticket was never successfully delivered.</p><p>A Florida Lottery inspector determined the ticket was instead redeemed June 19 at the Florida Lottery’s Miami District Office by 28-year-old Lakaysha Kenya Lockhart. Investigators later identified Lockhart as a USPS letter carrier assigned to the Oakland Park post office.</p><p>According to her arrest report, Lockhart, who has listed addresses in Lauderhill and Hollywood, “was not known to, approved or authorized by the ticket owner” to redeem the winning ticket.</p><p>Authorities said Florida Lottery special agents and USPS OIG investigators conducted a joint operation that led to Lockhart’s arrest on July 23. They said Lockhart admitted after her arrest to stealing the winning lottery ticket and redeeming it at the Miami District office.</p><p>“Our players deserve confidence that every Lottery prize is protected through strong security measures and diligent oversight,” Florida Lottery Secretary Reginald D. Dixon said in a statement. “I commend our Division of Security for their outstanding investigative work and thank our partners at the United States Postal Service Office of Inspector General and the Broward County Sheriff’s Office for their collaboration in protecting the integrity of Florida Lottery games and bringing this case to a successful resolution.”</p><p>Jail records show Lockhart is facing one count of grand theft, dealing in stolen property, filing a false claim for payment, and two counts of unlawful use of a two-way communications device and mail theft.</p><p>Florida Lottery officials said that because the offenses occurred in multiple judicial circuits, the cases will be prosecuted separately.</p><p>Lockhart was not listed as an inmate in Broward County jail records as of Friday morning.</p><p>A USPS spokesperson told Local 10 News that Lockhart joined the agency on April 21, 2025, and remains employed by USPS but is currently off duty.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/JTDR6VF32NF7DDE4MBUX34HATE.jpg?auth=6163a691d6eae851cf0eba80e5f2f28c07f2399a67cd126e9c1dfb587c4eefa5&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[UN, scientists warn that strong El Nino will add fuel to 'a planet already on fire']]></title><link>https://www.local10.com/tech/2026/07/31/un-scientists-warn-that-strong-el-nino-will-add-fuel-to-a-planet-already-on-fire/</link><guid isPermaLink="true">https://www.local10.com/tech/2026/07/31/un-scientists-warn-that-strong-el-nino-will-add-fuel-to-a-planet-already-on-fire/</guid><dc:creator><![CDATA[By SETH BORENSTEIN and EDITH M. LEDERER, Associated Press]]></dc:creator><description><![CDATA[UNITED NATIONS (AP) — A strengthening El Nino has already broken records for intensity at its early stages, and it likely will spark even more wild weather worldwide as it grows, “adding fuel to a planet already on fire,” United Nations officials warned Friday.]]></description><pubDate>Fri, 31 Jul 2026 16:59:49 +0000</pubDate><content:encoded><![CDATA[<p>UNITED NATIONS (AP) — A strengthening El Nino has already broken records for intensity at its early stages, and it likely will spark even more wild weather worldwide as it grows, “adding fuel to a planet already on fire,” United Nations officials warned Friday.</p><p>A key area of the Pacific Ocean used to measure the strength of El Nino this week reached its warmest and most intense level ever recorded for the 15th week since it formed, which is early in its lifetime, scientists at Columbia University reported.</p><p>El Nino — a natural warming of the Pacific near the equator that warps weather patterns worldwide — won't peak for several months and should last through spring 2027. The World Meteorological Organization, a U.N. agency, cautioned on Friday that it will likely trigger extreme heat, drought and rainfall well into next year.</p><p>“Two months ago, I warned that El Nino was arriving on our doorstep. Now it is inside the house — and turning up the heat,” United Nations Secretary-General Antonio Guterres told reporters Friday. “We have already endured a summer of extremes — record-shattering heat domes; apocalyptic wildfires raging in Spain, France and far beyond; thousands of lives lost in the scorching conditions.”</p><p>“But according to the latest science, this is only a warm-up act,” Guterres said, saying as the El Nino strengthens it will be “adding fuel to a planet already on fire.”</p><p>“We are in uncharted territory,” he said. “The climate crisis is in overdrive.”</p><p>Most computer forecast models are showing that this El Nino will likely break the all-time record for intensity when it peaks, sometime late fall or so, but that's not guaranteed, scientists said.</p><p>Chaotic extremes in rain, drought and unheard of heat coming</p><p>It's still early in the nearly yearlong life of a typical El Nino to see many direct effects yet, but they are coming, scientists said, agreeing with Guterres’ warnings. El Nino's effects will combine with the long-term global warming from the burning of coal, oil and gas.</p><p>“We’re seeing something that is the warmest July ever recorded for that specific region," used as an El Nino indicator, Columbia University climate scientist Jeffrey Shaman said. "A year from now, it’s going to be very hot in the Northern Hemisphere. And we’re going to possibly have a summer like we’ve never experienced globally."</p><p>But before then, the strong El Nino is likely to cause changes in rainfall patterns that will bring chaotic extremes to different parts of the world in fall and winter. There's a strong chance of drought and wildfires in Indonesia, India and other parts of Asia, south and east Australia, chunks of South America and southern regions in Africa, the WMO warned. Other areas, including much of the United States and fire-struck Southern Europe will get above average rain.</p><p>“This El Nino, developing against the backdrop of unprecedented ocean heat and rising temperatures, provides governments and communities with a window of opportunity to anticipate risks and act before impacts unfold,” said WMO Secretary-General Celeste Saulo.</p><p>El Nino amplifies human-caused warming</p><p>While El Nino and climate change are separate phenomena, their effects create a harmful combination — and people aren't taking the connection seriously enough, Guterres said.</p><p>“We hear much about record heat, drought and wildfires — but not enough about the real change that is driving these events: the accelerating climate crisis powered by fossil fuels," Guterres said.</p><p>Guterres said the world gets too absorbed by dramatic wars in Ukraine, the Middle East and Sudan to notice the dangers of climate change. On top of that, “there is a deliberate campaign, namely by the fossil fuel industry and some countries in order to pretend that that the problems that we are witnessing indeed do not exist.”</p><p>The U.N. must be more active and mobilize public opinion “to tell governments it’s time to recognize this threat as an existential threat to us all,” he told reporters.</p><p>Much of the heat from the burning of fossil fuels gets trapped in the oceans, but “during an El Nino the ocean in some sense gets to return some of the heated buildups of global warming back to the atmosphere,” Shaman said. Even though this El Nino will end, the released heat sticks around in the air, along with the higher temperatures, which will jump up again the next El Nino, he added.</p><p>Guterres called for more early warning systems and cooling systems to handle extreme heat. He said industry and governments need to make work safer, highlighting the garment industry, which has 90 million workers, most of them women. In 17 of the 23 biggest clothing making hubs, dangerously hot days jumped by more than 10% in the past 20 years, “yet most global brands set no heat standard for the factories that supply them.”</p><p>But mostly, Guterres said, “the world must stop fueling the crisis.... More coal, oil and gas will lead to a more combustible future."</p><p>___</p><p>Borenstein reported from Washington.</p><p>___</p><p>The Associated Press’ climate and environmental coverage receives financial support from multiple private foundations. AP is solely responsible for all content. Find AP’s standards for working with philanthropies, a list of supporters and funded coverage areas at AP.org.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/N32D5EJLZSYOXRQF5SAKQ2PLNQ.jpg?auth=567175023486a25ac680ce658c3a02eac2087b0bb17ae055cf97ae8b903c125c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A firefighter moves beehives away from flames while battling a wildfire in San Martin de Valdeiglesias, west of Madrid, Spain, July 26, 2026. (AP Photo/Manu Fernandez, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Manu Fernandez</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/NJQ7SZDTAMGTUWXTDZCXAKQ4MI.jpg?auth=b94d798041815f9796637729ca1e3ea2c54bf7bdf5a0067985fa110f0d9e1e7d&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Maria del Carmen, left, her daughter Maria del Carmen Lopez, right, and her partner Mario Gonzalez, center, collect their belongings after their bungalows were ravaged by a wildfire at a campsite in Valle de Iruelas, Spain, July 30, 2026. (AP Photo/Manu Fernandez, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Manu Fernandez</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/UZHPTPCGZMCBT43QTMCTQS4ZFE.jpg?auth=b2d8077c04f29ef0bb07883a7d33ec2c6e2a39a9eaa0599bef41fe5df4d79625&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Meghana Jalagam uses a fan to keep cool from the hot weather during a World Cup soccer match between the United States and Bosnia and Herzegovina at a watch party July 1, 2026, in Detroit. (AP Photo/Paul Sancya, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Paul Sancya</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/RXLE6RMR7LT7JWUJUR5QO57GKM.jpg?auth=91f63333b46cd86620506aad425bd66b5e8dc8f34e940c82fba4f779b419223a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A usually submerged patch of land rises from the surface of the Danube River due to low levels of the water following an extended period of drought in Corabia, Romania, July 29, 2026. (AP Photo/ Nicolae Dumitrache, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Nicolae Dumitrache</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/GTWC7KGNFIZVJHIRQRLL7XSQW4.jpg?auth=31cb4b9e4d93608eb4ca8324bbd2c379bbd7ecb4cc521d8dbd3b94fac4153d5d&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Tourists cool off at a public water fountain in Paris, June 26, 2026. (AP Photo/Christophe Ena, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Christophe Ena</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/4UI57PG7LK5ZK7GFEWEWJJF7FQ.jpg?auth=b3802d349b8cf33bf8797cbe701275828221f61f5fb37da86c124f4969e880f8&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - In this photo made with a long exposure, Bench Fire burns above the Pelton Reservoir in Jefferson County, Ore., July 25, 2026. (AP Photo/Noah Berger, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Noah Berger</media:credit></media:content></item><item><title><![CDATA[Cártel de Jalisco mató a popular alcalde de México porque lo provocaba. "El Mencho" estaba al tanto]]></title><link>https://www.local10.com/espanol/2026/07/31/cartel-de-jalisco-mato-a-popular-alcalde-de-mexico-porque-lo-provocaba-el-mencho-estaba-al-tanto/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/cartel-de-jalisco-mato-a-popular-alcalde-de-mexico-porque-lo-provocaba-el-mencho-estaba-al-tanto/</guid><dc:creator><![CDATA[The Associated Press, Associated Press]]></dc:creator><description><![CDATA[CIUDAD DE MÉXICO (AP) — El Cartel de Jalisco Nueva Generación presuntamente mató al popular alcalde de la localidad michoacana de Uruapan, Carlos Manzo, porque lo consideraban una “provocación” y hay indicios de que su máximo líder, Nemesio Oseguera Cervantes “El Mencho”, estaba al tanto de la operación, dijo el viernes el secretario de Seguridad mexicano Omar García Harfuch.]]></description><pubDate>Fri, 31 Jul 2026 17:04:25 +0000</pubDate><content:encoded><![CDATA[<p>CIUDAD DE MÉXICO (AP) — El Cartel de Jalisco Nueva Generación presuntamente mató al popular alcalde de la localidad michoacana de Uruapan, Carlos Manzo, porque lo consideraban una “provocación” y hay indicios de que su máximo líder, Nemesio Oseguera Cervantes “El Mencho”, estaba al tanto de la operación, dijo el viernes el secretario de Seguridad mexicano Omar García Harfuch.</p><p>Sin embargo, el funcionario —que habló durante la conferencia presidencial matutina— no quiso dar por cerrado el caso ocurrido en plena celebración del Día de Muertos en el occidente de México y que tuvo un fuerte impacto en todo el país.</p><p>García Harfuch dijo que todavía tiene que declarar el pricipal inculpado, el jefe de una célula muy violenta del cártel llamada “Los Rs” que fue detenido el jueves y quien presuntamente ordenó y financió el asesinato del alcalde.</p><p>El capturado es Ramón Ángel Álvarez Ayala, alias “R1”, y con su arresto suman 31 las personas detenidas por el homicidio de Manzo, entre ellas integrantes del círculo de seguridad que lo custodiaba el día en que fue asesinado.</p><p>Álvarez Ayala ya había sido detenido por el Ejército junto con dos hermanos en 2012 acusado de provocar incendios y narcobloqueos en Guadajalara, la capital de Jalisco. Las autoridades de entonces lo consideraban el número dos del Cartel de Jalisco Nueva Generación, detrás de "El Mencho".</p><p>Todos obtuvieron su libertad en 2022 y siguieron delinquiendo en el occidente de México financiándose con el tráfico de drogas y la extorsión a productores de limón, aguacate, ganaderos y a comerciantes y transportistas.</p><p>García Harfuch dijo ya se puso en contacto con agencias de Estados Unidos para saber las imputaciones que R1 tiene en ese país, donde el cártel es uno de los ocho designados por el gobierno estadounidense como organizacines terroristas. El secretario subrayó que aunque el intercambio de información con los estadounidenses es permanente, la acción fue una investigación del gabinete de Seguridad mexicano.</p><p>En la operación para su captura llevada a cabo en Atotonilco —Jalisco— por fuerzas federales, fue detenida otra persona y un sospechoso murió.</p><p>García Harfuch señaló que de acuerdo con la evidencia —comunicaciones y transferencias bancarias— R1 fue el principal autor intelectual de la muerte de Manzo, pero “los indicios que tenemos por dos testimonios y por intervenciones telefónicas autorizadas por un juez es de que ('El Mencho') tenía conocimiento del homicidio”. “El Mencho” fue muerto en un operativo en febrero.</p><p>“Ya se irá acreditando exactamente el móvil", agregó, pero algunos detenidos dijeron sentir “una provocación del presidente municipal (Manzo) hacia el grupo criminal” porque cuando las fuerzas federales hacían alguna detención, el alcalde estaba presente y hacía alusiones al cártel, explicó el secretario.</p><p>Manzo, exdiputado del oficialista Morena y luego uno de sus críticos, era visto como el único político que intentaba limpiar de narcos su territorio. Había depurado a la policía municipal, presumía las capturas en redes y visitaba a los vecinos en las zonas más complicadas. En octubre de 2025, un mes antes de su asesinato, había pedido ayuda al gobierno federal.</p><p>Su homicidio y el de un popular líder limonero, también en Michoacán, provocó que el gobierno de Claudia Sheinbaum incrementara sus efectivos en el estado, azotado por el crimen organizado desde hace décadas y donde tienen presencia numerosos grupos criminales.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/GYDPI66UA3Z6JBUK6CWSZALIRQ.jpg?auth=0e03745c21a45e7a1593fa646406513b687c091c0b0c66f660189db9bd6e205c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[ARCHIVO - Un miembro de la Guardia Nacional se encuentra junto a un retrato del alcalde asesinado Carlos Manzo Rodríguez en Uruapan, México, el 21 de noviembre de 2025. (AP Foto/Eduardo Verdugo, Archivo)]]></media:description><media:credit role="author" scheme="urn:ebu">Eduardo Verdugo</media:credit></media:content></item><item><title><![CDATA[Policía: Balean a hombre en el torso en Miami]]></title><link>https://www.local10.com/espanol/2026/07/31/policia-balean-a-hombre-en-el-torso-en-miami/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/policia-balean-a-hombre-en-el-torso-en-miami/</guid><dc:creator><![CDATA[Amanda Batchelor]]></dc:creator><description><![CDATA[Un hombre de aproximadamente 30 años resultó herido la noche del jueves en una balacera en Miami, confirmaron las autoridades a Local 10 News.]]></description><pubDate>Fri, 31 Jul 2026 15:45:58 +0000</pubDate><content:encoded><![CDATA[<p>Un hombre de aproximadamente 30 años resultó herido la noche del jueves en una balacera en Miami, confirmaron las autoridades a Local 10 News.</p><p>La balacera fue reportada en el área de Northwest Second Avenue y la calle 12.</p><p>Según la agente Kenia Fallat, de la Policía de Miami, la víctima recibió un disparo en el torso.</p><p>Fallat indicó que un equipo de Miami Fire Rescue respondió al lugar y trasladó a la víctima al Centro de Trauma Ryder del Hospital Jackson Memorial, donde permanece en estado crítico.</p><p>La investigación continúa en curso.</p><p>No se divulgaron de inmediato más detalles.</p><p>Cualquier persona con información sobre la balacera debe comunicarse con el Departamento de Policía de Miami o con Miami-Dade Crime Stoppers al 305-471-8477.</p>]]></content:encoded></item><item><title><![CDATA[Cutler Bay woman accused of running unlicensed cosmetic surgery recovery home]]></title><link>https://www.local10.com/news/local/2026/07/31/cutler-bay-woman-accused-of-running-unlicensed-cosmetic-surgery-recovery-home/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/cutler-bay-woman-accused-of-running-unlicensed-cosmetic-surgery-recovery-home/</guid><dc:creator><![CDATA[Chris Gothner]]></dc:creator><description><![CDATA[Miami-Dade Sheriff’s Office deputies arrested a woman they said operated an unlicensed cosmetic surgery recovery facility out of her home in Cutler Bay.]]></description><pubDate>Fri, 31 Jul 2026 16:00:34 +0000</pubDate><content:encoded><![CDATA[<p>Miami-Dade Sheriff’s Office deputies arrested a woman they said operated an unlicensed cosmetic surgery recovery facility out of her home in Cutler Bay.</p><p><a href="https://www.local10.com/espanol/2026/07/31/acusan-a-mujer-de-cutler-bay-de-operar-un-hogar-de-recuperacion-para-cirugias-esteticas-sin-licencia/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/acusan-a-mujer-de-cutler-bay-de-operar-un-hogar-de-recuperacion-para-cirugias-esteticas-sin-licencia/">Leer en español</a></p><p>Deputies said Sandra Elvira-Paez, 44, was also illegally giving patients massages and injections.</p><p>Arrest records show Elvira-Paez was taken into custody at the home, located in the 8900 block of Southwest 215th Lane, on Thursday afternoon. She faces four felony charges.</p><p>According to an MDSO arrest report, deputies found Elvira-Paez and three post-operative patients at the home. Deputies said there were also two employees, one of whom was her son.</p><p>Those patients told deputies that they were receiving care out of the home and paid up to $450 per night for services. They additionally told deputies, according to the report, that Elvira-Paez had given them “numerous” massages and “also injects them with their anti-coagulant medication.”</p><p>According to the report, Elvira-Paez told deputies that she’s licensed to give massages in her native Colombia, but deputies said she’s not licensed to give massages ― or provide “any type of medical services” ― in Florida.</p><p>Authorities said Elvira-Paez was also improperly disposing medical waste.</p><p>Deputies arrested her on charges including practicing medicine without a license and operating an assisted living facility without a license, plus felony and misdemeanor charges related to improper waste disposal.</p><p>Records show she was set to be released from the Turner Guilford Knight Correctional Center on a nearly $11,000 bond Friday.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p><p> </p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/ENZTOSWVJJBSNEPT5EOPJTZLLM.jpg?auth=354977feea3a19385e57fb93a128caf6abe761721617faf659985ebba94181e9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Sandra Elvira-Paez]]></media:description></media:content></item><item><title><![CDATA[Acusan a mujer de Cutler Bay de operar un hogar de recuperación para cirugías estéticas sin licencia]]></title><link>https://www.local10.com/espanol/2026/07/31/acusan-a-mujer-de-cutler-bay-de-operar-un-hogar-de-recuperacion-para-cirugias-esteticas-sin-licencia/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/acusan-a-mujer-de-cutler-bay-de-operar-un-hogar-de-recuperacion-para-cirugias-esteticas-sin-licencia/</guid><dc:creator><![CDATA[Chris Gothner]]></dc:creator><description><![CDATA[Agentes de la Oficina del Sheriff de Miami-Dade arrestaron a una mujer a la que acusan de operar un hogar de recuperación para cirugías estéticas sin licencia desde su vivienda en Cutler Bay.]]></description><pubDate>Fri, 31 Jul 2026 16:33:41 +0000</pubDate><content:encoded><![CDATA[<p>Agentes de la Oficina del Sheriff de Miami-Dade arrestaron a una mujer a la que acusan de operar un hogar de recuperación para cirugías estéticas sin licencia desde su vivienda en Cutler Bay.</p><p>Los agentes informaron que Sandra Elvira-Paez, de 44 años, también realizaba masajes y aplicaba inyecciones a los pacientes de manera ilegal.</p><p>Los registros de arresto muestran que Elvira-Paez fue detenida el jueves por la tarde en la vivienda, ubicada en la cuadra 8900 de Southwest 215th Lane. Enfrenta cuatro cargos graves.</p><p>Según el informe de arresto de la Oficina del Sheriff de Miami-Dade, los agentes encontraron a Elvira-Paez y a tres pacientes en recuperación tras cirugías en la vivienda. También había dos empleados, uno de ellos su hijo.</p><p>De acuerdo con el informe, los pacientes dijeron a los agentes que recibían atención en la vivienda y pagaban hasta $450 USD por noche por los servicios. También afirmaron que Elvira-Paez les había realizado “numerosos” masajes y que “además les aplicaba su medicamento anticoagulante”.</p><p>Según el informe, Elvira-Paez dijo a los agentes que cuenta con licencia para dar masajes en su natal Colombia, pero los agentes indicaron que no tiene licencia para realizar masajes ni para prestar “ningún tipo de servicio médico” en Florida.</p><p>Las autoridades informaron que Elvira-Paez también desechaba de manera inadecuada los residuos médicos.</p><p>Los agentes la arrestaron por cargos que incluyen ejercer la medicina sin licencia y operar un centro de residencia asistida sin licencia, además de cargos graves y menores relacionados con la eliminación inadecuada de residuos.</p><p>Los registros muestran que estaba previsto que fuera liberada el viernes del Centro Correccional Turner Guilford Knight tras pagar una fianza de casi $11,000 USD.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/ENZTOSWVJJBSNEPT5EOPJTZLLM.jpg?auth=354977feea3a19385e57fb93a128caf6abe761721617faf659985ebba94181e9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Sandra Elvira-Paez]]></media:description></media:content></item><item><title><![CDATA[Acusan a cartero del USPS de robar un boleto ganador de la Lotería de Florida enviado por correo y cobrar el premio]]></title><link>https://www.local10.com/espanol/2026/07/31/acusan-a-cartero-del-usps-de-robar-un-boleto-ganador-de-la-loteria-de-florida-enviado-por-correo-y-cobrar-el-premio/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/acusan-a-cartero-del-usps-de-robar-un-boleto-ganador-de-la-loteria-de-florida-enviado-por-correo-y-cobrar-el-premio/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Una empleada del Servicio Postal de Estados Unidos (USPS) enfrenta múltiples cargos graves después de que los investigadores informaran que robó del correo un boleto ganador de la Lotería de Florida y cobró fraudulentamente un premio de $2,600 USD.]]></description><pubDate>Fri, 31 Jul 2026 16:30:44 +0000</pubDate><content:encoded><![CDATA[<p>Una empleada del Servicio Postal de Estados Unidos (USPS) del condado Broward enfrenta múltiples cargos graves después de que los investigadores informaran que robó del correo un boleto ganador de la Lotería de Florida y cobró fraudulentamente un premio de $2,600 USD.</p><p>Según la Lotería de Florida, el caso surgió de una investigación conjunta entre la División de Seguridad de la agencia y la Oficina del Inspector General del Servicio Postal de Estados Unidos.</p><p>Los investigadores informaron que la investigación comenzó después de que una jugadora de la Lotería de Florida reportó que un boleto ganador de Pick 4 que había enviado por correo a través del Servicio Postal de Estados Unidos nunca llegó a su destino.</p><p>Según el informe de arresto, el boleto ganador fue comprado en una tienda Publix de Tampa y tenía un valor de $2,600 USD. Debido a que el premio superaba el límite máximo de $599 USD que puede cobrarse en un establecimiento autorizado de la lotería, el sistema indicó que el boleto debía ser devuelto a la jugadora, informaron los investigadores.</p><p>Indicaron que la ganadora posteriormente envió el boleto por correo a un familiar en Fort Lauderdale para ayudar a cubrir los gastos funerarios de otra persona, pero el boleto nunca fue entregado.</p><p>Un inspector de la Lotería de Florida determinó que el boleto fue cobrado el 19 de junio en la oficina del Distrito de Miami de la Lotería de Florida por Lekaysha Kenya Lockhart, de 28 años. Posteriormente, los investigadores identificaron a Lockhart como una cartera del USPS asignada a la oficina postal de Oakland Park.</p><p>Según el informe de arresto, Lockhart, quien tiene direcciones registradas en Lauderhill y Hollywood, “no era conocida por la propietaria del boleto ni estaba autorizada o aprobada por ella” para cobrar el premio.</p><p>Las autoridades informaron que agentes especiales de la Lotería de Florida e investigadores de la Oficina del Inspector General del USPS realizaron una operación conjunta que condujo al arresto de Lockhart el 23 de julio. Indicaron que, tras su arresto, Lockhart admitió haber robado el boleto ganador y haberlo cobrado en la oficina del Distrito de Miami.</p><p>“Nuestros jugadores merecen la confianza de que cada premio de la Lotería está protegido mediante sólidas medidas de seguridad y una supervisión rigurosa”, dijo en un comunicado el secretario de la Lotería de Florida, Reginald D. Dixon. “Reconozco el extraordinario trabajo investigativo de nuestra División de Seguridad y agradezco a nuestros socios de la Oficina del Inspector General del Servicio Postal de Estados Unidos y de la Oficina del Sheriff de Broward por su colaboración para proteger la integridad de los juegos de la Lotería de Florida y lograr una resolución exitosa de este caso”.</p><p>Los registros de la cárcel muestran que Lockhart enfrenta un cargo de hurto mayor, uno por tráfico de propiedad robada, uno por presentar un reclamo falso de pago y dos cargos por uso ilegal de un dispositivo de comunicación bidireccional y robo de correspondencia.</p><p>Funcionarios de la Lotería de Florida informaron que, debido a que los delitos ocurrieron en múltiples circuitos judiciales, los casos serán procesados por separado.</p><p>Hasta la mañana del viernes, Lockhart no figuraba como reclusa en los registros de la cárcel del condado Broward.</p><p>Local 10 solicitó una declaración al Servicio Postal de Estados Unidos sobre su arresto.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/JTDR6VF32NF7DDE4MBUX34HATE.jpg?auth=6163a691d6eae851cf0eba80e5f2f28c07f2399a67cd126e9c1dfb587c4eefa5&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Detienen a hombre después de que una mujer fuera baleada en Wilton Manors, dice testigo]]></title><link>https://www.local10.com/espanol/2026/07/31/detienen-a-hombre-despues-de-que-una-mujer-fuera-baleada-en-wilton-manors-dice-testigo/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/detienen-a-hombre-despues-de-que-una-mujer-fuera-baleada-en-wilton-manors-dice-testigo/</guid><dc:creator><![CDATA[Michaila Hightower, Amanda Batchelor]]></dc:creator><description><![CDATA[Un hombre fue detenido la mañana de este viernes después de que una mujer fuera baleada en Wilton Manors, dijo un testigo a Local 10 News.]]></description><pubDate>Fri, 31 Jul 2026 14:34:32 +0000</pubDate><content:encoded><![CDATA[<p>Un hombre fue detenido la mañana de este viernes después de que una mujer fuera baleada en Wilton Manors, dijo un testigo a Local 10 News.</p><p>La investigación se desarrolla en el centro comercial Palm Gardens, ubicado junto a North Andrews Avenue y Northeast 26th Drive.</p><p>Michaila Hightower, de Local 10, se encontraba en el lugar cuando un hombre fue detenido y colocado en la parte trasera de una patrulla.</p><p>En el suelo del centro comercial se podían observar lo que parecía ser sangre y prendas de vestir.</p><p>Dwayne Lewis, quien presenció la balacera, dijo a Hightower que una mujer había recibido un disparo en una pierna, aunque la Policía no confirmó de inmediato esa información.</p><p>“La víctima estaba justo a mi lado. Estaba perdiendo mucha sangre”, dijo.</p><p>Lewis contó que esperaba en una parada de autobús cercana cuando ocurrió la balacera.</p><p>“Desde el auto, probablemente escuché unos tres o cuatro disparos”, dijo.</p><p>Lewis señaló que parecía haber una pelea en el centro comercial antes de la balacera.</p><p>“Solo estaban discutiendo y escuché a una mujer decir: “Cariño, no; cariño, no”. Entonces él simplemente comenzó a disparar”, dijo Lewis. “Luego, las dos personas a las que les disparaba corrieron hacia una pequeña oficina, la oficina de impuestos. El tirador se dio la vuelta y regresó a su auto”.</p><p>Además del concreto manchado de sangre, también se observó un impacto de bala en la ventana del lado del conductor de un Honda Accord.</p><p>“Lo único que decía era: “Por favor, llamen a una ambulancia”. Estaba hablándole a una joven”, dijo Lewis.</p><p>A pesar de haber recibido un disparo en una pierna, Lewis dijo que la víctima permanecía tranquila y consciente.</p>]]></content:encoded></item><item><title><![CDATA[Pakistan's military rejects UN report alleging hundreds of civilian deaths in strikes on Afghanistan]]></title><link>https://www.local10.com/news/world/2026/07/31/pakistans-military-rejects-un-report-alleging-hundreds-of-civilian-deaths-in-strikes-on-afghanistan/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/pakistans-military-rejects-un-report-alleging-hundreds-of-civilian-deaths-in-strikes-on-afghanistan/</guid><dc:creator><![CDATA[By MUNIR AHMED, Associated Press]]></dc:creator><description><![CDATA[ISLAMABAD (AP) — Pakistan’s military on Friday rejected as “baseless” a recent U.N. report that said Pakistani cross-border military operations killed nearly 500 civilians and wounded over 1,000 in neighboring Afghanistan between October and June.]]></description><pubDate>Fri, 31 Jul 2026 16:15:32 +0000</pubDate><content:encoded><![CDATA[<p>ISLAMABAD (AP) — Pakistan’s military on Friday rejected as “baseless” a recent U.N. report that said Pakistani cross-border military operations killed nearly 500 civilians and wounded over 1,000 in neighboring Afghanistan between October and June.</p><p>At a televised news conference, military spokesman Lt. Gen. Ahmad Sharif Chaudhry said Pakistan had targeted only hideouts and infrastructure used by the Pakistani Taliban, known as Tehrik-e-Taliban Pakistan, or TTP, during that period, and said those killed in the strikes were militants.</p><p>He said the operations were carried out in self-defense to protect the lives of people in Pakistan.</p><p>Chaudhry questioned recently released reports by the U.N. Assistance Mission in Afghanistan, or UNAMA, and Amnesty International, saying they relied largely on accounts from Afghans despite what he described as restrictions on freedom of expression under Taliban rule.</p><p>He also accused Afghanistan’s Taliban government of sheltering militants responsible for attacks inside Pakistan and said international rights organizations had failed to document such violence.</p><p>“These are double standards,” Chaudhry said, asking how many times rights groups had documented civilian casualties caused by U.S.-led coalition airstrikes during the war in Afghanistan.</p><p>Chaudhry’s remarks came days after UNAMA, in a report on the human rights situation in Afghanistan, said it had documented 499 civilians killed and 1,216 wounded in fighting between Pakistan and Afghanistan despite international efforts to reduce tensions.</p><p>Pakistan and Afghanistan have exchanged fire intermittently for months, but tensions escalated sharply in February, when Afghan forces launched a cross-border raid into Pakistan in retaliation for Pakistani airstrikes inside Afghanistan. Islamabad later declared it was in “open war.”</p><p>Pakistan often accuses Afghanistan of harboring militants who carry out deadly attacks inside Pakistan, especially the Pakistani Taliban. The group is separate from, but allied with, the Afghan Taliban, which has ruled Afghanistan since it returned to power in the country in 2021 amid the chaotic withdrawal of U.S.-led troops. Afghanistan denies providing sanctuary to militants.</p><p>In the deadliest reported attack in the recent fighting, a Pakistani airstrike struck a drug-treatment center in the Afghan capital Kabul in March, killing hundreds of civilians. Amnesty International said last week the bombing should be investigated as a possible war crime.</p><p>Chaudhry defended the strikes, saying Pakistan had carried out operations in Kabul and elsewhere with precision to target militant infrastructure supporting attacks inside Pakistan. He said Pakistan is also continuing operations inside the country against “Khawarij,” a term Pakistan uses for TTP and affiliated groups.</p><p>According to Chaudhry, Pakistan has recorded 3,145 “terrorism incidents” since January.</p><p>He said Pakistan had killed 2,084 militants since January, while 819 Pakistanis, including soldiers, police officers and civilians, had been killed. He said security forces had carried out 40,348 intelligence-based operations across the country during the same period.</p><p>Chaudhry also said Afghanistan-based militants had carried out 28 suicide attacks in Pakistan since January and alleged that most were carried out by Afghan nationals or people associated with Afghanistan’s security forces. He alleged that drug addicts had been recruited to carry out suicide bombings.</p><p>“Not every drug addict is a terrorist, but every suicide bomber was a drug addict,” he said.</p><p>Chaudhry said Pakistan launched a new counterterrorism operation earlier this year following a surge in militant violence and would continue the campaign. “We will continue these operations,” he said, adding that Pakistan was winning the fight against terrorism and, “God willing, we will win.”</p><p>He also accused the outlawed Baloch Liberation Army and TTP of directing attacks in Pakistan’s insurgency-hit southwestern Balochistan province from Afghanistan. Balochistan has long faced a separatist insurgency led by BLA that accuses the government of discrimination and exploiting the province’s natural resources. The government denies the allegations.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/IF6IF5BSEE327JCNNLST3P4DLE.jpg?auth=7c70b2fcf0615a3bfcd3b20419ee5bf985aade0215ea7d3597212f93d09f7bf4&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[This is a locator map for Pakistan with its capital, Islamabad, and the Kashmir region. (AP Photo)]]></media:description></media:content></item><item><title><![CDATA[Man shot in torso in Miami, police say]]></title><link>https://www.local10.com/news/local/2026/07/31/man-shot-in-torso-in-miami-police-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/man-shot-in-torso-in-miami-police-say/</guid><dc:creator><![CDATA[Amanda Batchelor]]></dc:creator><description><![CDATA[A man who is about 30 years old was injured Thursday night in a shooting in Miami, authorities confirmed to Local 10 News.]]></description><pubDate>Fri, 31 Jul 2026 11:01:36 +0000</pubDate><content:encoded><![CDATA[<p>A man who is about 30 years old was injured Thursday night in a shooting in Miami, authorities confirmed to Local 10 News.</p><p><a href="https://www.local10.com/espanol/2026/07/31/policia-balean-a-hombre-en-el-torso-en-miami/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/policia-balean-a-hombre-en-el-torso-en-miami/">Leer en español</a></p><p>The shooting was reported in the area of Northwest Second Avenue and 12<sup>th</sup> Street.</p><p>According to Miami police Officer Kenia Fallat, the victim was shot in the torso.</p><p>She said a Miami Fire Rescue crew responded to the scene and transported the victim to Jackson Memorial Hospital’s Ryder Trauma Center, where he is listed in critical condition. </p><p>The investigation remains ongoing.</p><p>No other details were immediately released.</p><p>Anyone with information about the shooting is asked to call the Miami Police Department or Miami-Dade Crime Stoppers at 305-471-8477.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Romo on leave from CBS Sports after arrest on suspicion of operating vehicle under the influence]]></title><link>https://www.local10.com/entertainment/2026/07/31/romo-on-leave-from-cbs-sports-after-arrest-on-suspicion-of-operating-vehicle-under-the-influence/</link><guid isPermaLink="true">https://www.local10.com/entertainment/2026/07/31/romo-on-leave-from-cbs-sports-after-arrest-on-suspicion-of-operating-vehicle-under-the-influence/</guid><dc:creator><![CDATA[By The Associated Press, Associated Press]]></dc:creator><description><![CDATA[Tony Romo has been placed on leave from his role as the lead analyst on CBS’ NFL coverage following his arrest last week on suspicion of operating a vehicle while under the influence.]]></description><pubDate>Fri, 31 Jul 2026 16:12:40 +0000</pubDate><content:encoded><![CDATA[<p>Tony Romo has been placed on leave from his role as the lead analyst on CBS’ NFL coverage following his arrest last week on suspicion of operating a vehicle while under the influence.</p><p>CBS Sports announced Friday that the former Dallas Cowboys quarterback was on leave “until further notice.” JJ Watt will join Jim Nantz and Tracy Wolfson as CBS Sports’ lead NFL team during Romo’s absence.</p><p>Romo, 46, was arrested July 23 after he was stopped while driving south on Interstate 43 in Wisconsin. According to the Milwaukee County Sheriff’s Office report, Romo performed poorly on field sobriety tests before getting taken into custody, booked and released.</p><p>He has a court date set for Sept. 21.</p><p>CBS Sports’ announcement comes after citations released by the Milwaukee County Sheriff’s Office indicated an open bottle of an alcoholic beverage was found in the passenger’s side of Romo’s black Jeep during an inventory before it was towed.</p><p>According to the citations, police stopped Romo after he was seen passing cars in a gore area, which separates interstate traffic from cars entering from an on-ramp. Police said Romo questioned what a gore area was during the stop.</p><p>Body camera footage released earlier this week showed Romo telling deputies he had been coming from a golf course and was on his way “to visit grandma and grandpa” when he was stopped. A deputy told Romo he suspected him of being impaired because he had “red glassy eyes” and an “odor of an intoxicating alcoholic beverage.”</p><p>Romo went to high school about 35 miles from Milwaukee in Burlington, Wisconsin.</p><p>He has been the lead game analyst for CBS’ NFL coverage since 2017 after making four Pro Bowl appearances during an NFL career that ran from 2004-16 and was spent entirely with Dallas.</p><p>Romo remains the Cowboys’ franchise leader in career touchdown passes with 248. He held the franchise record for career passing yards (34,183) until Dak Prescott overtook him last season.</p><p>Watt joined CBS in 2023. He was an analyst on “The NFL Today” for two seasons before teaming with Ian Eagle on the network’s No. 2 crew beginning last season.</p><p>Romo wasn’t expected to have his first game until the opening Sunday of the regular season on Sept. 13. CBS will air a preseason game between the Cincinnati Bengals and Philadelphia Eagles on Aug. 28.</p><p>CBS likely will reveal its game assignments and announcer pairings for the first three weeks of the regular season in the next couple of weeks.</p><p>___</p><p>AP NFL: https://apnews.com/hub/nfl</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/6DZ3NZT7SDYSAQJA6I4UUSILZA.jpg?auth=0a34728caa90bf90b010e39480a39b4d306e71fb064873df28a3f9c498063157&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Former NFL quarterback Tony Romo, right, attends an NBA basketball game between the Indiana Pacers and the Dallas Mavericks on March 5, 2024, in Dallas. (AP Photo/Tony Gutierrez, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Tony Gutierrez</media:credit></media:content></item><item><title><![CDATA[Republican Indiana Senate leader who defied Trump on redistricting leaving post]]></title><link>https://www.local10.com/news/politics/2026/07/31/republican-indiana-senate-leader-who-defied-trump-on-redistricting-leaving-post/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/republican-indiana-senate-leader-who-defied-trump-on-redistricting-leaving-post/</guid><dc:creator><![CDATA[By The Associated Press, Associated Press]]></dc:creator><description><![CDATA[INDIANAPOLIS (AP) — The Republican leader of the Indiana Senate announced Friday that he would give up his position after six GOP incumbents who opposed President Donald Trump on his congressional redistricting push in the state lost their primaries.]]></description><pubDate>Fri, 31 Jul 2026 16:10:21 +0000</pubDate><content:encoded><![CDATA[<p>INDIANAPOLIS (AP) — The Republican leader of the Indiana Senate announced Friday that he would give up his position after six GOP incumbents who opposed President Donald Trump on his congressional redistricting push in the state lost their primaries.</p><p>Indiana Senate President Pro Tem Rodric Bray drew the ire of Trump in December when he voted against the redistricting plan after saying for weeks that it didn't have enough support to pass. The rejection came after intense lobbying from Trump, Vice President JD Vance, national conservative groups and others.</p><p>Bray, who has held his leadership position since 2018, said in a statement Friday that he would not seek reelection to the post when Senate Republicans choose their leaders in November. His current Senate term runs through 2028 and he will remain in office, albeit not as the Republican Senate leader.</p><p>Trump reacted to the news in a social media post by saying Bray had “foolishly led,” the state Senate, noting the May primary defeats of those who defied him on the redistricting plan.</p><p>Bray did not mention Trump or the redistricting fight in his statement announcing his position to step down from the leadership position. Bray said holding the job “has been among the most significant honors of my life, but it’s time for the Senate to choose another leader."</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/SRMWZMGVGAZI6AXNHNNCPDULRI.jpg?auth=1324acaeef08af4b9c9b179a2484cdc93eb732e31c2e0f3893d3d43afabb33c6&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Senate President Pro Tem Rodric Bray, R-Martinsville, speaks at the Statehouse in Indianapolis, July 20, 2022. (AP Photo/Michael Conroy, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Michael Conroy</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/TBFRJSDJ4X6ZZVOGWPFRYXFMIU.jpg?auth=ccfe8bf6f68af0d5c484473d88342c4cf25016f6f70b7cab1bcde9ae3646bccb&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Indiana Senate President Pro Tem Rodric Bray takes a question after a bill to redistrict the state's congressional map was defeated, Thursday, Dec. 11, 2025, at the Statehouse in Indianapolis. (AP Photo/Michael Conroy, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Michael Conroy</media:credit></media:content></item><item><title><![CDATA[Residents invited to National Night Out events across Florida Keys]]></title><link>https://www.local10.com/news/local/2026/07/31/residents-invited-to-national-night-out-events-across-florida-keys/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/residents-invited-to-national-night-out-events-across-florida-keys/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez]]></dc:creator><description><![CDATA[The Monroe County Sheriff’s Office is inviting residents to attend National Night Out events across the Florida Keys to promote community engagement and public safety. ]]></description><pubDate>Fri, 31 Jul 2026 15:44:12 +0000</pubDate><content:encoded><![CDATA[<p>The Monroe County Sheriff’s Office is inviting residents to attend National Night Out events across the Florida Keys to promote community engagement and public safety. </p><p><a href="https://www.local10.com/espanol/2026/07/31/invitan-a-residentes-a-participar-en-eventos-de-national-night-out-en-los-cayos-de-florida/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/invitan-a-residentes-a-participar-en-eventos-de-national-night-out-en-los-cayos-de-florida/">Leer en español</a></p><p>The sheriff’s office says the free event will take place on Aug. 4 from 5:30 p.m. to 7:30 p.m. and will bring together enforcement, first responders, military personnel and community members. </p><p>The agency says National Night Out helps strengthen neighborhood partnerships and raise crime prevention awareness. </p><p>The sheriff’s office said attendees will have the opportunity to meet deputies, police officers, firefighters and members of the military, while learning about the agencies and organizations that help keep the Keys safe. Food and refreshments will also be provided.</p><p>The agency says the National Night Out events will be held in four locations spread across the Keys:</p><p>•	Key Largo Community Park in Key Largo</p><p>•	Founders Park in Islamorada</p><p>•	Monroe County Sheriff’s Office Aviation Hangar at the Florida Keys Marathon International Airport in Marathon</p><p>•	Truman Waterfront in Key West</p><p>Depending on the location, the sheriff’s office says visitors can explore displays from specialized units, including the Dive Team, SWAT, and Crime Scene Investigation. </p><p>Also expected to participate are representatives from the U.S. Coast Guard, Florida Fish and Wildlife Conservation Commission, Florida Highway Patrol, Monroe County Fire Rescue, and other fire districts, Monroe County schools, chambers of commerce and more. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/OSOCNBMOK3SILHRSFS2OYUFJXI.jpg?auth=376472e64eea2c77ddf2820bef3279b1172480528525d386710fa13d299d4c37&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Florida Monroe County Sheriff's Office cruiser.]]></media:description><media:credit role="author" scheme="urn:ebu"></media:credit></media:content></item><item><title><![CDATA[Invitan a residentes a participar en eventos de National Night Out en los Cayos de Florida]]></title><link>https://www.local10.com/espanol/2026/07/31/invitan-a-residentes-a-participar-en-eventos-de-national-night-out-en-los-cayos-de-florida/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/invitan-a-residentes-a-participar-en-eventos-de-national-night-out-en-los-cayos-de-florida/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez]]></dc:creator><description><![CDATA[La Oficina del Sheriff del condado Monroe invita a los residentes a asistir a los eventos de National Night Out en los Cayos de Florida para promover la participación comunitaria y la seguridad pública.]]></description><pubDate>Fri, 31 Jul 2026 15:55:13 +0000</pubDate><content:encoded><![CDATA[<p>La Oficina del Sheriff del condado Monroe invita a los residentes a asistir a los eventos de National Night Out en los Cayos de Florida para promover la participación comunitaria y la seguridad pública.</p><p>La Oficina del Sheriff informó que el evento gratuito se llevará a cabo el 4 de agosto de 5:30 p.m. a 7:30 p.m. y reunirá a agentes del orden, socorristas, personal militar y miembros de la comunidad.</p><p>La agencia indicó que National Night Out ayuda a fortalecer las alianzas entre los vecindarios y las autoridades, además de crear conciencia sobre la prevención del crimen.</p><p>La Oficina del Sheriff señaló que los asistentes tendrán la oportunidad de conocer a agentes, policías, bomberos y miembros de las Fuerzas Armadas, mientras aprenden sobre las agencias y organizaciones que ayudan a mantener seguros los Cayos de Florida. También habrá comida y refrigerios.</p><p>La agencia informó que los eventos de National Night Out se realizarán en cuatro lugares de los Cayos:</p><p>• Key Largo Community Park, en Key Largo</p><p>• Founders Park, en Islamorada</p><p>• Hangar de Aviación de la Oficina del Sheriff del condado Monroe, en el Aeropuerto Internacional Florida Keys Marathon, en Marathon</p><p>• Truman Waterfront, en Key West</p><p>Dependiendo del lugar, la Oficina del Sheriff indicó que los visitantes podrán recorrer exhibiciones de unidades especializadas, entre ellas el Equipo de Buceo, SWAT y la Unidad de Investigación de la Escena del Crimen.</p><p>También se espera la participación de representantes de la Guardia Costera de Estados Unidos, la Comisión de Conservación de Pesca y Vida Silvestre de Florida (FWC), la Patrulla de Carreteras de Florida, Monroe County Fire Rescue, otros distritos de bomberos, escuelas del condado Monroe, cámaras de comercio y otras organizaciones.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/OSOCNBMOK3SILHRSFS2OYUFJXI.jpg?auth=376472e64eea2c77ddf2820bef3279b1172480528525d386710fa13d299d4c37&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Florida Monroe County Sheriff's Office cruiser.]]></media:description><media:credit role="author" scheme="urn:ebu"></media:credit></media:content></item><item><title><![CDATA[Miami Spice regresa por su 25º aniversario con nuevos restaurantes y menús de precio fijo]]></title><link>https://www.local10.com/espanol/2026/07/31/miami-spice-regresa-por-su-25-aniversario-con-nuevos-restaurantes-y-menus-de-precio-fijo/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/miami-spice-regresa-por-su-25-aniversario-con-nuevos-restaurantes-y-menus-de-precio-fijo/</guid><dc:creator><![CDATA[Alexis Frazier, Yarden Ben-David ]]></dc:creator><description><![CDATA[Miami Spice regresa este viernes para celebrar su 25.º aniversario, brindando a los comensales la oportunidad de disfrutar menús de precio fijo en algunos de los restaurantes más populares del sur de Florida a precios reducidos.]]></description><pubDate>Fri, 31 Jul 2026 15:51:48 +0000</pubDate><content:encoded><![CDATA[<p>Miami Spice regresa este viernes para celebrar su 25º aniversario, ofreciendo a los comensales la oportunidad de disfrutar de menús de precio fijo en algunos de los restaurantes más populares del sur de Florida a precios reducidos.</p><p>El programa gastronómico anual incluye restaurantes participantes que ofrecen menús especiales para el brunch, el almuerzo y la cena hasta septiembre, con varias novedades que se suman a la lista de este año.</p><p>Entre los restaurantes que debutan en Miami Spice se encuentran Daniel’s Miami, Yamashiro, Maple &amp; Ash y Zuma.</p><p><a href="https://www.danielssteak.com/miami/" rel="" title="https://www.danielssteak.com/miami/">Daniel’s Miami</a>&nbsp;ofrece cuatro experiencias gastronómicas Miami Spice, que incluyen menús de brunch y almuerzo por 40 dólares y opciones de cena que oscilan entre los 65 y los 95 dólares.</p><p>Los comensales pueden elegir entre platos como empanadas de carne Wagyu, lubina a la parrilla, costillas de ternera Wagyu estofadas y mero con costra de sémola de maíz de Florida, además de cócteles especiales creados para Miami Spice.</p><p><a href="https://yamashiromiami.com/" rel="" title="https://yamashiromiami.com/">Yamashiro</a>&nbsp;también participa por primera vez con un brunch dominical de 40 dólares y un menú de cena de 95 dólares que incluye platos de inspiración japonesa, entre ellos su característico bacalao negro.</p><p><a href="https://www.mapleandash.com/miami/" rel="" title="https://www.mapleandash.com/miami/">Maple &amp; Ash</a>&nbsp;también se une a Miami Spice por primera vez, brindando a los comensales la oportunidad de experimentar el servicio de mesa y los platos estrella de este lujoso restaurante de carnes a precios especiales.</p><p>“Lo diseñamos todo en torno a la diversión”, dijo Kam Losonsky, chef ejecutivo de Maple &amp; Ash. “Disfrutarás de una experiencia de lujo”.</p><p>El menú Miami Spice del restaurante incluye tartar de atún y filete mignon con trufa.</p><p>“Estás obteniendo opciones que realmente no vas a encontrar en ningún otro lugar, especialmente a este precio”, dijo Losonsky.</p><p>Entre los demás restaurantes participantes se encuentra&nbsp;<a href="https://www.thesetaihotel.com/miami-beach-restaurants/jaya" rel="" title="https://www.thesetaihotel.com/miami-beach-restaurants/jaya">Jaya at The Setai</a>&nbsp;, que ofrece menús de almuerzo y cena de inspiración asiática con platos como Pad Thai, curry Panang y costillas cortas galbi a la barbacoa coreana.</p><p><a href="https://urldefense.com/v3/__https:/www.zumarestaurant.com/en/miami__;!!FfvXB3Q!ixXK782Qnc6KNm7fQAUWcneJnlnPx6n7hGsg5iyPfxSUKGN4irjOlAggv9UF31gbiIiodrK5XgUXZjyUPjbk$" rel="">Zuma</a>&nbsp;ofrece menús de almuerzo y cena con precios de $35 y $60, respectivamente. Durante el Miami Spice, los comensales podrán disfrutar del famoso pastel de queso con arce de Zuma Vail, junto con otros platos favoritos del público del año pasado, entre los que se incluyen:</p><ol><li>Pollo karaage con aderezo de limón y chile</li><li>Gyoza de gambas y bacalao negro</li><li>Salsa teriyaki de salmón y pepinillos encurtidos.</li></ol><p><a href="https://www.catchrestaurants.com/location/catch-miami-beach/" rel="" title="https://www.catchrestaurants.com/location/catch-miami-beach/">CATCH Miami Beach</a>&nbsp;ofrece un menú de cena de 65 dólares con opciones de mariscos, sushi y carnes, mientras que&nbsp;<a href="https://www.lejardinier-miami.com/" rel="" title="https://www.lejardinier-miami.com/">Le Jardinier,</a>&nbsp;galardonado con una estrella Michelin , regresa con almuerzos y cenas de tres platos de inspiración francesa.</p><p>También participan&nbsp;<a href="https://www.stubbornseed.com/" rel="" title="https://www.stubbornseed.com/">Stubborn Seed</a>&nbsp;, restaurante con estrella Michelin , donde los comensales pueden disfrutar de una cena de tres platos con delicias como pollo con trufa y pavlova de cítricos, y&nbsp;<a href="https://michaelsgenuine.com/about/" rel="" title="https://michaelsgenuine.com/about/">Michael’s Genuine Food &amp; Drink</a>&nbsp;, que ofrece almuerzos y cenas de tres platos con menús que varían a lo largo de la temporada para mostrar ingredientes frescos de origen local.</p><p>Miami Spice, que se extiende hasta finales de septiembre, no solo ofrece a los comensales la oportunidad de probar nuevos restaurantes, sino que también ayuda a los restaurantes a darse a conocer a nuevos clientes.</p><p>Para obtener más información sobre Miami Spice y una lista de los restaurantes participantes,&nbsp;<a href="https://www.miamiandbeaches.com/deals/spice-restaurant-months" rel="" title="https://www.miamiandbeaches.com/deals/spice-restaurant-months">haga clic aquí.</a></p>]]></content:encoded></item><item><title><![CDATA[Miami Spice returns for 25th year with new restaurants, prix-fixe menus ]]></title><link>https://www.local10.com/features/2026/07/31/miami-spice-returns-for-25th-year-with-new-restaurants-prix-fixe-menus/</link><guid isPermaLink="true">https://www.local10.com/features/2026/07/31/miami-spice-returns-for-25th-year-with-new-restaurants-prix-fixe-menus/</guid><dc:creator><![CDATA[Alexis Frazier, Yarden Ben-David ]]></dc:creator><description><![CDATA[Miami Spice returns Friday for its 25th year, giving diners a chance to enjoy prix-fixe meals at some of South Florida’s most popular restaurants at reduced prices.]]></description><pubDate>Fri, 31 Jul 2026 11:09:15 +0000</pubDate><content:encoded><![CDATA[<p>Miami Spice returns Friday for its 25th year, giving diners a chance to enjoy prix-fixe meals at some of South Florida’s most popular restaurants at reduced prices.</p><p><a href="https://www.local10.com/espanol/2026/07/31/miami-spice-regresa-por-su-25-aniversario-con-nuevos-restaurantes-y-menus-de-precio-fijo/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/miami-spice-regresa-por-su-25-aniversario-con-nuevos-restaurantes-y-menus-de-precio-fijo/">Leer en español</a></p><p>The annual dining program features participating restaurants offering special brunch, lunch and dinner menus through September, with several newcomers joining this year’s lineup.</p><p>Among the restaurants making their Miami Spice debut are Daniel’s Miami, Yamashiro, Maple &amp; Ash and Zuma.</p><p><a href="https://www.danielssteak.com/miami/" target="_self" rel="" title="https://www.danielssteak.com/miami/">Daniel’s Miami</a> is offering four Miami Spice dining experiences, including $40 brunch and lunch menus and dinner options ranging from $65 to $95. </p><p>Diners can choose from dishes including Wagyu beef empanadas, grilled branzino, braised Wagyu beef short rib and Florida grits-crusted grouper, along with specialty cocktails created for Miami Spice.</p><p><a href="https://yamashiromiami.com/" target="_self" rel="" title="https://yamashiromiami.com/">Yamashiro</a> is also participating for the first time with a $40 Sunday brunch and $95 dinner menu featuring Japanese-inspired dishes, including its signature black cod.</p><p><a href="https://www.mapleandash.com/miami/" target="_self" rel="" title="https://www.mapleandash.com/miami/">Maple &amp; Ash</a> is also joining Miami Spice for the first time, giving diners the chance to experience the luxury steakhouse’s tableside service and signature dishes at special prices.</p><p>“We build everything around fun,” said Maple &amp; Ash executive chef Kam Losonsky. “You’re getting a luxurious experience.” </p><p>The restaurant’s Miami Spice menu includes tuna tartare and filet mignon with truffle.</p><p>“You’re getting options you really aren’t gonna get anywhere else, especially for this price point,” Losonsky said.</p><p>Other participating restaurants include <a href="https://www.thesetaihotel.com/miami-beach-restaurants/jaya" target="_self" rel="" title="https://www.thesetaihotel.com/miami-beach-restaurants/jaya">Jaya at The Setai</a>, which is offering Asian-inspired lunch and dinner menus featuring dishes such as Pad Thai, Panang curry and Korean barbecue galbi short rib. </p><p><a href="https://urldefense.com/v3/__https:/www.zumarestaurant.com/en/miami__;!!FfvXB3Q!ixXK782Qnc6KNm7fQAUWcneJnlnPx6n7hGsg5iyPfxSUKGN4irjOlAggv9UF31gbiIiodrK5XgUXZjyUPjbk$" rel="">Zuma</a> is offering lunch and dinner menus priced at $35 and $60. During Miami Spice, guests can enjoy the restaurant’s signature Maple Cheesecake from Zuma Vail, along with fan favorite dishes from last year, including:</p><ol><li>Chicken karaage with chili lemon dressing</li><li>Prawn and black cod gyoza</li><li>Salmon teriyaki sauce and pickled cucumber</li></ol><p><a href="https://www.catchrestaurants.com/location/catch-miami-beach/" target="_self" rel="" title="https://www.catchrestaurants.com/location/catch-miami-beach/">CATCH Miami Beach</a> is serving a $65 dinner menu with seafood, sushi and steak selections, while Michelin-starred <a href="https://www.lejardinier-miami.com/" target="_self" rel="" title="https://www.lejardinier-miami.com/">Le Jardinier</a> returns with French-inspired three-course lunches and dinners.</p><p>Also participating are Michelin-starred <a href="https://www.stubbornseed.com/" target="_self" rel="" title="https://www.stubbornseed.com/">Stubborn Seed</a>, where diners can enjoy a three-course dinner featuring dishes such as truffle chicken and citrus pavlova, and <a href="https://michaelsgenuine.com/about/" target="_self" rel="" title="https://michaelsgenuine.com/about/">Michael’s Genuine Food &amp; Drink</a>, which is offering three-course lunches and dinners with menus that rotate throughout the season to showcase fresh, locally sourced ingredients.</p><p>Miami Spice, which lasts through the end of September, not only gives diners a chance to try new restaurants, but also helps restaurants introduce themselves to new customers.</p><p>For more information on Miami Spice and a list of participating restaurants, <a href="https://www.miamiandbeaches.com/deals/spice-restaurant-months" target="_self" rel="" title="https://www.miamiandbeaches.com/deals/spice-restaurant-months">click here. </a></p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Jurors in Lindsay Clancy's trial visit the home where she killed her children]]></title><link>https://www.local10.com/news/2026/07/31/jurors-in-lindsay-clancys-trial-visit-the-home-where-she-killed-her-children/</link><guid isPermaLink="true">https://www.local10.com/news/2026/07/31/jurors-in-lindsay-clancys-trial-visit-the-home-where-she-killed-her-children/</guid><dc:creator><![CDATA[BY LEAH WILLINGHAM, Associated Press]]></dc:creator><description><![CDATA[DUXBURY, Mass. (AP) — Jurors walked through the Massachusetts home where Lindsay Clancy strangled her three children, a rare visit Friday that let them see firsthand the place where an outwardly ordinary family life unraveled into tragedy.]]></description><pubDate>Fri, 31 Jul 2026 19:53:33 +0000</pubDate><content:encoded><![CDATA[<p>DUXBURY, Mass. (AP) — Jurors walked through the Massachusetts home where Lindsay Clancy strangled her three children, a rare visit Friday that let them see firsthand the place where an outwardly ordinary family life unraveled into tragedy.</p><p>After being driven past two businesses relevant to the narrative of the January 2023 killings, jurors were escorted in groups of six to view the inside of the house, including the basement where the children died. During the roughly 40-minute visit, the jury also saw the yard where Clancy was found after jumping from a second-story window.</p><p>Journalists were kept away by a police barricade, but court officers could be seen through the trees escorting jurors to and from the bus along the site of the Clancy family’s former driveway. The home now has a new owner.</p><p>Clancy herself did not attend the visit to the home, which she hasn't seen since the day of the killings. Her lawyers argue she was in the grip of postpartum psychosis, a rare mental illness linked to the stress, sleep deprivation and hormonal changes that follow childbirth.</p><p>___</p><p>EDITOR’S NOTE: This story includes discussion of suicide. If you or someone you know needs help, the national suicide and crisis lifeline in the U.S. is available by calling or texting 988.</p><p>___</p><p>Jurors in U.S. criminal cases often are expressly told not to visit the scene of the events in question. There are a number of rationales for not doing so — among other things, the site may have changed in the interim between an alleged crime and a trial.</p><p>But courts sometimes allow juries to make a supervised excursion as a group, for reasons that can include assessing distances or features that aren’t thought to come across fully in photos.</p><p>Such excursions have happened in a number of high-profile cases, including the 2023 murder trial of South Carolina attorney Alex Murdaugh, the 2022 sentencing trial of Parkland, Florida, school shooter Nikolas Cruz, the 2015 Massachusetts murder trial of former New England Patriots player Aaron Hernandez and the 1995 murder trial of O.J. Simpson.</p><p>Jurors in Clancy's trial retraced the route her then-husband, Patrick Clancy, took when she asked him to pick up takeout food and medicine for daughter Cora on the night of the killings. He returned to find the children dead and his then-wife badly injured and bleeding in the yard.</p><p>The panel was driven past the restaurant — about 5.5 miles (9 kilometers) from the family’s former home in Duxbury, a town south of Boston — and the pharmacy, about a mile (1.6 km) from the house.</p><p>Prosecutors say the errands were a ruse to get her husband out of the house. They say Lindsay Clancy, a former labor and delivery nurse, acted intentionally and is criminally responsible for the deaths of children Cora, 5; Dawson, 3; and Callan, 8 months.</p><p>Her lawyers don't dispute that she killed the children, but they say she had bipolar disorder and her condition worsened while she was on antidepressants prescribed after the birth of her third child. She believed a voice was telling her to “kill the children so you can kill yourself,” according to her lawyers.</p><p>Lindsay Clancy remains paralyzed from the waist down after using multiple methods to try to end her life that night.</p><p>If convicted of murder, she faces life in prison without parole. If found not guilty due to a lack of criminal responsibility, she would be committed to a state mental health facility.</p><p>___ Associated Press writer Jennifer Peltz contributed from New York.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/6F5TOEB37MJTNCUALLPAE2N4KA.jpg?auth=2dae01a2306083ec4e84c8f719f0e6c67a4d0d8ce28e85bf7851da80d16a0970&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A police barricade stands outside the former home of Lindsay Clancy in Duxbury, Mass., on Friday, July 31, 2026. (AP Photo/Rodrique Ngowi)]]></media:description><media:credit role="author" scheme="urn:ebu">Rodrique Ngowi</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/IH5LRPOXWYGCEAE5UAWSVIJWUI.jpg?auth=fff0c1d6d93f3a3a79287f50ba6046c7c8b9f8d62638461a38f31422daed8942&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Defendant Lindsay Clancy listens during her murder trial at Plymouth Superior Court in Plymouth, Mass., on Thursday, July 30, 2026. (CJ Gunther/The Boston Herald via AP, Pool)]]></media:description><media:credit role="author" scheme="urn:ebu">CJ Gunther</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/NL5YQHA45QZ6NS7TYY2DT2WTYE.jpg?auth=143679138c7198979a9866f2364956f6c77ca36c50354ec1f54d96714d190508&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Duxbury fire department Capt. PJ Hussey points to photograph as he testifies during the murder trial for Lindsay Clancy at Plymouth Superior Court in Plymouth, Mass., on Thursday, July 30, 2026. (CJ Gunther/The Boston Herald via AP, Pool)]]></media:description><media:credit role="author" scheme="urn:ebu">CJ Gunther</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/YVYL2Z4IXKKDXQNZ6GHMIKQH6U.jpg?auth=fbd4c3735399a5901b09348522dc1b1747b1e4985013f5aafad1d527fd86ed64&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Kevin Reddington, defense attorney gestures as he cross-examines a witness during the murder trial for Lindsay Clancy at Plymouth Superior Court in Plymouth, Mass., on Thursday, July 30, 2026. (CJ Gunther/The Boston Herald via AP, Pool)]]></media:description><media:credit role="author" scheme="urn:ebu">CJ Gunther</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/MCFVCVOFBW27TCY3NGNIOOAEI4.jpg?auth=6fe449db2ec91bee775082ad02a82f1dc3cd00936fc9d1d84e04b1db2b6947fd&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Defendant Lindsay Clancy awaits the start of proceedings during her murder trial at Plymouth Superior Court in Plymouth, Mass., on Thursday, July 30, 2026. (CJ Gunther/The Boston Herald via AP, Pool) CORRECTION: Source is The Boston Herald, not The Boston Globe.]]></media:description><media:credit role="author" scheme="urn:ebu">CJ Gunther</media:credit></media:content></item><item><title><![CDATA[Últimas actualizaciones del analista de Cuba de Local 10, Dr. Andy Gomez]]></title><link>https://www.local10.com/espanol/2026/07/30/ultimas-actualizaciones-del-analista-de-cuba-de-local-10-dr-andy-gomez/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/30/ultimas-actualizaciones-del-analista-de-cuba-de-local-10-dr-andy-gomez/</guid><dc:creator><![CDATA[Andy Gomez]]></dc:creator><description><![CDATA[El primer ministro de Cuba, Manuel Marrero, anunció esta semana que Cuba está creando su primer banco privado bajo el Banco Central de Cuba, que es administrado por el gobierno cubano y cuyo presidente forma parte del Consejo de Ministros del gobierno.]]></description><pubDate>Thu, 30 Jul 2026 14:06:07 +0000</pubDate><content:encoded><![CDATA[<p><b>31 de julio:</b> Cuba dice que considerará permitir que los exiliados cubanos visiten la isla e inviertan en Cuba</p><p>El gobierno cubano anunció ayer, al cierre de la reunión anual de la Asamblea Nacional, que está considerando permitir que los exiliados cubanos visiten la isla, permanezcan el tiempo que deseen e inviertan en Cuba.</p><p>Sin embargo, los exiliados cubanos con ciudadanía estadounidense aún enfrentan algunas restricciones impuestas por el Departamento del Tesoro de Estados Unidos.</p><p><b>30 de julio: Cuba crea su primer banco privado bajo el Banco Central de Cuba, dice el primer ministro</b></p><p>El primer ministro de Cuba, Manuel Marrero, anunció esta semana que Cuba está creando su primer banco privado bajo el Banco Central de Cuba, que es administrado por el gobierno cubano y cuyo presidente forma parte del Consejo de Ministros del gobierno.</p><p>¿Por qué querría un inversionista extranjero invertir en un sistema así, sin protección para su dinero?</p><p><b>Actualización del 29 de julio: Cinco destacados economistas en Cuba publican informe titulado “Una propuesta para transformar la economía cubana”</b></p><p>Cinco destacados economistas en Cuba acaban de publicar un informe titulado “Una propuesta para transformar la economía cubana”. El documento presenta un diagnóstico estructural de la actual crisis económica que enfrenta el país y propone, como objetivo estratégico, la creación de una economía social de mercado sustentada por un Estado democrático regido por el Estado de derecho.</p><p>Aunque el informe es positivo, el problema que observo es la creación de un Estado democrático. Debemos recordar que Cuba no tenía una democracia antes del inicio de la Revolución Cubana en 1959. La transición de un Estado totalitario que ha tenido una economía centralizada durante casi 68 años podría tomar tiempo. Un tiempo que Cuba y su población no tienen debido a la actual crisis económica.</p><p><b>Actualización del 27 de julio: 73 años del inicio de la Revolución Cubana</b></p><p>Ayer se conmemoró el 73 aniversario desde que Fidel Castro, Raúl Castro y su grupo de rebeldes atacaron el Cuartel Moncada en Santiago de Cuba. El 26 de julio de 1953 es considerado el inicio de la Revolución Cubana.</p><p>Al igual que en el poema de Robert Frost, “El camino no tomado”, la Revolución Cubana tomó un rumbo que destruyó al país y “nunca miró atrás”. Hoy, Cuba se encuentra al final de lo que Fidel llamó sus días de gloria.</p><p><b>Actualización del 24 de julio: La Administración Trump anuncia una serie de nuevas sanciones contra Cuba</b></p><p>El jueves, la Administración Trump anunció una serie de nuevas sanciones contra Cuba dirigidas al conglomerado militar del gobierno, GAESA. Sin embargo, esta vez también incluye a empresas como Coral S.A., que asumieron operaciones de algunos sectores de GAESA para evitar las sanciones de Estados Unidos y mantener en funcionamiento las operaciones de importación en Cuba.</p><p>La pregunta que muchos académicos que seguimos a Cuba nos hacemos es si la estrategia de Estados Unidos en adelante es obligar a Cuba a vender eventualmente algunos de los activos de GAESA a Estados Unidos.</p><p><b>Actualización del 23 de julio: Estados Unidos continúa enviando señales contradictorias sobre lo que hará con Cuba</b></p><p>El pasado lunes, el Departamento de Estado de Estados Unidos emitió un informe de 100 páginas titulado “Cuba: La capital del comunismo del siglo XXI”, en el que expone por qué Cuba representa una amenaza para la seguridad nacional no solo de Estados Unidos, sino del mundo entero. El gobierno cubano reaccionó de inmediato y no solo criticó el informe, sino que acusó al secretario de Estado, Marco Rubio, de amenazar a la isla.</p><p>El miércoles, durante una conferencia de prensa en Filipinas, Rubio, al ser consultado por un periodista sobre cuál era el plan de Estados Unidos para Cuba, utilizó un tono mucho más diplomático y dijo que Estados Unidos sigue dispuesto a negociar con Cuba.</p><p>Washington continúa enviando señales contradictorias sobre lo que hará con Cuba. Lo que sí sabemos es que la estrategia utilizada en Venezuela no produjo un cambio de régimen.</p><p><b>Actualización del 21 de julio: Llegará a Cuba la primera ayuda humanitaria desde Estados Unidos</b></p><p>Hoy llegará a Cuba la primera ayuda humanitaria como parte del ofrecimiento del secretario de Estado, Marco Rubio, para ayudar al pueblo cubano mientras enfrenta la peor situación económica desde principios de la década de 1990. El cargamento de hoy incluye 700 kits de higiene y 700 paquetes de alimentos que serán distribuidos directamente al pueblo cubano por Catholic Relief Services Caritas Cuba y otras organizaciones religiosas.</p><p>El secretario Rubio quiere dejar claro al pueblo cubano que Estados Unidos lo respalda y está dispuesto a seguir ayudándolo como parte del compromiso de $100 millones USD en ayuda humanitaria.</p><p><b>Actualización del 20 de julio: Cuba libera al artista Luis Manuel Otero Alcántara</b></p><p>El pasado sábado, Cuba liberó al artista y líder opositor Luis Manuel Otero Alcántara tras cumplir cinco años en prisión. Otero Alcántara fue uno de los líderes del Movimiento San Isidro, que impulsó grandes protestas en toda la isla hace cinco años.</p><p>Al llegar a Miami, Otero Alcántara agradeció a la comunidad cubanoamericana por su apoyo y pidió a Cuba liberar a todos los presos políticos.</p><p><b>Actualización del 16 de julio: Departamento de Defensa de Estados Unidos paga $3 millones USD a personal afectado por el Síndrome de La Habana</b></p><p>El Departamento de Defensa de Estados Unidos ha pagado $3 millones USD en compensación al personal estadounidense afectado por la misteriosa condición conocida como Síndrome de La Habana, realizando el primer pago bajo la Ley de La Habana de 2021.</p><p>El Síndrome de La Habana apareció por primera vez en 2016, cuando diplomáticos y oficiales de inteligencia estadounidenses en La Habana, Cuba, reportaron síntomas inusuales, entre ellos intensa presión en la cabeza, mareos, náuseas, alteraciones auditivas y problemas de memoria.</p><p><b>Actualización del 14 de julio: Nuevas sanciones de Estados Unidos aumentan la presión sobre la economía controlada por los militares en Cuba</b></p><p>El lunes, Estados Unidos impuso nuevas sanciones dirigidas a empresas controladas por GAESA, el conglomerado económico militar de Cuba, así como a algunas de las brigadas militares responsables de reprimir protestas como las que vimos recientemente.</p><p>¿Cuánto tiempo más podrá resistir el gobierno cubano? Continúa llegando información a funcionarios estadounidenses que indica que hay sectores dentro del gobierno cubano cada vez más preocupados por cuánto tiempo más podrán sobrevivir sin negociar con el gobierno de Estados Unidos antes de enfrentar un colapso total de su sistema.</p><p><b>Actualización del 10 de julio: ¿Tiene el nieto de Raúl Castro plena autoridad para negociar por el gobierno cubano?</b></p><p>Como esperaba, parece haber una pequeña grieta dentro del círculo más cercano del gobierno cubano. Algunos han criticado a Raulito, el nieto de Raúl Castro, por ofrecer negociar directamente con el presidente Trump. La crítica se centra en si realmente tiene plena autoridad para negociar en nombre del gobierno cubano o si solo negocia en representación de la familia Castro.</p><p>Ayer, el Partido Comunista de Cuba (PCC) respaldó los esfuerzos de Raulito, pero la cúpula militar ha permanecido en silencio.</p><p><b>Actualización del 8 de julio: Las Naciones Unidas no tienen derecho legal para levantar el embargo de Estados Unidos a Cuba</b></p><p>Cada año, Cuba argumenta ante las Naciones Unidas que el embargo económico de Estados Unidos es la causa de sus problemas económicos. Cada año, Cuba pierde más apoyo para ese argumento. Las Naciones Unidas no tienen un derecho legítimo ni legal para levantar el embargo. Solo el Congreso de Estados Unidos puede hacerlo.</p><p>La maquinaria de propaganda del gobierno cubano ha fracasado. La mayoría de los cubanos en la isla, incluidos economistas cubanos, responsabilizan al gobierno cubano por las actuales malas condiciones económicas.</p><p><b>Actualización del 6 de julio: Nieto de Raúl Castro dice que Cuba está dispuesta a negociar con Estados Unidos</b></p><p>Reuters informó esta mañana que Raulito, nieto de Raúl Castro y conocido como “El Cangrejo”, anunció que Cuba está dispuesta a negociar con Estados Unidos. La pregunta que debemos hacernos es si Raulito negocia en nombre de la familia Castro o del gobierno cubano.</p><p>Sabemos que Cuba ha estado vendiendo algunos de sus activos, incluidos algunos pertenecientes al conglomerado económico militar GAESA, durante las últimas semanas. El intento de Cuba por atraer inversión extranjera no ha despertado mucho interés debido al temor de perder el dinero invertido.</p><p><b>Actualización del 2 de julio: La cultura del miedo en Cuba complica una transición democrática</b></p><p>Cuando hablamos de Cuba, normalmente nos concentramos en su sistema político y económico centralizado. Sin embargo, no reconocemos que las personas que han vivido bajo regímenes totalitarios han tenido que sobrevivir dentro de una cultura del miedo. Ese sistema de gobierno crea un conjunto psicológico de actitudes y valores que ayudan a definir el comportamiento diario para alinear los deseos y necesidades de la población con las restricciones impuestas por el gobierno.</p><p>Romper esos comportamientos podría requerir años de preparación y cambio psicológico. Por lo tanto, la transición de un Estado totalitario hacia alguna forma de gobierno democrático podría tomar tiempo.</p><p><b>Las actualizaciones de junio del Dr. Andy S. Gomez pueden consultarse </b><a href="https://www.local10.com/news/world/2026/06/01/looking-to-the-future-should-cuban-americans-invest-in-cuba/" target="_blank" rel="noreferrer" title="https://www.local10.com/news/world/2026/06/01/looking-to-the-future-should-cuban-americans-invest-in-cuba/"><b>haciendo clic aquí</b></a><b>.</b></p><p><i>El Dr. Andy S. Gomez es el analista de Cuba de Local 10. Gomez es considerado uno de los principales expertos sobre Cuba. Trabajó en educación superior durante 32 años antes de retirarse de la Universidad de Miami en 2012.</i></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/5NDDUTEZ4FVQXEQYTAXMVGREDM.jpg?auth=3d75ab1a2a1bd37503700698408e35d51aa788e9f7193ef47d03e625fcbc5a8d&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Un coche antiguo pasa frente al Hotel Meliá Habana en La Habana, Cuba, el martes 21 de julio de 2026. (AP Foto/Ramón Espinosa)]]></media:description><media:credit role="author" scheme="urn:ebu">Ramon Espinosa</media:credit></media:content></item><item><title><![CDATA[Pembroke Pines dad said baby choked on formula, but injuries showed ‘violent shaking,’ cops say]]></title><link>https://www.local10.com/news/local/2026/07/31/pembroke-pines-dad-said-baby-choked-on-formula-but-injuries-showed-violent-shaking-cops-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/pembroke-pines-dad-said-baby-choked-on-formula-but-injuries-showed-violent-shaking-cops-say/</guid><dc:creator><![CDATA[Chris Gothner]]></dc:creator><description><![CDATA[A Pembroke Pines man is facing two felony charges after police said his baby daughter was left with lasting injuries from “violent shaking.”]]></description><pubDate>Fri, 31 Jul 2026 15:29:41 +0000</pubDate><content:encoded><![CDATA[<p>A Pembroke Pines man is facing two felony charges after police said his baby daughter was left with lasting injuries from “violent shaking.”</p><p><a href="https://www.local10.com/espanol/2026/07/31/acusan-a-padre-de-pembroke-pines-de-sacudir-violentamente-a-su-bebe-tras-afirmar-que-se-atraganto-con-formula-dice-la-policia/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/acusan-a-padre-de-pembroke-pines-de-sacudir-violentamente-a-su-bebe-tras-afirmar-que-se-atraganto-con-formula-dice-la-policia/">Leer en español</a></p><p>Pembroke Pines police said Antonio Lee Rogers, 27, claimed the girl had choked on formula.</p><p>According to an arrest warrant authored on July 22, Rogers called 911 on Oct. 10, 2025 to report the “choking,” saying that the 4-month-old “was not breathing and her mouth was turning blue.”</p><p>Medics took the girl to Memorial Hospital Miramar in critical condition, the warrant states. Police said she was “lifeless” upon arriving at the emergency room but doctors were able to intubate and revive her.</p><p>According to the warrant, she was later taken to Joe DiMaggio Children’s Hospital and doctors determined that the girl’s injuries, which included a traumatic brain injury with a brain bleed, were not consistent with Rogers’ claim that she choked on formula.</p><p>Authorities said medical imaging showed that she older brain bleed injuries that indicated a prior incident of shaking.</p><p>Now under the care of her grandmother, the girl still requires “extensive medical treatment due to her injuries,” including “home health nursing,” according to police.</p><p>Records show police took Rogers into custody on Wednesday on charges of aggravated child abuse and child neglect with great bodily harm.</p><p>As of Friday, he was being held without bond in the Broward Sheriff’s Office’s Paul Rein Detention Facility in Pompano Beach.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/BZL6FAYRCFDHLKDQQXUZMMQ2II.jpg?auth=a0ef0b4fb217f423f3f2a62900e785bdead6095bc99cb8a7ee32f9836dde1b11&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Antonio Rogers]]></media:description></media:content></item><item><title><![CDATA[Acusan a padre de Pembroke Pines de sacudir violentamente a su bebé tras afirmar que se atragantó con fórmula, dice la Policía]]></title><link>https://www.local10.com/espanol/2026/07/31/acusan-a-padre-de-pembroke-pines-de-sacudir-violentamente-a-su-bebe-tras-afirmar-que-se-atraganto-con-formula-dice-la-policia/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/acusan-a-padre-de-pembroke-pines-de-sacudir-violentamente-a-su-bebe-tras-afirmar-que-se-atraganto-con-formula-dice-la-policia/</guid><dc:creator><![CDATA[Chris Gothner]]></dc:creator><description><![CDATA[Un hombre de Pembroke Pines enfrenta dos cargos graves después de que la Policía informara que su hija de 4 meses sufrió lesiones permanentes tras ser sacudida violentamente.]]></description><pubDate>Fri, 31 Jul 2026 15:33:48 +0000</pubDate><content:encoded><![CDATA[<p>Un hombre de Pembroke Pines enfrenta dos cargos graves después de que la Policía informara que su hija de 4 meses sufrió lesiones permanentes tras ser sacudida violentamente.</p><p>La Policía de Pembroke Pines informó que Antonio Lee Rogers, de 27 años, afirmó que la niña se había atragantado con fórmula.</p><p>Según una orden de arresto redactada el 22 de julio, Rogers llamó al 911 el 10 de octubre de 2025 para reportar que la bebé se estaba “atragantando”, diciendo que la menor de 4 meses “no estaba respirando y que su boca se estaba poniendo azul”.</p><p>Los paramédicos trasladaron a la niña al Memorial Hospital Miramar en estado crítico, según la orden de arresto. La Policía indicó que la menor llegó “sin signos de vida” a la sala de emergencias, pero los médicos lograron intubarla y reanimarla.</p><p>De acuerdo con la orden de arresto, posteriormente fue trasladada al Hospital Infantil Joe DiMaggio, donde los médicos determinaron que las lesiones de la niña, que incluían una lesión cerebral traumática con una hemorragia cerebral, no eran compatibles con la versión de Rogers de que se había atragantado con fórmula.</p><p>Las autoridades informaron que los estudios médicos también revelaron hemorragias cerebrales antiguas que indicaban un incidente previo de sacudidas.</p><p>Ahora bajo el cuidado de su abuela, la niña aún requiere “tratamiento médico especializado debido a sus lesiones”, incluido “servicio de enfermería a domicilio”, según la Policía.</p><p>Los registros muestran que la Policía arrestó a Rogers el miércoles por cargos de abuso infantil agravado y negligencia infantil que causó lesiones corporales graves.</p><p>Hasta el viernes, permanecía detenido sin derecho a fianza en el Centro de Detención Paul Rein de la Oficina del Sheriff de Broward en Pompano Beach.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/BZL6FAYRCFDHLKDQQXUZMMQ2II.jpg?auth=a0ef0b4fb217f423f3f2a62900e785bdead6095bc99cb8a7ee32f9836dde1b11&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Antonio Rogers]]></media:description></media:content></item><item><title><![CDATA[Camp David, the president's rustic Maryland mountain retreat, through the years]]></title><link>https://www.local10.com/news/national/2026/07/31/camp-david-the-presidents-rustic-maryland-mountain-retreat-through-the-years/</link><guid isPermaLink="true">https://www.local10.com/news/national/2026/07/31/camp-david-the-presidents-rustic-maryland-mountain-retreat-through-the-years/</guid><dc:creator><![CDATA[By The Associated Press, Associated Press]]></dc:creator><description><![CDATA[WASHINGTON (AP) — President Donald Trump left behind the gold-accented White House on Friday for a Cabinet meeting at rustic Camp David in Maryland's mountains.]]></description><pubDate>Fri, 31 Jul 2026 16:58:17 +0000</pubDate><content:encoded><![CDATA[<p>WASHINGTON (AP) — President Donald Trump left behind the gold-accented White House on Friday for a Cabinet meeting at rustic Camp David in Maryland's mountains.</p><p>The retreat, about an hour northwest of Washington, has been the backdrop for presidential summits and smaller-scale meetings since Franklin Roosevelt established it during World War II. Friday’s meeting isn’t Trump’s first at Camp David, but he has spent less time at the compound than other presidents, and typically spends weekends at his own properties, including Mar-a-Lago in Palm Beach, Florida, and his golf courses in New Jersey and Virginia.</p><p>Here's a look at some key dates and prominent visitors in the camp's history, assembled using archival material from The Associated Press, the National Archives, and presidential libraries.</p><p>1942 — Roosevelt established the camp as Shangri-La, a reference from James Hilton's novel “Lost Horizon.” Roosevelt had liked to relax on a presidential yacht, but the military and Secret Service started to worry about his safety on the open water during World War II. Roosevelt asked the National Park Service to identify sites within 100 miles of the White House that he could use for rest and picked what is now known as Camp David.</p><p>1943 — Roosevelt hosted Winston Churchill, who went on a fishing trip with the president and discussed the Normandy invasion at the retreat.</p><p>1953 — Dwight Eisenhower renamed the facility Camp David after his grandson and father.</p><p>1959 — Eisenhower hosted Nikita Khrushchev, the first time a Soviet leader had come to the United States.</p><p>1971 — Richard Nixon met with economic advisers amid inflation and a looming run on gold, leading eventually to an announcement ending the gold-backed dollar.</p><p>1973 — Nixon hosted his Soviet counterpart, Leonid Brezhnev.</p><p>1978 — Jimmy Carter hosted Egypt’s Anwar Sadat and Israel’s Menachem Begin, resulting in the Camp David Accords signed in 1979. Unlike at the White House, where journalists come and go, the news media are barred from Camp David, unless they are invited to cover an event, like Friday’s summit.</p><p>1984 — Ronald Reagan, the president who spent the most time at Camp David, hosted British Prime Minister Margaret Thatcher for the first time.</p><p>1990 — George H.W. Bush hosted Soviet leader Mikhail Gorbachev.</p><p>1992 — Camp David's only wedding occurred when Bush’s daughter, Dorothy, married Bobby Koch at Evergreen Chapel at the facility.</p><p>2000 — Bill Clinton hosted a summit with Israeli Prime Minister Ehud Barak and Palestinian Authority Chairman Yasser Arafat.</p><p>2001 — George W. Bush met with British Prime Minister Tony Blair early in the year and held post 9/11 meetings ahead of the Afghanistan invasion later in the year.</p><p>2003 — Bush hosted Russian President Vladimir Putin.</p><p>2012 — Barack Obama hosted the G8 Summit.</p><p>2015 — Obama hosted Persian Gulf nations for a summit.</p><p>2019 — Trump canceled a secret weekend meeting at Camp David with Taliban and Afghanistan leaders after a bombing in Kabul that killed 12 people, including an American soldier. ———</p><p>Associated Press journalist Darlene Superville contributed archival reporting for this timeline.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/S26ITQGMR2O7GTPTPBBLTRZMLM.jpg?auth=723a155a40cd0a84959f851c0b5f4ed4186113a037b94349a7047e296156a1d6&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - President John Kennedy and former President Dwight Eisenhower walks along a flagstone path, in perfect step at Camp David, atop of mountain near Thurmont, Maryland on April 22, 1961 after they flew there to discuss the Cuban crisis. In background is one of the lodges at the camp. (AP Photo, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Anonymous</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/TWDKNUWAZB7DTSLQU5CIQ3GD4E.jpg?auth=4444dd17f445e79b6446d7f4f4a78837ef3206ae10f03f4e24a1a717801dbb0a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - President George W. Bush, left, accompanied by Afghanistan's President Hamid Karzai, right, gestures during their joint press conference, Monday, Aug. 6, 2007, at Camp David, Md. (AP Photo/J. Scott Applewhite, File)]]></media:description><media:credit role="author" scheme="urn:ebu">J. Scott Applewhite</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/7CN2K52HP5AUA7UFNGLH3AM3TY.jpg?auth=6a563b264fc4f89a180b9cbc6cedb6a6afb4468108abe9556e6c81422a46ad73&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - From left, Italian Prime Minister Mario Monti, British Prime Minister David Cameron and German Chancellor Angela Merkel and French President Francois Hollande, right, listen as President Barack Obama shows off the grounds at the G-8 Summit Saturday, May 19, 2012 at Camp David, Md. (AP Photo/Charles Dharapak, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Charles Dharapak</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/HYNQ7RCY7H44EI57MWEHNQQUUA.jpg?auth=c1621db5892ad3a73524b7a96a4e737a7391e1344d367540f81bf6600ae6bca7&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - In this July 1981 file photo released by The White House, U.S. President Ronald Reagan, left, and Vice President George Bush go horseback riding at Camp David, Md. (Michael Evans/The White House, via AP, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Michael Evans</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/PSCLSX6ZWMVFQVQ4JRUSPLMABI.jpg?auth=19f99f416e7cfd34e6f6a49ed537ebc0308340adc7ee7fe6827d14fe4c6a3b3a&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - President Bill Clinton, Israeli Prime Minister Ehud Barak, left, and Palestinian leader Yasser Arafat, right, walk on the grounds of Camp David, Md., Tuesday July 11, 2000, at the start of the Mideast summit. (AP Photo/Ron Edmonds, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Ron Edmonds</media:credit></media:content></item><item><title><![CDATA[Departamento Penitenciario de Florida amplía incentivos de contratación para oficiales penitenciarios]]></title><link>https://www.local10.com/espanol/2026/07/31/departamento-de-correcciones-de-florida-amplia-incentivos-de-contratacion-para-oficiales-penitenciarios/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/departamento-de-correcciones-de-florida-amplia-incentivos-de-contratacion-para-oficiales-penitenciarios/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[El Departamento Penitenciario de Florida está ampliando sus incentivos de reclutamiento al ofrecer un bono de contratación de $1,000 USD a oficiales penitenciarios elegibles en 13 instituciones correccionales de todo el estado.]]></description><pubDate>Fri, 31 Jul 2026 15:22:50 +0000</pubDate><content:encoded><![CDATA[<p>El Departamento Penitenciario de Florida está ampliando sus incentivos de reclutamiento al ofrecer un bono de contratación de $1,000 USD a oficiales penitenciarios elegibles en 13 instituciones correccionales de todo el estado.</p><p>Según el departamento, los nuevos oficiales penitenciarios elegibles en instituciones seleccionadas también podrían calificar para un bono de retención existente de $5,000 USD, lo que eleva el total de incentivos disponibles hasta $6,000 USD.</p><p>Las instituciones con un bono de $6,000 USD incluyen:</p><ul><li>Apalachee CI (Sneads)</li><li>Florida State Prison (Raiford)</li><li>Franklin CI (Carrabelle)</li><li>Gulf CI (Wewahitchka)</li><li>Hamilton CI (Jasper)</li><li>Jackson CI (Malone)</li><li>Liberty CI (Bristol)</li><li>Northwest Florida Reception Center (Chipley)</li><li>Okeechobee CI (Okeechobee)</li><li>Santa Rosa CI (Milton)</li><li>Taylor CI (Perry)</li></ul><p>El departamento informó que los oficiales serán elegibles para recibir los bonos después de obtener la certificación de la Comisión de Normas y Capacitación en Justicia Penal de Florida.</p><p>“El Departamento Penitenciario de Florida está comprometido con invertir en los hombres y mujeres que deciden servir y apoyar la misión de seguridad pública de Florida”, dijo en un comunicado Hope Gartman, subsecretaria adjunta de Instituciones.</p><p>Gartman agregó que una carrera en el sistema correccional ofrece un salario competitivo, beneficios para empleados, oportunidades de ascenso y la posibilidad de generar un impacto significativo en la seguridad pública.</p><p>Según el Departamento de Correcciones de Florida (FDC), los oficiales penitenciarios recién contratados reciben un salario inicial de $22 USD por hora y cuentan con capacitación remunerada, beneficios de jubilación por trabajo de alto riesgo, beneficios para empleados del estado de Florida y oportunidades de desarrollo profesional.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/EV63O3REXNFJLFIP56FK53NJE4.jpg?auth=c2eec1c2866b78817bcef89ffb22a9759bebd00d554a306699db897e8f4603db&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Florida Department of Corrections expands hiring incentives for correctional officers]]></title><link>https://www.local10.com/news/florida/2026/07/31/florida-department-of-corrections-expands-hiring-incentives-for-correctional-officers/</link><guid isPermaLink="true">https://www.local10.com/news/florida/2026/07/31/florida-department-of-corrections-expands-hiring-incentives-for-correctional-officers/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[The Florida Department of Corrections is expanding its recruitment incentives by offering a $1,000 hiring bonus to eligible correctional officers at 13 correctional institutions across the state.]]></description><pubDate>Fri, 31 Jul 2026 14:22:04 +0000</pubDate><content:encoded><![CDATA[<p>The Florida Department of Corrections is expanding its recruitment incentives by offering a $1,000 hiring bonus to eligible correctional officers at 13 correctional institutions across the state.</p><p><a href="https://www.local10.com/espanol/2026/07/31/departamento-de-correcciones-de-florida-amplia-incentivos-de-contratacion-para-oficiales-penitenciarios/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/departamento-de-correcciones-de-florida-amplia-incentivos-de-contratacion-para-oficiales-penitenciarios/">Leer en español</a></p><p>According to the department, eligible new correctional officers at select institutions may also qualify for an existing $5,000 retention bonus, bringing the total available incentives to as much as $6,000. </p><p>Institutions with a $6,000 bonus include:</p><ul><li>Apalachee CI (Sneads)</li><li>Florida State Prison (Raiford)</li><li>Franklin CI (Carabelle)</li><li>Gulf CI (Wewahitchka)</li><li>Hamilton CI (Jasper)</li><li>Jackson CI (Malone)</li><li>Liberty CI (Bristol)</li><li>Northwest Florida Reception Center (Chipley)</li><li>Okeechobee CI (Okeechobee)</li><li>Santa Rosa CI (Milton)</li><li>Taylor CI (Perry)</li></ul><p>The department said officers become eligible for the bonuses after receiving certification through the Florida Criminal Justice Standards and Training Commission.</p><p>“The Florida Department of Corrections is committed to investing in the men and women who choose to serve and support Florida’s public safety mission,” Assistant Deputy Secretary of Institutions Hope Gartman said in a statement. </p><p>Gartmen added that a career in corrections offers competitive pay, employee benefits, opportunities for advancement, and the chance to make a meaningful impact on public safety. </p><p>According to the FDC, newly hired correctional officers earn a starting salary of $22 per hour and receive paid training, high-risk retirement benefits, State of Florida employee benefits, and opportunities for career advancement. </p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/EV63O3REXNFJLFIP56FK53NJE4.jpg?auth=c2eec1c2866b78817bcef89ffb22a9759bebd00d554a306699db897e8f4603db&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Cancer survivor’s nonprofit receives boost to help more patients through treatment]]></title><link>https://www.local10.com/community/2026/07/31/cancer-survivors-nonprofit-receives-boost-to-help-more-patients-through-treatment/</link><guid isPermaLink="true">https://www.local10.com/community/2026/07/31/cancer-survivors-nonprofit-receives-boost-to-help-more-patients-through-treatment/</guid><dc:creator><![CDATA[Mayte Padron]]></dc:creator><description><![CDATA[A Miami-Dade cancer survivor is continuing her mission to support patients facing one of life’s toughest battles, and thanks to a partnership sparked by Good News South Florida, her nonprofit has received a helping hand to continue its work.]]></description><pubDate>Fri, 31 Jul 2026 15:02:18 +0000</pubDate><content:encoded><![CDATA[<p>A Miami-Dade cancer survivor is continuing her mission to support patients facing one of life’s toughest battles, and thanks to a partnership sparked by Good News South Florida, her nonprofit has received a helping hand to continue its work.</p><p><a href="https://www.local10.com/espanol/2026/07/31/organizacion-sin-fines-de-lucro-de-sobreviviente-de-cancer-recibe-apoyo-para-ayudar-a-mas-pacientes-durante-su-tratamiento/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/organizacion-sin-fines-de-lucro-de-sobreviviente-de-cancer-recibe-apoyo-para-ayudar-a-mas-pacientes-durante-su-tratamiento/">Leer en español</a></p><p>Rosemary Carrera, founder of <a href="https://www.305pinkpack.org/" target="_self" rel="" title="https://www.305pinkpack.org/">305 Pink Pack</a>, created the nonprofit after her own battle with Stage 2 breast cancer. Following months of chemotherapy and radiation, she said she wanted to ensure others wouldn’t have to navigate treatment alone.</p><p>“Unless you’ve been through a cancer diagnosis, you have no idea what it’s like,” Carrera said.</p><p>A licensed optometrist, wife and mother, Carrera founded 305 Pink Pack in 2020 to help bridge the gap between a cancer diagnosis and everyday life. The organization connects patients with essential resources, including transportation to treatments, childcare assistance and practical support during recovery.</p><p>“We will connect you to what you need and what can help you during this time,” Carrera said.</p><p>In addition to support services, the nonprofit provides cancer patients with “chemo kits” filled with items designed to ease the side effects of treatment, including lip balm, personal care products and other comfort items.</p><p>“We are always in need of more chemo kits,” Carrera said. “We just went through our last batch.”</p><p>That need prompted a surprise partnership.</p><p>During a recent visit, Local 10 Community Relations Director Mayte Padron introduced Carrera to Renee De Bien, manager of <a href="https://www.walgreensspecialtyrx.com/" target="_self" rel="" title="https://www.walgreensspecialtyrx.com/">Walgreens Specialty Pharmacy</a>, a division that helps patients manage chronic and complex medical conditions.</p><p>“We just hold their hand throughout their journey, at least so they are just able to focus on healing,” De Bien said.</p><p>Walgreens Specialty Pharmacy donated enough supplies to replenish the nonprofit’s chemo kits, providing every item on Carrera’s wish list. The donation included essentials such as cough drops, moisturizing products, socks and other comfort items frequently requested by patients undergoing treatment.</p><p>The surprise didn’t end there.</p><p>On behalf of Local 10 viewers and Good News South Florida, Padron also presented Carrera with a $500 donation to support the organization’s mission.</p><p>Carrera said community support allows 305 Pink Pack to continue serving cancer patients when they need it most, helping them focus less on daily challenges and more on healing.</p><p>The nonprofit is seeking additional volunteers and donations. Community members can support the organization by hosting fundraisers, volunteering to drive cancer patients to treatment appointments or donating supplies for future chemo kits.</p><ul><li><i><b>To donate:</b></i>&nbsp;If you’d like to make a monetary donation toward a Good News South Florida story or project,&nbsp;<a href="https://miami.fcsuite.com/erp/donate/create/fund?funit_id=3700" target="_self" rel="" title="https://miami.fcsuite.com/erp/donate/create/fund?funit_id=3700">click here.</a>&nbsp;Local 10 has established the Local 10 Fund with The Miami Foundation and 100% of your donation will go toward the cause you designate in the “additional information” box.</li><li><i><b>To volunteer or submit a story idea:</b></i>&nbsp;If you’d like to volunteer for a Good News South Florida project or would like to submit a story for consideration, email&nbsp;<a href="mailto:goodnews@local10.com">goodnews@local10.com</a>.</li></ul><p>Good News South Florida airs Fridays on the Local 10 morning news at 10 a.m. It will encore Fridays at 3:30 p.m. and Sunday mornings, beginning at 6 a.m.</p>]]></content:encoded></item><item><title><![CDATA[Organización sin fines de lucro de sobreviviente de cáncer recibe apoyo para ayudar a más pacientes durante su tratamiento]]></title><link>https://www.local10.com/espanol/2026/07/31/organizacion-sin-fines-de-lucro-de-sobreviviente-de-cancer-recibe-apoyo-para-ayudar-a-mas-pacientes-durante-su-tratamiento/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/organizacion-sin-fines-de-lucro-de-sobreviviente-de-cancer-recibe-apoyo-para-ayudar-a-mas-pacientes-durante-su-tratamiento/</guid><dc:creator><![CDATA[Mayte Padron]]></dc:creator><description><![CDATA[Una sobreviviente de cáncer de Miami-Dade continúa con su misión de apoyar a pacientes que enfrentan una de las batallas más difíciles de la vida y, gracias a una alianza impulsada por Good News South Florida, su organización sin fines de lucro ha recibido apoyo para continuar su labor.]]></description><pubDate>Fri, 31 Jul 2026 15:18:07 +0000</pubDate><content:encoded><![CDATA[<p>Una sobreviviente de cáncer de Miami-Dade continúa con su misión de apoyar a pacientes que enfrentan una de las batallas más difíciles de la vida y, gracias a una alianza impulsada por Good News South Florida, su organización sin fines de lucro ha recibido apoyo para continuar su labor.</p><p>Rosemary Carrera, fundadora de <a href="https://www.305pinkpack.org/" target="_blank" rel="noreferrer" title="https://www.305pinkpack.org/">305 Pink Pack</a>, creó la organización sin fines de lucro después de su propia lucha contra un cáncer de mama en etapa 2. Tras meses de quimioterapia y radioterapia, dijo que quería asegurarse de que otras personas no tuvieran que enfrentar solas el tratamiento.</p><p>“A menos que hayas pasado por un diagnóstico de cáncer, no tienes idea de cómo es”, dijo Carrera.</p><p>Carrera, optometrista con licencia, esposa y madre, fundó 305 Pink Pack en 2020 para ayudar a cerrar la brecha entre un diagnóstico de cáncer y la vida cotidiana. La organización conecta a los pacientes con recursos esenciales, incluido transporte a sus tratamientos, asistencia para el cuidado de niños y apoyo práctico durante la recuperación.</p><p>“Los conectaremos con lo que necesiten y con lo que pueda ayudarlos durante este proceso”, dijo Carrera.</p><p>Además de los servicios de apoyo, la organización entrega a los pacientes con cáncer “kits de quimioterapia” con artículos diseñados para aliviar los efectos secundarios del tratamiento, incluidos bálsamo labial, productos de cuidado personal y otros artículos de comodidad.</p><p>“Siempre necesitamos más kits de quimioterapia”, dijo Carrera. “Acabamos de entregar el último lote”.</p><p>Esa necesidad dio lugar a una alianza sorpresa.</p><p>Durante una visita reciente, la directora de Relaciones Comunitarias de Local 10, Mayte Padron, presentó a Carrera con Renee De Bien, gerente de <a href="https://www.walgreensspecialtyrx.com/" target="_blank" rel="noreferrer" title="https://www.walgreensspecialtyrx.com/">Walgreens Specialty Pharmacy</a>, una división que ayuda a los pacientes a manejar enfermedades crónicas y afecciones médicas complejas.</p><p>“Los acompañamos durante todo su proceso para que puedan concentrarse únicamente en sanar”, dijo De Bien.</p><p>Walgreens Specialty Pharmacy donó suficientes suministros para reabastecer los kits de quimioterapia de la organización, proporcionando todos los artículos que figuraban en la lista de deseos de Carrera. La donación incluyó productos esenciales como pastillas para la tos, productos humectantes, calcetines y otros artículos de comodidad que con frecuencia solicitan los pacientes durante el tratamiento.</p><p>La sorpresa no terminó ahí.</p><p>En nombre de los televidentes de Local 10 y de Good News South Florida, Padron también entregó a Carrera una donación de $500 USD para apoyar la misión de la organización.</p><p>Carrera afirmó que el apoyo de la comunidad permite que 305 Pink Pack continúe ayudando a pacientes con cáncer cuando más lo necesitan, permitiéndoles concentrarse menos en los desafíos diarios y más en su recuperación.</p><p>La organización busca más voluntarios y donaciones. Los miembros de la comunidad pueden apoyar la organización organizando actividades de recaudación de fondos, ofreciéndose como voluntarios para transportar a pacientes con cáncer a sus citas médicas o donando suministros para futuros kits de quimioterapia.</p><ul><li><b>Para donar:</b> Si desea hacer una donación monetaria para una historia o proyecto de Good News South Florida, <a href="https://miami.fcsuite.com/erp/donate/create/fund?funit_id=3700" target="_blank" rel="noreferrer" title="https://miami.fcsuite.com/erp/donate/create/fund?funit_id=3700">haga clic aquí</a>. Local 10 ha creado el Fondo Local 10 con The Miami Foundation y el 100% de su donación se destinará a la causa que usted indique en el apartado de “información adicional”.</li><li><b>Para ser voluntario o enviar una propuesta de historia:</b> Si desea participar como voluntario en un proyecto de Good News South Florida o presentar una historia para su consideración, envíe un correo electrónico a <a href="goodnews@local10.com" target="_blank" rel="noreferrer" title="goodnews@local10.com">goodnews@local10.com</a>.</li></ul><p>Good News South Florida se transmite los viernes durante el noticiero matutino de Local 10 a las 10 a.m. También se retransmite los viernes a las 3:30 p.m. y los domingos por la mañana a partir de las 6 a.m.</p>]]></content:encoded></item><item><title><![CDATA[Broward Sheriff’s Office warns residents about resurfacing jury duty scams]]></title><link>https://www.local10.com/news/local/2026/07/31/broward-sheriffs-office-warns-residents-about-resurfacing-jury-duty-scams/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/broward-sheriffs-office-warns-residents-about-resurfacing-jury-duty-scams/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[The Broward Sheriff’s Office is warning residents to remain vigilant as a jury duty scam targeting the public has resurfaced.]]></description><pubDate>Fri, 31 Jul 2026 15:05:52 +0000</pubDate><content:encoded><![CDATA[<p>The Broward Sheriff’s Office is warning residents to remain vigilant as a jury duty scam targeting the public has resurfaced. </p><p><a href="https://www.local10.com/espanol/2026/07/31/oficina-del-sheriff-de-broward-advierte-a-residentes-sobre-el-resurgimiento-de-estafas-relacionadas-con-el-servicio-de-jurado/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/oficina-del-sheriff-de-broward-advierte-a-residentes-sobre-el-resurgimiento-de-estafas-relacionadas-con-el-servicio-de-jurado/">Leer en español</a></p><p>According to BSO, detectives are investigating a recent scam attempt in which a resident was contacted and falsely told they had missed federal jury duty and an arrest warrant had been issued. </p><p>Investigators said the scammer instructed the victim to deposit $15,000 into a kiosk as bail to avoid being arrested. The victim was also told to participate in a video conference with someone posing as a member of the Broward County judiciary. </p><p>BSO says the victim became suspicious of the activity and did not send any money nor provide personal information, ended the call and notified law enforcement. </p><p>The sheriff’s office is working with the Seventeenth Judicial Circuit and the Broward Clerk of Courts to remind residents that law enforcement agencies, the courts and the clerk’s office will never call to threaten anyone with arrest or demand payment to avoid jail.</p><p>Authorities say scammers often use high-pressure tactics, spoofed phone numbers and names of real government employees to make their schemes appear legitimate. </p><p>BSO is also urging residents to never send money, gift cards, or cryptocurrency after receiving an unsolicited phone call, text message or email. Officials also advise against sharing personal or financial information with unexpected callers and recommend verifying any requests by contacting the agency using an official phone number or website.</p><p>Anyone who believes they have been targeted by a scam is encouraged to contact local law enforcement. Residents living in Broward Sheriff’s Office jurisdictions can report suspicious activity through BSO’s non-emergency phone number at 954-764-HELP (4357).</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/XF6EG44FU4UPVH4MFSEROKWWDE.png?auth=27748f73f3972eec0788d9d1d0f8424d52047480f2cc20b261d26a60bccc1722&amp;smart=true&amp;width=1200&amp;height=900" type="image/png" height="900" width="1200"/></item><item><title><![CDATA[Oficina del Sheriff de Broward advierte a residentes sobre el resurgimiento de estafas relacionadas con el servicio de jurado]]></title><link>https://www.local10.com/espanol/2026/07/31/oficina-del-sheriff-de-broward-advierte-a-residentes-sobre-el-resurgimiento-de-estafas-relacionadas-con-el-servicio-de-jurado/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/oficina-del-sheriff-de-broward-advierte-a-residentes-sobre-el-resurgimiento-de-estafas-relacionadas-con-el-servicio-de-jurado/</guid><dc:creator><![CDATA[Juliana Lujan-Rodriguez, Local 10 Intern]]></dc:creator><description><![CDATA[La Oficina del Sheriff de Broward advierte a los residentes que permanezcan atentos ante el resurgimiento de una estafa relacionada con el servicio de jurado que está dirigida al público.]]></description><pubDate>Fri, 31 Jul 2026 15:13:01 +0000</pubDate><content:encoded><![CDATA[<p>La Oficina del Sheriff de Broward advierte a los residentes que permanezcan atentos ante el resurgimiento de una estafa relacionada con el servicio de jurado que está dirigida al público.</p><p>Según la BSO, los detectives investigan un intento reciente de estafa en el que un residente fue contactado y falsamente informado de que había faltado a un servicio de jurado federal y que se había emitido una orden de arresto en su contra.</p><p>Los investigadores informaron que el estafador instruyó a la víctima a depositar $15,000 USD en un quiosco como fianza para evitar ser arrestada. También le indicó que participara en una videoconferencia con una persona que se hacía pasar por un miembro del sistema judicial del condado Broward.</p><p>La BSO informó que la víctima sospechó de la situación y no envió dinero ni proporcionó información personal, puso fin a la llamada y notificó a las autoridades.</p><p>La Oficina del Sheriff trabaja junto con el Décimo Séptimo Circuito Judicial y la Secretaría de los Tribunales del condado Broward para recordar a los residentes que las agencias del orden público, los tribunales y la Secretaría nunca llamarán para amenazar a alguien con arrestarlo ni exigirán pagos para evitar la cárcel.</p><p>Las autoridades indicaron que los estafadores suelen utilizar tácticas de alta presión, números telefónicos falsificados y nombres de empleados reales del gobierno para hacer que sus fraudes parezcan legítimos.</p><p>La BSO también insta a los residentes a nunca enviar dinero, tarjetas de regalo o criptomonedas después de recibir una llamada telefónica, mensaje de texto o correo electrónico no solicitado. Además, recomienda no compartir información personal o financiera con personas que llamen de forma inesperada y verificar cualquier solicitud comunicándose directamente con la agencia mediante un número de teléfono o sitio web oficial.</p><p>Cualquier persona que crea haber sido víctima de una estafa debe comunicarse con las autoridades locales. Los residentes que viven en jurisdicciones de la Oficina del Sheriff de Broward pueden reportar actividades sospechosas llamando al número de no emergencias de la BSO, 954-764-HELP (4357).</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/XF6EG44FU4UPVH4MFSEROKWWDE.png?auth=27748f73f3972eec0788d9d1d0f8424d52047480f2cc20b261d26a60bccc1722&amp;smart=true&amp;width=1200&amp;height=900" type="image/png" height="900" width="1200"><media:description type="plain"><![CDATA[Scam Alert WPLG]]></media:description></media:content></item><item><title><![CDATA[Local 10 Editorial: Early voting begins next week; get out and vote!]]></title><link>https://www.local10.com/news/politics/2026/07/31/local-10-editorial-early-voting-begins-next-week-get-out-and-vote/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/local-10-editorial-early-voting-begins-next-week-get-out-and-vote/</guid><description><![CDATA[The election season officially begins next week.]]></description><pubDate>Fri, 31 Jul 2026 14:00:08 +0000</pubDate><content:encoded><![CDATA[<p>The election season officially begins next week.</p><p><a href="https://www.local10.com/espanol/2026/07/31/editorial-de-local-10-la-votacion-anticipada-comienza-la-proxima-semana-salga-y-vote/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/editorial-de-local-10-la-votacion-anticipada-comienza-la-proxima-semana-salga-y-vote/">Leer en español</a></p><p>Early voting for Florida’s Aug. 18 primary starts Monday in Miami-Dade and Monroe counties.</p><p>Broward County early voting begins Saturday, Aug. 8.</p><p>For specific hours and locations, check your county’s election website or view <a href="https://www.local10.com/news/politics/2026/03/18/voter-guide-here-is-how-to-prepare-for-floridas-primary-election/" target="_self" rel="" title="https://www.local10.com/news/politics/2026/03/18/voter-guide-here-is-how-to-prepare-for-floridas-primary-election/"><b>Local 10’s 2026 Voter Guide. </b></a></p><p>Voter turnout for recent primary elections has been dismal in South Florida. </p><p>Your vote is your voice. Don’t stay silent. Vote by mail, vote early or vote on Aug. 18. <i>Just make sure you vote</i>.</p><p><b>What is the deadline to drop off my vote-by-mail ballot?</b></p><p>Before 7 p.m., on Aug. 18. </p><p>In Miami-Dade, sign inside the red box <a href="https://www.miamidade.gov/elections/library/instructions/sign-your-ballot.pdf" rel="" title="https://www.miamidade.gov/elections/library/instructions/sign-your-ballot.pdf">on the back of the vote-by-mail envelope</a>. If you forgot to sign the envelope or the signature does not match, Florida law allows you to submit an affidavit to cure your vote-by-mail ballot. The affidavit must be completed and submitted to the Elections Department along with a copy of your identification by 5 p.m. on the second day after the election.</p><p>· <a href="https://www.miamidade.gov/elections/library/forms/vote-by-mail-ballot-signature-cure-affidavit-eng.pdf" rel="">Vote-by-Mail Ballot - Signature Cure Affidavit</a> (English)</p><p>· <a href="https://www.miamidade.gov/elections/library/forms/vote-by-mail-ballot-signature-cure-affidavit-spa-cre.pdf" rel="">Vote-by-Mail Ballot - Signature Cure Affidavit</a> (Español &amp; Kreyòl)</p><h3><b>Useful contacts</b></h3><ul><li>For more information on early voting in <b>Broward</b>, <a href="https://browardvotes.gov/voting-methods/early-voting-dates-hours-and-sites" target="_self" rel="" title="https://browardvotes.gov/voting-methods/early-voting-dates-hours-and-sites">click here</a> or call 954-357-7050</li><li>For more information on early voting in <b>Miami-Dade</b>, <a href="https://www.votemiamidade.gov/elections/voters/early-voting.page" target="_self" rel="" title="https://www.votemiamidade.gov/elections/voters/early-voting.page">click here</a> or call 305-499-8683</li><li>For more information on early voting in <b>Monroe</b>, <a href="https://www.votemonroeflkeys.gov/Voting/Three-Ways-to-Vote/Early-Voting" target="_self" rel="" title="https://www.votemonroeflkeys.gov/Voting/Three-Ways-to-Vote/Early-Voting">click here</a> or call 305-292-3416</li></ul>]]></content:encoded></item><item><title><![CDATA[Editorial de Local 10: La votación anticipada comienza la próxima semana; ¡salga y vote!]]></title><link>https://www.local10.com/espanol/2026/07/31/editorial-de-local-10-la-votacion-anticipada-comienza-la-proxima-semana-salga-y-vote/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/editorial-de-local-10-la-votacion-anticipada-comienza-la-proxima-semana-salga-y-vote/</guid><description><![CDATA[La temporada electoral comienza oficialmente la próxima semana.]]></description><pubDate>Fri, 31 Jul 2026 15:07:49 +0000</pubDate><content:encoded><![CDATA[<p>La temporada electoral comienza oficialmente la próxima semana.</p><p>La votación anticipada para las primarias de Florida del 18 de agosto comienza el lunes en los condados de Miami-Dade y Monroe.</p><p>La votación anticipada en el condado de Broward comienza el sábado 8 de agosto.</p><p>Para conocer los horarios y lugares específicos, consulte el sitio web electoral de su condado o vea <a href="https://www.local10.com/espanol/2026/03/19/guia-del-votante-asi-puede-prepararse-para-las-primarias-de-florida-del-18-de-agosto/" target="_self" rel="" title="https://www.local10.com/espanol/2026/03/19/guia-del-votante-asi-puede-prepararse-para-las-primarias-de-florida-del-18-de-agosto/"><b>la Guía del votante de Local 10 para 2026.</b></a></p><p>La participación electoral en las recientes elecciones primarias ha sido pésima en el sur de Florida.</p><p>Tu voto es tu voz. No te quedes callado. Vota por correo, vota anticipadamente o vota el 18 de agosto. <i>¡Lo importante es que votes</i> !</p><p><b>¿Cuál es la fecha límite para entregar mi boleta de voto por correo?</b></p><p>Antes de las 19:00 horas del 18 de agosto.</p><p>En Miami-Dade, firme dentro del recuadro rojo <a href="https://www.miamidade.gov/elections/library/instructions/sign-your-ballot.pdf" rel="" title="https://www.miamidade.gov/elections/library/instructions/sign-your-ballot.pdf">en el reverso del sobre de voto por correo</a> . Si olvidó firmar el sobre o la firma no coincide, la ley de Florida le permite presentar una declaración jurada para subsanar el error en su voto por correo. La declaración jurada debe completarse y presentarse al Departamento de Elecciones junto con una copia de su identificación antes de las 5 p. m. del segundo día después de las elecciones.</p><p>• <a href="https://www.miamidade.gov/elections/library/forms/vote-by-mail-ballot-signature-cure-affidavit-eng.pdf" rel="">Boleta de voto por correo - Declaración jurada para la subsanación de errores de firma</a> (inglés)</p><p>· <a href="https://www.miamidade.gov/elections/library/forms/vote-by-mail-ballot-signature-cure-affidavit-spa-cre.pdf" rel="">Boleta de Voto por Correo - Declaración Jurada de Cure con Firma</a> (Español y Kreyòl)</p><h3><b>Contactos útiles</b></h3><ul><li>Para obtener más información sobre la votación anticipada en&nbsp;<b>Broward</b>&nbsp;,&nbsp;<a href="https://browardvotes.gov/voting-methods/early-voting-dates-hours-and-sites" target="_self" rel="" title="https://browardvotes.gov/voting-methods/early-voting-dates-hours-and-sites">haga clic aquí</a>&nbsp;o llame al 954-357-7050.</li><li>Para obtener más información sobre la votación anticipada en&nbsp;<b>Miami-Dade</b>&nbsp;,&nbsp;<a href="https://www.votemiamidade.gov/elections/voters/early-voting.page" target="_self" rel="" title="https://www.votemiamidade.gov/elections/voters/early-voting.page">haga clic aquí</a>&nbsp;o llame al 305-499-8683.</li><li>Para obtener más información sobre la votación anticipada en&nbsp;<b>Monroe</b>&nbsp;,&nbsp;<a href="https://www.votemonroeflkeys.gov/Voting/Three-Ways-to-Vote/Early-Voting" target="_self" rel="" title="https://www.votemonroeflkeys.gov/Voting/Three-Ways-to-Vote/Early-Voting">haga clic aquí</a>&nbsp;o llame al 305-292-3416.</li></ul>]]></content:encoded></item><item><title><![CDATA[Policía de Miami divulga video de vigilancia tras arresto por caso de vandalismo en el Monumento de Bahía de Cochinos]]></title><link>https://www.local10.com/espanol/2026/07/31/policia-de-miami-divulga-video-de-vigilancia-tras-arresto-por-caso-de-vandalismo-en-el-monumento-de-bahia-de-cochinos/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/policia-de-miami-divulga-video-de-vigilancia-tras-arresto-por-caso-de-vandalismo-en-el-monumento-de-bahia-de-cochinos/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[La Policía de Miami divulgó el viernes un video de vigilancia que muestra el momento en que un hombre presuntamente vandalizó el histórico Monumento de Bahía de Cochinos en La Pequeña Habana, días después de su arresto.]]></description><pubDate>Fri, 31 Jul 2026 15:01:52 +0000</pubDate><content:encoded><![CDATA[<p>La Policía de Miami divulgó este viernes un video de vigilancia que muestra el momento en que un hombre presuntamente <a href="https://www.local10.com/espanol/2026/07/30/policia-hombre-enfrenta-cargo-grave-por-vandalizar-monumento-de-bahia-de-cochinos/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/30/policia-hombre-enfrenta-cargo-grave-por-vandalizar-monumento-de-bahia-de-cochinos/">vandalizó el histórico Monumento de Bahía de Cochinos en La Pequeña Habana</a>, días después de su arresto.</p><p>La Policía confirmó el miércoles el arresto de Jean Carlo Rojas, de 27 años, en relación con los daños al monumento ubicado en el 806 de la avenida 13 del suroeste.</p><p>Según los investigadores, un empleado del Departamento de Parques de la Ciudad de Miami reportó los daños después de ser notificado el domingo por la mañana de que el monumento había sido vandalizado.</p><p>Los detectives informaron que la parte dañada, descrita como el misil gris del monumento, ya había sido reparada tras un acto anterior de vandalismo. Las autoridades estimaron los nuevos daños en $1,000 USD.</p><p>Indicaron que el video de vigilancia muestra a un hombre con una camiseta blanca sin mangas, pantalones cortos negros y zapatos negros subiéndose sobre la parte del misil del monumento alrededor de las 9:18 p.m. del sábado, provocando que se rompiera.</p><p>Tras revisar las imágenes y buscar videos adicionales en la zona, los detectives informaron que identificaron al sospechoso por su vestimenta y sus tatuajes distintivos. Mientras recopilaba videos de vigilancia de un negocio cercano, el detective principal vio a Rojas de pie en la acera cerca del monumento y solicitó a los agentes que lo detuvieran.</p><p>Según el informe de arresto, Rojas renunció a sus derechos Miranda y aceptó hablar con los detectives. Una declaración que hizo durante la entrevista fue censurada en la versión pública del informe.</p><p>Rojas, identificado en el informe como trabajador de la construcción y en situación de calle, enfrenta un cargo grave de daños criminales contra un monumento o propiedad histórica.</p><p>Los registros de la cárcel muestran que ya se encontraba en libertad bajo fianza por un caso separado en el que enfrenta cargos por agresión contra un agente del orden público y resistencia a un agente sin violencia.</p><p>Hasta la mañana del viernes, Rojas permanecía detenido en el Centro Correccional Turner Guilford Knight con una fianza de $2,500 USD.</p>]]></content:encoded></item><item><title><![CDATA[Miami police release surveillance video after arrest in Bay of Pigs Monument vandalism case]]></title><link>https://www.local10.com/news/local/2026/07/31/miami-police-release-surveillance-video-after-arrest-in-bay-of-pigs-monument-vandalism-case/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/miami-police-release-surveillance-video-after-arrest-in-bay-of-pigs-monument-vandalism-case/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Miami police on Friday released surveillance video showing the moments a man allegedly vandalized the historic Bay of Pigs Monument in Little Havana, days after his arrest.]]></description><pubDate>Fri, 31 Jul 2026 14:43:24 +0000</pubDate><content:encoded><![CDATA[<p>Miami police on Friday released surveillance video showing the moments a man allegedly <a href="https://www.local10.com/news/local/2026/07/30/man-faces-felony-for-vandalizing-bay-of-pigs-memorial-police-say/" target="_self" rel="" title="https://www.local10.com/news/local/2026/07/30/man-faces-felony-for-vandalizing-bay-of-pigs-memorial-police-say/">vandalized the historic Bay of Pigs Monument in Little Havana</a>, days after his arrest.</p><p><a href="https://www.local10.com/espanol/2026/07/31/policia-de-miami-divulga-video-de-vigilancia-tras-arresto-por-caso-de-vandalismo-en-el-monumento-de-bahia-de-cochinos/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/policia-de-miami-divulga-video-de-vigilancia-tras-arresto-por-caso-de-vandalismo-en-el-monumento-de-bahia-de-cochinos/">Leer en español</a></p><p>Police confirmed the arrest of 27-year-old Jean Carlo Rojas on Wednesday in connection with the damage to the monument at 806 SW 13th Ave.</p><p>According to investigators, a city of Miami parks employee reported the damage after being notified Sunday morning that the monument had been vandalized. </p><p>Detectives said damaged portion, described as the monument’s gray missile, had previously been repaired following an earlier act of vandalism. Officials estimated the new damage at $1,000.</p><p>They said surveillance video shows a man wearing a white tank top, black shorts and black shoes stepping on the missile portion of the monument around 9:18 p.m. Saturday, causing it to break.</p><p>After reviewing the footage and canvassing the area for additional video, detectives said they identified the suspect by his clothing and distinctive tattoos. While retrieving surveillance footage from a nearby business, the lead detective spotted Rojas standing on the sidewalk near the monument and called for officers to detain him.</p><p>According to an arrest report, Rojas waived his Miranda rights and agreed to speak with detectives. A statement he made during the interview was redacted from the publicly released report.</p><p>Rojas, who is identified in the report as a construction worker who is homeless, is charged with felony criminal mischief involving a memorial or historic property.</p><p>Jail records show he was already out on felony bond in a separate case involving charges of battery on a law enforcement officer and resisting an officer without violence.</p><p>As of Friday morning, Rojas was being held at the Turner Guilford Knight Correctional Center on a $2,500 bond.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Arizona, California and Nevada would share cuts under federal proposal to manage the Colorado River]]></title><link>https://www.local10.com/news/national/2026/07/31/arizona-california-and-nevada-would-share-cuts-under-federal-proposal-to-manage-the-colorado-river/</link><guid isPermaLink="true">https://www.local10.com/news/national/2026/07/31/arizona-california-and-nevada-would-share-cuts-under-federal-proposal-to-manage-the-colorado-river/</guid><dc:creator><![CDATA[By WUFEI YU, DORANY PINEDA and BRITTANY PETERSON, Associated Press]]></dc:creator><description><![CDATA[PHOENIX (AP) — Three western U.S. states would take less water from the Colorado River under a federal proposal released Friday to stave off a crisis in the beleaguered waterway.]]></description><pubDate>Fri, 31 Jul 2026 21:01:17 +0000</pubDate><content:encoded><![CDATA[<p>PHOENIX (AP) — Three western U.S. states would take less water from the Colorado River under a federal proposal released Friday to stave off a crisis in the beleaguered waterway.</p><p>The U.S. Bureau of Reclamation proposal spares four other states from facing mandatory cuts for now. It's meant to be flexible, allowing deeper cuts in drier times while giving the states more time to collectively agree on how to manage the dwindling resource that flows through dams to produce hydropower.</p><p>The Lower Basin states of Arizona, California and Nevada could together be forced to reduce their use by up to 3 million acre-feet (130 billion cubic feet) annually through 2036 — about the amount that Arizona and Nevada receive and enough to serve more than 25 million people a year. The actual reductions would be determined every two years based on conditions throughout the basin.</p><p>“The Department has a responsibility to ensure the Colorado River system remains reliable and resilient for the millions of Americans, communities and industries that depend on it,” Interior Secretary Doug Burgum said in a statement.</p><p>Under the proposal, California, Nevada and Arizona would divide half the cuts based on a plan they already developed. Beyond that, priority water rights come into play.</p><p>Arizona and Nevada have faced mandatory reductions before, but the proposal outlines deeper cuts that could impact agriculture, cities and tribes. It could translate into higher water prices, more reliance on groundwater and leaving fields unplanted, experts say.</p><p>The proposal comes after years of deadlocked negotiations among the states and threats of lawsuits if a proposal didn't comply with longstanding laws and guidelines that govern the river, some of which expire at the end of 2026. A record-dry winter also left two key Colorado River reservoirs at a combined record low. Federal officials are expected to finalize the proposal in the coming days.</p><p>Why is the plan coming now?</p><p>More than 40 million people in seven U.S. states, several tribal nations and Mexico rely on the flows of the 1,450-mile (2,334-kilometer) river. Decades of overuse, along with rising temperatures, drought and climate change, mean it no longer provides what was promised in 1922.</p><p>The river's health often is determined by how much water is in Lake Mead and Lake Powell, the two largest human-made reservoirs in the U.S. Together, the reservoirs are at their lowest point since they began filling, according to a recent paper by Colorado River experts, and approaching levels where they could no longer produce hydropower.</p><p>How the water is allocated and conserved — especially amid a decades-long drought — has led to contentious arguments among the states, including threats of lawsuits. Both basins drew up proposals but didn't decide together on a single plan.</p><p>Because the states didn't reach an agreement, the federal government stepped in with its own proposal to buoy the river.</p><p>What are the reactions from stakeholders?</p><p>Arizona, which has the lowest priority rights in the Lower Basin, called the federal proposal flawed. California said it's an important milestone but not the finish line. Nevada didn't immediately weigh in.</p><p>The Lower Basin states have been united in wanting all seven states to share in specific, measurable cuts. The Upper Basin states of Colorado, New Mexico, Utah and Wyoming, meanwhile, repeatedly pushed back, saying it's illegal and that states have long lived with what the river provides. While the federal proposal mandates cuts in the Lower Basin, the Upper Basin states can proceed with voluntary water cuts primarily among agricultural users.</p><p>The four Upper Basin state governors gave the document a favorable initial assessment but said they were still reviewing it.</p><p>“We are encouraged that new operating guidelines will better reflect existing water supply which must underpin any practicable plan going forward,” the governors said in a joint statement.</p><p>The Arizona Department of Water Resources said enacting 3 million-acre feet of cuts in the Lower Basin would devastate its water users and economy. The Central Arizona Project, which manages much of the state's allocation used primarily in metro Phoenix and Tucson, said the proposal doesn't accurately portray Arizona's rights.</p><p>What impact could the plan have?</p><p>Exactly how the cuts trickle down to each state is largely up to the states themselves, though the federal government is expected to offer suggestions in the coming days.</p><p>Arizona Department of Water Resources director Tom Buschatzke said it will be painful. Farmers in Southern California and Yuma, Arizona, produce the majority of North America's leafy greens in the winter.</p><p>“Those are a lot of potential devastating impacts — and a lot of uncertainties for all of us,” Buschatzke said.</p><p>Cities in metro Phoenix don't rely entirely on the Colorado River and likely will keep everyone's taps running, but water rates will increase in some areas, said Rhett Larson, a water law professor at Arizona State University. The city of Gilbert, for example, has increased residential water rates by 50% since April 2025, he said.</p><p>“We are not running out of water. We’re running out of cheap water,” Larson said.</p><p>Meanwhile, cities across the Colorado River basin are constantly on the hunt for new sources of water, like tapping groundwater, treating wastewater and desalinating water, all of which are more expensive than deliveries from the Colorado River. ___ Pineda reported from Los Angeles and Peterson from Denver. Associated Press writer Mead Gruver contributed from Fort Collins, Colorado.</p><p>___</p><p>This story has been updated to correct the Interior Secretary's first name. He is Doug Burgum, not Dough Burgum.</p><p>___</p><p>The Associated Press receives support from the Walton Family Foundation for coverage of water and environmental policy. The AP is solely responsible for all content. For all of AP’s environmental coverage, visit https://apnews.com/hub/climate-and-environment</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/T37XMEIM3MUBCL5AZGJHCKUNLA.jpg?auth=5fbe78413ccb58732897922c1e36c1fb18e5961f4b87cf9dde63e2561a4c8afe&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A formerly floating buoy now sits high and dry above Lake Powell at the Glen Canyon National Recreation Area, July 15, 2026, near Page, Nev. (AP Photo/John Locher, File)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/AMLU6FQHH2C5FWHMO4V3Z7GFME.jpg?auth=3ef2b3a17e589d8a4c03d39b0707630ca329fdfbc3a16c6ee5c6d4900527a0e3&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A bathtub ring of light minerals shows the high water line of Lake Mead near Hoover Dam at the Lake Mead National Recreation Area on Tuesday, June 30, 2026, near Boulder City, Nev. (AP Photo/John Locher)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/OX3AL2IFURBM5HNQGJP6DJ6X5Q.jpg?auth=eae77fadd05bb3170a6d6e159a6fd83668fe8a66f6133478df194f373ce898a9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A person takes a picture during a tour on Lake Powell at the Glen Canyon National Recreation Area, Wednesday, July 15, 2026, near Page, Ariz. A bathtub ring of light minerals on the canyon wall shows the high water mark of the reservoir. (AP Photo/John Locher, File)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/VIMZ4CSLJKACVX4G454VROK5YI.jpg?auth=a568c1ac001df2187b35a8ac5c2a68ba1765b6823c2cc2c7c608f152c5d69715&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Boats are moored at a marina on Lake Mead at the Lake Mead National Recreation Area on Tuesday, June 30, 2026, near Boulder City, Nev. (AP Photo/John Locher)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/3PYDIZV47I6M7RMEMIUX2BGGEE.jpg?auth=f055d509e314b9fc6ea7b18722a045a27e2401f5ed1a8897e5fe8f1ec6bc56b0&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Water flows down the Colorado River downriver from Hoover Dam in northwest Arizona, on Aug. 14, 2022, near the Lake Mead National Recreation Area. (AP Photo/John Locher, File)]]></media:description><media:credit role="author" scheme="urn:ebu">John Locher</media:credit></media:content></item><item><title><![CDATA[Hamas says a deal has been reached in Gaza, and other developments in the Middle East]]></title><link>https://www.local10.com/news/world/2026/07/31/hamas-says-a-deal-has-been-reached-in-gaza-and-other-developments-in-the-middle-east/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/hamas-says-a-deal-has-been-reached-in-gaza-and-other-developments-in-the-middle-east/</guid><dc:creator><![CDATA[By SAMY MAGDY and ELENA BECATOROS, Associated Press]]></dc:creator><description><![CDATA[CAIRO (AP) — Hamas confirmed Friday that it will disarm in a potential breakthrough for ending the war in Gaza, but major obstacles remain. There were no U.S. strikes on Iran overnight, but Iran's paramilitary Revolutionary Guard said it had struck another two tankers in the Strait of Hormuz, and Kuwait said it intercepted drones.]]></description><pubDate>Fri, 31 Jul 2026 18:18:00 +0000</pubDate><content:encoded><![CDATA[<p>CAIRO (AP) — Hamas confirmed Friday that it will disarm in a potential breakthrough for ending the war in Gaza, but major obstacles remain. There were no U.S. strikes on Iran overnight, but Iran's paramilitary Revolutionary Guard said it had struck another two tankers in the Strait of Hormuz, and Kuwait said it intercepted drones.</p><p>Here are the most important developments across the Middle East today:</p><p>Gaza: Deal reached for Hamas to disarm, Israel to withdraw</p><p>Hamas said it will begin disarming as part of a deal announced by U.S. President Donald Trump that also requires Israel to end its strikes and withdraw from Gaza.</p><p>Hamas also said that laying down its heavy weapons, which would come later in the process, was contingent on the creation of a Palestinian state, something Israel’s current government adamantly rejects.</p><p>Reflecting the hurdles of the potential disarmament, a series of Israeli airstrikes shook Gaza again on Friday, killing at least one Palestinian and wounding at least four, including a child, according to officials in hospitals near the attacks. The Israeli military did not immediately respond to a request for comment.</p><p>United Nations Secretary-General Antonio Guterres welcomed the agreement, calling it the only good news in recent days from a troubled region. The deal must be implemented “without any questions, skepticism, or determination to undermine it,” he told reporters.</p><p>Israel has not officially commented on the Hamas deal, which is part of a U.S.-brokered ceasefire announced last October. That agreement called for Hamas to disarm and hand over power to an independent Palestinian administration. Israel was to withdraw and an International Stabilization Force was to be deployed.</p><p>But progress stalled, with Israel saying everything hinged on Hamas disarming, and Hamas accusing Israel of violating the agreement by continuing to carry out regular strikes on Gaza.</p><p>The war in Gaza began after the Hamas-led attack on southern Israel on Oct. 7, 2023, killed around 1,200 people and saw 251 taken hostage. Israel’s retaliatory offensive in Gaza has killed more than 73,000 Palestinians, including those killed since the ceasefire, Gaza’s Health Ministry says.</p><p>The Associated Press is tracking the progress of Trump's plan to end the Israel-Hamas war.</p><p>Latest developments on the Iran conflict</p><p>No U.S. strikes were reported in Iran on Friday. Iran fired drones at Kuwait, a Gulf country hosting U.S. forces, and said it had also fired at oil tankers in the Strait of Hormuz, a key waterway for global oil and gas shipments, which has been largely closed by the fighting.</p><p>1. Kuwait's Defense Ministry said Friday its armed forces had shot down drones inside Kuwaiti airspace. It said the Iranian attacks had targeted several vital military facilities, causing material damage from falling shrapnel but no casualties. It did not specify how many drones were intercepted. Iranian state media said Iran had targeted an air base in Kuwait with drones in retaliation for U.S. strikes on Thursday. 
                2. Iran's Revolutionary Guard claimed to have hit two oil tankers attempting to pass through the Strait of Hormuz. Iranian state media said four other tankers had turned around. The report did not provide further details on the tankers' ownership, or whether there were any casualties.</p><p>Elsewhere in the region:</p><p>3. Saudi Arabia has announced a plan for a defense alliance of 14 countries to strengthen maritime security, safeguard freedom of navigation and secure international trade routes and energy supply corridors in the Red Sea region. The Iran war has severely disrupted global shipping. Yemen's Houthi rebels have declared a blockade on Saudi Arabia over a separate but related conflict, putting at risk another major trade corridor.
                4. Saudi Arabia's Defense Ministry said Thursday that the coalition is “defensive in nature,” and that access “remains open to all willing countries.” Oman and the United Arab Emirates were the only two Gulf countries that did not back Saudi Arabia’s statement. Turkey, Egypt and Pakistan were among those that joined the proposed alliance.
                5. A Houthi official, speaking Friday on condition of anonymity because he wasn’t authorized to brief the media, said the Saudi initiative won't protect its vessels — that would happen only after the Saudis lift their blockade on Yemen. Large crowds of Yemenis, meanwhile, took to the streets in the capital, Sanaa, and other Houthi-controlled areas to show support for the Iran-backed rebels and their Red Sea attacks against Saudi Arabia. The rallies were organized by the Houthis. 
                6. In southern Lebanon, Israeli forces set off explosions Friday to destroy an underground tunnel network under the Crusader-built Beaufort Castle that Israel says had been used by Hezbollah militants as a command center. The 12th-century castle, also known as Al-Shaqif, was seized by Israeli forces in May. It was recently added to UNESCO’s World Heritage List over Israel’s objections.
                7. Lebanon's President Joseph Aoun said the Israeli operation sent “negative messages” ahead of upcoming talks in Rome. Israeli and Lebanese negotiating teams are set to meet again there to continue hammering out a plan under which Israel would withdraw from southern Lebanon in exchange for Hezbollah’s disarmament.</p><p>___</p><p>Associated Press writer Fatma Khaled contributed to this report from Cairo. Becatoros contributed from Athens, Greece.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/TP553E4XBGNFU4RSXQBS2R4LBY.jpg?auth=7b988343e9d60d4d65d4561f1674c1e8da4c0bce1136141ca5392a0fddff2528&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A Palestinian man rides his bicycle by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content></item><item><title><![CDATA[August US hurricanes: Where do they form and where do they strike?]]></title><link>https://www.local10.com/weather/hurricane/2026/07/31/august-us-hurricanes-where-do-they-form-and-where-do-they-strike/</link><guid isPermaLink="true">https://www.local10.com/weather/hurricane/2026/07/31/august-us-hurricanes-where-do-they-form-and-where-do-they-strike/</guid><dc:creator><![CDATA[Michael Lowry]]></dc:creator><description><![CDATA[The odds of a U.S. hurricane strike ramp up dramatically in August compared to June and July.]]></description><pubDate>Fri, 31 Jul 2026 14:32:42 +0000</pubDate><content:encoded><![CDATA[<p>The odds of a U.S. hurricane strike ramp up dramatically in August compared to June and July. According to U.S. hurricane landfall records which extend back 175 years, August has seen more hurricanes than June and July combined (49 total for June and July compared to 82 for August) and falls second only to September for the most likely month of a mainland U.S. hurricane hit.</p><p><a href="https://www.local10.com/espanol/2026/07/31/huracanes-de-agosto-en-estados-unidos-donde-se-forman-e-impactan/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/huracanes-de-agosto-en-estados-unidos-donde-se-forman-e-impactan/">Leer en español</a></p><p>Not surprisingly, Florida has recorded more hurricane landfalls in August than any other state. As we’ve discussed in previous newsletters, Florida is the undisputed hurricane heavyweight, doubling the number of total landfalls recorded for its closest competitors (Louisiana and Texas). That said, Texas edges out Florida in the early months of the season, historically recording more hurricane landfalls in June and July than the Sunshine State.</p><h3><b>Texas’s big hurricane month</b></h3><p>Texas is also unique in that hurricane landfalls typically peak in August (rather than September for most other states) and the risk for hurricanes drops dramatically by October.</p><figure><img src="https://www.local10.com/resizer/v2/XOLPN5SGDZDRHKRRM4JYG6YAQU.png?auth=763d0cbbee85d963a79283bfcea0c3139cc413bb6b4afd2238c4f61a4f4d7453&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>Florida isn’t as lucky, with historical hurricane activity nearly as high in October as it is during September. This is especially true for South Florida, which has recorded as many October hurricanes as it has September hurricanes.</p><figure><img src="https://www.local10.com/resizer/v2/YZNOMJNUIREQVOEDAHQLHIVY2M.png?auth=271863a4aabf31a73a70b3dcb3ad2f17507ad1db4a9018661d684b8f9ec3ebc6&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>So unlike its counterpart in the western Gulf, South Florida often gets the late season stuff, especially from systems being pulled out of the Gulf and western Caribbean.</p><p>In August, we typically look east for hurricane threats to South Florida. August and September tend to be the months when the risk for a head-on strike to southeast Florida is most likely, so we keep an eye out for what’s coming east of the Bahamas or south of Cuba from the central Caribbean.</p><h3><b>Watching the trends off the southeast U.S. late next week</b></h3><p>Tomorrow marks the first day of August, but as we’ve discussed all week, things will stay quiet to open the month.</p><p>Models do show a small development window for a disturbance moving westward through the subtropics – a preferred zone for development this season – late next week. Friday morning’s single track run of the American GFS, which shows a hurricane approaching the southeast a week from this upcoming Saturday, is on an island with its usual outlier-GFS scenario (other model camps and their ensembles do not show a credible hurricane threat). Generally, models suggest a low chance (around 10%) of the disturbance trying to develop as it rounds the subtropical high pressure into next weekend (weekend of August 8<sup>th</sup>). For now, it’s nothing to worry about, but it’s worth checking back on the trends next week.</p><figure><img src="https://www.local10.com/resizer/v2/6Q7GALSGZNF7FDMAV7R5TBLCSE.png?auth=6b32361e58c748f27fb7f8e62ac687d676bd2e00223ff99d31fd6071b5247d65&smart=true&width=1200&height=900" alt="Probability of a tropical system passing to within about 125 miles of a location through Friday, August 14th (two weeks out) from Google’s DeepMind 1,000-member ensemble system. The machine learning-based ensemble shows a low chance of development (approximately 10%) for a disturbance tracking along the southeast U.S. late next week into next weekend (weekend of August 8th) as well as for a westward moving tropical wave in the Atlantic Main Development Region by the middle part of the month. We’ll check back on the trends next week but for now neither is anything to worry about. Credit: Deelan Jariwala." height="900" width="1200"/><figcaption>Probability of a tropical system passing to within about 125 miles of a location through Friday, August 14th (two weeks out) from Google’s DeepMind 1,000-member ensemble system. The machine learning-based ensemble shows a low chance of development (approximately 10%) for a disturbance tracking along the southeast U.S. late next week into next weekend (weekend of August 8th) as well as for a westward moving tropical wave in the Atlantic Main Development Region by the middle part of the month. We’ll check back on the trends next week but for now neither is anything to worry about. Credit: Deelan Jariwala.</figcaption></figure><p>Otherwise, models still show the possibility of some development with a tropical wave moving through the Atlantic Main Development Region (between Africa and the Caribbean) as we approach the middle part of August. With that development window being so far out, odds remain low for now.</p><p><!-- Local 10 Hurricane Resources (compact, aligned, no overlap) -->
<div class="l10-hurribox" role="complementary" aria-label="Local 10 Hurricane Resources">
  <style>
    /* Prevent width calc overflow across the component */
    .l10-hurribox, .l10-hurribox * { box-sizing: border-box; }

    .l10-hurribox {
      --bg-deep: #0a2540;
      --bg-sky: #0e5a8a;
      --accent-red: #e6402f;
      --accent-blue: #2e63b6;
      --steel: #cfd6dd;
      --text: #f5f7fa;
      --text-dim: #e0e6ee;
      --shadow: 0 10px 30px rgba(0,0,0,.35);
      font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
      max-width: 860px;
      margin: 1.25rem auto;
      border-radius: 14px;
      color: var(--text);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
      background:
        radial-gradient(1200px 600px at 50% -10%, rgba(84,199,255,.18), rgba(84,199,255,0) 55%),
        linear-gradient(180deg, var(--bg-sky) 0%, var(--bg-deep) 60%);
    }

    .l10-inner { position:relative; z-index:1; padding: 18px 18px 72px; }

    /* Header */
    .l10-header {
      display:flex; align-items:center; gap:14px;
      background: linear-gradient(90deg, #101820, #14283d 60%, rgba(16,24,32,0));
      border: 1px solid rgba(255,255,255,.08);
      padding:14px 16px; border-radius:10px;
    }
    .l10-flag { flex:0 0 auto; width:44px; height:32px; filter: drop-shadow(0 3px 4px rgba(0,0,0,.4)); }
    .l10-title { line-height:1.2; font-weight:800; font-size: 1.2rem; color:#fff; }
    .l10-title .top { font-size: .95rem; color: var(--steel); opacity:.95; display:block; }

    /* Grid: fixed breakpoints (1 -> 2 -> 4 columns) to avoid squeeze/overlap */
    .l10-grid{
      display:grid; gap:14px; margin-top:18px;
      grid-template-columns: 1fr;
      align-items: stretch;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (min-width:900px){
      .l10-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
    }

    /* Buttons / cards: compact + equal height */
    .l10-btn {
      display:flex; flex-direction:column;
      justify-content:flex-start;
      height:100%;
      min-height:120px;             /* smaller card height */
      padding:16px 14px;            /* tighter padding */
      border-radius:12px; text-decoration:none;
      font-size: 1rem;
      border:1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
        radial-gradient(220px 120px at 110% -20%, rgba(84,199,255,.35), transparent 50%),
        linear-gradient(180deg, #14345c, #0d2745 60%, #0b213a 100%);
      color:#fff;
      box-shadow: var(--shadow);
      transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
      word-break: break-word;       /* wrap long bits safely */
      min-width: 0;
    }
    /* even more compact on very small screens */
    @media (max-width:400px){
      .l10-btn{ min-height:110px; padding:14px 12px; }
    }

    .l10-btn:hover, .l10-btn:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(0,0,0,.42);
      border-color: rgba(255,255,255,.22);
      outline: none;
    }

    /* Keep text white after visit */
    .l10-btn:link, .l10-btn:visited { color: #fff; }
    .l10-btn .l10-label, .l10-btn .l10-kicker, .l10-btn .l10-pill { color: inherit; }

    .l10-kicker {
      font-size:.78rem; letter-spacing:.1em; text-transform:uppercase;
      color: var(--text-dim);
      display:flex; align-items:center; gap:6px;
    }
    .l10-kicker svg { width:16px; height:16px; flex:0 0 auto; }
    .l10-label { font-size: 1.02rem; font-weight:800; line-height:1.2; margin-top:4px; }

    /* Bottom-anchored pill so rows align */
    .l10-pill {
      margin-top:auto;
      padding:5px 10px; border-radius:999px;
      background: linear-gradient(90deg, var(--accent-blue), #5c87e2);
      color:#fff; font-weight:700; font-size:.74rem;
    }

    /* Wave */
    .l10-wave { position:absolute; left:0; right:0; bottom:-1px; height:68px; z-index:0; pointer-events:none; }
    .l10-wave svg { width:100%; height:100%; display:block; }
  </style>

  <div class="l10-inner">
    <!-- Header with hurricane warning flag -->
    <div class="l10-header">
      <svg class="l10-flag" viewBox="0 0 96 72" aria-hidden="true">
        <rect x="2" y="2" width="6" height="68" rx="3" fill="#9aa7b1"/>
        <rect x="12" y="6" width="38" height="26" fill="#e6402f"/>
        <rect x="24" y="14" width="14" height="10" fill="#111"/>
        <rect x="12" y="40" width="38" height="26" fill="#e6402f"/>
        <rect x="24" y="48" width="14" height="10" fill="#111"/>
      </svg>
      <div class="l10-title">
        <span class="top">Local 10</span>
        Hurricane Resources
      </div>
    </div>

    <!-- Buttons -->
    <div class="l10-grid">
      <a class="l10-btn" href="https://www.local10.com/hurricane/" target="_blank" rel="noopener noreferrer">
        <span class="l10-kicker">
          <svg viewBox="0 0 24 24" fill="#cfe7ff"><path d="M12 3a9 9 0 1 0 9 9c0-.5-.4-.9-.9-.9s-.9.4-.9.9a7.2 7.2 0 1 1-7.2-7.2c.5 0 .9-.4.9-.9S12.5 3 12 3z"/></svg>
          Section
        </span>
        <span class="l10-label">Hurricane Section</span>
        <span class="l10-pill">Latest coverage</span>
      </a>

      <a class="l10-btn" href="https://www.local10.com/topic/Talking_Tropics/" target="_blank" rel="noopener noreferrer">
        <span class="l10-kicker">
          <svg viewBox="0 0 24 24" fill="#cfe7ff"><path d="M3 5h18v10a3 3 0 0 1-3 3H10l-5 3v-3H6a3 3 0 0 1-3-3V5z"/></svg>
          Analysis
        </span>
        <span class="l10-label">Talking Tropics</span>
        <span class="l10-pill">Daily updates</span>
      </a>

      <a class="l10-btn" href="https://www.local10.com/weather/hurricane/2026/05/20/local-10s-2026-hurricane-survival-guide/" target="_blank" rel="noopener noreferrer">
        <span class="l10-kicker">
          <svg viewBox="0 0 24 24" fill="#cfe7ff"><path d="M4 4h11a3 3 0 0 1 3 3v13H7a3 3 0 0 1-3-3V4z"/><path d="M18 7h2v13h-2z" fill="#9fd0ff"/></svg>
          Guide
        </span>
        <span class="l10-label">2026 Survival Guide</span>
        <span class="l10-pill">Prep & checklists</span>
      </a>

      <a class="l10-btn" href="https://www.local10.com/weather/hurricane/2026/05/31/local-10-hurricane-special-it-only-takes-one/" target="_blank" rel="noopener noreferrer">
        <span class="l10-kicker">
          <svg viewBox="0 0 24 24" fill="#cfe7ff"><circle cx="12" cy="12" r="10"/><polygon points="10,8 17,12 10,16" fill="#0b2b4a"/></svg>
          Special
        </span>
        <span class="l10-label">'It Only Takes One'</span>
        <span class="l10-pill">Watch & learn</span>
      </a>
    </div>
  </div>

  <!-- Decorative wave -->
  <div class="l10-wave" aria-hidden="true">
    <svg viewBox="0 0 1200 120" preserveAspectRatio="none">
      <defs>
        <linearGradient id="l10-ocean" x1="0" x2="0" y1="0" y2="1">
          <stop offset="0" stop-color="#3b78c2" stop-opacity=".85"/>
          <stop offset="1" stop-color="#0b2747" stop-opacity=".95"/>
        </linearGradient>
      </defs>
      <path d="M0,40 C150,90 350,-10 600,40 C850,90 1050,10 1200,40 L1200,120 L0,120 Z" fill="url(#l10-ocean)">
        <animate attributeName="d" dur="9s" repeatCount="indefinite"
          values="
          M0,40 C150,90 350,-10 600,40 C850,90 1050,10 1200,40 L1200,120 L0,120 Z;
          M0,35 C150,80 350,0 600,35 C850,80 1050,0 1200,35 L1200,120 L0,120 Z;
          M0,40 C150,90 350,-10 600,40 C850,90 1050,10 1200,40 L1200,120 L0,120 Z"/>
      </path>
    </svg>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/63TF7JXMVZBJBNEHMHXB2BGOKI.png?auth=a32733890a03b609b4242f9ce611830b09a852be9ff1fa8b8d709038ac7a679d&amp;smart=true&amp;width=1200&amp;height=900" type="image/png" height="900" width="1200"/></item><item><title><![CDATA[Huracanes de agosto en Estados Unidos: ¿Dónde se forman e impactan?]]></title><link>https://www.local10.com/espanol/2026/07/31/huracanes-de-agosto-en-estados-unidos-donde-se-forman-e-impactan/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/huracanes-de-agosto-en-estados-unidos-donde-se-forman-e-impactan/</guid><dc:creator><![CDATA[Michael Lowry]]></dc:creator><description><![CDATA[Las probabilidades de que un huracán impacte a Estados Unidos aumentan drásticamente en agosto en comparación con junio y julio.]]></description><pubDate>Fri, 31 Jul 2026 14:52:31 +0000</pubDate><content:encoded><![CDATA[<p>Las probabilidades de que un huracán impacte a Estados Unidos aumentan drásticamente en agosto en comparación con junio y julio. Según los registros de huracanes que han tocado tierra en Estados Unidos durante los últimos 175 años, agosto ha registrado más huracanes que junio y julio combinados (49 en total entre junio y julio, frente a 82 en agosto) y solo es superado por septiembre como el mes con mayor probabilidad de que un huracán impacte el territorio continental de Estados Unidos.</p><p>No sorprende que Florida haya registrado más huracanes que han tocado tierra en agosto que cualquier otro estado. Como hemos comentado en boletines anteriores, Florida es, sin discusión, el estado más afectado por los huracanes, con el doble del número total de impactos registrados que sus competidores más cercanos, Luisiana y Texas. Dicho esto, Texas supera a Florida durante los primeros meses de la temporada, ya que históricamente registra más huracanes que tocan tierra en junio y julio que el Estado del Sol.</p><h3><b>El gran mes de los huracanes en Texas</b></h3><p>Texas también es único porque los huracanes que tocan tierra suelen alcanzar su punto máximo en agosto, en lugar de septiembre, como ocurre en la mayoría de los demás estados, y el riesgo de huracanes disminuye drásticamente para octubre.</p><figure><img src="https://www.local10.com/resizer/v2/XOLPN5SGDZDRHKRRM4JYG6YAQU.png?auth=763d0cbbee85d963a79283bfcea0c3139cc413bb6b4afd2238c4f61a4f4d7453&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>Florida no tiene la misma suerte, ya que históricamente la actividad de huracanes en octubre es casi tan alta como en septiembre. Esto es especialmente cierto en el sur de Florida, donde se han registrado tantos huracanes en octubre como en septiembre.</p><figure><img src="https://www.local10.com/resizer/v2/YZNOMJNUIREQVOEDAHQLHIVY2M.png?auth=271863a4aabf31a73a70b3dcb3ad2f17507ad1db4a9018661d684b8f9ec3ebc6&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>Así que, a diferencia de su contraparte en el oeste del Golfo, el sur de Florida suele recibir los sistemas de finales de temporada, especialmente aquellos que son arrastrados desde el Golfo de México y el oeste del Caribe.</p><p>En agosto, normalmente miramos hacia el este en busca de amenazas de huracanes para el sur de Florida. Agosto y septiembre suelen ser los meses en los que existe la mayor probabilidad de un impacto directo en el sureste de Florida, por lo que mantenemos la vista puesta en los sistemas que avanzan al este de las Bahamas o al sur de Cuba desde el Caribe central.</p><h3><b>Vigilan las tendencias frente al sureste de Estados Unidos para finales de la próxima semana</b></h3><h3>Mañana comienza agosto, pero, como hemos comentado durante toda la semana, el inicio del mes se mantendrá tranquilo.</h3><p>Los modelos muestran una pequeña ventana de desarrollo para una perturbación que se desplazará hacia el oeste a través de los subtrópicos, una zona favorable para el desarrollo durante esta temporada, hacia finales de la próxima semana. La corrida de trayectoria única del modelo estadounidense GFS del viernes por la mañana, que muestra un huracán acercándose al sureste de Estados Unidos una semana después del próximo sábado, es un escenario aislado y corresponde al habitual comportamiento atípico del GFS (otros modelos y sus conjuntos no muestran una amenaza creíble de huracán). En términos generales, los modelos sugieren una baja probabilidad, de alrededor del 10%, de que la perturbación intente desarrollarse al rodear el área subtropical de alta presión hacia el próximo fin de semana (el fin de semana del 8 de agosto). Por ahora, no es motivo de preocupación, pero vale la pena seguir de cerca las tendencias la próxima semana.</p><figure><img src="https://www.local10.com/resizer/v2/6Q7GALSGZNF7FDMAV7R5TBLCSE.png?auth=6b32361e58c748f27fb7f8e62ac687d676bd2e00223ff99d31fd6071b5247d65&smart=true&width=1200&height=900" alt="Probability of a tropical system passing to within about 125 miles of a location through Friday, August 14th (two weeks out) from Google’s DeepMind 1,000-member ensemble system. The machine learning-based ensemble shows a low chance of development (approximately 10%) for a disturbance tracking along the southeast U.S. late next week into next weekend (weekend of August 8th) as well as for a westward moving tropical wave in the Atlantic Main Development Region by the middle part of the month. We’ll check back on the trends next week but for now neither is anything to worry about. Credit: Deelan Jariwala." height="900" width="1200"/><figcaption>Probability of a tropical system passing to within about 125 miles of a location through Friday, August 14th (two weeks out) from Google’s DeepMind 1,000-member ensemble system. The machine learning-based ensemble shows a low chance of development (approximately 10%) for a disturbance tracking along the southeast U.S. late next week into next weekend (weekend of August 8th) as well as for a westward moving tropical wave in the Atlantic Main Development Region by the middle part of the month. We’ll check back on the trends next week but for now neither is anything to worry about. Credit: Deelan Jariwala.</figcaption></figure><p>Por lo demás, los modelos siguen mostrando la posibilidad de cierto desarrollo de una onda tropical que se desplazará por la Región Principal de Desarrollo del Atlántico (entre África y el Caribe) a medida que nos acerquemos a mediados de agosto. Como esa posible ventana de desarrollo aún está muy lejana, por ahora las probabilidades siguen siendo bajas.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/63TF7JXMVZBJBNEHMHXB2BGOKI.png?auth=a32733890a03b609b4242f9ce611830b09a852be9ff1fa8b8d709038ac7a679d&amp;smart=true&amp;width=1200&amp;height=900" type="image/png" height="900" width="1200"/></item><item><title><![CDATA[A giddy Patti Smith meets fellow Chicago legend, Pope Leo XIV, and says "Hi"]]></title><link>https://www.local10.com/entertainment/2026/07/31/a-giddy-patti-smith-meets-fellow-chicago-legend-pope-leo-xiv-and-says-hi/</link><guid isPermaLink="true">https://www.local10.com/entertainment/2026/07/31/a-giddy-patti-smith-meets-fellow-chicago-legend-pope-leo-xiv-and-says-hi/</guid><dc:creator><![CDATA[By NICOLE WINFIELD, Associated Press]]></dc:creator><description><![CDATA[ROME (AP) — Rock legend Patti Smith was giddy and almost at a loss for words when she met Friday with Pope Leo XIV.]]></description><pubDate>Fri, 31 Jul 2026 16:41:22 +0000</pubDate><content:encoded><![CDATA[<p>ROME (AP) — Rock legend Patti Smith was giddy and almost at a loss for words when she met Friday with Pope Leo XIV.</p><p>“Hi,” she said softly as she sat down across from Leo at his desk in the Apostolic Palace.</p><p>Wearing a crucifix necklace and hair in her trademark braids, Smith has become an increasingly visible presence at the Vatican thanks to her friendship with the Rev. Antonio Spadaro, undersecretary in the Vatican’s culture ministry.</p><p>She has said that while she is not Catholic, she was drawn in particular to Pope Francis and his “gentle, open, and steadfast sense of humanity.”</p><p>She also had a thing for Pope John Paul I: Her 1979 tune “Wave,” is about a make-believe conversation with the pope who had just died after a 33-day papacy. It begins “Hi. Hi” uttered in the same breathy voice Smith used with Leo on Friday.</p><p>The pope clearly was familiar with the tune. “That was marvelous,” he said.</p><p>Earlier this year, Smith performed during the inauguration of the Holy See’s pavilion at the Venice Biennale contemporary art fair. The occasion, May 8, was the anniversary of Leo’s election.</p><p>Spadaro, who joined Smith at Friday’s audience, said the encounter between the two Chicago natives was around 40 minutes long. In a text message, he said it “felt more like a conversation between two people discovering they were old friends, sharing memories woven from words and music, dreams, visions, and hopes — both from yesterday and for today.”</p><p>He said at the end, Smith said “Bye. Bye.”</p><p>Smith met Francis in 2013 and sang for him in 2014. When he died, on April 21, 2025, she wrote a poem on social media, comparing Francis to a dandelion, “humble yet strong.”</p><p>“Nature and poetry and the suffering shall miss their champion,” she wrote.</p><p>It was Leo's second encounter with a music legend this week. On Wednesday, Leo attended a concert in his honor by tenor Andrea Bocelli.</p><p>___</p><p>Associated Press religion coverage receives support through the AP’s collaboration with The Conversation US, with funding from Lilly Endowment Inc. The AP is solely responsible for this content.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/CO6JRG32YEZRRR3LSRLRMDHYRY.jpg?auth=3b302f31ab0079e966c75b0476c84d55d5df26c34ac411f243a949ce404dabd3&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Pope Leo XIV speaks as he attends the "Canticle of Peace" prayer and fraternity meeting at Borgo Laudato Si' in Castel Gandolfo, about 30 kilometers (19 miles) southwest of Rome, Italy, Wednesday, July 29, 2026. (AP Photo/Alessandra Tarantino)]]></media:description><media:credit role="author" scheme="urn:ebu">Alessandra Tarantino</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/LQUOWBEQWSAXQANLQFK2KSUIX4.jpg?auth=83f4551780ce85f683e51b293e0ca7565d891215fd3bb8f271715d70e91372ef&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Pope Leo XIV speaks as he attends the "Canticle of Peace" prayer and fraternity meeting at Borgo Laudato Si' in Castel Gandolfo, about 30 kilometers (19 miles) southwest of Rome, Italy, Wednesday, July 29, 2026. (AP Photo/Alessandra Tarantino)]]></media:description><media:credit role="author" scheme="urn:ebu">Alessandra Tarantino</media:credit></media:content></item><item><title><![CDATA[Social media companies sued over deaths of four teens as pressure, lawsuits over child safety mount]]></title><link>https://www.local10.com/business/2026/07/31/social-media-companies-sued-over-deaths-of-four-teens-as-pressure-lawsuits-over-child-safety-mount/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/social-media-companies-sued-over-deaths-of-four-teens-as-pressure-lawsuits-over-child-safety-mount/</guid><dc:creator><![CDATA[By KAITLYN HUAMANI and BARBARA ORTUTAY, Associated Press]]></dc:creator><description><![CDATA[The families of four teenagers who died by suicide are suing Meta, TikTok, Snapchat and YouTube over what they describe as “years of escalating harms” from using their platforms that eventually resulted in their deaths.]]></description><pubDate>Fri, 31 Jul 2026 17:15:56 +0000</pubDate><content:encoded><![CDATA[<p>The families of four teenagers who died by suicide are suing Meta, TikTok, Snapchat and YouTube over what they describe as “years of escalating harms” from using their platforms that eventually resulted in their deaths.</p><p>The lawsuit, filed Thursday in the Superior Court of Delaware, is the latest in a flurry of suits filed against the social media giants that alleges their platforms are addictive and dangerous.</p><p>The complaint was filed on behalf of four families from Texas, North Carolina, Minnesota and Tennessee whose children died over a 14-month period starting in July 2024 through September 2025.</p><p>The Social Media Victims Law Center is bringing the suit on behalf of the families, and its founding attorney, Matthew Bergman, said it's “particularly salient” that the children in this case died “long after” similar suits had been filed.</p><p>“These platforms continue to kill kids, despite the platitudes of their executives,” Bergman said in an interview. “This is a clear and present danger to the health and safety of children, not just in the United States but around the world.”</p><p>The four teens who died by suicide each experienced harms including social media addiction, severe sleep deprivation, depression, anxiety and suicidal ideation after years of using the social platforms, the complaint states. Livi Castro died at age 13, Riv Kelleher at 14, Nathaniel Chambers at age 17 and Dawson Holden at 18.</p><p>The complaint alleges the social media companies knew they were causing harm to young users.</p><p>A spokesperson for Google, which owns YouTube, said in a statement that “providing young people with a safer, healthier experience has always been core to our work. In collaboration with mental health and parenting experts, we’ve built services and policies to provide young people with age-appropriate experiences, and parents with robust controls. We send our deepest sympathies to the families and are reviewing the claims in this lawsuit.”</p><p>Representatives for Meta, TikTok and Snap did not immediately respond to requests for comment.</p><p>Sacha Haworth, executive director of The Tech Oversight Project, said in a statement that parents, activists and whistleblowers have come forward and met with lawmakers for years and “while Congress has dragged its feet, more children have died."</p><p>Federal legislation of social media has moved at a glacial pace. The Senate passed the Kids Online Safety Act — which had the support of parents’ groups and children’s advocacy organizations — exactly two years before this lawsuit was filed. The House of Representatives never voted on that version of the legislation, and the House and Senate are currently disagreeing on key provisions they think should be included.</p><p>“Livi, Nathaniel, Dawson, and Riv’s stories are proof that Big Tech companies continue to lie about the safety of their products, choosing instead to pour hundreds of millions of dollars into false advertising, deceptive paid partnerships with trusted education programs and political lobbying,” Haworth's statement continued.</p><p>Meta, YouTube, TikTok and Snap are facing numerous state and federal lawsuits over harms to minors. Meta is on trial in Tennessee this week for a lawsuit brought by the state attorney general claiming that the company deliberately designed its platforms, notably Instagram, to make them addictive to young people, and did not warn them of its dangers. And in August, Meta is heading to trial in federal court in Oakland, California to face four of dozens of states that sued the company in 2023. That lawsuit says the company is contributing to the youth mental health crisis by designing addictive features and violated federal law by collecting data on kids under 13 without parental consent.</p><p>Not all lawsuits are successful, and many are settled out of court. Last week, a Florida teenager dropped his case against Meta that was set to go to trial in state court in Los Angeles, without receiving any payment from the company. Meta had argued that the teen only used his Instagram and Facebook for just minutes a day, on average, and created most accounts only after hiring a lawyer in his case.</p><p>Still, the mounting court cases can get expensive, even for a company like Meta Platforms. Earlier this week Meta said it had $2.4 billion in legal expenses in the second quarter, which contributed to a relatively unusual 14% profit decline.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/6BVYAHC3KLMUNNJ64J5ZIKNBIU.jpg?auth=80be17f9b4b478034334f8fc03f21b696c5a62c0da028c94713aa5ce7243784e&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - This combination of 2017-2022 photos shows the logos of Facebook, YouTube, TikTok and Snapchat on mobile devices. On Friday, Jan. 6, 2023, Seattle Public Schools filed a lawsuit in U.S. District Court, suing the tech giants behind TikTok, Instagram, Facebook, YouTube and Snapchat, seeking to hold them accountable for the mental health crisis among youth. (AP Photo, File)]]></media:description></media:content><media:content url="https://www.local10.com/resizer/v2/HUPROFD3D5IJVTHVLGFEQBSKHQ.jpg?auth=4115341024b74ac6f25501ebfe050f63aabd4b1f541b9dd9fd4eb7fabe3bda80&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A group holds hands outside a landmark trial over whether social media platforms deliberately addict and harm children, Wednesday, Feb. 18, 2026, in Los Angeles. (AP Photo/Ryan Sun, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Ryan Sun</media:credit></media:content></item><item><title><![CDATA[Policía: Arrestan a conductor tras estrellar vehículo contra autos estacionados y fachada de cervecería en North Miami]]></title><link>https://www.local10.com/espanol/2026/07/30/policia-arrestan-a-conductor-tras-estrellar-vehiculo-contra-autos-estacionados-y-fachada-de-cerveceria-en-north-miami/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/30/policia-arrestan-a-conductor-tras-estrellar-vehiculo-contra-autos-estacionados-y-fachada-de-cerveceria-en-north-miami/</guid><dc:creator><![CDATA[Amanda Batchelor, Rosh Lowe, Terrell Forney]]></dc:creator><description><![CDATA[Un conductor fue arrestado la madrugada del jueves tras estrellar su vehículo contra cinco autos estacionados y la fachada de una cervecería en North Miami, confirmaron las autoridades.]]></description><pubDate>Thu, 30 Jul 2026 13:32:28 +0000</pubDate><content:encoded><![CDATA[<p>Un conductor fue arrestado el miércoles tras estrellar su camioneta de trabajo contra cinco autos estacionados y la fachada de una cervecería en North Miami, según confirmaron las autoridades.</p><p>Según la policía de North Miami, el accidente se reportó poco después de las 3 pm en <a href="https://www.lostcitybrewing.com/" rel="" title="https://www.lostcitybrewing.com/">Lost City Brewing Company</a> , ubicada en 12207 NE 13th Court.</p><p>Según la policía, el conductor, Eros Emanuel Gehrig, de 53 años, perdió el control del vehículo y chocó contra cinco coches antes de estrellarse contra la fachada del edificio.</p><p>“La estructura fue evaluada y se determinó que era segura y que no representaba ningún peligro para la seguridad”, dijo un portavoz del Departamento de Policía Metropolitana de Nuevo México (NMPD) a Local 10 News en un correo electrónico.</p><figure><img src="https://www.local10.com/resizer/v2/OR5GFYLNRVFPJNORAQLLVOFIZU.jpg?auth=c4ada8c919ffda2224af446ab87ad1a1ea8afddbf58cafb7204262a23f5f5fdc&smart=true&width=1200&height=900" alt="" height="900" width="1200"/></figure><p>El propietario de la cervecería, Chris Campos, declaró a Local 10 News que es un milagro que no hubiera nadie dentro del local en ese momento.</p><p>“Falta una hora para que abramos, media hora después de que estuviéramos haciendo algunas reparaciones al refrigerador que está en esta pared”, dijo Campos. “Fue un momento realmente fortuito en el que no había nadie y, la verdad, si hubiera habido gente, habría sido terrible”.</p><p>Según el informe de detención, una revisión de los registros reveló que la licencia de conducir de Gehrig en Florida había sido suspendida indefinidamente el 12 de septiembre de 2012.</p><p>Fue arrestado bajo el cargo de conducir con la licencia suspendida.</p><p>La policía informó que Gehrig fue trasladado al Hospital HCA Florida Aventura para ser evaluado antes de ser ingresado en el Centro Correccional Turner Guilford Knight.</p><p>Gehrig fue puesto en libertad el jueves por la mañana tras pagar la fianza.</p>]]></content:encoded></item><item><title><![CDATA[Niño de 4 años resulta gravemente herido en tiroteo accidental en Pompano Beach, dicen agentes]]></title><link>https://www.local10.com/espanol/2026/07/30/balacera-accidental-en-pompano-beach-deja-una-persona-herida-dicen-agentes/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/30/balacera-accidental-en-pompano-beach-deja-una-persona-herida-dicen-agentes/</guid><dc:creator><![CDATA[Amanda Batchelor, Roy Ramos]]></dc:creator><description><![CDATA[Una persona resultó herida la noche del miércoles en una balacera accidental en un complejo de apartamentos de Pompano Beach, informaron las autoridades.]]></description><pubDate>Thu, 30 Jul 2026 13:24:48 +0000</pubDate><content:encoded><![CDATA[<p>Un niño de 4 años resultó gravemente herido la noche del miércoles en una balacera accidental en un complejo de apartamentos de Pompano Beach, informaron las autoridades.</p><p>Según la Oficina del Sheriff de Broward (BSO), la balacera fue reportada alrededor de las 10:12 p.m. en los condominios Windward Lakes, cerca de la cuadra 4000 de Southwest 15th Street.</p><p>La portavoz de la BSO, Gerdy St. Louis, informó que mientras los agentes y los paramédicos de Pompano Beach Fire Rescue se dirigían al lugar, les notificaron que los padres de la víctima habían trasladado al niño a una estación de bomberos cercana.</p><p>Las autoridades informaron que los paramédicos le brindaron atención al menor antes de trasladarlo a un hospital local para recibir tratamiento.</p><p>Vecinos que hablaron con Local 10 News describieron los momentos de desesperación mientras el padre del niño se apresuraba a conseguir ayuda para su hijo.</p><p>“Corrían hacia el auto y él no dejaba de decir: “Suban al auto, suban al auto””, dijo un residente.</p><p>Los vecinos dijeron que vieron a la familia cargar al menor hasta su vehículo antes de salir rápidamente para buscar ayuda médica.</p><p>“Los vimos con el niño, cargándolo”, dijo un residente. “La madre estaba muy alterada, todos subieron al auto y salieron a toda velocidad, y a los pocos minutos la Policía ya estaba aquí”.</p><p>Hasta el jueves, el niño permanecía en estado crítico.</p><p>St. Louis informó que detectives de las unidades de Escena del Crimen y Crímenes Violentos de la BSO investigan las circunstancias que rodean la balacera.</p>]]></content:encoded></item><item><title><![CDATA[A high-stakes test for Trump’s Gaza ceasefire board as Hamas disarmament looms]]></title><link>https://www.local10.com/news/2026/07/31/a-high-stakes-test-for-trumps-gaza-ceasefire-board-as-hamas-disarmament-looms/</link><guid isPermaLink="true">https://www.local10.com/news/2026/07/31/a-high-stakes-test-for-trumps-gaza-ceasefire-board-as-hamas-disarmament-looms/</guid><dc:creator><![CDATA[By BASSEM MROUE, Associated Press]]></dc:creator><description><![CDATA[BEIRUT (AP) — Carrying out this week's agreement for Gaza on the disarmament of the Palestinian group Hamas, Israel’s withdrawal and the transition to a civilian body to run the war-ravaged region will be a major test for the international body established by U.S. President Donald Trump to oversee the ceasefire in Gaza.]]></description><pubDate>Fri, 31 Jul 2026 19:22:55 +0000</pubDate><content:encoded><![CDATA[<p>BEIRUT (AP) — Carrying out this week's agreement for Gaza on the disarmament of the Palestinian group Hamas, Israel’s withdrawal and the transition to a civilian body to run the war-ravaged region will be a major test for the international body established by U.S. President Donald Trump to oversee the ceasefire in Gaza.</p><p>The agreement announced by Trump late Thursday could pave the way for ending the latest Israel-Hamas war that broke out on Oct. 7, 2023, and which has seen continued violence despite a ceasefire last October. Few places in the Palestinian territory of over 2 million people have been left unscathed, and the United Nations, World Bank and European Union estimate that reconstruction will cost $70 billion.</p><p>Hamas officials said the group has agreed to the disarmament agreement. Israel has not commented.</p><p>The Board of Peace will have a major role in overseeing the deal's implementation.</p><p>Here's what the group is and what it is expected to do:</p><p>What is the Board of Peace</p><p>The Board of Peace was first mentioned in September when the White House released Trump’s plan to end the Israel-Hamas war in Gaza.</p><p>Trump’s 20-point ceasefire plan called on Hamas to surrender its weapons and destroy its vast network of tunnels. It also envisions Israeli forces withdrawing from Gaza, the arrival of a new technocratic Palestinian government, deployment of an international security force and the rebuilding of the battered Palestinian enclave after more than two years of war.</p><p>More than two dozen nations signed on as the board's founding members, including Israel and other regional heavyweights, as well as countries from outside the Middle East such as Indonesia, Paraguay and Vietnam.</p><p>Germany, Italy, Norway, Switzerland and the United Kingdom are among more than a dozen countries that have not joined the board but took part in a February meeting as observers.</p><p>Israelis are suspicious of the involvement of Qatar and Turkey, which have longstanding relations with Hamas. Earlier this year, Palestinians objected because their representatives weren’t invited to the board, even as it weighs the future of a territory that is home to some 2 million of them.</p><p>A $1 billion contribution secures permanent membership on the board instead of a three-year appointment, which has no contribution requirement.</p><p>During the first meeting of the board in February in Washington, members pledged $7 billion in aid for Gaza — just a fraction of the $70 billion that international bodies say is needed to rebuild the territory. The board also announced plans for international troops and police, and for reconstruction. But no timeline was given.</p><p>How the board is involved in the new deal</p><p>The agreement was reached after months of “very difficult negotiations,” Nickolay Mladenov, the director-general of the Board of Peace in Gaza, said in comments posted on X. “There were several points when I did not believe we would make it,” he added.</p><p>Mladenov, a former Bulgarian defense and foreign minister who served as the U.N. envoy to Iraq before being appointed as the U.N. Mideast peace envoy from 2015-2020, added, “Implementation and verification have to be real” and “withdrawal must move in lockstep with decommissioning.”</p><p>The National Committee for The Administration of Gaza, a Palestinian technocratic body that operates under the supervision of the Board of Peace, is tasked with administering Gaza in the interim period after Hamas gives up control.</p><p>That includes setting up a new police force to replace the one previously run by Hamas and implementing the disarmament process - the details of which are not yet clear.</p><p>The NCAS said in a statement Friday that it is ready to assume responsibility for governing Gaza and restoring public services and the rule of law.</p><p>Ambitious Plans</p><p>In November, the Trump administration’s blueprint to secure and govern Gaza won strong approval at the United Nations.</p><p>Israel and the U.S. say Hamas’ disarmament is key to progress on the other fronts. Arab and Muslim members of the Board of Peace have accused Israel of undermining the ceasefire with its daily strikes and want the U.S. to rein in its close ally. They have called on Hamas to disarm but say Israel’s withdrawal is just as important.</p><p>Senior Hamas official Ghazi Hamad, who is a member of the group’s negotiating team, told Qatar's Al Jazeera TV on Friday that the agreement is a “full package” of which Hamas’ disarmament is a part.</p><p>“Hamas and Palestinian factions are making concessions for the sake of our Palestinian people in Gaza,” Hamad said. He added that Hamas will not take any step unless they are sure that Israel will implement the deal from its side.</p><p>Israel defines demilitarization as extending from heavy weapons like rocket-propelled grenades all the way down to roughly 60,000 rifles that Israeli Prime Minister Benjamin Netanyahu says would have to be given up.</p><p>Trump — along with son-in-law Jared Kushner and envoy Steve Witkoff — has laid out ambitious plans for rebuilding Gaza with international investment.</p><p>In Davos last year, Kushner suggested reconstruction could be complete in a matter of three years, even though U.N. forecasts suggest that clearing rubble and demining alone could take much longer.</p><p>Kushner’s slides showed a reconstructed Gaza with a coastal tourism strip, industrial zones and data centers. He conceded that rebuilding would begin only in demilitarized areas and that security would be essential to attract investment.</p><p>A stabilization force</p><p>The ceasefire deal also calls for a temporary International Stabilization Force made up of soldiers from Arab and Muslim-majority countries. Its mandate is not spelled out in detail, but would include securing aid deliveries, preventing weapons smuggling and vetting and training a Palestinian police force.</p><p>Maj. Gen. Jasper Jeffers, who is leading the effort, said in February the plans call for 12,000 police and 20,000 soldiers for Gaza.</p><p>Indonesia, Morocco, Kazakhstan, Kosovo and Albania have pledged to send troops for the force, while Egypt and Jordan have committed to train police.</p><p>Troops will initially be deployed to Rafah, a heavily damaged and largely depopulated city under full Israeli control, where the U.S. administration hopes to first focus reconstruction efforts.</p><p>The biggest blow to the planned force came about a week after the U.S. and Israel attacked Iran on Feb. 28, when Indonesia put its commitment of 8,000 troops on indefinite hold. Some 1,000 were to have been sent in April, followed by the remainder in June.</p><p>The latest Israel-Hamas war broke out on Oct. 7, 2023, when Hamas-led militants stormed southern Israel killing over 1,200 people and taking 251 hostages. Israel’s retaliatory offensive in Gaza has killed more than 73,000 Palestinians, including hundreds who perished after a ceasefire went into effect Oct. 10, Gaza’s Health Ministry says. The ministry, which is part of the Hamas-led government and is staffed by medical professionals, does not distinguish between civilians and militants in its toll but says women and children make up around half of all deaths.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/CMHMHM24RF5R4F3DQ46R33WDII.jpg?auth=dc54f902846846e1dc385b89518c750ccc23b99376fcf1221a06328c0f835a86&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Palestinians salvage their belongings from the rubble of a building and tents destroyed in an Israeli airstrike in Gaza City, Thursday, July 30, 2026. (AP Photo/Jehad Alshrafi)]]></media:description><media:credit role="author" scheme="urn:ebu">Jehad Alshrafi</media:credit></media:content></item><item><title><![CDATA[Boy, 4, critically injured in accidental shooting in Pompano Beach, deputies say]]></title><link>https://www.local10.com/news/local/2026/07/30/1-injured-in-accidental-shooting-in-pompano-beach-deputies-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/30/1-injured-in-accidental-shooting-in-pompano-beach-deputies-say/</guid><dc:creator><![CDATA[Amanda Batchelor, Roy Ramos]]></dc:creator><description><![CDATA[A 4-year-old boy was critically injured Wednesday night in an accidental shooting at an apartment complex in Pompano Beach, authorities said.]]></description><pubDate>Thu, 30 Jul 2026 11:00:58 +0000</pubDate><content:encoded><![CDATA[<p>A 4-year-old boy was critically injured Wednesday night in an accidental shooting at an apartment complex in Pompano Beach, authorities said.</p><p><a href="https://www.local10.com/espanol/2026/07/30/balacera-accidental-en-pompano-beach-deja-una-persona-herida-dicen-agentes/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/30/balacera-accidental-en-pompano-beach-deja-una-persona-herida-dicen-agentes/">Leer en español</a></p><p>According to the Broward Sheriff’s Office, the shooting was reported at about 10:12 p.m. at the Windward Lakes Condominiums near the 4000 block of Southwest 15th Street.</p><p>BSO spokeswoman Gerdy St. Louis said as deputies and Pompano Beach Fire Rescue medics were heading to the scene, they were advised that the victim’s parents had transported the boy to a nearby fire station.</p><p>Medics there provided aid to the victim before he was transported to a local hospital for treatment, authorities said.</p><p>Neighbors who spoke to Local 10 News described the frantic moments as the boy’s father rushed to get his son help.</p><p>“They were running to the car and he just kept saying, ‘Get in the car, get in the car,’” one resident said.</p><p>Neighbors said they saw the family carrying the child to their vehicle before rushing away to get medical help.</p><p>“We saw them with the child, like, carrying him,” one resident said. “The mother was very upset and they all go in the car and sped away, and within minutes the police were here.”</p><p>As of Thursday, the boy was listed in critical condition. </p><p>St. Louis said detectives with BSO’s Crime Scene and Violent Crimes units are investigating the circumstances surrounding the shooting.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[MDSO: Man hospitalized after being found with stab wound outside northwest Miami-Dade market]]></title><link>https://www.local10.com/news/local/2026/07/31/mdso-man-hospitalized-after-being-found-with-stab-wound-outside-northwest-miami-dade-market/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/mdso-man-hospitalized-after-being-found-with-stab-wound-outside-northwest-miami-dade-market/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[A man was hospitalized after he was found with an apparent stab wound to his leg outside of a northwest Miami-Dade market on Thursday, according to the Miami-Dade Sheriff’s Office. ]]></description><pubDate>Fri, 31 Jul 2026 14:00:10 +0000</pubDate><content:encoded><![CDATA[<p>A man was hospitalized after he was found with an apparent stab wound to his leg outside of a northwest Miami-Dade market on Thursday, according to the Miami-Dade Sheriff’s Office. </p><p><a href="https://www.local10.com/espanol/2026/07/31/mdso-hospitalizan-a-hombre-tras-encontrarlo-con-herida-de-arma-blanca-afuera-de-mercado-en-el-noroeste-de-miami-dade/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/mdso-hospitalizan-a-hombre-tras-encontrarlo-con-herida-de-arma-blanca-afuera-de-mercado-en-el-noroeste-de-miami-dade/">Leer en español</a></p><p>Deputies on Friday said the man, who has not been identified, was stabbed at an unknown time and in an unknown location before he was eventually found outside of Northside Supermarket, located at 7990 NW 32nd Ave.</p><p>Authorities said Miami-Dade Fire Rescue medics transported him to a nearby hospital for treatment.</p><p>They said MDSO detectives responded to the scene and are investigating the circumstances surrounding the stabbing.</p><p>No other details about the stabbing were immediately released.</p><p>Anyone with information is urged to call Miami-Dade Crime Stoppers at 305-471-8477. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/T5YJFPUNLVEF5MHZDPXFCHP5N4.jpg?auth=827b99c420454ec011dacee1071f7dc4970474c4dee7f333755e217ddf698156&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[MDSO: Hospitalizan a hombre tras encontrarlo con herida de arma blanca afuera de mercado en el noroeste de Miami-Dade]]></title><link>https://www.local10.com/espanol/2026/07/31/mdso-hospitalizan-a-hombre-tras-encontrarlo-con-herida-de-arma-blanca-afuera-de-mercado-en-el-noroeste-de-miami-dade/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/mdso-hospitalizan-a-hombre-tras-encontrarlo-con-herida-de-arma-blanca-afuera-de-mercado-en-el-noroeste-de-miami-dade/</guid><dc:creator><![CDATA[Ryan Mackey]]></dc:creator><description><![CDATA[Un hombre fue hospitalizado después de que lo encontraran con una aparente herida de arma blanca en una pierna afuera de un mercado en el noroeste de Miami-Dade el jueves, según la Oficina del Sheriff de Miami-Dade.]]></description><pubDate>Fri, 31 Jul 2026 14:17:50 +0000</pubDate><content:encoded><![CDATA[<p>Un hombre fue hospitalizado después de que lo encontraran con una aparente herida de arma blanca en una pierna afuera de un mercado en el noroeste de Miami-Dade el jueves, según la Oficina del Sheriff de Miami-Dade.</p><p>Agentes informaron el viernes que el hombre, cuya identidad no ha sido revelada, fue apuñalado en un momento y lugar aún desconocidos antes de que finalmente lo encontraran afuera del Northside Supermarket, ubicado en el 7990 de la avenida 32 del noroeste.</p><p>Las autoridades informaron que paramédicos de Miami-Dade Fire Rescue lo trasladaron a un hospital cercano para recibir tratamiento.</p><p>Indicaron que detectives de la Oficina del Sheriff de Miami-Dade respondieron al lugar e investigan las circunstancias que rodean el apuñalamiento.</p><p>No se divulgaron de inmediato más detalles sobre el apuñalamiento.</p><p>Cualquier persona con información debe comunicarse con Miami-Dade Crime Stoppers al 305-471-8477.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/T5YJFPUNLVEF5MHZDPXFCHP5N4.jpg?auth=827b99c420454ec011dacee1071f7dc4970474c4dee7f333755e217ddf698156&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Man stabs his 12-year-old cousin in Sunrise, police say]]></title><link>https://www.local10.com/news/local/2026/07/31/man-stabs-his-12-year-old-cousin-in-sunrise-police-say/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/31/man-stabs-his-12-year-old-cousin-in-sunrise-police-say/</guid><dc:creator><![CDATA[Amanda Batchelor]]></dc:creator><description><![CDATA[A 28-year-old man was arrested Thursday night after he stabbed his 12-year-old cousin in Sunrise, authorities confirmed.]]></description><pubDate>Fri, 31 Jul 2026 12:04:43 +0000</pubDate><content:encoded><![CDATA[<p>A 28-year-old man was arrested Thursday night after he stabbed his 12-year-old cousin in Sunrise, authorities confirmed.</p><p><a href="https://www.local10.com/espanol/2026/07/31/policia-hombre-apunala-a-su-primo-de-12-anos-en-sunrise/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/31/policia-hombre-apunala-a-su-primo-de-12-anos-en-sunrise/">Leer en español</a></p><p>The stabbing was reported at an apartment complex in the 12800 block of Vista Isles Drive.</p><p>According to Sunrise police, the victim sustained non-life-threatening injuries and was transported to a local hospital for treatment.</p><p>A motive for the stabbing remains unclear.</p><p>No other details were immediately released.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/TFWFIOYNMBFHTJNIUFFLP5RBLY.jpeg?auth=e8be12b95cc127de4ec8c8c916ad980d444546bbc6a51149903e16f6229a56ff&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Policía: Hombre apuñala a su primo de 12 años en Sunrise]]></title><link>https://www.local10.com/espanol/2026/07/31/policia-hombre-apunala-a-su-primo-de-12-anos-en-sunrise/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/policia-hombre-apunala-a-su-primo-de-12-anos-en-sunrise/</guid><dc:creator><![CDATA[Amanda Batchelor]]></dc:creator><description><![CDATA[Un hombre de 28 años fue arrestado el jueves por la noche después de apuñalar a su primo de 12 años en Sunrise, confirmaron las autoridades.]]></description><pubDate>Fri, 31 Jul 2026 14:11:30 +0000</pubDate><content:encoded><![CDATA[<p>Un hombre de 28 años fue arrestado el jueves por la noche después de apuñalar a su primo de 12 años en Sunrise, confirmaron las autoridades.</p><p>El apuñalamiento fue reportado en un complejo de apartamentos ubicado en la cuadra 12800 de Vista Isles Drive.</p><p>Según la Policía de Sunrise, la víctima sufrió heridas que no ponen en peligro su vida y fue trasladada a un hospital local para recibir tratamiento.</p><p>El motivo del apuñalamiento aún no está claro.</p><p>No se divulgaron de inmediato más detalles.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/TFWFIOYNMBFHTJNIUFFLP5RBLY.jpeg?auth=e8be12b95cc127de4ec8c8c916ad980d444546bbc6a51149903e16f6229a56ff&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Twins acquire veteran reliever A.J. Minter from the last-place Mets for a pair of infield prospects]]></title><link>https://www.local10.com/sports/2026/07/31/twins-acquire-veteran-reliever-aj-minter-from-the-last-place-mets-for-a-pair-of-infield-prospects/</link><guid isPermaLink="true">https://www.local10.com/sports/2026/07/31/twins-acquire-veteran-reliever-aj-minter-from-the-last-place-mets-for-a-pair-of-infield-prospects/</guid><dc:creator><![CDATA[Associated Press]]></dc:creator><description><![CDATA[NEW YORK (AP) — The Minnesota Twins acquired left-handed reliever A.J. Minter from the New York Mets for minor league infielders Bruin Agbayani and Billy Amick on Friday, reinforcing a thin bullpen ahead of the trade deadline.]]></description><pubDate>Fri, 31 Jul 2026 14:10:39 +0000</pubDate><content:encoded><![CDATA[<p>NEW YORK (AP) — The Minnesota Twins acquired left-handed reliever A.J. Minter from the New York Mets for minor league infielders Bruin Agbayani and Billy Amick on Friday, reinforcing a thin bullpen ahead of the trade deadline.</p><p>The 19-year-old Agbayani, who is the son of former Mets fan favorite Benny Agbayani, is a middle infielder who hit .268 in 10 games for Fort Myers in low Class A this season. The sixth-round 2025 draft pick, a native of Hawaii, has been limited by injuries.</p><p>The 23-year-old Amick batted .217 with 23 homers in 86 games for Double-A Wichita this season, playing first and third base. He was a second-round draft pick in 2024.</p><p>Minter had a 2.35 ERA in 23 innings with 20 strikeouts and only two walks. He didn't make his season debut until May 26, going more than a year between major league appearances. His 2025 season ended after 13 appearances when he injured his left lat muscle in his back and needed surgery.</p><p>Minter signed a two-year, $22 million contract with the Mets in 2025. His 2024 season with the Atlanta Braves also was cut short by a torn labrum in his left hip, but when he's been healthy he's been one of baseball's most effective late-game lefties. The 33-year-old, who was a second-round 2015 draft pick by the Braves, has a 3.18 ERA with 456 strikeouts in 382 2/3 innings over 420 career appearances.</p><p>Minter likely will be the first of multiple Mets players moved before the trade deadline on Monday. They have the second-worst record in the National League.</p><p>The Twins, who started a nine-game road trip at Seattle on Friday, have a 4.92 relief ERA that ranks fifth worst in the major leagues. They lead the American League in runs scored and entered Friday one game out of a wild card spot.</p><p>___</p><p>AP MLB: https://apnews.com/hub/MLB</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/XA4UYI3YQQK27PMHEWXFJU4H2M.jpg?auth=35f4e0f5ff7066ec4aa1341e054d905bd041d1096d5c556d9da95169dd200dc4&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[New York Mets pitcher A.J. Minter delivers in the fifth inning of a baseball game against the Atlanta Braves, Friday, July 3, 2026, in Atlanta. (AP Photo/Colin Hubbard)]]></media:description><media:credit role="author" scheme="urn:ebu">Colin Hubbard</media:credit></media:content></item><item><title><![CDATA[Venezolanos reciben con esperanza inicio de agenda de trabajo entre el gobierno y la oposición]]></title><link>https://www.local10.com/espanol/2026/07/31/venezolanos-reciben-con-esperanza-inicio-de-agenda-de-trabajo-entre-el-gobierno-y-la-oposicion/</link><guid isPermaLink="true">https://www.local10.com/espanol/2026/07/31/venezolanos-reciben-con-esperanza-inicio-de-agenda-de-trabajo-entre-el-gobierno-y-la-oposicion/</guid><dc:creator><![CDATA[Por JORGE RUEDA, Associated Press]]></dc:creator><description><![CDATA[CARACAS (AP) — Con una prudencia comprensible luego de varias negociaciones fracasadas, los venezolanos reciben el sábado el comienzo de un nuevo ciclo de conversaciones entre el oficialismo y la oposición sobre una agenda conjunta para fortalecer la democracia y restituir derechos fundamentales tras casi tres décadas de gobiernos socialistas.]]></description><pubDate>Fri, 31 Jul 2026 13:22:35 +0000</pubDate><content:encoded><![CDATA[<p>CARACAS (AP) — Con una prudencia comprensible luego de varias negociaciones fracasadas, los venezolanos reciben el sábado el comienzo de un nuevo ciclo de conversaciones entre el oficialismo y la oposición sobre una agenda conjunta para fortalecer la democracia y restituir derechos fundamentales tras casi tres décadas de gobiernos socialistas.</p><p>Las negociaciones son encabezadas por miembros de la actual Asamblea Nacional de Venezuela, de abrumadora mayoría oficialista, y un grupo de exlegisladores opositores que en su momento intentaron destituir al entonces presidente Nicolás Maduro y cuenta con la mediación de Estados Unidos.</p><p>“Espero que finalmente esta gente (el gobierno) entienda que con las arbitrariedades de siempre no vamos a salir adelante, deben respetar los acuerdos”, dijo Soraida Martínez, un ama de casa de 58 años. “Los dos deben ceder por el bien del país”, agregó.</p><p>El primer encuentro se realizará casi siete semanas después de una reunión en Caracas entre el presidente del Legislativo, Jorge Rodríguez —hermano de la presidenta encargada Delcy Rodríguez— y la exdiputada Dinorah Figuera, quien regresó brevemente al país luego de casi ocho años en el exilio. Washington fue el principal impulsor de la iniciativa.</p><p>Figuera anticipó que la prioridad es desarrollar una agenda institucional por encima de los intereses de las distintas organizaciones políticas del país, como lo ha planteado la administración de Donald Trump.</p><p>Después de que fuerzas estadounidenses capturaran a Maduro y a su esposa en enero, el gobierno de Trump propuso un plan de tres fases para Venezuela que incluye la estabilización, recuperación y transición democrática.</p><p>La administración de Trump entiende que la agenda debe contemplar prioridades como la reconstrucción de las instituciones democráticas de Venezuela, el fortalecimiento del Consejo Nacional Electoral (CNE), de mayoría oficialista; el restablecimiento de garantías duraderas para la participación política y la salvaguarda de las libertades cívicas “esenciales para un debate político abierto”, destacó el Departamento de Estado en un comunicado emitido luego de la reunión Rodríguez y Figuera.</p><p>Los negociadores han dicho que además van a convocar a la unidad nacional para enfrentar las consecuencias de los dos potentes terremotos que sacudieron el país en 24 de junio y dejaron más de 5.500 fallecidos, 16.700 heridos y más de 20.000 personas sin hogar, según el más reciente reporte oficial.</p><p>En 2023 Figuera fue escogida para representar a los exlegisladores opositores de la Asamblea Nacional de 2015. Ese Poder Legislativo, de mayoría opositora, fue considerado ampliamente como la última institución de Venezuela elegida democráticamente.</p><p>Pese al fracaso de los cuatro anteriores procesos de diálogo —entre 2017 y 2024— una gran mayoría espera un buen resultado de la negociación dada la inédita situación política del país tras la destitución de Maduro (2013-2026) y la influencia estadounidense en el gobierno de Rodríguez.</p><p>Muchos consideran que esta vez sería posible lograr acuerdos mínimos que permitan mejorar la situación del país.</p><p>Los analistas, sin embargo, coinciden también en que una transición a la democracia luce todavía lejana y advierten que una elección libre será el final de un largo proceso. La fijación de un calendario y condiciones electorales no parece algo inmediato.</p><p>La transición a la democracia “no arranca con el inicio de un proceso de diálogo, se inicia con un reconocimiento y una restitución de garantías que han sido violadas”, dijo John Magdaleno, consultor político y profesor de la Universidad Católica Andrés Bello.</p><p>Según Magdaleno, primero deben restituirse libertades civiles y derechos políticos como la libertad de opinión y expresión, de prensa, de reunión y de asociación, la inviolabilidad de las comunicaciones privadas y otras garantías que protegen, aseguran y hacen cumplir los derechos humanos.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/I7O6CFSUMMDHNC2XZEQRKYROXU.jpg?auth=12ef5d43564ad66547396102c2e33be77584661f46de8548f7c3972bdcbe4aeb&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[La presidenta encargada de Venezuela, Delcy Rodríguez, habla en una conferencia de prensa sobre la respuesta del gobierno ante los sismos consecutivos, en Caracas, Venezuela, el jueves 2 de julio de 2026. (AP Foto/Pedro Mattey)]]></media:description><media:credit role="author" scheme="urn:ebu">Pedro Mattey</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/FMQHPJMR34TLTBSKXNIMYH5SC4.jpg?auth=5b8dd4cf21365665c1510a0d4b4b0ac8d2a1c426b863c95c835fca59789b7ed9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Partidarios de la líder opositora María Corina Machado conmemoran el segundo aniversario de las disputadas elecciones presidenciales de 2024 en Caracas, Venezuela, el martes 28 de julio de 2026. (AP Foto/Pedro Mattey)]]></media:description><media:credit role="author" scheme="urn:ebu">Pedro Mattey</media:credit></media:content></item><item><title><![CDATA[Latest updates from Local 10 Cuba Analyst Dr. Andy Gomez]]></title><link>https://www.local10.com/news/world/2026/07/02/latest-updates-from-local-10-cuba-analyst-dr-andy-gomez/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/02/latest-updates-from-local-10-cuba-analyst-dr-andy-gomez/</guid><dc:creator><![CDATA[Andy Gomez]]></dc:creator><description><![CDATA[The Cuban government announced yesterday at the closing of the annual National Assembly meeting that they are considering allowing Cuban exiles to visit the island, stay as long as they want and invest in Cuba.]]></description><pubDate>Thu, 02 Jul 2026 15:46:05 +0000</pubDate><content:encoded><![CDATA[<p><b>July 31: Cuba says they will consider allowing Cuban exiles to visit island, invest in Cuba </b></p><p>The Cuban government announced yesterday at the closing of the annual National Assembly meeting that they are considering allowing Cuban exiles to visit the island, stay as long as they want and invest in Cuba.</p><p>However, Cuban exiles with U.S. citizenship still face some U.S. restrictions imposed by the U.S. Treasury Department.</p><p><b>July 30: Cuban government announces elimination of 92,000 government jobs </b></p><p>The Cuban government announced this morning the elimination of 92,000 government jobs. A state worker in Cuba makes on the average $16-$18 per month.</p><p><a href="https://www.local10.com/espanol/2026/07/30/ultimas-actualizaciones-del-analista-de-cuba-de-local-10-dr-andy-gomez/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/30/ultimas-actualizaciones-del-analista-de-cuba-de-local-10-dr-andy-gomez/">Leer en español</a></p><p>Meanwhile, Cuba’s Prime Minister Manuel Marrero announced this week that Cuba was creating its first private bank under the Central Bank of Cuba, which is run by the Cuban government, and its president serves on the Council of Ministers of the government.</p><p>Why would any foreign investor want to invest&nbsp;in such a system with no protection for their money?</p><p><b>July 29 update: 5</b> <b>leading economists in Cuba release report entitled ‘A Proposal to Transform the Cuban Economy.’</b></p><p>Five leading economists in Cuba just released a report entitled “A Proposal to Transform the Cuban Economy.” The document lays out a structural diagnosis of the current economic crisis facing the nation and proposes, as a strategic goal, the creation of a social market economy underpinned by a democratic state governed by the rule of law.</p><p>While the report is good, the problem that I see is the creation of a democratic state. We must remember that Cuba did not have a democracy before the start of the Cuban Revolution in 1959. To transition a totalitarian state that has had a centralized economy for almost 68 years could take time. Time that Cuba and its population do not have given the current economic crisis.</p><p><b>July 27 update: 73 years after start of Cuban Revolution </b></p><p>Yesterday marked the 73<sup>rd</sup> anniversary since Fidel Castro, Raul Castro and their group of rebels attacked the Moncada Military Barracks in Santiago de Cuba. July 26, 1953 is considered the start of the Cuban Revolution. </p><p>Like Robert Frost’s poem, “The Road Not Taken”, the Cuban revolution took a path that destroyed the country and “never looked back.” Today, Cuba is at the end of what Fidel called its glory days.</p><p><b>July 24 update: Trump Administration announces series of new sanctions against Cuba</b></p><p>On Thursday, the Trump Administration announced a series of new sanctions against Cuba targeting the government’s military conglomerate Gaesa. However, this time it includes companies like Coral S. A. that took over operations from some sectors of GAESA to avoid U.S. sanctions and keep import operations in Cuba functioning. </p><p>The question many academics that follow Cuba like me are asking is whether the U.S. strategy moving forward is to force Cuba to eventually sell some of GAESA’s assets to the U.S.</p><p><b>July 23 update: US continues to send mixed signals as to what will be done with Cuba </b></p><p>This past Monday, the U.S. Department of State issued a 100-page report entitled “Cuba: The Capital of 21<sup>st</sup> Century Communism” that outlined why Cuba is a national security threat not only to the U.S., but to the entire world. The Cuban government reacted at once and not only criticized the report but blamed Secretary of State Marco Rubio with threatening the island nation.</p><p>On Wednesday at a press conference in the Philippines, Rubio, when asked by a reporter what the U.S. plan was for Cuba, used a much more diplomatic tone and said the U.S. is still willing to negotiate with Cuba.</p><p>Washington continues to send mixed signals as to what will be done with Cuba. What we do know is that the strategy used in Venezuela did not bring about regime change.</p><p><b>July 21 update: First humanitarian aid from US will arrive in Cuba</b></p><p>Today, the first humanitarian aid will arrive in Cuba as part of Secretary of State Marco Rubio’s offer to help the Cuban people as they experience the worst economic situation since the early 1990’s. Today’s cargo includes 700 hygiene kits and 700 food items to be distributed directly to the Cuban people by Catholic Relief Services Caritas Cuba and other faith-based organizations. </p><p>Secretary Rubio wants to let the Cuban people clearly know that the U.S. stands behind them and is willing to continue to help them as part of the U.S. commitment of $100 million in humanitarian aid.</p><p><b>July 20 update: Cuba releases artist Luis Manuel Otero Alcantara </b></p><p>This past Saturday, Cuba released artist and opposition leader Luis Manuel Otero Alcantara after serving five years in jail. Otero Alcantara was one of the leaders of the San Isidro movement that led to large protests across the island nation five years ago. </p><p>Upon arriving in Miami, Otero Alcantara thanked the Cuban American community for its support and asked Cuba to release all political prisoners in jail.</p><p><b>July 16 update: US Department of Defense pays $3 million to US personnel affected by Havana Syndrome</b></p><p>The U.S. Department of Defense has paid $3 million in compensation to U.S. personnel affected by the mysterious condition known as Havana Syndrome, making the first payment under the 2021 Havana Act.</p><p>Havana Syndrome first appeared in 2016 when U.S. diplomats and intelligence officers in Havana, Cuba reported unusual symptoms, including intense head pressure, dizziness, nausea, hearing disturbances and memory problems.</p><p><b>July 14 update: New U.S. sanctions increase pressure on Cuba’s military-run economy</b></p><p>The United States on Monday introduced new sanctions targeting companies controlled by GAESA, Cuba’s military economic conglomerate, as well as some of the military brigades responsible for suppressing protests like the ones we saw the other day.</p><p>How much longer can the Cuban government hold on? Information continues to reach U.S. officials indicating that there are sectors within the Cuban government that are increasingly concerned about how much longer they can survive without negotiating with the U.S. government before facing a complete collapse of their system.</p><p><b>July 10 update: Does Raul Castro’s grandson have the full authority to negotiate for the Cuban government?</b></p><p>As I expected, there seems to be a small crack within the inner circle of the Cuban government. Some have criticized Raulito (Raul Castro’s grandson) for offering to negotiate directly with President Trump. The criticism comes as to whether he has the full authority to negotiate for the Cuban government or is he just negotiating for the Castro family?</p><p>Yesterday, the Cuban Communist Party (PCC) backed Raulito’s efforts, but the military leadership has remained quiet.</p><p><b>July 8 update: United Nations has no legal right to lift U.S. embargo on Cuba </b></p><p>Every year, Cuba argues in front of the United Nations that the U.S. economic embargo is the cause for their economic problems. Each year, Cuba loses more support for their argument. The United Nations has no legitimate or legal right to lift the embargo. The U.S. Congress can only lift the embargo.</p><p>The Cuban government propaganda machine has failed. Most Cubans on the island, including economists on the island, blame the Cuban government for their current poor economic conditions. </p><p><b>July 6 update: Raul Castro’s grandson says Cuba is willing to negotiate with US</b></p><p>Reuters reported earlier this morning that Raul Castro’s grandson Raulito, known as “El Cangrejo,” announced that Cuba is willing to negotiate with the U.S. The question we need to ask ourselves is whether Raulito is negotiating on behalf of the Castro family or the Cuban government?</p><p>We know that Cuba has been selling some of their assets, including some belonging to the military economic conglomerate GAESA in the last couple of weeks. Cuba’s attempt to invite foreign investment has not attracted many takers for the fear of losing their money.</p><p><b>July 2 update: Cuba’s culture of fear complicates a Democratic transition</b></p><p>When we talk about Cuba, we usually concentrate on their centralized political and economic system. However, we fail to recognize that individuals that have lived under totalitarian regimes have had to survive under a culture of fear. Such system of government creates a psychological set of attitudes and values that help define the daily behavior in order to align the people’s wants and needs to the restrictions imposed by the government.</p><p>To break such behaviors could take years of psychological training and change. Therefore, transitioning a totalitarian state to support a transition to some form of a Democratic government could take time.</p><p><b>Dr. Andy S. Gomez’s June updates can be viewed by </b><a href="https://www.local10.com/news/world/2026/06/01/looking-to-the-future-should-cuban-americans-invest-in-cuba/" target="_self" rel="" title="https://www.local10.com/news/world/2026/06/01/looking-to-the-future-should-cuban-americans-invest-in-cuba/"><b>clicking here. </b></a></p><p><i>Dr. Andy S. Gomez is Local 10’s Cuba Analyst. Gomez is considered one of the leading scholars on Cuba. He worked in higher education for 32 years before retiring from the University of Miami in 2012. </i></p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/5NDDUTEZ4FVQXEQYTAXMVGREDM.jpg?auth=3d75ab1a2a1bd37503700698408e35d51aa788e9f7193ef47d03e625fcbc5a8d&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A vintage car drives past the Hotel Meliá Habana in Havana, Cuba, on Tuesday, July 21, 2026. (AP Photo/Ramón Espinosa)]]></media:description><media:credit role="author" scheme="urn:ebu">Ramon Espinosa</media:credit></media:content></item><item><title><![CDATA[Family seeks release of Venezuelan woman detained by ICE]]></title><link>https://www.local10.com/news/local/2026/07/30/family-seeks-release-of-venezuelan-woman-detained-by-ice/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/30/family-seeks-release-of-venezuelan-woman-detained-by-ice/</guid><dc:creator><![CDATA[Magdala Louissaint]]></dc:creator><description><![CDATA[Family members of a Venezuelan woman detained by U.S. Immigration and Customs Enforcement gathered outside the ICE detention facility in Pompano Beach Thursday, calling for her release.]]></description><pubDate>Thu, 30 Jul 2026 21:36:20 +0000</pubDate><content:encoded><![CDATA[<p>Family members of a Venezuelan woman detained by U.S. Immigration and Customs Enforcement gathered outside the ICE detention facility in Pompano Beach Thursday, calling for her release.</p><p><a href="https://www.local10.com/espanol/2026/07/30/familia-busca-la-liberacion-de-mujer-venezolana-detenida-por-ice/" target="_blank" rel="noreferrer" title="https://www.local10.com/espanol/2026/07/30/familia-busca-la-liberacion-de-mujer-venezolana-detenida-por-ice/">Leer en español</a></p><p>Claudia Caglianone’s family said she was detained earlier this month at Fort Lauderdale-Hollywood International Airport.</p><p>“When people hear about detainees, the picture that comes to mind is somebody that they’ve been told to fear,” said her cousin, Gabriel Dominguez. “When I think of that, I think of a young woman who spent the majority of her life trying to do the right thing.”</p><p>The family said Caglianone moved to the United States in 2017, applied for asylum shortly after arriving and received Temporary Protected Status in 2023 while her asylum case remains pending.</p><p>“So here we are, standing together and doing the very thing for her that she’s done for so many of us — to show up,” Dominguez said.</p><p>He also called his cousin “living proof that the reality is much more complicated than any narrative that could be painted.”</p><p>The family said Caglianone spent time at the Miramar detention facility before being transferred to the Pompano Beach facility.</p><p>U.S. Rep. Debbie Wasserman Schultz visited the facility on behalf of the family.</p><p>She said she had no concerns about the conditions inside but remains worried about those being held there.</p><p>“I am very concerned that there are 671 people in this facility that shouldn’t be here, that should not have been detained in the first place,” Wasserman Schultz said.</p><p>“We’ll continue to show up until we bring her home,” Dominguez said.</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[Jackson Health union head fears ‘stress on the system’ from TPS-recipient job losses]]></title><link>https://www.local10.com/news/local/2026/07/30/jackson-health-union-head-fears-stress-on-the-system-from-tps-recipient-job-losses/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/30/jackson-health-union-head-fears-stress-on-the-system-from-tps-recipient-job-losses/</guid><dc:creator><![CDATA[Christina Vazquez]]></dc:creator><description><![CDATA[Martha Baker is a registered nurse and the president of SEIU 1991, the union that represents nurses, doctors and healthcare professionals within the Jackson Health System. ]]></description><pubDate>Thu, 30 Jul 2026 22:31:19 +0000</pubDate><content:encoded><![CDATA[<p>Martha Baker is a registered nurse and the president of SEIU 1991, the union that represents nurses, doctors and healthcare professionals within the Jackson Health System. </p><p>“(The) Jackson leadership team tells me there’s about 50 Haitian employees who are subject to be terminated due to the TPS (Temporary Protected Status) being revoked by Washington, and it puts a wear and tear on the remaining staff,” she said. “Missed lunches, double shifts; it puts a financial burden on the hospital.”</p><p>In a statement provided to Local 10 News, a spokesperson for Jackson Health System said contingency staffing plans to prevent disruptions to patient care are in place, including overtime.</p><p>“You know, to pay overtime alone is silly when you just had somebody yesterday who was well-trained,” said Baker. “At Jackson, with our mission to take care of all residents regardless of your ability to pay, it’s just a shame that we would put more stress on the system. Jackson struggles every day to break even.”</p><p>The hospital group added that 50 employees affected is a small fraction of their 15,000 employees.</p><p>There was a similar sentiment from the spokesperson for Broward Health who told Local 10 News that the 47 staff members impacted there represents less than 1% of their total workforce.</p><p>A spokesperson for Memorial Healthcare System told Local 10 News they had 27 impacted employees out of 17,000. </p><p>“While it may seem like a small number with only 50 being affected, 50 is a big number,” said Baker. “That’s a big number to hire.”</p><p>That is especially true for those with specialized nursing skills, like the two she says who worked in the transplant unit.</p><p>“Almost similar to an ICU or a step down unit because these patients are so sick and it takes so long, not everybody can work that floor unless you’ve been properly trained,” said Baker. “Two of our Haitian nurses are being sent back.”</p><p>She added that filling those vacancies can also take a financial toll. </p><p>“They say for every nurse you lose, you lose $100,000, and that’s the cost it takes to hire, to train, to process, to precept, and when they’re what we call non-productive while they’re training for eight to 12 weeks, we’re paying them,” said Baker. “Those dollars add up, all the way back to advertising for a vacancy, and interviewing, adding all the time put together -- it’s a significant cost and loss to the system.”</p><p>This is happening at a time the Jackson Health System is experiencing patient growth and is actively hiring. </p><p>Baker also responded to the the claim that TPS beneficiaries with work permits take jobs away from American citizens.</p><p>“That’s a myth in healthcare because there’s too many vacancies in healthcare,” she said. “The problem is, can we survive the shortages we’re challenged with? So I can’t believe anybody would be turned away from a job in healthcare because some immigrant got it over them. That’s kind of, I think, more politics at its worst. A divisiveness.”</p><p>Baker made a plea to those in Congress who have the power to make a difference. </p><p>“Do your job,” she said. “We love our Haitian members in our community and at Jackson. It’s disgusting that our senators are allowing this to happen. We are sending our Haitian teammates back to what is probably one the most dangerous countries on Earth today.”</p><p>Baker also offered advice for the people being impacted by the loss of TPS. </p><p>“Everyone asking, what should I do? Should I show up to work? The main thing I tell them is to speak with your employer,” she said. “You are not allowed to work while unauthorized in the country, but there are different cases, some TPS recruitments who have filed for other forms of relief, so those individuals are a little safer, but it is up to your employer. The employer knows the law, that they cannot have someone working who is unauthorized to do so in the United States. So when I say don’t panic, make sure that you have all your affairs in order, get all your immigration affairs in order, all your personal affairs in order.”</p><p>She went on to say that many still feel they are in “legal limbo” because lower courts still need to weigh in on an exact timeline for executing final administrative orders.</p><p>“This is not the time to be missing any immigration hearings, any appointments, any ICE check-ins, and I understand there’s a well-founded fear of being arrested, and I can’t guarantee, no attorney can guarantee that that’s not going happen,” Baker said. “But I would rather you proceed with the proper procedures than for you to sit here and then there’s a final order of removal because now it just becomes more issues for you.” </p><p>Full statement from Jackson Health System:</p><blockquote><p><b>Jackson Health System recognizes that the expiration of Temporary Protected Status (TPS) is a difficult and uncertain time for affected employees and their families. Jackson has worked closely with these employees to submit any documentation that could establish continued work authorization. Federal law requires that employees whose work authorization expires and who cannot provide alternative eligibility documentation can no longer remain employed. Jackson has continued to employ affected team members for as long as federal TPS extensions remained in effect, and we would welcome them back should they regain work authorization.</b></p><p><b>Approximately 50 employees are affected, a small fraction of our 15,000+ team members. We have contingency staffing plans, including per diem staff, agency personnel, and overtime, to ensure uninterrupted, high-quality patient care throughout this transition.</b></p><p class="citation">Krysten Brenlla, Media Relations & Branded Content Manager, Jackson Health System</p></blockquote><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[With no incumbent seeking reelection, 2 women are running for Broward School Board in District 7]]></title><link>https://www.local10.com/news/local/2026/07/30/with-no-incumbent-seeking-reelection-2-women-running-for-broward-school-board-in-district-7/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/30/with-no-incumbent-seeking-reelection-2-women-running-for-broward-school-board-in-district-7/</guid><dc:creator><![CDATA[Saira Anwer]]></dc:creator><description><![CDATA[With Broward County District 7 School Board Member Nora Rupert not seeking reelection, two candidates are now eyeing the seat to help lead the district that includes Coconut Creek, Deerfield Beach, Hillsboro Beach, Lighthouse Point, Margate, Pompano Beach and some tribal land in the county. ]]></description><pubDate>Thu, 30 Jul 2026 22:33:39 +0000</pubDate><content:encoded><![CDATA[<p>With Broward County District 7 School Board Member Nora Rupert not seeking reelection, two candidates are now eyeing the seat to help lead the district that includes Coconut Creek, Deerfield Beach, Hillsboro Beach, Lighthouse Point, Margate, Pompano Beach and some tribal land in the county. </p><p>U.S. Army veteran and nurse Cynthia Dominique described how she would tackle the district’s severe financial challenges if elected.</p><p>“I believe we have to take a holistic approach,” she said. “We have to find a way to pay our teachers more, including the staff who make learning possible -- the bus drivers, the cafeteria workers, the custodian staff.”</p><p>Candidate Rochelle “Shelly” Soffer is a school speech language pathologist and former teacher.</p><p>“When we get the budget, we have to scrutinize the budget,” she said. “Where are we over-spending? Where are we under-spending when we make these allocations? When we make these projections, where are the projections not aligning?”</p><p>Both candidates detailed how they would address the district’s declining enrollment as families opt out of traditional public school.</p><p>“Why are they looking at these other avenues? What is it that we are not doing as a county that would make them come back?” asked Soffer. “Now we’ve heard safety and security, but we also gotta look at programming.”</p><p>Said Dominique: “The programs that we implement, the technology that we implement, we should be scrutinizing everything to make sure it’s actually improving student outcomes and we’re getting a return on our investment.”</p><p>School board elections are nonpartisan. </p><p>While you do have to be registered to vote, you are not required to be registered with a political party in order to vote for who you want to see represent your district on the school board. </p><p>The election is set for Aug. 18. </p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[The Latest: Trump announces deal for Hamas to disarm in Gaza, but hurdles and uncertainty remain]]></title><link>https://www.local10.com/news/politics/2026/07/31/the-latest-trump-announces-deal-for-hamas-to-disarm-in-gaza-but-hurdles-and-uncertainty-remain/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/the-latest-trump-announces-deal-for-hamas-to-disarm-in-gaza-but-hurdles-and-uncertainty-remain/</guid><dc:creator><![CDATA[By The Associated Press, Associated Press]]></dc:creator><description><![CDATA[Hamas said Friday that it reached an agreement to disarm, a significant move that could help end the war in Gaza — but one that will face many hurdles and could take a long time to achieve, if at all. Israel has not commented on the deal, which President Donald Trump announced hours earlier. It comes nine months after a U.S.-brokered ceasefire to end the fighting between Israel and the group was signed.]]></description><pubDate>Fri, 31 Jul 2026 21:01:05 +0000</pubDate><content:encoded><![CDATA[<p>Hamas said Friday that it reached an agreement to disarm, a significant move that could help end the war in Gaza — but one that will face many hurdles and could take a long time to achieve, if at all. Israel has not commented on the deal, which President Donald Trump announced hours earlier. It comes nine months after a U.S.-brokered ceasefire to end the fighting between Israel and the group was signed.</p><p>Trump is taking Friday’s Cabinet meeting on the road — to the Camp David presidential retreat in Maryland. It's the first Cabinet meeting at Camp David in Trump’s second term after an earlier attempt in May was scuttled because of bad weather.</p><p>Trump said Thursday he may pull acting Attorney General Todd Blanche’s nomination for the full-time post to avoid conceding to Senate Republicans’ demands over a sweeping tax audit immunity deal benefiting the president and members of his family.</p><p>Here's the Latest:</p><p>Trump blames Minnesota governor for cyberattacks. Cites no evidence</p><p>The president alleged that the recent cyberattacks were the fault of the state, including Democratic Gov. Tim Walz. Authorities have not yet publicly named the source of the attacks.</p><p>During a Cabinet meeting on Friday at the Camp David presidential retreat in Maryland, Trump also repeated myriad false claims that have become part of his regular talking points about topics such as immigration, foreign conflicts and prescription drug prices.</p><p>▶ Read more here about some of the claims.</p><p>Sign shows tours closed at Kennedy Center</p><p>A sign at the Kennedy Center on Friday said tours are closed.</p><p>It comes after the New York Times reported that the center is pausing free public tours.</p><p>UN chief urges Hamas and Israel to follow US roadmap to peace in Gaza `without any questions’</p><p>Secretary-General Antonio Guterres called Trump’s announcement on Hamas agreeing to disarm in Gaza the only “good news” in recent days that have seen a military escalation in the Gulf, including a collapse of trade through the Strait of Hormuz.</p><p>Hamas said Friday it will begin disarming as part of a stalled deal announced by Trump that requires Israel to halt attacks in Gaza and withdraw from the territory which the Palestinians insist must be part of a future state. Israel’s prime minister has not responded to what could be a major breakthrough to ending the war in Gaza.</p><p>Guterres told U.N. reporters Friday he has a message to both Israel and Hamas: There is a roadmap that must be implemented now “without any questions, skepticism, or determination to undermine it.”</p><p>He warned that the six-month war in Iran “is increasingly becoming a driver of instability,” saying energy markets have been upended, food and fertilizer prices have surged, “supply chains are buckling,: and “around the world families are struggling to put food on the table.”</p><p>Trump has wrapped up the public portion of his Cabinet meeting</p><p>The president gave a lengthy opening statement, heard from top officials including Secretary of State Marco Rubio and answered questions on Iran and array of other topics.</p><p>He has now asked the press and cameras to leave, meaning the rest of the meeting’s proceedings won’t happen in view of the public.</p><p>Trump steps back from pledge to let Ukraine make Patriot interceptors</p><p>Asked about his previous commitment to give Ukraine a license to make Patriot air defense systems to counter Russian missiles, Trump said, “We have not agreed to that.”</p><p>“We’re talking about it. But it’s a hard thing to give away that kind of technology,” Trump said at his Cabinet meeting on Friday.</p><p>“I don’t think this would ever happen, but you know there’s people that, you give that technology, they can someday turn on you,” Trump added. “You look at war, that’s happened a couple of times over the years, right? So we have to be very careful.”</p><p>It was a contrast to earlier remarks from the sidelines of the NATO summit this month, where Trump said, “We’ll give them the right to make Patriots.”</p><p>Trump said he discussed the topic with Ukrainian President Volodymyr Zelenskyy when they met in Washington on Tuesday. Zelenskyy also met with senators to make a case for why Ukraine needs the interceptors.</p><p>Trump claims Iran war helped drive Hamas to disarmament agreement</p><p>The president during his Cabinet meeting said the newly-minted agreement aimed at leading to disarmament of the Palestinian group Hamas and Israel’s withdrawal from Gaza and transition of oversight of the territory to a civilian body will have “ups and downs.”</p><p>Still, he said this week’s agreement is a “great breakthrough” that has been helped along by the U.S. and Israel’s war with Iran, which has served as Hamas’ prime backer.</p><p>“Nobody’s ever thought that would be possible to disarm Hamas,” Trump said. “That shows you how much success we’re having with Iran, because if you go four months ago or five months ago, a deal like that would have been impossible.”</p><p>RFK Jr talks about first visiting Camp David 6-plus decades ago</p><p>Trump health chief Robert Kennedy Jr. said he was visiting the presidential retreat on Friday for the first time in about 62 years.</p><p>“My father loved this place, my uncle loved this place,” said Kennedy, who is the son of former Attorney General and New York Sen. Robert Kennedy.</p><p>He said that his uncle, President John F. Kennedy, was resentful of his predecessor, President Dwight D. Eisenhower, for naming it Camp David after Eisenhower’s grandson.</p><p>Kennedy said that had his uncle lived to a second term, he planned to rename the retreat Shangri-La, which was its original moniker before Eisenhower changed it.</p><p>Kennedy also cheered Trump for allowing reporters in the compound, saying Trump had opened “inner sanctum” of the presidency.</p><p>Trump later pointed to a picture of John F. Kennedy on the wall and said he was a “handsome guy.”</p><p>Trump says the anti-weaponization fund is ‘dead’</p><p>The comments came after the president spent the morning defending the $1.8 billion fund on social media.</p><p>“It is dead,” Trump said. “But I wish it weren’t, to be honest with you.”</p><p>Trump continued to defend the people who could potentially benefit from the fund, mainly those who stormed the Capitol on Jan. 6, 2021.</p><p>“Their families have been ruined,” Trump said. Those people “wanted to go to a rally or an event and ended up spending the rest of their lives in horror.”</p><p>Trump acknowledged that Blanche, his attorney general pick, has been a “pawn in this whole thing.”</p><p>Trump says ‘we just want to win’ in Iran</p><p>The president has previously insisted that Iran has been “completely defeated” militarily. But in his engagement with reporters at Camp David on Friday, he acknowledged that he expects U.S. military action will likely continue for some time.</p><p>“We’ll be hitting them very hard,” Trump said. “You know, at some point they’re going to say, ‘We just can’t take it anymore.’”</p><p>Trump cheers Clayton for first Cabinet meeting</p><p>Jay Clayton, confirmed earlier this week as the new director of national intelligence, is at Camp David for his first formal Cabinet meeting.</p><p>Clayton was confirmed by the Senate on party lines earlier this week.</p><p>“He’s with us today, as you know,” Trump said. “He’s had a big victory.”</p><p>Trump said of Clayton, a former federal prosecutor and chairman of the Securities and Exchange Commission: “His whole life has been about doing a fantastic job.”</p><p>Trump says he doesn’t think International Criminal Court is targeting him but ‘it could happen’</p><p>Secretary of State Marco Rubio complained that the international court based in the Hague was very arrogant and had unfairly targeted leaders around the world.</p><p>That prompted the president to interject: “There’s no indication they’re after me. It could happen.” He didn’t elaborate, but his suggestion drew laughter from Cabinet members.</p><p>Trump said Rubio wasn’t trying to defend him personally, but instead wanted to shield other court targets. He said that could include people like Israeli Prime Minister Benjamin Netanyahu.</p><p>“There is no indication that I’m one of them, at this moment,” Trump added again for emphasis, drawing still more laughter.</p><p>Trump says US could see surge of migrants like Spain if Republicans don’t win midterms</p><p>Spain is grappling to respond after some 60,000 migrants crossed from Morocco into Spain’s tiny Ceuta territory in the past 24 hours.</p><p>Roughly half of them have already made their way back voluntarily, according to the Spanish government, but Trump suggested the moment should be taken as a warning to U.S. voters as midterm elections near.</p><p>“You know I saw Spain yesterday and I watched the catastrophe that took place. It looks like an invasion of a country by hundreds of thousands of people,” Trump said. “And that same thing is going to happen to us if the Republicans don’t get elected. Except worse, much bigger.”</p><p>Trump also criticized Spain’s left wing government led by Pedro Sánchez, claiming the country’s “weak law, bad management” is to blame.</p><p>US to make visa bond requirements permanent, affecting mostly African countries</p><p>The State Department is making permanent a pilot program under which citizens from 50 countries, mainly in Africa, are required to post bonds to apply for a U.S. visa, and it’s raising the cost as well, to as much as $20,000.</p><p>A draft notice published Friday in the Federal Register says a review “provided sufficient data” to suggest the bond program effectively enforces compliance, and would be made permanent by the end of August. The notice is to be formally published on Monday. Additional countries may be added to the list, found here.</p><p>The program requires holders of passports from the affected countries to pay the bond when being interviewed for business and tourist visas. The regulation says the bond will be refunded if the application is denied or after the person leaves the United States.</p><p>The Trump administration rolled out the program as a way of cracking down on visa overstays.</p><p>Trump starts Cabinet meeting at Camp David</p><p>The president began his Cabinet meeting Friday by saying his team was meeting in a “very special room.”</p><p>The White House has tried to highlight that this was the first televised Cabinet meeting at the presidential retreat.</p><p>Trump said he invited the news media to watch because he believes in “transparency,” before turning to his standard talking points about the economy and border security, among other issues.</p><p>CEO defends Exxon’s performance at a time of global supply shortages</p><p>American refineries are running at near-full capacity and poised to benefit because some refineries in the Middle East and Russia were damaged. And Asia can’t get the amount of Middle East oil needed for refining.</p><p>“Penalizing the businesses who stood by those countries and provided that product going forward is very short-sighted,” Exxon CEO Darren Woods said in a call with investors Friday. “We canceled investments that we had planned for Europe based on the last time they passed a windfall profits tax.”</p><p>Lawmakers propose taxing the war profits of major oil producers</p><p>Exxon and Chevron don’t set the price of American oil, which has ricocheted between $68 and $115 a barrel, driven by supply and demand, and what traders, refiners and other buyers are willing to pay.</p><p>Democrats nevertheless hope to tax major oil producers for profits from 2026 onward and redistribute that revenue to consumers.</p><p>“It’s fair to put a windfall profits tax on inordinate windfall profits rather than cut off children’s food programs,” said Sen. Sheldon Whitehouse. His measure and a companion bill by Rep. Ro Khanna of California would impose a per-barrel tax on companies that produced or imported at least 300,000 barrels of oil per day in 2025.</p><p>The UK and other European countries have extended temporary windfall profits taxes on fossil fuel companies to 2030, according to Tax Foundation Europe.</p><p>Critics say the energy company windfalls are unjustified</p><p>“There are constituencies around the world who are having a very good crisis, and the oil producers are one of them,” said Patrick Galey, fossil fuels lead at Global Witness, a nonprofit organization that investigates environmental issues.</p><p>“When you compare that to the hundreds of millions of people who are struggling with rolling blackouts, with electricity curbs, rationing, waiting in line for food queues, or the disruption to fertilizers and the potential impact that that has on food prices, we don’t think that it’s a justifiable price for the rest of the world to be paying.”</p><p>Major oil companies reap massive profits as US and Iran fighting drives energy prices higher</p><p>American oil and gas giants are announcing huge spring windfalls thanks to the fighting between Iran and the U.S. that made consumers around the world pay more for fuel.</p><p>Exxon Mobil on Friday reported that its second quarter profits doubled to $14.53 billion, boosted by record diesel production. The oil giant, based in Spring, Texas, brought in $116.02 billion in revenue, up 42%. Chevron, based in Houston, nearly quadrupled its profits to $12.07 billion and revenue jumped 56% to $70.06 billion.</p><p>Six of Europe’s largest oil companies posted combined first-quarter profits of $22 billion, more than 40% higher than last year.</p><p>Saudi Arabia announces Red Sea defense alliance plan</p><p>The kingdom said the alliance includes 14 countries to strengthen maritime security, safeguard freedom of navigation and secure international trade routes and energy supply corridors in the Red Sea region.</p><p>The Iran war has severely disrupted global shipping through the Strait of Hormuz. Yemen’s Houthi rebels have declared a blockade on Saudi Arabia over a separate but related conflict, putting at risk another major trade corridor.</p><p>Saudi Arabia’s Defense Ministry said Thursday that the coalition is “defensive in nature,” and that access “remains open to all willing countries.” Oman and the United Arab Emirates were the only two Gulf countries that did not back Saudi Arabia’s statement. Turkey, Egypt and Pakistan were among those that joined the proposed alliance.</p><p>Latest developments in the Iran conflict</p><p>No U.S. strikes were reported in Iran on Friday.</p><p>Iran fired drones at Kuwait, a Gulf country hosting U.S. forces, and said it had also fired at oil tankers in the Strait of Hormuz, a key waterway for global oil and gas shipments, which has been largely closed by the fighting.</p><p>Kuwait’s Defense Ministry said Friday its armed forces had shot down drones inside Kuwaiti airspace. It said the Iranian attacks had targeted several vital military facilities, causing material damage from falling shrapnel but no casualties. It did not specify how many drones were intercepted. Iranian state media said Iran had targeted an air base in Kuwait with drones, in retaliation for U.S. strikes on Thursday.</p><p>Iran’s Revolutionary Guard claimed to have hit two oil tankers attempting to pass through the Strait of Hormuz. Iranian state media said four other tankers had turned around. The report did not provide further details on which flags or ownership the tankers were sailing under, or say whether there were any casualties.</p><p>FIFA chief operating officer tells AP that staff was ‘deceived’ by World Cup sell-off plan that ‘must not go ahead’</p><p>FIFA’s chief operating officer Kevin Lamour said in a statement to The Associated Press that the staff was “deceived” by Gianni Infantino’s lack of openness while planning the scheme to sell a World Cup stake to private investors linked to Trump’s family.</p><p>“It is the project of one person,” wrote Lamour, a long-time colleague of Infantino at both FIFA and UEFA. “Not only must this project not go ahead … but the time has now come for football political leaders to ask themselves the right questions and make the right decisions.”</p><p>Lamour did not resign the post he held since 2024 but said he had a duty to his colleagues to speak out about the “contempt and intimidation” FIFA staff has faced.</p><p>“And if that means I lose my job, then so be it” the French official said. “I will understand and respect that decision. At least I’ll sleep well tonight.”</p><p>▶ Read more</p><p>Wisconsin Democrats shaken by Mandela Barnes’ exit from governor’s race</p><p>The former lieutenant governor’s announcement came Thursday amid news that the state party had reviewed past allegations of inappropriate behavior, further shaking up the race less than two weeks before the Aug. 11 primary in Wisconsin, where independents and moderates are key voters and where Trump won two razor-thin elections.</p><p>That leaves four Democrats, including most prominently Milwaukee County Executive David Crowley, who rejoined the race with the endorsement of Gov. Tony Evers after Lt. Gov. Sara Rodriguez ended her run amid a campaign finance scandal two weeks ago, and insurgent democratic socialist State Rep. Francesca Hong, running far to the left.</p><p>The single mother and former line cook has captured the imaginations of liberal Democrats upset with the party establishment, but she’s raised concerns that her past calls for defunding the police will hurt her chances against Trump-backed Republican U.S. Rep. Tom Tiffany in November.</p><p>▶ Read more</p><p>Details on disarmament from the Hamas statement</p><p>Hamas said Friday that it’s committed to implementing the Gaza ceasefire agreement, including the new roadmap focused on the steps it needs to take to disarm.</p><p>The group’s statement says it and other Palestinian factions agreed to the framework as part of a national consensus to protect people in Gaza and help meet their humanitarian needs.</p><p>It said Israel must adhere to the ceasefire deal agreed to in October and halt its attacks in order for implementation to move forward, echoing language in the new roadmap released Friday by the Board of Peace.</p><p>The agreement calls for Hamas, which ran the government in Gaza, to first turn over all police weapons to a national committee of technocrats responsible for administering the strip. Only later, once the Israeli military withdraws from Gaza, would it be required to decommission and hand over its heavier weapons, according to the text.</p><p>▶ Read more</p><p>Democratic candidates grapple with ‘defund the police’ baggage</p><p>With midterm elections looming, Democrats hope to convince voters that Trump administration lawlessness is the biggest threat to their rights and pocketbooks. The party’s past debates over crime and safety threaten to undermine that pitch.</p><p>Across the country, Democratic candidates are facing tough questions about their past calls to “defund the police” by reimagining public safety services or redirecting spending to other social programs — a prominent demand during the protests that followed George Floyd’s death.</p><p>Democratic leaders fear the outlier opinions may sink their chances of gaining ground in Congress, governor’s mansions and statehouses as the party’s rising left flank captivates its base, just as Republicans stoke fears about crime, immigration and democratic socialism in their closing midterm message.</p><p>▶ Read More</p><p>Asian soccer joins Europe and North America in opposing World Cup privatization plan</p><p>The Asian Football Confederation, a key ally in Gianni Infantino’s presidency of global soccer, has joined UEFA and CONCACAF in protesting his plan to sell stakes in the World Cup to private equity investors tied to the Trump family.</p><p>“Football should never have been placed in such a position,” said the Asian soccer body. Together with Europe and North America, they count 136 of FIFA’s 211 members.</p><p>“Some things are simply too important to sell,” UEFA said in a statement Thursday announcing a boycott of FIFA events.</p><p>Infantino’s secret proposal revealed Tuesday would spin off its commercial operations in a new $20 billion subsidiary 20% owned by private investors, whose core investor would be a New York investment firm created by Joshua Kushner, the brother of Trump’s son-in-law Jared Kushner.</p><p>Trump swings at Cornyn over Blanche nomination</p><p>Trump, still frustrated about the status of his attorney general pick, began his Friday morning by going after one of the Republican senators who was holding up Todd Blanche’s confirmation to lead the Justice Department.</p><p>Continuing a criticism he began earlier this week, Trump said Texas Sen. John Cornyn had no issue with the $1.8 billion anti-weaponization fund until after he endorsed his primary challenger, Ken Paxton, for the Senate.</p><p>In the post, Trump also continued to defend the controversial fund, which Blanche said in his Senate testimony was dead. Republican senators want him to put that commitment into writing.</p><p>“Perhaps there has never been a group of people treated so badly in our Nation’s history,” Trump said. “They are suffering still, many ruined, and I felt that they should be given compensation for what has been done to them.”</p><p>Blanche met privately with Cornyn and North Carolina Sen. Thom Tillis over the issue later Thursday and the sides were working collaboratively, although Blanche’s confirmation prospects still remain unclear.</p><p>FIFA adviser on White House’s World Cup panel resigns to protest Infantino private equity plan</p><p>Senior FIFA adviser Carlos Cordeiro, who represented the soccer body on the White House Task Force for the World Cup, resigned Friday to protest its private equity plan.</p><p>“I cannot stand by while FIFA considers selling a stake in the World Cup,” Cordeiro, a former Goldman Sachs banker, said in a statement resigning as adviser to FIFA President Gianni Infantino that urged other senior FIFA staff to speak out.</p><p>Cordeiro often joined Infantino on working visits to meet Trump at the White House in recent years.</p><p>“Let me be clear. I had no involvement in this proposal, and I oppose it unequivocally,” the former U.S. Soccer Federation president said, calling the $20 billion commercial subsidiary “a bad deal for football.”</p><p>“Football has been central to my life, and after more than 35 years in banking, I understand both the value of this asset and the consequences of giving part of it away” he said. “That is why this proposal should be rejected.”</p><p>▶ Read more</p><p>The Trump administration is ending a Medicare drug subsidy program. Here’s how it could affect costs</p><p>Millions of older adults on Medicare prescription drug coverage could face steeper monthly costs in 2027, after the Trump administration concludes a temporary subsidy program that has helped offset premiums for the past two years.</p><p>The Centers for Medicare & Medicaid Services this week announced it would wrap up the program, which was initially implemented by the Biden administration in 2024 to lower patients’ Medicare Part D prescription drug costs in response to the effects of the 2022 Inflation Reduction Act.</p><p>While federal officials insist the financial impact on Medicare beneficiaries will be minimal, the decision opens the Republican-led administration to potential political consequences in a high-stakes midterm election year. Voters have identified cost of living as a top concern, and many older adults, who tend to vote in high numbers, are on fixed incomes where every dollar counts. The roughly 25 million Americans with Medicare Part D plans will find out about their 2027 rates in the fall, when they are casting ballots in November’s elections.</p><p>▶ Read more</p><p>Trump floats pulling Blanche’s nomination for attorney general to avoid conceding to GOP demands</p><p>Trump said Thursday he may pull acting Attorney General Todd Blanche’s nomination for the full-time post to avoid conceding to Senate Republicans’ demands over a sweeping tax audit immunity deal benefiting the president and members of his family.</p><p>After failed negotiations forced the delay of a committee vote to advance Blanche’s nomination, Trump suggested he was holding firm against pressure from Republican Sens. John Cornyn and Thom Tillis. They have expressed concerns about the controversial settlement of Trump’s lawsuit against the Internal Revenue Service, which a judge denounced as an exercise in self-dealing.</p><p>The senators said the Justice Department seemed interested in reaching an agreement with them, but the White House wouldn’t budge to aid the confirmation of Trump’s loyal former personal attorney, who has aggressively pursued the administration’s priorities as acting attorney general. Instead, Trump said in a social media post that he might pull Blanche’s nomination and resubmit it after Cornyn and Tillis leave office next year.</p><p>▶ Read more</p><p>Trump is taking his Friday Cabinet meeting on the road to Camp David</p><p>Trump told his Cabinet members to meet him at the Camp David presidential retreat in Maryland, a rustic backdrop for the Trump administration sessions that have come to be known for being overly long and consumed by endless praise for their boss.</p><p>White House press secretary Karoline Leavitt said the 13th such meeting of the Republican president’s second term “will be a lot of fun and something different for the Cabinet to experience together.”</p><p>An earlier attempt in May was scuttled because of bad weather. During his first term, Trump held a Cabinet meeting at the retreat.</p><p>The public portion of Trump’s Cabinet meetings has lasted as long as three hours, with the president letting everyone at the table update him on their departments or agencies — with added praise for him personally and his leadership thrown in. In a departure from other presidents, he allows the news media to stay for the duration, a move that Leavitt has said proves his commitment to transparency.</p><p>▶ Read more</p><p>Trump announces a deal for Hamas to disarm in Gaza, but many hurdles and uncertainty remain</p><p>A Hamas official said Friday that they did reach an agreement on disarmament, the most crucial part of the ceasefire deal. Israel didn’t give an indication that they had agreed.</p><p>Trump said Thursday that a deal has been reached for Hamas to disarm and Israel to withdraw its forces from Gaza, but many hurdles, conditions and long timelines remained to wind down the war in the Palestinian territory.</p><p>The White House announcement comes nine months after a U.S.-brokered ceasefire was signed. Negotiations between Israel and Hamas had largely deadlocked over the implementation of its second phase, including the disarmament of Hamas and the reconstruction of Gaza.</p><p>Trump’s 20-point ceasefire plan calls on the militant group to surrender its weapons and destroy its vast network of tunnels. It also envisions Israeli forces withdrawing from Gaza, the arrival of a new technocratic Palestinian government, deployment of an international security force and the rebuilding of the battered Palestinian enclave.</p><p>▶ Read more</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/DZ7NQXTXFXH5YT7R22QQXBNBZE.jpg?auth=0bb8db6b43e4c9996cd5b339267278589f6a6b336707d508cf7e38c036544d99&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[President Donald Trump, seated center, joined by Energy Secretary Chris Wright, from left, Interior Secretary Doug Burgum, Secretary of State Marco Rubio, Defense Secretary Pete Hegseth, acting Labor Secretary Keith Sonderling, and Housing and Urban Development Secretary Scott Turner, attends a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/HPNBWU3M2I6C34A7DIUM3TIJWA.jpg?auth=dbc9b80e290ebcb3b95fd537744f9179c9ac0a7124e83a539295455e18af23d9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Secretary of State Marco Rubio, from left, President Donald Trump and Defense Secretary Pete Hegseth listen as Vice President JD Vance speaks during a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/BBUTSGCNPYDV5GG3NYMHIION4Y.jpg?auth=a6c87c8fe5dae58b6da8230fac73731749d75444bb57f37faa5bc120cd1aa7cc&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Vice President JD Vance speaks as Treasury Secretary Scott Bessent, right, acting Attorney General Todd Blanche, foreground left, and President Donald Trump, background left, listen during a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/TDC7UVXFI65LLOO3PURVDWTIJQ.jpg?auth=0f39a79accf312de730bdc521630dae178c0cb20bdaf45ce38e61b5681eb96c0&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Secretary of State Marco Rubio, from left, President Donald Trump and Defense Secretary Pete Hegseth listen as Health and Human Services Secretary Robert F. Kennedy Jr. speaks during a cabinet meeting, Friday, July 31, 2026, at Camp David, the presidential retreat, near Thurmont, Md., Friday, July 31, 2026. (AP Photo/Jacquelyn Martin)]]></media:description><media:credit role="author" scheme="urn:ebu">Jacquelyn Martin</media:credit></media:content></item><item><title><![CDATA[Fort Lauderdale woman reunited with dog after rescue ownership dispute]]></title><link>https://www.local10.com/news/local/2026/07/30/fort-lauderdale-woman-reunited-with-dog-after-rescue-ownership-dispute/</link><guid isPermaLink="true">https://www.local10.com/news/local/2026/07/30/fort-lauderdale-woman-reunited-with-dog-after-rescue-ownership-dispute/</guid><dc:creator><![CDATA[Hannah Yechivi]]></dc:creator><description><![CDATA[Maria Helena Lugo says the past three weeks have been an emotional struggle as she fought to get her dog, Coco, back.]]></description><pubDate>Fri, 31 Jul 2026 02:43:45 +0000</pubDate><content:encoded><![CDATA[<p><a href="https://www.facebook.com/share/p/19DY71DsUL/" target="_self" rel="" title="https://www.facebook.com/share/p/19DY71DsUL/">Maria Helena Lugo </a>says the past three weeks have been an emotional struggle as she fought to get her dog, Coco, back.</p><p>Lugo, who speaks only Spanish, said someone found Coco and brought him to Sandy Paws K-9 Rescue in Fort Lauderdale. But when she went to claim him, the rescue said she did not have enough proof of ownership to take him home.</p><p>“When the deputy arrived, he told me to stay outside while he went in to see what was going on,” Lugo said in Spanish.</p><p>Desperate for help, Lugo reached out to Local 10 News.</p><p>A meeting was arranged in Fort Lauderdale, where Lugo was finally reunited with Coco.</p><p>After facing criticism on social media, Sandy Paws Canine Rescue explained why the dog was not released sooner.</p><p>“We contacted the initial person who owned the microchip, which was his original breeder. It was a man who was not connected to the family whatsoever,” said Desiree Remington, Vice President of Sandy Paws Canine Rescue.</p><p>Remington said a few days later, Lugo’s son contacted the rescue, claiming the dog belonged to their family.</p><p>“The police advised us we did not need to give her the dog because she didn’t have proof of ownership,” Remington said.</p><p>She said everything changed after the rescue saw photos on social media clearly showing Coco with Lugo and her family, providing the additional evidence needed to confirm ownership.</p><p>That’s when the long-awaited reunion finally happened.</p><p>“There were too many conflicting stories for us to simply hand the dog over the first time she came to our residence,” Remington said.</p><p>With Coco back in her arms, Lugo said she was overwhelmed with relief.</p><p>“I’m so happy,” she said. “I feel like I’ve gotten my life back. You can’t imagine what these 15 days without my dog have been like. I’ve suffered so much.”</p><p><div class="l10-neighborhood" role="complementary" aria-label="News From Your Neighborhood">
  <style>
    .l10-neighborhood, .l10-neighborhood * { box-sizing: border-box; }

    .l10-neighborhood{
      --blue-dark:#0d2c73;
      --blue:#1f57c4;
      --blue-light:#3370e6;
      --gray-bg:#f2f3f5;
      --gray-border:#d6d8dc;
      --text-dark:#1a1a1a;
      --white:#ffffff;
      font-family:system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
      max-width:860px;
      margin:1.5rem auto;
      border-radius:10px;
      overflow:hidden;
      border:1px solid var(--gray-border);
      background:var(--gray-bg);
      box-shadow:0 4px 14px rgba(0,0,0,.12);
      text-align:center;
    }

    .l10-head{
      background:linear-gradient(90deg,var(--blue-dark),var(--blue));
      color:var(--white);
      padding:12px 16px;
      font-weight:800;
      text-transform:uppercase;
      font-size:1rem;
      letter-spacing:.3px;
      display:flex; justify-content:center; align-items:center; gap:8px;
    }

    .l10-body{
      max-width:740px;
      margin:0 auto;
      padding:0 16px 18px;
    }

    .l10-sub{
      margin:12px 0 10px;
      font-size:.95rem;
      color:var(--text-dark);
      font-weight:500;
      text-align:center;
    }

    .l10-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }
    @media (min-width:600px){
      .l10-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .nb-btn{
      display:grid;
      place-items:center;
      text-align:center;
      line-height:1;
      width:100%;
      min-height:48px;
      padding:10px;
      border-radius:8px;
      text-decoration:none;
      font-weight:800;
      text-transform:uppercase;
      font-size:.95rem;
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      color:var(--white);
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
    }
    .nb-btn:hover, .nb-btn:focus-visible{
      background:linear-gradient(180deg,var(--blue),var(--blue-dark));
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.2);
      outline:none;
    }
    .nb-btn:link, .nb-btn:visited{ color:var(--white); }

    .city-dd{
      grid-column:1 / -1;
      justify-self:stretch;
      width:100%;
      margin:0;
      text-align:left;
    }
    .city-dd summary{
      list-style:none;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      width:100%;
      min-height:48px;
      padding:10px 16px;
      font-weight:800;
      text-transform:uppercase;
      letter-spacing:.02em;
      color:var(--white);
      background:linear-gradient(180deg,var(--blue-light),var(--blue));
      border:1px solid rgba(0,0,0,.08);
      border-radius:8px;
      box-shadow:0 2px 6px rgba(0,0,0,.15);
      user-select:none;
    }
    .city-dd summary::-webkit-details-marker{ display:none; }
    .city-dd summary .caret{ line-height:1; transition:transform .2s ease; }
    .city-dd[open] summary .caret{ transform:rotate(180deg); }

    .city-menu{
      margin-top:0;
      background:var(--white);
      border:1px solid var(--gray-border);
      border-top:0;
      border-radius:10px;
      border-top-left-radius:0;
      border-top-right-radius:0;
      padding:10px;
      box-shadow:0 6px 16px rgba(0,0,0,.08);
    }
    .city-dd[open] summary{
      border-bottom-left-radius:0;
      border-bottom-right-radius:0;
    }

    .city-grid{
      display:grid;
      grid-template-columns:1fr;
      gap:8px;
    }
    @media (min-width:520px){
      .city-grid{ grid-template-columns:repeat(2,1fr); }
    }
    @media (min-width:800px){
      .city-grid{ grid-template-columns:repeat(3,1fr); }
    }

    .city-link{
      display:block;
      text-decoration:none;
      text-align:center;
      font-weight:700;
      padding:8px 10px;
      border-radius:8px;
      background:#f7f9fc;
      border:1px solid var(--gray-border);
      color:var(--blue);
      transition:background .12s ease, transform .08s ease, box-shadow .12s ease;
    }
    .city-link:hover, .city-link:focus-visible{
      background:#eef3ff;
      outline:none;
      transform:translateY(-1px);
      box-shadow:0 4px 10px rgba(0,0,0,.08);
    }
    .city-link:link, .city-link:visited{ color:var(--blue); }
  </style>

  <div class="l10-head">🏠 News From Your Neighborhood</div>

  <div class="l10-body">
    <div class="l10-sub">Latest headlines from:</div>

    <div class="l10-grid" role="group" aria-label="Counties and cities">
      <a class="nb-btn" href="https://www.local10.com/topic/Miami-Dade_County/" target="_blank" rel="noopener noreferrer">Miami-Dade</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Broward_County/" target="_blank" rel="noopener noreferrer">Broward</a>
      <a class="nb-btn" href="https://www.local10.com/topic/Monroe_County/" target="_blank" rel="noopener noreferrer">Florida Keys</a>

      <details class="city-dd">
        <summary><span>Cities</span><span class="caret" aria-hidden="true">▾</span></summary>
        <div class="city-menu">
          <div class="city-grid">
            <a class="city-link" href="https://www.local10.com/topic/Miami/" target="_blank" rel="noopener noreferrer">Miami</a>
            <a class="city-link" href="https://www.local10.com/topic/Fort_Lauderdale/" target="_blank" rel="noopener noreferrer">Fort Lauderdale</a>
            <a class="city-link" href="https://www.local10.com/topic/Coral_Springs/" target="_blank" rel="noopener noreferrer">Coral Springs</a>
            <a class="city-link" href="https://www.local10.com/topic/Davie/" target="_blank" rel="noopener noreferrer">Davie</a>
            <a class="city-link" href="https://www.local10.com/topic/Deerfield_Beach/" target="_blank" rel="noopener noreferrer">Deerfield Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Doral/" target="_blank" rel="noopener noreferrer">Doral</a>
            <a class="city-link" href="https://www.local10.com/topic/Hialeah/" target="_blank" rel="noopener noreferrer">Hialeah</a>
            <a class="city-link" href="https://www.local10.com/topic/Hollywood/" target="_blank" rel="noopener noreferrer">Hollywood</a>
            <a class="city-link" href="https://www.local10.com/topic/Homestead/" target="_blank" rel="noopener noreferrer">Homestead</a>
<a class="city-link" href="https://www.local10.com/topic/Lauderhill/" target="_blank" rel="noopener noreferrer">Lauderhill</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Beach/" target="_blank" rel="noopener noreferrer">Miami Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Miami_Gardens/" target="_blank" rel="noopener noreferrer">Miami Gardens</a>
            <a class="city-link" href="https://www.local10.com/topic/Miramar/" target="_blank" rel="noopener noreferrer">Miramar</a>
            <a class="city-link" href="https://www.local10.com/topic/Pembroke_Pines/" target="_blank" rel="noopener noreferrer">Pembroke Pines</a>
            <a class="city-link" href="https://www.local10.com/topic/Plantation/" target="_blank" rel="noopener noreferrer">Plantation</a>
            <a class="city-link" href="https://www.local10.com/topic/Pompano_Beach/" target="_blank" rel="noopener noreferrer">Pompano Beach</a>
            <a class="city-link" href="https://www.local10.com/topic/Sunrise/" target="_blank" rel="noopener noreferrer">Sunrise</a>
<a class="city-link" href="https://www.local10.com/topic/Tamarac/" target="_blank" rel="noopener noreferrer">Tamarac</a>
          </div>
        </div>
      </details>
    </div>
  </div>
</div></p>]]></content:encoded></item><item><title><![CDATA[New York sues prediction market platform Kalshi alleging 'illegal gambling operation']]></title><link>https://www.local10.com/business/2026/07/31/new-york-sues-prediction-market-platform-kalshi-alleging-illegal-gambling-operation/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/new-york-sues-prediction-market-platform-kalshi-alleging-illegal-gambling-operation/</guid><dc:creator><![CDATA[By DAVE COLLINS, Associated Press]]></dc:creator><description><![CDATA[New York officials sued prediction market platform Kalshi for potentially billions of dollars on Friday, calling it an “illegal, unlicensed gambling operation” that includes sports wagering as the state seeks to halt its operations and force the company to forfeit its profits.]]></description><pubDate>Fri, 31 Jul 2026 16:41:49 +0000</pubDate><content:encoded><![CDATA[<p>New York officials sued prediction market platform Kalshi for potentially billions of dollars on Friday, calling it an “illegal, unlicensed gambling operation” that includes sports wagering as the state seeks to halt its operations and force the company to forfeit its profits.</p><p>New York joins a growing number of states filing lawsuits against Kalshi and other companies in a dispute with President Donald Trump's administration over who regulates the fast-growing prediction market. Kalshi and other platforms argue they are federally licensed and regulated, and states have no authority to govern them.</p><p>“It’s sad to see this type of political theater from the leadership in our own state,” Elisabeth Diana, a spokesperson for New York-based Kalshi, said in a statement. “States can’t just shut down a federally licensed exchange. This would also hurt New Yorkers, who would be driven offshore. We love New York, we love New Yorkers, and New Yorkers love our product.”</p><p>Prediction market platforms like Kalshi and Polymarket allow trading on the likelihood of a wide range of events such as sports, politics, news and even the weather.</p><p>New York Gov. Kathy Hochul and Attorney General Letitia James, both Democrats, announced the lawsuit filed in state Supreme Court in Manhattan.</p><p>“New York’s gambling laws protect children from underage betting and help combat gambling addiction,” James said in a statement. “No matter what they call themselves, prediction markets like Kalshi are gambling platforms, plain and simple. By ignoring our laws, Kalshi is running an illegal operation and harming New Yorkers in the process.”</p><p>James' office is requesting that Kalshi be ordered to forfeit all illegal gains, pay restitution to consumers who were harmed and pay fines equal to three times the company's gains. In a court filing, state officials provided a rough estimate of the damages and costs sought by the lawsuit — $36 billion.</p><p>Kalshi had been in negotiations with New York officials in recent weeks over tax and consumer protection issues.</p><p>In April, New York filed a similar lawsuit against prediction market platforms Coinbase and Gemini on illegal gambling operation allegations.</p><p>State officials say the prediction markets meet the legal definition of gambling “because the outcomes of the events on which its users are betting are uncertain and outside the control of the bettor or hinge on a game of chance.”</p><p>New York claims Kalshi has failed to obtain a license from the state Gaming Commission and skirted its obligation to pay taxes like licensed casinos and mobile sports gambling platforms do. The lawsuit also says prediction markets allow users ages 18 to 20, while New York requires mobile sports betting users to be at least 21.</p><p>Last October, the Gaming Commission ordered Kalshi to stop what it called the “illegal operating” of an “unlicensed mobile sports wagering platform” in New York. Kalshi responded days later by filing a federal lawsuit against the commission and its members — legal action that remains pending.</p><p>Prediction market platforms say they operate differently than gambling operations, because consumers are trading against other consumers — much like how stock markets work. Prices are based on trading, and the platforms only take a fee from the trading, they say.</p><p>The platforms also argue federal law gives the U.S. Commodity Futures Trading Commission exclusive jurisdiction to regulate transactions offered in the prediction market. In February, Trump’s appointee atop the federal commission declared that the agency “will no longer sit idly by” while states aim to regulate or ban prediction markets and “undermine the agency’s exclusive jurisdiction.”</p><p>States counter that the vast majority of the business on prediction market platforms is sports betting, which they are empowered to regulate, and that is completely different from the commodities and futures contracts that the commission regulates.</p><p>On Monday, a federal judge temporarily blocked Minnesota’s first-in-the-nation law banning prediction markets just days before it was to take effect — dealing a setback for states trying to outlaw or regulate the platforms. In April, another federal judge ordered a similar temporary halt to Arizona's efforts to enforce its gambling laws against prediction markets.</p><p>A tangle of lawsuits is growing, as states try to use their gambling laws to shut down Kalshi, Polymarket and other prediction market operators. In April alone, the federal government sued Connecticut, Arizona and Illinois, challenging their efforts to regulate the industry.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/NRMXE3ZPI5QTRKSPQ6GPNJG32Y.jpg?auth=b23e38ad38cf457a64c94394a91cdcbe13e60bd2cfd556d57b2d3dacd28d8a5c&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - An ad for the prediction market app Kalshi is displayed on a mobile phone Thursday, April 16, 2026, in Chicago. (AP Photo/Erin Hooley, file)]]></media:description><media:credit role="author" scheme="urn:ebu">Erin Hooley</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/DCLRU5DYGSI2MQJ3S4AWEU5CZM.jpg?auth=86c37a342cf3cb1121153b364d41a0e1284fd8e07e5322f3caf691ab689166e8&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Attorney General of New York Letitia James reacts during a Rental Ripoff Hearing at Fordham University on Wednesday, March 11, 2026, in New York. (AP Photo/Andres Kudacki, file)]]></media:description><media:credit role="author" scheme="urn:ebu">Andres Kudacki</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/QFSZJP73NX7A3JDHGA7NPRNRXQ.jpg?auth=242ffc54a3c10bcb5042cebbd44327ee3a3d99efb521d6fe5b8dc55f0bb87521&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - New York Gov. Kathy Hochul speaks following a ribbon cutting ceremony at the new Bills Highmark Stadium in Orchard Park, N.Y., Tuesday, June 23, 2026. (AP Photo/Jeffrey T. Barnes, file)]]></media:description><media:credit role="author" scheme="urn:ebu">Jeffrey T. Barnes</media:credit></media:content></item><item><title><![CDATA[A discarded SpaceX rocket is on a high-speed collision course with the moon]]></title><link>https://www.local10.com/tech/2026/07/31/a-discarded-spacex-rocket-is-on-a-high-speed-collision-course-with-the-moon/</link><guid isPermaLink="true">https://www.local10.com/tech/2026/07/31/a-discarded-spacex-rocket-is-on-a-high-speed-collision-course-with-the-moon/</guid><dc:creator><![CDATA[By MARCIA DUNN, Associated Press]]></dc:creator><description><![CDATA[CAPE CANAVERAL, Fla. (AP) — A drifting SpaceX rocket is on a collision course with the moon after launching a pair of lunar landers more than a year ago.]]></description><pubDate>Fri, 31 Jul 2026 12:00:50 +0000</pubDate><content:encoded><![CDATA[<p>CAPE CANAVERAL, Fla. (AP) — A drifting SpaceX rocket is on a collision course with the moon after launching a pair of lunar landers more than a year ago.</p><p>The rocket's upper stage will unintentionally slam into the moon on Wednesday, carving out a crater and sending up a plume of dust and rubble that scientists — and skygazers — are eager to observe.</p><p>Space tracking expert Bill Gray predicts an impact of 5,400 mph (8,700 kph) — seven times the speed of sound — near Einstein Crater on the moon’s sunlit western limb. With the action unfolding in the wee hours, the eastern portions of the U.S. and Canada, and much of South America should have the best views.</p><p>While scientists are not too concerned about this particular piece of space junk, it highlights the growing threat as more and more items cram into orbit.</p><p>“Things are getting crowded up there,” said Gray, who plans to view the aftermath from New Brunswick, Canada.</p><p>It was never SpaceX's intent to hit the moon. But space experts said the crash could have been avoided if the upper stage had been nudged into orbit around the sun.</p><p>It will be the second dead rocket known to crash into the moon accidentally. A Chinese rocket segment dug out a pair of craters on the lunar far side in 2022.</p><p>Lucky for astronomers, the upcoming smashup will occur on the moon’s near side, packing the equivalent energy of three tons of TNT.</p><p>The impact flash, lasting less than a second, will probably be too dim to see, according to experts. But the stream of ejected material could stretch for several miles (kilometers) into space and remain visible to telescopes for tens of minutes.</p><p>“The gravity on the moon is low and there is no wind to blow the dust away,” said Los Alamos National Laboratory’s Benjamin Fernando, who’s encouraging observations by professionals and amateurs alike.</p><p>“Part of the reason for our interest in this event is to figure out how much of a hazard debris impacts pose to future astronauts,” he added in an email.</p><p>Fernando anticipates an impact crater nearly 90 feet across and 16 feet deep (27 meters across and 5 meters deep), too small to see from Earth but visible to spacecraft.</p><p>NASA’s Lunar Reconnaissance Orbiter and South Korea’s Danuri lunar orbiter will gather before-and-after shots of the crash scene. Danuri will stray within a mile or two (a few kilometers) of the SpaceX rocket just two minutes before impact, according to Fernando and his team.</p><p>The abandoned rocket segment — measuring some 40 feet (12 meters) and weighing around 10,000 pounds (4,500 kilograms) — hoisted two private lunar landers on Jan. 15, 2025.</p><p>One of them — Firefly Aerospace’s Blue Ghost — became the first private spacecraft to pull off a fully successful lunar touchdown. The other, Japan-based ispace’s lander, wrecked.</p><p>With meteoroids and other natural objects offering little if any warning before walloping the moon, scientists said there’s much to learn by observing well-tracked strikes by human-made objects like the one coming up. NASA hurled rocket sections and lunar modules into the moon during the Apollo era for seismic measurements. Decades later, in 2009, NASA intentionally crashed its LCROSS spacecraft and upper stage in search of ice near the lunar south pole.</p><p>With the moon as the new travel hot spot, scientists said it’s crucial to improve debris monitoring and traffic control before packs of robots and astronauts arrive.</p><p>The United States and China are racing to land astronauts on the moon in the next few years. Elon Musk’s SpaceX and Jeff Bezos’ Blue Origin are vying to provide the lander for NASA's yet-to-be-named moonwalkers of Artemis IV, who will succeed the 12 Apollo astronauts who strolled the lunar surface.</p><p>“This impact will not be a problem,” retired astrophysicist Jonathan McDowell said in an email. “But in a future where there are long-term bases on the moon, similar impacts would be an issue and we need not to leave rocket stages in chaotic orbits of this kind.”</p><p>___</p><p>The Associated Press Health and Science Department receives support from the Howard Hughes Medical Institute’s Department of Science Education and the Robert Wood Johnson Foundation. The AP is solely responsible for all content.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/5ENJTECJJO5SJ6J67GSDIR6HQ4.jpg?auth=cc138ba081e3195eaf0870355b43f7180412d6188d13e0d4ef735be547cdb574&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - A SpaceX Falcon 9 rocket lifts off from pad 39A with a payload of a pair of lunar landers at the Kennedy Space Center in Cape Canaveral, Fla., Jan. 15, 2025. (AP Photo/John Raoux, File)]]></media:description><media:credit role="author" scheme="urn:ebu">John Raoux</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/X42DVCWYN6PUQ6KCTNOKJ6JQUM.jpg?auth=6e4194b8479c96f5949c0cf5a2e7d18a5ca339a9998bd66038f5e4ef00c1c071&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A blue moon rises in San Jose de Maipo outskirts of capital Santiago, Chile, May 30, 2026. (AP Photo/Esteban Felix, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Esteban Felix</media:credit></media:content></item><item><title><![CDATA[Oprah Winfrey says she will close her school for girls in South Africa next year]]></title><link>https://www.local10.com/news/world/2026/07/31/oprah-winfrey-says-she-will-close-her-school-for-girls-in-south-africa-next-year/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/oprah-winfrey-says-she-will-close-her-school-for-girls-in-south-africa-next-year/</guid><dc:creator><![CDATA[By MICHELLE GUMEDE, Associated Press]]></dc:creator><description><![CDATA[JOHANNESBURG (AP) — Oprah Winfrey says she will close the school for underprivileged girls she set up in South Africa two decades ago at the end of next year.]]></description><pubDate>Fri, 31 Jul 2026 12:07:31 +0000</pubDate><content:encoded><![CDATA[<p>JOHANNESBURG (AP) — Oprah Winfrey says she will close the school for underprivileged girls she set up in South Africa two decades ago at the end of next year.</p><p>Winfrey opened the Oprah Winfrey Leadership Academy for Girls in 2007 after being inspired by conversations with former South African President Nelson Mandela about the transformative power of educating girls. He was among the guests at the school's opening ceremony.</p><p>Winfrey's charitable foundation ran and funded the school, but it was always part of the agreement that the academy campus near Johannesburg be ultimately handed over to the provincial education department, the academy said.</p><p>“The dream was never simply to build a school,” Winfrey said in a statement issued by the academy on Wednesday. “It was to invest in the limitless potential of young women. That mission doesn’t end with one campus. It continues in every girl whose future can be transformed through education.”</p><p>The academy said Winfrey’s commitment to educating South African girls would continue through an expanded national scholarship program supporting academically talented girls at leading schools across the country.</p><p>More than 500 girls have graduated from the academy and some have attended top universities in South Africa, the United States and Europe, according to the Oprah Winfrey Charitable Foundation.</p><p>The Gauteng provincial government will take over the 52-acre academy campus, which has 21 classrooms, six science and computer laboratories, a 10,000-volume library and a 600-seat theater. It did not immediately say what the plans for the property were.</p><p>Gauteng Provincial Minister for Education Lebogang Maile said those currently enrolled in the school will be able to complete their education with uninterrupted financial support.</p><p>The academy drew international attention shortly after opening in 2007 when several students accused a dormitory matron of physically and sexually abusing them.</p><p>Winfrey traveled to South Africa to meet with students and parents, publicly apologized, and commissioned an independent investigation.</p><p>The matron was acquitted of criminal charges in 2010.</p><p>___</p><p>This report has been corrected to show Oprah Winfrey’s statement as issued on Wednesday and not Thursday.</p><p>___</p><p>AP Africa news: https://apnews.com/hub/africa</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/JUX4C63NBEFZPAD7IF4HKHSFVY.jpg?auth=ca60aa89067694d9a2655bdfb34de9ccf2051982463b92feaa19cf1bdebb1844&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Oprah Winfrey talks to students at her Leadership Academy for Girls at Henley-On-Klip South Africa, Friday, Jan. 13, 2012 on the eve of the first graduation at her school. (AP Photo/Denis Farrell, file)]]></media:description><media:credit role="author" scheme="urn:ebu">Denis Farrell</media:credit></media:content></item><item><title><![CDATA[Weekday Recap: Trending Stories on Local10.com]]></title><link>https://www.local10.com/news/local/2025/08/01/weekday-recap-trending-stories-on-local10com/</link><guid isPermaLink="true">https://www.local10.com/news/local/2025/08/01/weekday-recap-trending-stories-on-local10com/</guid><description><![CDATA[Here are the Top 10 stories that were trending on Local10.com this week.]]></description><pubDate>Fri, 01 Aug 2025 12:38:57 +0000</pubDate><content:encoded><![CDATA[<p>Here are the Top 10 stories that were trending on <a href="https://www.local10.com/">Local10.com</a> this week. </p><ul><li><a href="https://www.local10.com/news/local/2026/07/28/customer-pays-3850-for-transmission-repair-months-later-the-mechanic-calls-claiming-he-never-touched-the-transmission-and-has-video/" target="_self" rel="" title="https://www.local10.com/news/local/2026/07/28/customer-pays-3850-for-transmission-repair-months-later-the-mechanic-calls-claiming-he-never-touched-the-transmission-and-has-video/">Customer pays $3,850 for transmission repair. Months later, the mechanic calls claiming he never touched the transmission and has video</a></li><li><a href="https://www.local10.com/news/local/2026/07/28/plantation-cruise-passenger-caught-with-child-sex-abuse-videos-showing-100-victims-feds-say" target="_blank">Plantation cruise passenger caught with child sex abuse videos showing 100+ victims, feds say</a></li><li><a href="https://www.local10.com/news/local/2026/07/27/secret-service-agent-among-those-charged-in-south-florida-fraternity-hazing-investigation" target="_blank">Secret Service agent among those charged in South Florida fraternity hazing investigation</a></li><li><a href="https://www.local10.com/news/national/2026/07/26/fbis-most-wanted-fraud-suspect-captured-after-fleeing-to-jamaica" target="_blank">FBI ‘most wanted’ fraud suspect from South Florida captured after fleeing to Jamaica</a></li><li><a href="https://www.local10.com/news/florida/2026/07/29/pig-butchering-scam-leaves-florida-man-heartbroken-and-asking-for-help" target="_blank">‘Pig butchering’ scam leaves Florida man heartbroken and asking for help</a></li><li><a href="https://www.local10.com/news/local/2026/07/28/miami-dade-driving-instructors-accused-of-fraudulently-passing-unqualified-drivers" target="_blank">Miami-Dade driving instructors accused of fraudulently passing unqualified drivers</a></li><li><a href="https://www.local10.com/news/local/2026/07/28/neighbors-frightened-after-hearing-gunshots-in-hallandale-beach" target="_blank">Hallandale Beach police swarm parking garage after car shot up, leaving 1 dead</a></li><li><a href="https://www.local10.com/news/local/2026/07/29/800-million-mega-millions-winning-ticket-sold-in-florida" target="_blank">$800 million Mega Millions winning ticket sold in Florida</a></li><li><a href="https://www.local10.com/news/local/2026/07/29/north-miami-police-accuse-home-depot-employee-of-fraud-grand-theft" target="_blank">North Miami police accuse Home Depot employee of fraud, grand theft</a></li><li><a href="https://www.local10.com/news/local/2026/07/27/45-years-after-adam-walsh-disappearance-from-hollywood-mall" rel="">45 years after Adam Walsh disappearance from Hollywood Mall</a></li></ul>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/XRFY3TGIJJFCTHOPV7ITXPYVHM.png?auth=e9a67cf5fb2dc899eeb0bc14cfb588292199632c1d46fc8b9db7d827acb0fd33&amp;smart=true&amp;width=1200&amp;height=900" type="image/png" height="900" width="1200"/></item><item><title><![CDATA[As progressives seek to take on inequality, some cite religion as a motivating factor]]></title><link>https://www.local10.com/business/2026/07/31/as-progressives-seek-to-take-on-inequality-some-cite-religion-as-a-motivating-factor/</link><guid isPermaLink="true">https://www.local10.com/business/2026/07/31/as-progressives-seek-to-take-on-inequality-some-cite-religion-as-a-motivating-factor/</guid><dc:creator><![CDATA[By KRYSTA FAURIA, Associated Press]]></dc:creator><description><![CDATA[DETROIT (AP) — The jokes practically wrote themselves as an eclectic group of progressive pastors, imams and a rabbi walked into a room, finding their seats around a table to talk about religion and politics.]]></description><pubDate>Fri, 31 Jul 2026 11:25:09 +0000</pubDate><content:encoded><![CDATA[<p>DETROIT (AP) — The jokes practically wrote themselves as an eclectic group of progressive pastors, imams and a rabbi walked into a room, finding their seats around a table to talk about religion and politics.</p><p>Though there was no shortage of levity, a sense of urgency filled the Detroit meeting room as Abdul El-Sayed, a former gubernatorial candidate who is running as a Democrat for the U.S. Senate in Michigan, began speaking about how his Muslim faith informs his progressive views.</p><p>The public health researcher asked the group of faith leaders ahead of Tuesday’s primary, “What does the inspiration of holding yourself accountable to something bigger than you mean for what you do for the people around you?”</p><p>El-Sayed added, “If you can’t eat food and I have something to do about it, I better do it.”</p><p>Progressive Democratic politicians have won major electoral victories across the country in recent months amid growing frustrations surrounding inequality, affordability and potential threats to job security posed by artificial intelligence. As the economy becomes a flashpoint for the November midterms, many of these candidates and voters who support them are citing religion as a justification for their positions.</p><p>“We’re in an era of historical inequality,” El-Sayed told The Associated Press. “Most faith traditions — certainly the Abrahamic faith traditions — put a lot more burden on the wealthy.”</p><p>The interfaith roundtable took place days after a high-profile rally for El-Sayed, who has made “Medicare for All” a fixture of his campaign and is running against the more moderate Rep. Haley Stevens. It featured speeches from progressive heavy hitters like Sen. Bernie Sanders of Vermont and Rep. Alexandria Ocasio-Cortez of New York.</p><p>Though not a member of the Democratic Socialists of America, El-Sayed is being endorsed by liberal allies, many of them members of the DSA, while being criticized by Republicans and centrist Democrats for being too far left to be electable in a swing state.</p><p>If elected in November, he would be the first Muslim senator in U.S. history.</p><p>Representatives for Stevens, who is identified in congressional profiles as a Protestant, did not respond to requests for comment.</p><p>Progressive ideologies carry different connotations for different generations</p><p>Religious support for progressive economic and labor movements is not new, even if it has ebbed and flowed in the U.S. over the centuries. Pope Leo XIV’s recent encyclical was in many ways an ode to “Rerum novarum,” Pope Leo XIII’s seminal 1891 text on labor, wages and unions that helped shape Catholic social teaching.</p><p>This embrace of religion isn't unique to the Democratic Party's progressive wing. More moderate candidates like James Talarico, the seminarian running for the U.S. Senate in Texas, also highlight their faith. But as left-leaning Democrats and democratic socialists like New York Mayor Zohran Mamdani, who is Muslim, score wins in local and national races, Republicans have repeatedly decried the party's progressive wing as communists devoid of religion.</p><p>“Republicans and conservatives believe in natural rights that flow from a creator. I think communism rejects that. It espouses a very atheistic, centralized sort of secular view of society,” said Douglas Blair, a spokesperson for Heritage Action for America.</p><p>Megan Romer, a DSA national co-chair and ordained ruling elder within the Presbyterian Church (USA), conceded socialism is a troubling concept for some people of faith.</p><p>“People’s idea of it is, ‘Oh, that’s when you’re not allowed to have a religion, right?’ Which has been true in some socialist projects,” she said.</p><p>But experts say that narrative carries less weight among many younger Americans who have no memory of the Cold War and the anti-religious associations it begot.</p><p>Theology informs more than just faith</p><p>Though there are more Democrats unaffiliated with religion than Republicans, many people of faith do not see progressive ideologies like socialism as contradictory to their beliefs. They cite Black religious activists who were outspoken critics of capitalism, including Martin Luther King Jr., Malcolm X and W.E.B. Du Bois, as models for their thinking about the relationship between religion and politics.</p><p>The Rev. Andrew Wilkes, who co-pastors the Double Love Experience Church in New York City, became interested in democratic socialism more than a decade ago after presiding over a funeral for someone whose insurance wouldn’t cover a critical operation. “It was not God that sent him home but an unjustly organized healthcare system and economy,” he said.</p><p>“There’s an increasing recognition, I would say, connecting socialism to a sense of a moral compass,” Wilkes said, adding that religion can bring optimism and creativity in a time of pessimism. “There’s a level of world-building that faith can speak to.”</p><p>Romer, who joined the DSA in 2018 in part because of Sanders’ unsuccessful presidential run two years earlier, thinks there is a theological component to why Christianity in particular has thrived among conservatives.</p><p>“That flavor of Christianity is a very individualistic one. They talk a lot about your personal relationship with God,” she said. “My interpretation of Christianity is one that, I think the early Christians — they were not communists in the modern sense, but they lived in communal situations.”</p><p>Attitudes toward capitalism are changing, and religion is playing a role</p><p>This faith-driven economic focus is not limited to elections.</p><p>Clergy and Laity United for Economic Justice is a nonprofit organization that works with congregations throughout Southern California to support workers’ rights. Earlier this month, it facilitated a visit to Live Oak United Church of Christ in Brea, California, to support efforts to unionize a local grocery store chain.</p><p>“We just feel very, very overworked,” Luis Cueva, a Mother’s Market employee, told members of the congregation after their Sunday service as he asked for support.</p><p>“Jesus was a socialist,” Cueva said after the meeting, citing his teachings about it being difficult for rich people to go to heaven. “It means a lot to know that the church is willing to help.”</p><p>About half of U.S. adults have a positive view of capitalism, according to a poll last year from Gallup, down from 61% in 2010. Democrats have driven part of the shift, but favorable views of capitalism have also declined among independents.</p><p>President Donald Trump and other Republicans have cast these attitudes and candidates as being fundamentally at odds with religion.</p><p>“These are hard core, godless communists,” Trump said recently during a speech to the Faith & Freedom Coalition. “All communists are godless. They don't believe in God.”</p><p>Faith can be both a political asset and a liability</p><p>Although there are myriad points of contention within the Democratic Party, such as support for Israel, El-Sayed considers economic issues a top issue for his campaign.</p><p>“I talk about taking money out of politics because it’s the reason life is not affordable,” he said. “People are realizing that politicians on both sides of the aisle really are being paid off by the same people.”</p><p>The son of Egyptian immigrants, El-Sayed is aware that his Islamic faith can be weaponized or misunderstood. But since having a religious experience in college that followed a rebellious childhood, he takes seriously the implications of his faith.</p><p>“If you put your morals on a mantel, they’re not morals. They’re just, you know, things that you can admire and then you give yourself the permission to step away from them when it’s convenient,” he said.</p><p>As the roundtable concluded, leaders from each faith took turns praying. Their heads lifted, but the Rev. Horace Sheffield chimed in with one last request on behalf of El-Sayed.</p><p>“I don’t think y’all were specific enough. So I’m gonna say it real simple,” he said. “Lord, let him win.”</p><p>___</p><p>Associated Press religion coverage receives support through the AP’s collaboration with The Conversation US, with funding from Lilly Endowment Inc. The AP is solely responsible for this content.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/JSGSBMIAVGRGORZ6RG2JWUOCSY.jpg?auth=d5018f2eadcd7bfaf07633b9130f674ab8605f539e153a9a5dab15e598bbde97&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Michigan Democratic U.S. Senate primary candidate Abdul El-Sayed addresses the crowd during a campaign rally, Saturday, July 18, 2026, in Detroit. (AP Photo/Jose Juarez)]]></media:description><media:credit role="author" scheme="urn:ebu">Jose Juarez</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/6YOROBSBF7DAY4P3AXJ3ZDHLLU.jpg?auth=450629f1b457627a80ae9f9adfe08da8c65a7fbe0b999ee515fcacc9a3042d58&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[From left foreground, U.S. Rep. Alexandria Ocasio-Cortez, D-N.Y., Michigan Democratic U.S. Senate primary candidate Abdul El-Sayed, and U.S. Sen. Bernie Sanders, I-VT. join hands together following a campaign rally, Saturday, July 18, 2026, in Detroit. (AP Photo/Jose Juarez)]]></media:description><media:credit role="author" scheme="urn:ebu">Jose Juarez</media:credit></media:content></item><item><title><![CDATA[Hamas says it will disarm if Israel halts strikes and withdraws from Gaza, but obstacles remain]]></title><link>https://www.local10.com/news/world/2026/07/31/hamas-says-it-will-disarm-if-israel-halts-strikes-and-withdraws-from-gaza-but-obstacles-remain/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/hamas-says-it-will-disarm-if-israel-halts-strikes-and-withdraws-from-gaza-but-obstacles-remain/</guid><dc:creator><![CDATA[By SAMY MAGDY, SAM MEDNICK, JONATHAN J. COOPER and MATTHEW LEE, Associated Press]]></dc:creator><description><![CDATA[CAIRO (AP) — Hamas said Friday that it will begin disarming as part of a deal announced by U.S. President Donald Trump that also requires Israel to end its strikes and withdraw from Gaza. It marks a potential breakthrough in ending the war, but implementation faces major challenges.]]></description><pubDate>Fri, 31 Jul 2026 16:40:30 +0000</pubDate><content:encoded><![CDATA[<p>CAIRO (AP) — Hamas said Friday that it will begin disarming as part of a deal announced by U.S. President Donald Trump that also requires Israel to end its strikes and withdraw from Gaza. It marks a potential breakthrough in ending the war, but implementation faces major challenges.</p><p>Hamas also said that laying down its heavy weapons, which would come later in the process, was contingent on the creation of a Palestinian state, something Israel's current government adamantly rejects.</p><p>Israel has not officially commented on the deal, which is part of a U.S.-brokered ceasefire announced last October. That agreement called for Hamas to disarm and hand over power to an independent Palestinian administration. Israel was to withdraw, and an International Stabilization Force was to deploy.</p><p>But progress stalled, with Israel saying everything hinged on Hamas disarming, and Hamas accusing Israel of violating the agreement by continuing to carry out regular strikes on Gaza.</p><p>Expectations of implementation are low</p><p>Disarming would represent a sea change for Hamas, whose founding charter calls for armed resistance against Israel, and which sees its arsenal, including rockets, anti-tank missiles and explosives, as lying at the heart of its identity.</p><p>Israel, meanwhile, appears unlikely to pull back significant forces or make other concessions ahead of its October elections. Prime Minister Benjamin Netanyahu faces a tough reelection battle, with opponents accusing him of failing to prevent the Oct. 7, 2023, attack that triggered the war.</p><p>Neil Quilliam, a Middle East expert at London’s Chatham House think tank, said expectations are low that Hamas will actually disarm or that Israel will withdraw from Gaza.</p><p>“I think that Netanyahu’s silence speaks volumes,’’ Quilliam said. “This is a massive decision that he has to make.”</p><p>“But with the prospect of the elections hanging over his head, with several Cabinet ministers and opposition leaders already counseling not to go ahead with the deal, I think he understands that doing so would likely scupper his chances of reelection,” he added.</p><p>The deal would be implemented in stages</p><p>In announcing the latest deal on social media, Trump said it would be carried out in “carefully structured phases.”</p><p>“As disarmament is completed, Israeli forces will withdraw, and the International Stabilization Force will work with a new Palestinian police force to take responsibility for Gaza being safe for its residents and its neighbors,” he wrote.</p><p>A copy of the agreement obtained and verified by The Associated Press said that all weapons held by the Hamas-run police will be transferred to the U.S.-backed Palestinian technocratic committee, known as the National Committee for the Administration of Gaza, upon its arrival in the enclave. It’s not clear when that would happen since it is contingent on other steps.</p><p>A process to decommission and store heavy weapons, military production sites and tunnels will begin after the arrival of the Palestinian committee and the deployment of international forces. The process will be linked to a phased Israeli withdrawal, according to the agreement.</p><p>Israel currently controls around 60% of Gaza, areas that have been mostly destroyed and depopulated. Most of the territory's 2 million Palestinians are in the other part, where hundreds of thousands live in squalid tent camps and destroyed neighborhoods.</p><p>In a statement Thursday, an Israeli official said that there will be no Israeli withdrawal before the militant group is disarmed and the strip demilitarized. The statement was made on condition of anonymity in line with government protocol.</p><p>A person with knowledge of the situation said that Israel is fully involved, but it's not a signatory to the deal, which is between Hamas and several countries helping to negotiate and guarantee the ceasefire. The person spoke on condition of anonymity in order to discuss the agreement. The deal's guarantors are the U.S., Turkey, Egypt and Qatar.</p><p>It could take years for Hamas to disarm</p><p>On Thursday, U.S. and Board of Peace officials, describing the deal to reporters on condition of anonymity under guidelines set by the White House, gave an extremely optimistic assessment. The board was established by Trump to oversee the ceasefire in Gaza.</p><p>While Gaza's police force is expected to hand over its arms, that doesn't include the vast majority of Hamas militants, and heavy weaponry is not included in that part of the agreement, according to the officials.</p><p>Instead, the surrender of heavy weapons and the decommissioning of Hamas tunnels and other infrastructure are to come later in a process that could take between 200 and 350 days, a Board of Peace official said. That timeline did not appear in the agreement obtained by AP.</p><p>A Hamas official and a regional official involved in the process said that Hamas and other groups agreed to “collect and store” arms inside Gaza under the supervision of the Palestinian technocratic committee and that weapons won’t be handed to Israel or non-Palestinian parties.</p><p>The officials, who spoke on condition of anonymity because they were not authorized to brief the media, said this would be a gradual process linked to an Israeli withdrawal.</p><p>Israel has been deeply skeptical</p><p>A U.S. official said Israel, which has been deeply skeptical about Hamas’ willingness to give up its guns or relinquish control of Gaza, had been consulted at every step of the negotiation. The official said Israel was not being asked to do anything more than what it had committed to as part of the October agreement.</p><p>A member of the Palestinian technocratic committee told the AP on Friday that it was eager to enter Gaza but was concerned Israel will pose challenges. The person spoke on condition of anonymity because they were not authorized to speak to the media. The person said they didn’t expect to enter Gaza for at least two months.</p><p>The committee welcomed the progress Friday, but said the work to restore public institutions and services and rebuild the territory would be immense.</p><p>The war in Gaza began after a Hamas-led attack on southern Israel on Oct. 7, 2023, killed around 1,200 people and saw 251 taken hostage. Israel’s retaliatory offensive in Gaza has killed more than 73,000 Palestinians, including those killed since the ceasefire, Gaza’s Health Ministry said. The ministry, which is part of the Hamas-led government and is staffed by medical professionals, does not distinguish between civilians and militants in its toll but says women and children make up around half of all deaths.</p><p>___</p><p>Mednick reported from Tel Aviv, Israel, Cooper from Phoenix, and Lee from Washington. Associated Press writers Farnoush Amiri in New York, Edith M. Lederer at the United Nations and Danica Kirka in London contributed.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/EMJR44IJZJYHIOW6FKSPXX6WT4.jpg?auth=65813bb46f2d530ee6aa32581efa81f98be6766301c811d57394a45c0fe5f052&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A Palestinian man rides his bicycle by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/GJ45UWY27VGOPYTONUQXPCIMV4.jpg?auth=e63ff4d08c008623a17f821a7b222eca49e8c67df6caa1084629c67b20abb2bb&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A Palestinian man rides his bicycle by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/VTNU7QUXLKFWI4VGZHRMJGYC6A.jpg?auth=f1ddc8fe040d92e19039068e5cd697cc26d7b971ced6dac4822181330e35c439&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Palestinian walk by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/TP553E4XBGNFU4RSXQBS2R4LBY.jpg?auth=7b988343e9d60d4d65d4561f1674c1e8da4c0bce1136141ca5392a0fddff2528&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A Palestinian man rides his bicycle by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/NTJ7DUOCYUS2KLT55KZ7Z3NLDI.jpg?auth=a8068b66d8be880ebb51b0f8ab99bb7d05be8216493a97dee2a8bbfae2f30907&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Palestinian barber Mousa al-Kharibi gives a man a haircut inside a tent, by the rubble of buildings that were destroyed during the Israel Hamas war, in Khan Younis, southern Gaza Strip, Friday, July 31, 2026. (AP Photo/Abdel Kareem Hana)]]></media:description><media:credit role="author" scheme="urn:ebu">Abdel Kareem Hana</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/RDMU5YZOKQJU67Y2WK2X3V25SM.jpg?auth=f2e58929ab5338dc4fcc60df11f48f3524a94df007f6ef185f1e08aab19a08d2&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A tracker showing progress in the Gaza ceasefire. (AP Digital Embed)]]></media:description><media:credit role="author" scheme="urn:ebu">Will Jarrett</media:credit></media:content></item><item><title><![CDATA[Missouri proposal would create nation's toughest standard for citizen-led constitutional amendments]]></title><link>https://www.local10.com/news/politics/2026/07/31/missouri-proposal-would-create-nations-toughest-standard-for-citizen-led-constitutional-amendments/</link><guid isPermaLink="true">https://www.local10.com/news/politics/2026/07/31/missouri-proposal-would-create-nations-toughest-standard-for-citizen-led-constitutional-amendments/</guid><dc:creator><![CDATA[By DAVID A. LIEB, Associated Press]]></dc:creator><description><![CDATA[JEFFERSON CITY, Mo. (AP) — Over the past several years, Missouri voters have amended the state constitution to create abortion rights, legalize marijuana and sports betting and expand Medicaid healthcare coverage for low-income adults.]]></description><pubDate>Fri, 31 Jul 2026 11:00:26 +0000</pubDate><content:encoded><![CDATA[<p>JEFFERSON CITY, Mo. (AP) — Over the past several years, Missouri voters have amended the state constitution to create abortion rights, legalize marijuana and sports betting and expand Medicaid healthcare coverage for low-income adults.</p><p>None of those initiatives would have passed under a ballot measure getting decided by voters Tuesday.</p><p>Missouri's proposed Amendment 4 would make it significantly harder to amend the constitution by requiring citizen initiatives to pass in all eight of the state's diverse congressional districts instead of by a traditional, simple statewide majority. No other state has such a high standard — or has even asked voters to consider it.</p><p>“This is a first-of-its-kind,” said Kelly Hall, executive director of the Fairness Project, a national group that backs progressive ballot initiatives like the ones Missouri's Republican lawmakers are hoping to quelch.</p><p>“It would be nearly impossible for citizens to participate meaningfully in any sort of direct democracy,” said Hall, who believes other states could try to copy Missouri's proposal.</p><p>Lawmakers seek to rein in citizen initiatives</p><p>The Missouri proposal is the culmination of years of attempts by lawmakers in numerous states to raise the bar for citizen-initiated petitions to qualify for the ballot and win voter approval. Some elected officials contend lawmaking is best left to themselves — the people's representatives — because citizen initiatives lack the vetting that comes from the multistep legislative process of public hearings, debates and revisions.</p><p>The effort to curtail citizen initiatives on state ballots comes as President Donald Trump pushes for greater restrictions on who can vote and how ballots are cast, asserting the integrity of elections is at stake.</p><p>Missouri’s measure “fits into the larger narrative and story around what the future of democracy looks like in the United States,” said Chris Melody Fields Figueredo, executive director of the Ballot Initiative Strategy Center, which supports progressive ballot measures.</p><p>Citizen initiatives are allowed only in some states</p><p>About one-third of U.S. states allow people to bypass their legislatures by gathering signatures to place proposed constitutional amendments on the ballot. Several others allow the process for proposed laws.</p><p>In most of those states, a simple majority of voters is all that’s needed to approve constitutional amendments. Colorado requires a 55% vote for most measures, and Florida a 60% vote.</p><p>Voters in recent years rejected ballot measures to raise the approval threshold for amendments in Arkansas, Ohio and South Dakota. Still, South Dakota lawmakers have placed a proposal for a 60% approval threshold on the November ballot. North Dakota voters will consider a similar measure, and Utah voters will decide on a 60% requirement for citizen-initiated tax increases.</p><p>Missouri’s proposal would apply only to citizen initiatives. Constitutional amendments proposed by the Legislature still would need only a statewide majority. No other state has a dual standard like that.</p><p>Missouri proposal requires geographic consensus</p><p>Republican state Rep. Ed Lewis, who sponsored Missouri's measure, said he wants to ensure people in all parts of the state have their voices heard. He said activists funded by out-of-state interest groups have run up large majorities in St. Louis and Kansas City to pass controversial initiatives that failed throughout most of the rest of Missouri.</p><p>The abortion, marijuana, sports betting and Medicaid initiatives all were placed on the ballot by petitions between 2020 and 2024 after lawmakers declined to act. All passed with 53% or less of the statewide vote.</p><p>Requiring “50% in each of our congressional districts is not a difficult barrier for anything that has a consensus,” Lewis said. But “it is a difficult barrier for either a very conservative or a very liberal initiative petition,” he said.</p><p>“If you’re going to change the constitution, shouldn’t it be broadly accepted?” Lewis asked rhetorically.</p><p>Amendments to the U.S. Constitution require ratification by three-fourths of the states.</p><p>Critics say Missouri's proposed amendment could undercut consensus, because an initiative backed by large margins in seven congressional districts still would fail if opposed by a slim margin in just one district.</p><p>“It is an astonishing level of unfairness, and it crushes our notion of one person, one vote and majority rule, which we learned about in school as kids,” said Scott Charton, a spokesperson for the Missouri Realtors campaign committees, which have backed previous initiatives.</p><p>Republicans are divided over initiative restrictions</p><p>Though Amendment 4 was referred to the ballot by Republican lawmakers, people at a recent Republican club meeting in Jefferson City were divided about whether to make it harder for citizens to amend the state constitution.</p><p>Rick Kolb said he supports the tougher standards.</p><p>“Our country was founded as a republic not a democracy,” he said. When initiatives appear on the ballot, “everybody votes on these things that they haven’t put any thought into it.”</p><p>But Jim Bryan said he opposes the amendment, fearing it could allow voters in St. Louis or Kansas City to thwart measures supported by the rest of the state.</p><p>“The popular vote is what I want,” he said.</p><p>A new petition could fortify citizen initiatives</p><p>Regardless of the outcome, Tuesday's vote may not be the last on Missouri's citizen initiatives.</p><p>The Respect Missouri Voters coalition submitted more than 300,000 petition signatures — currently being verified by election officials — to try to place a constitutional amendment on the November ballot protecting the initiative process. It would reverse the Legislature's amendment by requiring only a statewide majority to pass citizen initiatives. It also would bar the Legislature from increasing the number of signatures needed to qualify for the ballot, shortening the time to do so or imposing other requirements that weaken initiative rights.</p><p>The measure also would make it harder for the Legislature to reverse or amend voter-approved initiatives by requiring an 80% vote in both the House and Senate instead of a simple majority. That comes after the Legislature last year repealed a paid sick leave law approved by voters and referred a new constitutional amendment to the November ballot to reverse voter-approved abortion rights.</p><p>Supporters insist their measure is nonpartisan, noting that Democratic lawmakers also tried to restrict citizen initiatives before Republicans gained control of the Capitol.</p><p>“Politicians in power want all the power in their hands,” said Benjamin Singer, co-founder of Respect Missouri Voters. “They don’t want citizens to have a check on their power.”</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/DYCQWPK2WGVAZ7IYVCHUSUCCVY.jpg?auth=78d3e9bda0595564bb969ede43da9191b921c0def153b1f57317f3a39dbf3742&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - John Billman, of Columbia, Mo., holds a sign explaining his opposition to a state legislative proposal that would make it harder for voters to approve citizen-initiated constitutional amendments while rallying at the state Capitol in Jefferson City, on Wednesday, Sept. 10, 2025. (AP Photo/David A. Lieb, File)]]></media:description><media:credit role="author" scheme="urn:ebu">David A. Lieb</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/SWBNGCHIOBNRSLY64VD44VCLRQ.jpg?auth=647388353b251b6e372ba8a339a8e2e6c43316bb8c63aad370e4a42e25bf8fc8&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - The Missouri Capitol is shown on Tuesday, Aug. 13, 2024, in Jefferson City, Mo. (AP Photo/David A. Lieb, File)]]></media:description><media:credit role="author" scheme="urn:ebu">David A. Lieb</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/AFUOQGUIYVL35XW3XN6VPVZSEU.jpg?auth=a56579ba13b89f175cba6e89001ee746a258f9dece7a1abd67c77055b99d6419&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - Liz Kester, a volunteer with the Respect Missouri Voters Coalition, explains her support for a ballot initiative limiting legislative powers while at the Missouri Capitol lawn on Wednesday, Sept. 10, 2025 in Jefferson City, Mo. (AP Photo/David A. Lieb, File)]]></media:description><media:credit role="author" scheme="urn:ebu">David A. Lieb</media:credit></media:content></item><item><title><![CDATA[July 31: Rainfall chances increase this afternoon, evening]]></title><link>https://www.local10.com/weather/2026/07/31/july-31-rainfall-chances-increase-this-afternoon-evening/</link><guid isPermaLink="true">https://www.local10.com/weather/2026/07/31/july-31-rainfall-chances-increase-this-afternoon-evening/</guid><dc:creator><![CDATA[Julie Durda]]></dc:creator><description><![CDATA[Happy last day of July! A Heat Advisory has been issued for Broward and Miami-Dade, starting at 11 a.m. ]]></description><pubDate>Fri, 31 Jul 2026 10:47:49 +0000</pubDate><content:encoded><![CDATA[<p>Happy last day of July! A Heat Advisory has been issued for Broward and Miami-Dade, starting at 11 a.m. High temperatures will be in the mid-90s, with a possibility of breaking records. In Miami, I’m forecasting a high of 95 degrees -- the record is 95, set back in 1999. Also in Fort Lauderdale, I’m forecasting 95 -- the record high is 96, set back in 1986. Rainfall chances increase later this afternoon and evening as moisture surges into the region. Westerly flow continues Saturday which may focus showers and storms around the east coast, however a wind shift towards the east on Sunday will shift higher rain chances westward. Keep it tuned to Local 10 for more.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/ZVM6A6ZXGBFH5FRLH2CKLR7DDY.jpg?auth=5538de09b666ea5a5147343fa29e64118175bed12961ff44a71e0e9e91fc0d29&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"/></item><item><title><![CDATA[Immigration crackdown threatens Haitian caregivers and the seniors who rely on them]]></title><link>https://www.local10.com/news/florida/2026/07/31/immigration-crackdown-threatens-haitian-caregivers-and-the-seniors-who-rely-on-them/</link><guid isPermaLink="true">https://www.local10.com/news/florida/2026/07/31/immigration-crackdown-threatens-haitian-caregivers-and-the-seniors-who-rely-on-them/</guid><dc:creator><![CDATA[By MATT SEDENSKY and GISELA SALOMON, Associated Press]]></dc:creator><description><![CDATA[NEW YORK (AP) — Who will be there each morning with Solange French’s eggs at breakfast, and who will be ready with soup or fish at lunch? When the 91-year-old needs help in the shower, who will rush to her side, and when it’s time for a doctor’s appointment, who will take her? Who will do the laundry or buy the groceries or clean the house?]]></description><pubDate>Fri, 31 Jul 2026 17:40:57 +0000</pubDate><content:encoded><![CDATA[<p>NEW YORK (AP) — Who will be there each morning with Solange French’s eggs at breakfast, and who will be ready with soup or fish at lunch? When the 91-year-old needs help in the shower, who will rush to her side, and when it’s time for a doctor’s appointment, who will take her? Who will do the laundry or buy the groceries or clean the house?</p><p>Until now, the answer has been a doting home health aide from Haiti named Martha Nelson. But with the Supreme Court sanctioning a White House immigration crackdown, Nelson’s permission to stay in the country appears likely to be yanked within days, leaving French worried.</p><p>“She’s with me all the time,” says French. “Life would be impossible.”</p><p>As the Trump administration unwinds years of protections for hundreds of thousands of people from Haiti, twin populations of vulnerable people find themselves in the crosshairs: caregivers in jobs to which those immigrants have flocked, and the older adults and disabled people who rely on them.</p><p>Around the U.S., care homes and home health agencies are bracing for the loss of workers with TPS, which stands for temporary protected status, even as they continue to reel from other immigration policy changes that have squeezed an already short-staffed industry.</p><p>For businesses, it is a predicament that could hurt bottom lines and tax remaining workers. For their clients, it threatens to upend every aspect of their lives.</p><p>“They have become like family,” says Katy Sanchez, who lives in a group home for disabled people in Nanuet, New York, run by The Arc Rockland, which stands to lose 19 caregivers with TPS, on top of 20 others it lost in immigration changes last year. “If they are forced to leave, it would be devastating.”</p><p>Supreme Court ruling paved the way</p><p>The Supreme Court sided with the Trump administration last month, saying it could end temporary protected status. The ruling specifically pertained to 350,000 Haitians and 6,000 Syrians, but immigration advocates and legal observers say it could be applied to a broader group of 1.3 million people from 17 countries.</p><p>The justices' move has been met with weeks of confusion. Immigration officials subsequently granted several extensions to TPS holders that carried through Monday. U.S. Citizenship and Immigration Services issued guidance Wednesday affirming TPS was over, though some attorneys and labor unions have argued work authorization remains intact until lower courts lift an injunction.</p><p>The Department of Homeland Security made light of the TPS expiration, referencing lyrics from a 1998 hit song: “It’s closing time, which means you don’t have to go home, but you can’t stay here.”</p><p>Fearful they might be in breach of the law, some employers have begun terminating TPS holders, to the dismay of their clients.</p><p>Anna Fischbein grew accustomed to visits to her home in Sunny Isles, Florida, from the same kindly Haitian health aide every week for the past 10 years. But Jewish Community Services of South Florida terminated the aide along with 17 others when their TPS lapsed.</p><p>“I lost not only a lady working for me,” the 87-year-old Holocaust survivor says, her voice broken by sobs. “I lost a friend.”</p><p>Facilities scramble to come up with replacement workers</p><p>Around 1 in 5 workers in the U.S. is foreign born, according to the Bureau of Labor Statistics, but immigrants are overrepresented in caregiving roles. Among home health aides, for example, one-third are immigrants, according to PHI, a nonprofit focused on the caregiving workforce.</p><p>In lives upended by age or disability, a cherished caregiver is a lifeline. For someone living in their own home, they may be the last line of defense before institutionalization. For those in a care facility, they may be their strongest advocate, who notices subtle changes before anyone else, ensures small comforts like dollar-store word search books, and brings a sense of humanity to the humiliation of being incontinent.</p><p>“They are the first people they see when they wake up in the morning and they’re the last ones that they see before they go to bed,” says Simone Smith, vice president of human resources at Cabrini of Westchester, a nursing home in Dobbs Ferry, New York, where eight Haitians with TPS await word of their fate.</p><p>Like similar facilities around the country, Cabrini is prepared to scramble to secure replacement staffers from nursing agencies and plead with remaining workers to take overtime shifts. Cabrini’s workforce is about 75% immigrant. Among those with TPS, Smith senses “almost a hopelessness.”</p><p>A Haitian who loses TPS faces an unbearable choice: Attempt to stay in the U.S. and find underground work, tiptoeing through life with fear that authorities will eventually find and remove them. Or return to a country so plagued by gang violence and poverty that many believe it would amount to a death sentence.</p><p>“I’m afraid all the time,” says a Haitian man working at a Brooklyn nursing home who asked for anonymity because of concerns for the safety of himself and his family. “I pay tax to the country. I’m a good person. … All I want is to work. When you work, you are a person.”</p><p>Families wonder what they will do</p><p>Outside a simple brick house in Queens, Nelson stands guard as French steps through her door. On the porch, you might mistake the two for old friends, their bond as much an illustration of what is at risk as it is of how much things have changed.</p><p>The women made the same journey, from Port-au-Prince to New York, four decades apart.</p><p>French was drawn here in 1970 by the potential opportunities she saw. She built businesses as a hairdresser and seamstress. Her late husband made his way as an electrician and contractor. They bought their home. Their children got good educations. They believed they achieved the American dream.</p><p>Nelson came after an earthquake flattened Haiti in 2010. At home, she ran a butcher shop, but after arriving in New York she found work in caregiving roles. She began working for French about three years ago after French fell and broke her hip. Nelson, now 69, has been with her nearly every weekday since.</p><p>Both women felt welcomed by the U.S. when they arrived. But French is saddened to see how views on immigrants have evolved.</p><p>“America is a good country,” French says, “but it has changed.”</p><p>Nelson brings leftovers, tends to French’s chores and is a source of companionship. They watch the news together and talk in Haitian Creole about their families. On weekends, Nelson calls to make sure French has gotten up from bed and nags her to eat.</p><p>“On my days off, I think about her,” Nelson says.</p><p>French says Nelson has become like family. Nelson agrees, saying she sees French as if she’s her own mother, a show of affection and the source of the pair’s one ongoing dispute.</p><p>“You’re not like my daughter,” French protests. “You’re like my sister.”</p><p>For now, the two continue their routine, knowing each shift may be Nelson's last. She keeps a copy of her work authorization zipped in a black cloth pouch that she carries everywhere, in case she is stopped. Each Sunday, she sinks to her knees in church, praying for an answer. She worries for herself and for French.</p><p>“It makes me feel depressed,” Nelson says. “It could be difficult for her without me.”</p><p>___</p><p>Salomon reported from Miami.</p><p>___</p><p>Matt Sedensky can be reached at msedensky@ap.org and https://x.com/sedensky</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/Z4JCGYFQG7ZARPXC5BZDHUUSAE.jpg?auth=c343f30479c5f140b3b30ad73a544a49f5b92e7a04b7343740c3dd45703106fa&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[A "Fall Risk" alert bracelet marks the walker of Anna Fischbein as she speaks about the loss of a beloved Haitian home health care worker whose Temporary Protected Status expired this week, during an interview in her apartment, Thursday, July 30, 2026, in Sunny Isles Beach, Fla. (AP Photo/Rebecca Blackwell).]]></media:description><media:credit role="author" scheme="urn:ebu">Rebecca Blackwell</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/2GSDXZVIV3F3BPQUWESTDE45PA.jpg?auth=93018abd8cfb00db79981ae3046c35ca3a28d7ed46d02127d44678c71ad873d0&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Anna Fischbein speaks about the loss of a beloved Haitian home health care worker whose Temporary Protected Status expired this week, as another health care worker with American citizenship waits behind to drive her to a doctor's appointment, during an interview in her apartment, Thursday, July 30, 2026, in Sunny Isles Beach, Fla. (AP Photo/Rebecca Blackwell).]]></media:description><media:credit role="author" scheme="urn:ebu">Rebecca Blackwell</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/F3VD7RK4RT2WCOX73AKWGLYGIQ.jpg?auth=276b9094edb2a4c0189beaeae615a0538f0d3ef9abb4f6a1f089cee73ccde010&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[Miriam Singer, CEO of Jewish Community Services of South Florida, pauses as she speaks of the home health workers she had to let go after their TPS expired Wednesday, July 29, 2026, in Miami Beach, Fla. (AP Photo/Marta Lavandier)]]></media:description><media:credit role="author" scheme="urn:ebu">Marta Lavandier</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/H3OBGE4SNXBRPF4WROJEOUT5YU.jpg?auth=d7ea91af6ac5d42acf2e89742409648b6aa090392617797d9fa47b80552bcfe4&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[People hold Haitian flags and signs during a rally in support of immigrants living in the United States with temporary protected status, or TPS, Thursday, July 9, 2026, in San Diego. (AP Photo/Gregory Bull)]]></media:description><media:credit role="author" scheme="urn:ebu">Gregory Bull</media:credit></media:content></item><item><title><![CDATA[Senior FIFA executive says staff were deceived over Infantino's World Cup sell-off plan]]></title><link>https://www.local10.com/news/2026/07/31/senior-fifa-official-resigns-over-infantinos-world-cup-sell-off-plan-second-says-it-deceived-staff/</link><guid isPermaLink="true">https://www.local10.com/news/2026/07/31/senior-fifa-official-resigns-over-infantinos-world-cup-sell-off-plan-second-says-it-deceived-staff/</guid><dc:creator><![CDATA[By GRAHAM DUNBAR, Associated Press]]></dc:creator><description><![CDATA[GENEVA (AP) — FIFA's chief operating officer said its staff were deceived by their president Gianni Infantino's World Cup sell-off plan, and suggested on Friday the project must not go ahead.]]></description><pubDate>Fri, 31 Jul 2026 16:17:28 +0000</pubDate><content:encoded><![CDATA[<p>GENEVA (AP) — FIFA's chief operating officer said its staff were deceived by their president Gianni Infantino's World Cup sell-off plan, and suggested on Friday the project must not go ahead.</p><p>Zurich-based executive Kevin Lamour all but invited Infantino to fire him in a statement to The Associated Press that defended his colleagues amid intense fallout from the FIFA boss' plan to sell stakes in future World Cup profits to private equity funds.</p><p>Lamour wrote that staff were “deceived” by Infantino’s lack of openness in planning the sale over recent months and “deserve better than contempt and intimidation.”</p><p>“It is the project of one person,” Lamour, a long-time colleague of Infantino at both FIFA and European soccer body UEFA, wrote. “Not only must this project not go ahead … but the time has now come for football political leaders to ask themselves the right questions and make the right decisions.”</p><p>Lamour's statement came hours after Infantino's senior adviser Carlos Cordeiro, a former Goldman Sachs banker who represented the soccer body on the White House Task Force for the World Cup, resigned and urged other senior FIFA staff to speak out.</p><p>“I cannot stand by while FIFA considers selling a stake in the World Cup,” Cordeiro wrote in a statement. The former U.S. Soccer Federation president said he was not included in talks about the plan backed by a New York investment fund created by Joshua Kushner.</p><p>“Let me be clear. I had no involvement in this proposal, and I oppose it unequivocally,” Cordeiro said. He called the $20 billion commercial subsidiary “a bad deal for football.”</p><p>Lamour did not resign the post he has held since 2024 but said he had a duty to his colleagues.</p><p>“And if that means I lose my job then so be it” the French official said. “I will understand and respect that decision. At least I’ll sleep well tonight.”</p><p>Lamour came to soccer from politics two decades ago as an aide to then-UEFA president Michel Platini. He often had an international role in soccer politics liaising with FIFA member federations in Africa and Asia who are weighing their own decisions about Infantino's offers of $20 million each by a Sept. 19 deadline.</p><p>Cordeiro often joined Infantino on working visits to meet U.S. President Donald Trump at the White House in recent years.</p><p>“Football has been central to my life, and after more than 35 years in banking I understand both the value of this asset and the consequences of giving part of it away,” he said. “That is why this proposal should be rejected.”</p><p>Infantino has proposed spinning off FIFA’s commercial businesses — including World Cups and Club World Cups for men and women — into a $20 billion subsidiary with 20% owned by private investors. The “anchor investor,” described by FIFA, is Kushner, the younger brother of Trump’s son-in-law Jared Kushner.</p><p>“FIFA already has access to extraordinary financial resources. The organization sits on billions of dollars in reserves and no debt,” Cordeiro said. He noted FIFA's revenue of $15 billion over the last four years tied to the men's World Cup just ended.</p><p>“Against that backdrop, selling a permanent stake in football’s most valuable asset to raise $4.2 billion makes little sense. It is mortgaging football’s future without any compelling justification,” he said.</p><p>Cordeiro said he shared five years of working for FIFA alongside Infantino with “dedicated, principled people who care deeply about the game.”</p><p>“I hope they, too, will speak up,” he wrote, “because decisions of this magnitude should be made in the interests of football, not those who stand to profit from it.”</p><p>Infantino has been president of FIFA for more than 10 years and seemed sure to be re-elected unopposed next March. FIFA has set a Nov. 18 deadline for challengers to come forward.</p><p>Lamour was part of Infantino’s inner circle that campaigned for him to become the surprise winner of that FIFA presidential election in February 2016.</p><p>___</p><p>AP soccer: https://apnews.com/hub/soccer and AP World Cup coverage</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/CDFXPCIDSKNPWHQFMX72O2FWMQ.jpg?auth=76887a32790b13793f9cd14dec211261c35f50399a3839374dc3d21448c99968&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - FIFA President Gianni Infantino speaks during a news conference at the stadium in Mexico City, Wednesday, June 10, 2026, a day before the opening FIFA World Cup match between Mexico and South Africa. (AP Photo/Eduardo Verdugo, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Eduardo Verdugo</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/QEJHE4E37SXOUDWAJI6UJLXTZQ.jpg?auth=0499df44ed2a03900599c22f7f4aa4208582273a64fb57271458e5268545c7b9&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - UEFA's deputy general secretary Kevin Lamour, centre, looks on as he stands next to UEFA President Aleksander Ceferin, right, prior to the start of a Group F match between Turkey and Georgia at the Euro 2024 soccer tournament in Dortmund, Germany, Tuesday, June 18, 2024. K(AP Photo/Alessandra Tarantino, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Alessandra Tarantino</media:credit></media:content><media:content url="https://www.local10.com/resizer/v2/2EEKBLJGP4IYXZ3ZOFIYENYI2A.jpg?auth=d959bccc9aa24e45770f69100dfbcd14db972c96db7f76f9170da90a743a017d&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE - President Donald Trump answers questions from reporters during a meeting with the White House task force on the 2026 FIFA World Cup in the Oval Office of the White House, Monday, Nov. 17, 2025, in Washington, as FIFA President Gianni Infantino, Secretary of State Marco Rubio and FIFA senior adviser Carlos Cordeiro listen. (AP Photo/Evan Vucci, file)]]></media:description><media:credit role="author" scheme="urn:ebu">Evan Vucci</media:credit></media:content></item><item><title><![CDATA[EU to crack down on AI deepfakes, illicit imagery and hacking with new team in Brussels]]></title><link>https://www.local10.com/news/world/2026/07/31/eu-to-crack-down-on-ai-deepfakes-illicit-imagery-and-hacking-with-new-team-in-brussels/</link><guid isPermaLink="true">https://www.local10.com/news/world/2026/07/31/eu-to-crack-down-on-ai-deepfakes-illicit-imagery-and-hacking-with-new-team-in-brussels/</guid><dc:creator><![CDATA[By SAM McNEIL, Associated Press]]></dc:creator><description><![CDATA[BRUSSELS (AP) — The European Union rolled out a new team on Friday to rein in AI companies across the world, in one of the most aggressive regulations the high-tech sector has so far faced as fears rise over the risks the rapidly advancing technology poses to people, politics and prosperity.]]></description><pubDate>Fri, 31 Jul 2026 09:47:29 +0000</pubDate><content:encoded><![CDATA[<p>BRUSSELS (AP) — The European Union rolled out a new team on Friday to rein in AI companies across the world, in one of the most aggressive regulations the high-tech sector has so far faced as fears rise over the risks the rapidly advancing technology poses to people, politics and prosperity.</p><p>Brussels aims to track the use of AI models for violations of its new regulations, like the publishing of sexually explicit material, fake photos and videos, and cyber threats to public infrastructure. When the bloc's AI Act comes into force on Sunday, AI companies will be required to make clear to consumers with labels or digital watermarks that chatbots or imagery are generated with AI.</p><p>“As enforcement begins, we are taking an important step towards AI that people and businesses can understand and trust, and whose benefits are shared widely across our society,” said Henna Virkkunen, the EU chief for tech sovereignty, on Friday.</p><p>The European Commission said in a statement that new regulations also include “systemic risks” posed by AI like “chemical, biological, radiological and nuclear incidents, loss of control, cyber offense, harmful manipulation and threats to fundamental rights."</p><p>The team is the latest move in the 27-nation EU’s “tech sovereignty” strategy that welds landmark digital regulations with economic ambition that has seen over the past week billions of euros in fines on Big Tech companies as well as record investment in AI infrastructure inside the bloc.</p><p>The rollout comes on the heels of shocking AI safety failures that rattled the nascent industry. Political leaders worldwide are now weighing control of the technology with market leadership.</p><p>Anthropic said on Friday its artificial intelligence models hacked into three other organizations during testing, just days after ChatGPT maker OpenAI raised concerns over AI controls after it disclosed its rogue models hacked another company.</p><p>The EU is now expanding its AI Office in Brussels with an additional 38 people who will begin monitoring AI companies, from the new firms to the American and Chinese tech titans like OpenAI and DeepSeek.</p><p>Those companies must “document certain information,” said the European Commission, the bloc's tech enforcer, which reserves the right to interview AI company staff during investigations. It has also launched a Whistleblower Tool for tech workers and a Compliance Tool for tech users to confidentially alert authorities to illegal conduct.</p><p>If models or other products break the EU's sector regulations, called the AI Act, Brussels can fine the firms or cut off their access to the EU market. Recent gigantic antitrust fines on U.S. tech companies have irked U.S. President Donald Trump.</p><p>The EU now clearly sees systemic vulnerability in its deep reliance on American software companies like Amazon, Google and Microsoft as well as imports of Chinese industrial goods and critical minerals. While it is seeking protections from AI, it is also keen to catch up in the AI arms race, where it is a distant third behind the U.S. and China.</p><p>More broadly, the EU is seeking more independence from both Washington and Beijing by reinvigorating specific domestic industries like manufacturing and defense and forging new trade deals from Brazil to Australia to meet the global rise in economic nationalism spearheaded by Trump.</p>]]></content:encoded><media:content url="https://www.local10.com/resizer/v2/BZSXQKZ2C7JTORRLNX6RYQBRI4.jpg?auth=d93c2f5f042192c6de9eb74e493569d8f94a7c51e3bdec7d0ad3f846087724dc&amp;smart=true&amp;width=1200&amp;height=900" type="image/jpeg" height="900" width="1200"><media:description type="plain"><![CDATA[FILE -A data centre is pictured in Frankfurt, Germany, Friday, Aug. 22, 2025. (AP Photo/Michael Probst, File)]]></media:description><media:credit role="author" scheme="urn:ebu">Michael Probst</media:credit></media:content></item></channel></rss>