

<!DOCTYPE html>
<html lang="en" dir="ltr" prefix="content: http://purl.org/rss/1.0/modules/content/  dc: http://purl.org/dc/terms/  foaf: http://xmlns.com/foaf/0.1/  og: http://ogp.me/ns#  rdfs: http://www.w3.org/2000/01/rdf-schema#  schema: http://schema.org/  sioc: http://rdfs.org/sioc/ns#  sioct: http://rdfs.org/sioc/types#  skos: http://www.w3.org/2004/02/skos/core#  xsd: http://www.w3.org/2001/XMLSchema#  fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#" xmlns:fb="http://www.facebook.com/2008/fbml">
  <head>

    <script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('consent', 'default', {
    'ad_storage': 'denied',
    'analytics_storage': 'denied',
    'ad_user_data': 'denied',
    'ad_personalization': 'denied',
    'personalization_storage': 'denied',
    'functionality_storage': 'denied',
    'security_storage': 'granted'
  });
</script>    <!-- OneTrust Cookies Consent Notice start for military.com -->

 <script src="https://cdn.cookielaw.org/scripttemplates/gpp.stub.js" type="text/javascript"></script>
 <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" id="oneTrustScript" type="text/javascript" charset="UTF-8" data-domain-script="01938cdc-feef-7a10-8910-2b15514d958f" ></script>

 <script type="text/javascript">

  function OptanonWrapper() {
    //                                               _________________________________
    // _____________________________________________/ Monkey Patch Cookie Interceptor \__________
    // Wait for Optanon object to be available, then monkey patch the document.cookie setter
    (function () {

    
        // console.log('OneTrust is ready, initiating document.cookie patching...  ');

        const originalCookieDescriptor = Object.getOwnPropertyDescriptor(Document.prototype, 'cookie');  // save the original document.cookie function

        
        // OneTrust variables bundled up for convenience
        const deepCookieList = JSON.parse(JSON.stringify(OneTrust.GetDomainData().Groups));
        const deepUsersGroups = JSON.parse(JSON.stringify(OnetrustActiveGroups.split(',').filter(n => n.length > 0)));
        const deepCurrentBlacklist = JSON.parse(JSON.stringify(currentBlackList(deepCookieList, deepUsersGroups)));

        // Get the user's active groups from OneTrust
        function currentBlackList(deepCookieList, deepUsersGroups) {
          let shortList = [];
          deepCookieList.forEach(group => {
            if (!deepUsersGroups.includes(group.CustomGroupId)) {
              shortList = shortList.concat(group.Cookies)
            }
          });
          return shortList;
        }

        const oneTrustVariables = {
          cookieList: deepCookieList,
          usersGroups: deepUsersGroups,
          currentBlackList: deepCurrentBlacklist,
        };

        // console.log('oneTrustVariables:', oneTrustVariables);


        // loop over all current cookies and delete if on black list
        deleteAllBlacklistedCookies(oneTrustVariables);


        // Patch the document.cookie property to intercept cookie creation
        Object.defineProperty(document, 'cookie', {
          get: function (value) { return originalCookieDescriptor.get.call(this); },
          set: function (value) {
            if (blackListed(oneTrustVariables, value) == true) {
              
              // note: this is not optimal, to set it the delete it, however it is necessary
              // some cookies when set are in a try catch, and they will loop infinitely,
              // until the cookie is set. -mb
              //originalCookieDescriptor.set.call(this, value); // set it
              //deleteCookie(value.split('=')[0].trim()); // then delete it
              // console.log('A cookie was Intercepted | creation was Blocked:', value.split('=')[0].trim());
            } 
            else{
              // console.log('A cookie was Intercepted | creation was Allowed:', value.split('=')[0].trim());
              originalCookieDescriptor.set.call(this, value);
            }
          },
          configurable: true,
        });



      // Function to check if a cookie is blacklisted
      function blackListed(oneTrustVariables, value){
        let found = false;
        let cookie = value.split('=')[0].trim();
        oneTrustVariables.currentBlackList.forEach(cookieToCheck => { 
          if((cookieToCheck.Name===cookie) === true ){ found = true } 
        });
        return found;
      }

      
      // Function to delete all blacklisted cookies
      function deleteAllBlacklistedCookies(oneTrustVariables) {
        let cookieNames = document.cookie.split(';').map(cookie => cookie.split('=')[0].trim()).filter(cookie => cookie.length > 0);
        // console.log('Cookie Interceptor: checking ' , cookieNames.length , ' initial cookies...');
        cookieNames.forEach(cookie => {
          let blackListed = false;
          oneTrustVariables.currentBlackList.forEach(cookieToCheck => { 
            if(cookie === cookieToCheck.Name ){ blackListed = true; } 
          });
          if (blackListed){ deleteCookie(cookie); } // else{ console.log('  --> cookie passed:', cookie); }
        }); 
      } 

      // Function to delete a specific cookie 
      function deleteCookie(cookieName) {
        const domainName = "military.com";

        document.cookie = cookieName +' =; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT; domain=.' + domainName;
        document.cookie = cookieName +' =; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT; domain=' + domainName;
        document.cookie = cookieName +' =; Path=/; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
        deletePartitionedCookie(cookieName)

        // Path catch all "/*" Loop through path hierarchy and delete potential cookies at each path.
        const pathArray = JSON.parse(JSON.stringify(window.location.pathname.split('/')));
        for (var i=0; i < pathArray.length; i++){
          if (pathArray[i]){
            //Build the path string from the Path Array e.g /site/login
            var currentPath = pathArray.slice(0,i+1).join('/');
            document.cookie = cookieName+'=; Max-Age=-99999999;';
            document.cookie = cookieName+'=; Max-Age=-99999999; Path=' + currentPath + ';Domain='+ domainName;
            document.cookie = cookieName+'=; Max-Age=-99999999; Path=' + currentPath + ';';
            //Maybe path has a trailing slash!
            document.cookie = cookieName+'=; Max-Age=-99999999; Path=' + currentPath + '/;Domain='+ domainName;
            document.cookie = cookieName+'=; Max-Age=-99999999; Path=' + currentPath + '/;';
          }
        }
        // console.log('  --> Deleted cookie:', cookieName);
      }

      async function deletePartitionedCookie(cookieName) {
        try {
          await cookieStore.delete({ name: cookieName, partitioned: true, path: '/', secure: true });
        } catch (error) {
          // console.error('Error deleting partitioned cookie:', error);
        }
      }
    
    })();
  }


   //Reload page after user changes consent using OneTrust
  function reloadOnConsentChange() {
    // Prevent infinite reload loop
    if (!sessionStorage.getItem('hasReloadedAfterConsent')) {
      sessionStorage.setItem('hasReloadedAfterConsent', 'true');
      location.reload();
    }
  }

  // Ensure OneTrust is ready before attaching event
  function setupOneTrustConsentReload(retryCount = 0) {
    if (typeof OneTrust !== 'undefined' && typeof OneTrust.OnConsentChanged === 'function') {
      OneTrust.OnConsentChanged(reloadOnConsentChange);
    } else if (retryCount < 30) {
      // Retry for 3 seconds
      setTimeout(() => setupOneTrustConsentReload(retryCount + 1), 100);
    }
  }
  setupOneTrustConsentReload();
  

</script>
<!-- OneTrust Cookies Consent Notice end for military.com -->
    <script>
(function(){
    let url = 'https://cdn.adsninja.ca';
    if(['militarydev.prod.acquia-sites.com'].includes(window.location.hostname)){
        url = 'https://ads.adsninja.ca/cached';
    }

    let version       = Math.floor(Date.now() / 3e5);
    let newScript1    = document.createElement("script");
    newScript1.async  = true;
    newScript1.src    = url + '/ads_initiator.js?v=' + version;
    newScript1.fetchPriority = "high";

    newScript1.id     = "an-injector";
    newScript1.onload = function() {
        window.adsNinjaInitiator.brandName = "Military";
        window.adsNinjaInitiator.shortBrandName = "MLT";
        window.adsNinjaInitiator.init();
    };

    let newScript2 = document.createElement("script");
    newScript2.src = 'https://cdn.adsninja.ca/an_sn.js';
    newScript2.fetchPriority = "high";

    document.head.appendChild(newScript1);
    document.head.appendChild(newScript2);
})();
</script>


<script>
// MILT-2263 SentinelSetup logic for Ironcorp
// this script uses DOM objects to set up the sentinelSetup variables.
// it the initializes sentinel pageView tracking by dynamically loading
// sp.js after setting up the variables.
// - M.Boston
//
// todo: set up a way to add event listeners for Sentinel as per MILT-2264

window.addEventListener('DOMContentLoaded', function () {
  //                      ______________________
  // ____________________/ Logic for Dimensions \____________________
  // use the logic from DL to set the dimension variables for Sentinel

  let DL = getDL()
  window.sentinelSetup = {
    accountName: 'ironcorp',
    propertyId: 'F8DEC6',
    dimensions: {

      'intent': (() => {
        if (!DL.isArticle) { return "Non-Article" }
        if (DL.isArticleSyndicated) { return "Syndicated" }
        if (DL.isPathEvergreen) { return "Evergreen" }
        if (DL.isPathNews) { return "Short-Term" }
        if (DL.isPathMilitaryLife) { return "Short-Term" }
        return "Short-Term"})(),

      'adsTemplate': (() => {
        if (DL.isHomepage) { return "home" }
        if (DL.isArticle) { return "content-all" }
        return "listing";})(),

      'contentType': (() => {
        if (!DL.isArticle) { return "Non-Article" }
        if (DL.isArticleSyndicated) { return "Feature" }
        if (DL.isPathEvergreen) { return "Resource" }
        if (DL.isPathNews) { return "News" }
        if (DL.isPathMilitaryLife) { return "Feature" }
        return "News";})(),

      'articleType': (() => {
        if (DL.isArticle) { return "article" }
        return ""})(),

      'primaryTag': (() => {
        if (DL.isArticle) { return DL.isFirstRelatedTopic ? DL.isFirstRelatedTopic : "" }
        return ""})(),

      'primaryCategory': (() => {
        if (DL.isArticle) { return DL.isPrimaryTag ? DL.isPrimaryTag : "" }
        return ""})(),

      'networkCategory': DL.isArticleNetworkCategory,

      'segment': '',

      'initiative': (() => {
        if (!DL.isArticle) { return "Non-Article" }
        if (DL.isPathEvergreen) { return "Technical" }
        return "Editorial"})(),

      'publishDate': (() => {
        if (DL.isArticleDate) { return DL.isArticleDate }
        return ""})(),

      'system': (() => {
        if (DL.isArticle) { return "Premium" }
        return ""})(),

    },
    userDimensions: { // filled in later, but before initialization
      plan: "",
      userRef: "",
      loggedIn: false
    }
  };

  //                      __________________________
  // ____________________/ load the sentinel script \____________________
  // we do not have server variables, and the sp.js script need the IDs on load
  // so we have to load it after we set the above variables.

  var s = document.createElement('script');
  s.type = 'text/javascript';
  s.async = true;
  s.src = 'https://cdn.sentinelpro.com/ironcorp/sp.js'; // <-- this initializes with the ID as soon as it loads
  s.onload = initSentinel() // <-- this then set up the pageView tracking after loading
  document.head.appendChild(s);

  async function initSentinel(){
    let user = document.cookie.split('LoginInfo');
    if (user.length !== 2){
      // no email found, initialize sentinel without userRef
      initializeSentinel();
    }
    else {
      // found email in cookie, now hash it with salt to create userRef
      let email = user.pop().split(';').shift().split('|')[11].replace(/%40/g, '@');
      let salt = '82b3b5b234554db1e8223d9c9717e168';
      let text = salt + email.toLowerCase().trim();
      // SHA256 the email + salt to create userRef (async to not block main thread)
      await digestMessage(text).then((digestHex) => {
          // init the sentinelSetup variables with the email hash
          window.sentinelSetup.userDimensions.loggedIn = (digestHex.length > 0? true : false);
          window.sentinelSetup.userDimensions.userRef = digestHex;
          window.sentinelSetup.userDimensions.plan = '';
          initializeSentinel();
      })
    }
  }

// initialize sentinel tracking
function initializeSentinel() {
  window.sentinelData = window.sentinelData || [];
  function sentinelTrack() { window.sentinelData.push(arguments) };
  sentinelTrack('config', window.sentinelSetup);
  sentinelTrack('footerTimestamp', Date.now());
}

// this is a library function, it takes a message and returns the sha256 hash
async function digestMessage(message) {
  const msgUint8 = new TextEncoder().encode(message);
  const hashBuffer = await window.crypto.subtle.digest("SHA-256", msgUint8);
  const hashArray = Array.from(new Uint8Array(hashBuffer));
  const hashHex = hashArray.map((b) => b.toString(16).padStart(2, "0")).join("");
  return hashHex;
}

//                      ___________________________
// ____________________/ raw DOM (DL) logic engine \____________________ //
function getDL() {
  let DL = {
    isArticle: false,
    isArticleSyndicated: false,
    isPathEvergreen: false,
    isPathNews: false,
    isPathMilitaryLife: false,
    isHomepage: false,
    isFirstRelatedTopic: null,
    isPrimaryTag: null,
    isArticleDate: null,
    isArticleNetworkCategory: null
  }

  // get the path info
  let p = window.location.pathname.toLowerCase().split('/')[1];
  let p2 = window.location.pathname.toLowerCase().split('/')[2];

  // is Article
  DL.isArticle = document.getElementsByClassName('page-node-type-article')?.length > 0 ? true : false;

  // is Article Syndicated
  DL.isArticleSyndicatedDOM = document.getElementsByClassName('source')[0]
  if (document.getElementsByClassName('source')[0]) {
    DL.isArticleSyndicated = document.getElementsByClassName('source')[0]?.innerText.includes('Military.com') ? false : true;
  }

  // is evergreen path
  if ( (p == "benefits") || (p == "veteran-jobs") || (p == "join-the-military") ) { DL.isPathEvergreen = true }

  // isPathNews
  if (p == "daily-news") { DL.isPathNews = true }

  // isPathMilitaryLife
  if ( (p == "military-life") || (p == "money") || (p == "off-duty") || (p == "trivia") || (p == "spouse") || (p == "deployment") || (p == "history") ) {
    DL.isPathMilitaryLife = true;
  }

  // isHomepage
  if (p === "") { DL.isHomepage = true };

  // isFirstRelatedTopic
  let isArticleRelatedTopicDOM = document.getElementsByClassName('field field--keywords field--label-inline')[0];
  if (isArticleRelatedTopicDOM) {
    let isArticleRelatedTopicATag = isArticleRelatedTopicDOM.getElementsByTagName('a')[0];
    if (isArticleRelatedTopicATag) {
      DL.isFirstRelatedTopic = isArticleRelatedTopicATag.innerText;
    }
  }

  // primaryTag
  DL.isPrimaryTag = document.getElementsByClassName("breadcrumb")[0]?.getElementsByTagName("a")[1]?.innerHTML || null;

  // is article date
  DL.isArticleDateDOM = document.getElementsByTagName('time');
  if (DL.isArticleDateDOM && DL.isArticleDateDOM[0] && DL.isArticleDateDOM[0]?.outerHTML) {
    DL.isArticleDate = DL.isArticleDateDOM[0].outerHTML.split('"')[1].split('T')[0];
  }

  // is article network category
  DL.isArticleNetworkCategory = (
    () => {
      if (DL.isArticle) {
        if ((p == "off-duty") && (p2 == "movies")) { return "movies" };
        if ((p == "off-duty") && (p2 == "games")) { return "gaming" };
        if ((p == "off-duty") && (p2 == "autos")) { return "auto_mass_market" };
        if ((p == "off-duty") && (p2 == "music")) { return "Music" };
        if ((p == "off-duty") && (p2 == "television")) { return "television" };
        if ((p == "off-duty") && (p2 == "books")) { return "Books" };
        if (p == "off-duty") { return "lifestyle" };
        return "Military"
      }
      return "Non-Article"
    }
  )();

  return DL;
}

}); // end : addEventListener : DOMContentLoaded
</script >

<style>.path--veteran-employers .page__top {height: auto !important}</style>

<link rel="preload" href="/themes/military/assets/fonts/icons.woff?pvpx2a" as="font" type="font/woff" crossorigin />
<link rel="preload" href="/themes/military/assets/fonts/icons.ttf?pvpx2a" as="font" type="font/ttf" crossorigin />
<link rel="preload" href="/themes/military/assets/fonts/icons.eot?pvpx2a" as="font" type="application/vnd.ms-fontobject" crossorigin />
<link rel="preload" href="/themes/military/assets/fonts/icons.eot?pvpx2a#iefix" as="font" type="application/vnd.ms-fontobject" crossorigin />
<link rel="preload" href="/themes/military/assets/fonts/icons.svg?pvpx2a#icons" as="font" type="image/svg+xml" crossorigin />
<link rel="preload" href="https://use.typekit.net/af/d57b89/00000000000000007735bd54/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3" as="font" type="font" crossorigin />
<link rel="preload" href="https://use.typekit.net/af/5a75b7/00000000000000007735bd42/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3" as="font" type="font" crossorigin />

          <meta charset="utf-8" />
<meta name="description" content="Daily U.S. military news updates including military gear and equipment, breaking news, international news and more." />
<meta name="keywords" content="Military Daily News, Military Headlines, Military News" />
<link rel="canonical" href="https://www.military.com/daily-news" />
<link rel="image_src" href="https://images03.military.com/sites/default/files/styles/full/public/2020-06/Marines-Twentynine-Palms-3200.jpg" />
<meta property="og:site_name" content="Military.com" />
<meta property="og:url" content="https://www.military.com/daily-news" />
<meta property="og:title" content="Military Daily News" />
<meta property="og:description" content="Daily updates of everything that you need know about what is going on in the military community and abroad including military gear and equipment, breaking news, international news and more." />
<meta property="og:image" content="https://images03.military.com/sites/default/files/styles/full/public/2020-06/Marines-Twentynine-Palms-3200.jpg" />
<meta property="og:image:secure_url" content="https://images03.military.com/sites/default/files/styles/full/public/2020-06/Marines-Twentynine-Palms-3200.jpg" />
<meta property="og:image:type" content="image/jpeg" />
<meta property="og:image:width" content="3200" />
<meta property="og:image:height" content="2133" />
<meta property="article:publisher" content="https://www.facebook.com/Militarydotcom" />
<meta property="article:section" content="Daily News" />
<meta property="fb:app_id" content="140586622674265" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@militarydotcom" />
<meta name="twitter:description" content="Daily updates of everything that you need know about what is going on in the military community and abroad including military gear and equipment, breaking news, international news and more." />
<meta name="twitter:title" content="Military Daily News" />
<meta name="twitter:site:id" content="14692385" />
<meta name="twitter:creator:id" content="14692385" />
<meta name="twitter:creator" content="@militarydotcom" />
<meta name="twitter:image" content="https://images03.military.com/sites/default/files/styles/full/public/2020-06/Marines-Twentynine-Palms-3200.jpg" />
<meta name="Generator" content="Drupal 10 (https://www.drupal.org)" />
<meta name="MobileOptimized" content="width" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="article:tag" content="News, Military Headlines" />
<meta name="robots" content="max-image-preview:large" />
<script type="application/ld+json">{
    "@context": "https://schema.org",
    "@graph": [
        {
            "@type": "WebPage",
            "@id": "https://www.military.com/daily-news",
            "breadcrumb": {
                "@type": "BreadcrumbList",
                "itemListElement": [
                    {
                        "@type": "ListItem",
                        "position": 1,
                        "name": "Home",
                        "item": "https://www.military.com/"
                    }
                ]
            },
            "description": "Daily U.S. military news updates including military gear and equipment, breaking news, international news and more."
        },
        {
            "@type": "WebSite",
            "@id": "https://www.military.com",
            "name": "Military.com",
            "url": "https://www.military.com/"
        }
    ]
}</script>
<script>
  window._sf_async_config = window._sf_async_config || {};
  _sf_async_config.uid = 65633;
  _sf_async_config.domain = 'military.com';
  _sf_async_config.flickerControl = false;
  _sf_async_config.useCanonical = true;
  _sf_async_config.useCanonicalDomain = true;

  function configureChartbeat() {
    const hasConsent = userHasGivenConsentToChartbeat();

    if (!hasConsent) {
  _sf_async_config.noCookies = true;
    }
  }

  function userHasGivenConsentToChartbeat() {
    var groups = (window.OptanonActiveGroups || '').split(',');
    return groups.includes('3');
  }

  // Wait for OneTrust to finish
  if (window.OptanonActiveGroups) {
    configureChartbeat();
  } else {
    window.addEventListener('OneTrustGroupsUpdated', configureChartbeat);
  }
</script>
<script src="//static.chartbeat.com/js/chartbeat_mab.js" async="true"></script>
<script src="//applets.ebxcdn.com/ebx.js" id="ebx" async="true"></script>
<link rel="icon" href="/themes/military/favicon.ico" type="image/vnd.microsoft.icon" />
<script>window.a2a_config=window.a2a_config||{};a2a_config.callbacks=[];a2a_config.overlays=[];a2a_config.templates={};a2a_config.thanks = {
    postShare: false
};

a2a_config.prioritize = [ 'facebook', 'linkedin', 'email', 'x', 'mastodon', 'whatsapp', 'pinterest', 'sms' ];
a2a_config.num_services = 8;
a2a_config.onclick = false;   </script>

      <title>Military Daily News, Military Headlines | Military.com</title>
      <link rel="stylesheet" media="all" href="//images03.military.com/sites/default/files/css/css_zbU-YCSn8OYPtIRZYiURtkfHEnJQ1nwyy97Pt0R8DZk.css?delta=0&amp;language=en&amp;theme=military&amp;include=eJx9VGu6qyAM3FBTl-QXIUV6AvHyaOtd_YG-xOrpHyWZAYZJALVOgn7u8Dk4noL4dBgY_88dC2rrzUFJoE6HPCEf8Yy3w_lfpjD32fYJh9jVz8FZ7jGnsauDHCn0jnw-nltkLjk3UIijnV7IgJGW7VWOSdwCqBFDWsJYQtI1tgnD3A0s6ucjBFAyzcGaMW0QRwY9XnbyL1lbyDKghv2dJjQEkGxi2mBxjokcDAF9dXGzwl2hkgv1F6tJen7w-rpmQ8spiQewSvw2G63xkBvRCpkhCaBKthA83ykrxt1hChDzNEloPDpZYv0RApxyXZFun0SAq9WGVmmTQyP9JJIoLLFhGZCXeEQ35GCKlNop8DhTAxPqdrp1K2PYxgQXS1cA8VRqzt8wsG4qf5-KMXGXmMZAfy_zRotM5vbUu6RId_-_sE6EqbgVS_Nw29ErYnaDR8uxnILnfc5V_tb8wDaK726XDlGS_Sbt0PrPXBRl28KVG1R6TLgx0oumdQTwbOjnJal9tDDWTT5hQBNwGpdUJAxqhEFum1wSY9r7VswWr8sIVlf7bV9VEtrtPhG4UEhWtUdsKI60ze47Z12fBogOeX9KrfsC1IodXXlnga3_ObwNia93d8kcs5_yUOo8lr55PDJdfRx_AbApOS8" />
<link rel="stylesheet" media="all" href="//images04.military.com/sites/default/files/css/css_yelcBJJzvOZdp6yr76UgawgxtZOFPDQ2Wusps-OjOaQ.css?delta=1&amp;language=en&amp;theme=military&amp;include=eJx9VGu6qyAM3FBTl-QXIUV6AvHyaOtd_YG-xOrpHyWZAYZJALVOgn7u8Dk4noL4dBgY_88dC2rrzUFJoE6HPCEf8Yy3w_lfpjD32fYJh9jVz8FZ7jGnsauDHCn0jnw-nltkLjk3UIijnV7IgJGW7VWOSdwCqBFDWsJYQtI1tgnD3A0s6ucjBFAyzcGaMW0QRwY9XnbyL1lbyDKghv2dJjQEkGxi2mBxjokcDAF9dXGzwl2hkgv1F6tJen7w-rpmQ8spiQewSvw2G63xkBvRCpkhCaBKthA83ykrxt1hChDzNEloPDpZYv0RApxyXZFun0SAq9WGVmmTQyP9JJIoLLFhGZCXeEQ35GCKlNop8DhTAxPqdrp1K2PYxgQXS1cA8VRqzt8wsG4qf5-KMXGXmMZAfy_zRotM5vbUu6RId_-_sE6EqbgVS_Nw29ErYnaDR8uxnILnfc5V_tb8wDaK726XDlGS_Sbt0PrPXBRl28KVG1R6TLgx0oumdQTwbOjnJal9tDDWTT5hQBNwGpdUJAxqhEFum1wSY9r7VswWr8sIVlf7bV9VEtrtPhG4UEhWtUdsKI60ze47Z12fBogOeX9KrfsC1IodXXlnga3_ObwNia93d8kcs5_yUOo8lr55PDJdfRx_AbApOS8" />
<link rel="stylesheet" media="all" href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,400,700|Roboto:300,300i,400,500,500i,700,700i|Roboto+Slab:500&amp;display=swap" />
<link rel="stylesheet" media="all" href="https://use.typekit.net/ebo0djl.css" />
<link rel="stylesheet" media="all" href="//images05.military.com/sites/default/files/css/css_gqDVJpm4pgt25bniLaGnqyGYUnV2_f-SrYBAbOyooP4.css?delta=4&amp;language=en&amp;theme=military&amp;include=eJx9VGu6qyAM3FBTl-QXIUV6AvHyaOtd_YG-xOrpHyWZAYZJALVOgn7u8Dk4noL4dBgY_88dC2rrzUFJoE6HPCEf8Yy3w_lfpjD32fYJh9jVz8FZ7jGnsauDHCn0jnw-nltkLjk3UIijnV7IgJGW7VWOSdwCqBFDWsJYQtI1tgnD3A0s6ucjBFAyzcGaMW0QRwY9XnbyL1lbyDKghv2dJjQEkGxi2mBxjokcDAF9dXGzwl2hkgv1F6tJen7w-rpmQ8spiQewSvw2G63xkBvRCpkhCaBKthA83ykrxt1hChDzNEloPDpZYv0RApxyXZFun0SAq9WGVmmTQyP9JJIoLLFhGZCXeEQ35GCKlNop8DhTAxPqdrp1K2PYxgQXS1cA8VRqzt8wsG4qf5-KMXGXmMZAfy_zRotM5vbUu6RId_-_sE6EqbgVS_Nw29ErYnaDR8uxnILnfc5V_tb8wDaK726XDlGS_Sbt0PrPXBRl28KVG1R6TLgx0oumdQTwbOjnJal9tDDWTT5hQBNwGpdUJAxqhEFum1wSY9r7VswWr8sIVlf7bV9VEtrtPhG4UEhWtUdsKI60ze47Z12fBogOeX9KrfsC1IodXXlnga3_ObwNia93d8kcs5_yUOo8lr55PDJdfRx_AbApOS8" />

      <script type="application/json" data-drupal-selector="drupal-settings-json">{"path":{"baseUrl":"\/","pathPrefix":"","currentPath":"node\/1251","currentPathIsAdmin":false,"isFront":false,"currentLanguage":"en","currentQuery":{"_wrapper_format":"html"}},"pluralDelimiter":"\u0003","suppressDeprecationErrors":true,"gtag":{"tagId":"","consentMode":false,"otherIds":[],"events":[],"additionalConfigInfo":[]},"ajaxPageState":{"libraries":"eJyNVtmy2jAM_SEM0-lDP4eRbeH41rY8XoD066ss3CwOLS9gnXNEJFlSAK0LQegvMB_Ot0ShnKSDP_1l_JzPykHOzuYX5wj0fIzk-pt17mUm8jbjbCW4zacHyngyRMbhtYC5GP7Y22f4gucW9Cdv3RVq6S7DoWZMbGlbDnCPoZ6_8gETk72D6ldMz2ovMeXOxpePhIxLKVTNhfxCqA5SWUwDy5kClsTyEXlYbbDky_R9dVYmSP31188fA20LG1xaUr93phAN8IoF9L3lYgz4rLkhZELQKlUvG0pR7JM1XWmYDrysyWASQxGFrKVQaFQeDQRoY1lK2VLWcRriOGHf_8OTHyQKkWszjGBQiGKLw4bLqChoBsRRoLnPBT2XCIK2wbwJa1ZNlRghkFSLeOk-cahPcSMqXFBnw-82h9bFg20rfiCbFYJ77kHpk-gzKQtuJRx7QNEdr3erka5uKsd1KOxKNjaBEFZtWmFGszVB1NW1KXCOL0yAKpYFwY2SjWKcKC5JrjFSWnWhxqySjYPjAt4sOr0z10MyA7s7nNFtNC3Naw5DafGaoKAW46rbkzeHTysdDu1wx_e0REePlq5DRPhsf9f6Td1nNPPVSEgtXr3fNOGM7-ZhRqcttIZNTWvZ2KSLbRzJda_8ZzF0vGvW7rtUhjKKu8XHUHHncHcZK5p7eZDwA1hWDiV3TMXyvYrS8XITDm8r3Rid2NugFNXQyLajNmH7ITlYP4E0bi1-whCTeweLKdYAvAUdJPOx7jvZDxyy517_QFdsG-cNoXA_vEtjR_83nXmRiO0iablpGhbFVh8hgUkQuwOomfcVowoc4t-Tx3ngsWRY0jz2u_bdCOY-PGT3UxYpb6YqIyTVCUnPBitkzLrwb15gS-EPJ2k3_EOgZ098c0Nip-9I80WnGsGdF-RcQ6yS0-tQn6Z3x2X4U_MX1WXc9Q","theme":"military","theme_token":null},"ajaxTrustedUrl":[],"gtm":{"tagId":null,"settings":{"data_layer":"dataLayer","include_environment":false},"tagIds":["GTM-TJK2CRM"]},"mil_ads":{"opts":{"member":3525,"keywords":{"section":"Daily News","articletag":["News","Military Headlines","Military","Daily","News"],"url":"\/daily-news"},"consentManagement":{"timeout":2000}},"tags":{"adblock-623c0cfebca8c-AnchorAd":{"sizeMapping":[{"minWidth":"320","sizes":[["325","42"],[" 320","50"],[" 325","41"]]},{"minWidth":"768","sizes":[[""]]}],"position":"AnchorAd","tag_id":9134729729,"targetId":"adblock-623c0cfebca8c"},"adblock-5e42df260b59f-MobileBottom":{"sizeMapping":[{"minWidth":"320","sizes":[["320","50"],["300","250"],["320","52"]]},{"minWidth":"768","sizes":[[""]]}],"position":"MobileBottom","tag_id":9134729749,"targetId":"adblock-5e42df260b59f"},"adblock-5e42df150d649-Bottom":{"sizeMapping":[{"minWidth":"768","sizes":[["728","90"],["728","91"]]},{"minWidth":"320","sizes":[[""]]}],"position":"Bottom","tag_id":9134729499,"targetId":"adblock-5e42df150d649"},"adblock-660c2d764f532-Military-Mobile-Interstitial":{"sizeMapping":[{"minWidth":"320","sizes":[["1","1"]]},{"minWidth":"768","sizes":[[""]]}],"position":"Military_Mobile_Interstitial","tag_id":9201435279,"targetId":"adblock-660c2d764f532"},"adblock-5fda9e8d282f1-Military-Desktop-Interstitial":{"sizeMapping":[{"minWidth":"768","sizes":[["1","1"]]},{"minWidth":"320","sizes":[[""]]}],"position":"Military_Desktop_Interstitial","tag_id":9195365669,"targetId":"adblock-5fda9e8d282f1"},"adblock-5bbf99ec71dc3-FP2":{"sizeMapping":[{"minWidth":"768","sizes":[["300","100"],["300","101"],["300","130"]]},{"minWidth":"320","sizes":[[""]]}],"position":"FP2","tag_id":9134729549,"targetId":"adblock-5bbf99ec71dc3"},"adblock-5bbf99ec71b95-RightBottom":{"sizeMapping":[{"minWidth":"768","sizes":[["300","250"],["300","600"],["300","251"]]},{"minWidth":"320","sizes":[[""]]}],"position":"RightBottom","tag_id":9134729659,"targetId":"adblock-5bbf99ec71b95"},"adblock-5bbf99ec71a20-FP1":{"sizeMapping":[{"minWidth":"768","sizes":[["300","100"],["300","130"]]},{"minWidth":"320","sizes":[[""]]}],"position":"FP1","tag_id":9134729539,"targetId":"adblock-5bbf99ec71a20"},"adblock-5bae57bf983b3-RightTop":{"sizeMapping":[{"minWidth":"768","sizes":[["300","250"],["300","600"],["300","1050"]]},{"minWidth":"320","sizes":[[""]]}],"position":"RightTop","tag_id":9134729669,"targetId":"adblock-5bae57bf983b3"},"adblock-5d10f950aec44-MobileMiddle":{"sizeMapping":[{"minWidth":"320","sizes":[["320","50"],["300","250"],["320","51"],["300","251"]]},{"minWidth":"768","sizes":[[""]]}],"position":"MobileMiddle","tag_id":9134729739,"targetId":"adblock-5d10f950aec44"},"adblock-5b45aa7398d50-MobileTop":{"sizeMapping":[{"minWidth":"320","sizes":[["320","50"],["1","1"]]},{"minWidth":"768","sizes":[[""]]}],"position":"MobileTop","tag_id":9134729769,"targetId":"adblock-5b45aa7398d50"},"adblock-5b45a9b3a0280-Top":{"sizeMapping":[{"minWidth":"768","sizes":[["728","90"],["970","90"],["970","250"],["970","91"]]},{"minWidth":"320","sizes":[[""]]}],"position":"Top","tag_id":9134729709,"targetId":"adblock-5b45a9b3a0280"},"adblock-5b45aceca4100-BrandscapeRight":{"sizeMapping":[{"minWidth":"768","sizes":[["160","1500"]]},{"minWidth":"320","sizes":[[""]]}],"position":"BrandscapeRight","tag_id":9134729519,"targetId":"adblock-5b45aceca4100"},"adblock-5b45acb234008-BrandscapeLeft":{"sizeMapping":[{"minWidth":"768","sizes":[["160","1501"]]},{"minWidth":"320","sizes":[[""]]}],"position":"BrandscapeLeft","tag_id":9134729509,"targetId":"adblock-5b45acb234008"}}},"blazy":{"loadInvisible":false,"offset":100,"saveViewportOffsetDelay":50,"validateDelay":null,"container":"","loader":true,"unblazy":false,"visibleClass":false},"blazyIo":{"disconnect":false,"rootMargin":"0px","threshold":[0,0.25,0.5,0.75,1]},"user":{"uid":0,"permissionsHash":"67ab38ffea198e2c490ed5097ca58acae9b27cd172f67d6478abb53f36feb97d"}}</script>
<script src="//images04.military.com/core/assets/vendor/modernizr/modernizr.min.js?v=3.11.7"></script>
<script src="//images01.military.com/sites/default/files/js/js_pDutDc93Olg6TapgIoDRUKIPPxD7svb5oNA3W24e6gQ.js?scope=header&amp;delta=1&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>
<script src="//images05.military.com/modules/contrib/google_tag/js/gtag.js?tdib4e"></script>
<script src="//images02.military.com/modules/contrib/google_tag/js/gtm.js?tdib4e"></script>
<script src="//images03.military.com/sites/default/files/js/js_W8s75bCU1gJd-Jlj02ACLSaDRHBFi8XBsLI4FSqlCow.js?scope=header&amp;delta=4&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>

      </head>
  <body class="path--node path--daily-news page-node-type-landing-page variant--desktop">
        <div id="pagewrapper">
      <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TJK2CRM"
                  height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

        <div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
    



<div class="page">
      

  <header id="header">
    <div class="container-fluid">
                






      <div class="block block--hamburger-menu-button">
    
    

      



<a href=# class="button button--icon button--icon--bars" aria-label="bars" data-target="">
  
<i class="icon icon-bars"></i>
</a>
    
        </div>
  






      <div class="block block--system-branding-block">
    
    

        <a href="/" title="Home" rel="home">
            <img src="//images.military.com/themes/military/logo.svg" class="logo" alt="Military.com Logo" onerror="this.onerror=null; this.src='/themes/military/logo.png'"/>
    </a>
      
      </div>
  



      <nav class="nav--global block block--system-menu-block-main">
    
    

      




        <ul class="menu menu--main">
              <li class="menu--account__authenticated--mobile">
        <a href="http://www.military.com/profile/member-profile.html">Profile</a>
        <ul>
  <li><a href="https://www.military.com/profile/member-profile.html">Profile</a></li>
    <li><a href="https://www.military.com/profile/member-profile-newsletter-settings.html">Subscriptions</a></li>
  <li><a class="user-menu-logout-link" href="https://www.military.com/member-reg/logout.html">Log out</a></li>
</ul>
      </li>

                        <li class="menu__item--active">
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News</a>
                                <ul>
                    <li>
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News Home</a>
                        </li>
                <li>
                  <a href="/army" data-drupal-link-system-path="node/3241">Army</a>
                        </li>
                <li>
                  <a href="/navy" data-drupal-link-system-path="node/3271">Navy</a>
                        </li>
                <li>
                  <a href="/air-force" target="_self" rel="" data-drupal-link-system-path="node/3231">Air Force</a>
                        </li>
                <li>
                  <a href="/marine-corps" target="_self" rel="" data-drupal-link-system-path="node/3256">Marine Corps</a>
                        </li>
                <li>
                  <a href="/coast-guard" target="_self" rel="" data-drupal-link-system-path="node/3251">Coast Guard</a>
                        </li>
                <li>
                  <a href="/space-force" target="_self" rel="" data-drupal-link-system-path="node/221226">Space Force</a>
                        </li>
                <li>
                  <a href="/podcasts" target="_self" data-drupal-link-system-path="node/308881">Military Podcasts</a>
                        </li>
                <li>
                  <a href="/daily-news/opinion" target="_self" rel="" data-drupal-link-system-path="node/99241">Opinion</a>
                        </li>
                <li>
                  <a href="https://www.military.com/video" target="_self" rel="">Videos</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits</a>
                                <ul>
                    <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits Home</a>
                        </li>
                <li>
                  <a href="/benefits/military-pay" target="_self" data-drupal-link-system-path="node/3671">Military Pay and Money</a>
                        </li>
                <li>
                  <a href="/education/gi-bill" target="_self" rel="" data-drupal-link-system-path="node/1206">GI Bill</a>
                        </li>
                <li>
                  <a href="/benefits/veterans-health-care" target="_self" rel="" data-drupal-link-system-path="node/3816">Veteran Health Care</a>
                        </li>
                <li>
                  <a href="/benefits/tricare" target="_self" rel="" data-drupal-link-system-path="node/3736">Tricare</a>
                        </li>
                <li>
                  <a href="/money/va-loans" target="_self" rel="" data-drupal-link-system-path="node/1941">VA Loans</a>
                        </li>
                <li>
                  <a href="/money/insurance" target="_self" rel="" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/money/retirement" target="_self" rel="" data-drupal-link-system-path="node/2511">Retirement</a>
                        </li>
                <li>
                  <a href="/benefits/veteran-benefits/the-ebenefits-program.html" target="_self" rel="" data-drupal-link-system-path="node/42065">VA eBenefits</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/veteran-jobs" target="_self" rel="" data-drupal-link-system-path="node/1746">Veteran Jobs</a>
                                <ul>
                    <li>
                  <a href="/veteran-jobs" target="_self" data-drupal-link-system-path="node/1746">Veteran Job Search</a>
                        </li>
                <li>
                  <a href="/veteran-employment-project" target="_self" data-drupal-link-system-path="node/339886">Veteran Employment Project</a>
                        </li>
                <li>
                  <a href="/veteran-employers" target="_self" rel="" data-drupal-link-system-path="node/1016">Vet Friendly Employers</a>
                        </li>
                <li>
                  <a href="/veteran-jobs/career-advice" target="_self" rel="" data-drupal-link-system-path="node/2201">Career Advice</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life</a>
                                <ul>
                    <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life Home</a>
                        </li>
                <li>
                  <a href="/money" target="_self" rel="" data-drupal-link-system-path="node/2401">Money</a>
                        </li>
                <li>
                  <a href="/off-duty" target="_self" rel="" data-drupal-link-system-path="node/2241">Off Duty</a>
                        </li>
                <li>
                  <a href="/military-fitness" target="_self" rel="" data-drupal-link-system-path="node/1991">Fitness</a>
                        </li>
                <li>
                  <a href="/trivia" target="_self" rel="" data-drupal-link-system-path="node/4251">Military Trivia Game</a>
                        </li>
                <li>
                  <a href="/veterans-day" target="_self" rel="" data-drupal-link-system-path="node/5206">Veterans Day</a>
                        </li>
                <li>
                  <a href="/spouse" target="_self" rel="" data-drupal-link-system-path="node/3621">Spouse &amp; Family</a>
                        </li>
                <li>
                  <a href="/deployment" target="_self" rel="" data-drupal-link-system-path="node/4226">Deployment</a>
                        </li>
                <li>
                  <a href="/history" data-drupal-link-system-path="node/4231">Military History</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts</a>
                                <ul>
                    <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts Home</a>
                        </li>
                <li>
                  <a href="/discounts/hot-deals" target="_self" data-drupal-link-system-path="taxonomy/term/1551">Featured Discounts</a>
                        </li>
                <li>
                  <a href="/veterans-day/restaurants-veterans-day-military-discounts.html" target="_self" rel="" data-drupal-link-system-path="node/49210">Veterans Day Restaurant Discounts</a>
                        </li>
                <li>
                  <a href="/discounts/dining" data-drupal-link-system-path="taxonomy/term/1486">Dining</a>
                        </li>
                <li>
                  <a href="/discounts/travel" target="_self" rel="" data-drupal-link-system-path="taxonomy/term/1626">Travel</a>
                        </li>
                <li>
                  <a href="/discounts/apparel-and-accessories" target="_self" data-drupal-link-system-path="taxonomy/term/1411">Retail</a>
                        </li>
                <li>
                  <a href="/money/insurance" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/discounts/professional-services" data-drupal-link-system-path="taxonomy/term/1586">Services</a>
                        </li>
                <li>
                  <a href="/discounts/auto" data-drupal-link-system-path="taxonomy/term/1471">Auto</a>
                        </li>
                <li>
                  <a href="/discounts/electronics" data-drupal-link-system-path="taxonomy/term/1496">Electronics</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military</a>
                                <ul>
                    <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military Home</a>
                        </li>
                <li>
                  <a href="/join-armed-forces/asvab" data-drupal-link-system-path="node/2301">ASVAB</a>
                        </li>
                <li>
                  <a href="https://www.military.com/find-info/contact-recruiter?ESRC=mil_cta.os">Contact a Recruiter</a>
                        </li>
                <li>
                  <a href="/military-fitness" data-drupal-link-system-path="node/1991">Military Fitness</a>
                        </li>
                <li>
                  <a href="/benefits" data-drupal-link-system-path="node/206">Benefits</a>
                        </li>
    
</ul>
    
                        </li>
    
</ul>
    


        </nav>
  


<div class="nav-tools">
  <div class="nav-tools--search-toggle">
    






    
    

      



<a href=# class="button button--icon button--icon--search" aria-label="search" data-target="">
  
<i class="icon icon-search"></i>
</a>
    
      </div>
  <div class="nav-tools--user-menu">
    

<nav class="menu menu--account menu--account__anonymous" id="login_btn">
  <a id="user-menu-login-link" href="https://www.military.com/member-reg/login.html?vlv_redir=">Login</a>
  <a id="user-menu-sign-up" href="https://www.military.com/member-reg/login.html?vlv_redir=">Sign up</a>
</nav>

<nav class="menu menu--account menu--account__authenticated" id="profile_btn">

  <a class="icon--profile button button--icon button--icon--user"></a>
  <div class="menu--account__dropdown">
    <ul>
  <li><a href="https://www.military.com/profile/member-profile.html">Profile</a></li>
    <li><a href="https://www.military.com/profile/member-profile-newsletter-settings.html">Subscriptions</a></li>
  <li><a class="user-menu-logout-link" href="https://www.military.com/member-reg/logout.html">Log out</a></li>
</ul>
  </div>
</nav>

<script>
    if(document.cookie.indexOf('LoginInfo')>=0){

        document.getElementById('profile_btn').style.display="block";
    }
    else{
        document.getElementById('login_btn').style.display="block";

    }
</script>
  </div>
  <div class="nav-tools--sign-up">
    

<a id="login-app" class="button--sign-up button--sign-up--sm" href="/newmembers/member-reg?vlv_redir=&reg=true">
  Sign up
</a>
  </div>
</div>








<div  class="meganav--header meganav">
  <div class="meganav--container">
  



<div class="search-box">

  <form name="gs" method="GET" action="//www.military.com/search">

    <div class="search-wrapper">
      <input type="search" name="keyword" value="" class="searchInput" placeholder="Search Military.com" aria-label="Search Military.com">
      <button class="button--form-input"><span>GO</span><img class="search-arrow" src="/themes/military/assets/images/search-arrow.svg" alt="search arrow" /></button>
    </div>

  </form>
</div>
  <div class="meganav--sign-up">
    

<a id="login-app" class="button--sign-up button--sign-up--lg" href="/newmembers/member-reg?vlv_redir=&reg=true">
  Sign up
</a>
  </div>
      




        <ul class="menu menu--main">
              <li class="menu--account__authenticated--mobile">
        <a href="http://www.military.com/profile/member-profile.html">Profile</a>
        <ul>
  <li><a href="https://www.military.com/profile/member-profile.html">Profile</a></li>
    <li><a href="https://www.military.com/profile/member-profile-newsletter-settings.html">Subscriptions</a></li>
  <li><a class="user-menu-logout-link" href="https://www.military.com/member-reg/logout.html">Log out</a></li>
</ul>
      </li>

                        <li>
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News</a>
                                <ul>
                    <li>
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News Home</a>
                        </li>
                <li>
                  <a href="/army" data-drupal-link-system-path="node/3241">Army</a>
                        </li>
                <li>
                  <a href="/navy" data-drupal-link-system-path="node/3271">Navy</a>
                        </li>
                <li>
                  <a href="/air-force" target="_self" rel="" data-drupal-link-system-path="node/3231">Air Force</a>
                        </li>
                <li>
                  <a href="/marine-corps" target="_self" rel="" data-drupal-link-system-path="node/3256">Marine Corps</a>
                        </li>
                <li>
                  <a href="/coast-guard" target="_self" rel="" data-drupal-link-system-path="node/3251">Coast Guard</a>
                        </li>
                <li>
                  <a href="/space-force" target="_self" rel="" data-drupal-link-system-path="node/221226">Space Force</a>
                        </li>
                <li>
                  <a href="/podcasts" target="_self" data-drupal-link-system-path="node/308881">Military Podcasts</a>
                        </li>
                <li>
                  <a href="/daily-news/opinion" target="_self" rel="" data-drupal-link-system-path="node/99241">Opinion</a>
                        </li>
                <li>
                  <a href="https://www.military.com/video" target="_self" rel="">Videos</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits</a>
                                <ul>
                    <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits Home</a>
                        </li>
                <li>
                  <a href="/benefits/military-pay" target="_self" data-drupal-link-system-path="node/3671">Military Pay and Money</a>
                        </li>
                <li>
                  <a href="/education/gi-bill" target="_self" rel="" data-drupal-link-system-path="node/1206">GI Bill</a>
                        </li>
                <li>
                  <a href="/benefits/veterans-health-care" target="_self" rel="" data-drupal-link-system-path="node/3816">Veteran Health Care</a>
                        </li>
                <li>
                  <a href="/benefits/tricare" target="_self" rel="" data-drupal-link-system-path="node/3736">Tricare</a>
                        </li>
                <li>
                  <a href="/money/va-loans" target="_self" rel="" data-drupal-link-system-path="node/1941">VA Loans</a>
                        </li>
                <li>
                  <a href="/money/insurance" target="_self" rel="" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/money/retirement" target="_self" rel="" data-drupal-link-system-path="node/2511">Retirement</a>
                        </li>
                <li>
                  <a href="/benefits/veteran-benefits/the-ebenefits-program.html" target="_self" rel="" data-drupal-link-system-path="node/42065">VA eBenefits</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/veteran-jobs" target="_self" rel="" data-drupal-link-system-path="node/1746">Veteran Jobs</a>
                                <ul>
                    <li>
                  <a href="/veteran-jobs" target="_self" data-drupal-link-system-path="node/1746">Veteran Job Search</a>
                        </li>
                <li>
                  <a href="/veteran-employment-project" target="_self" data-drupal-link-system-path="node/339886">Veteran Employment Project</a>
                        </li>
                <li>
                  <a href="/veteran-employers" target="_self" rel="" data-drupal-link-system-path="node/1016">Vet Friendly Employers</a>
                        </li>
                <li>
                  <a href="/veteran-jobs/career-advice" target="_self" rel="" data-drupal-link-system-path="node/2201">Career Advice</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life</a>
                                <ul>
                    <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life Home</a>
                        </li>
                <li>
                  <a href="/money" target="_self" rel="" data-drupal-link-system-path="node/2401">Money</a>
                        </li>
                <li>
                  <a href="/off-duty" target="_self" rel="" data-drupal-link-system-path="node/2241">Off Duty</a>
                        </li>
                <li>
                  <a href="/military-fitness" target="_self" rel="" data-drupal-link-system-path="node/1991">Fitness</a>
                        </li>
                <li>
                  <a href="/trivia" target="_self" rel="" data-drupal-link-system-path="node/4251">Military Trivia Game</a>
                        </li>
                <li>
                  <a href="/veterans-day" target="_self" rel="" data-drupal-link-system-path="node/5206">Veterans Day</a>
                        </li>
                <li>
                  <a href="/spouse" target="_self" rel="" data-drupal-link-system-path="node/3621">Spouse &amp; Family</a>
                        </li>
                <li>
                  <a href="/deployment" target="_self" rel="" data-drupal-link-system-path="node/4226">Deployment</a>
                        </li>
                <li>
                  <a href="/history" data-drupal-link-system-path="node/4231">Military History</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts</a>
                                <ul>
                    <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts Home</a>
                        </li>
                <li>
                  <a href="/discounts/hot-deals" target="_self" data-drupal-link-system-path="taxonomy/term/1551">Featured Discounts</a>
                        </li>
                <li>
                  <a href="/veterans-day/restaurants-veterans-day-military-discounts.html" target="_self" rel="" data-drupal-link-system-path="node/49210">Veterans Day Restaurant Discounts</a>
                        </li>
                <li>
                  <a href="/discounts/dining" data-drupal-link-system-path="taxonomy/term/1486">Dining</a>
                        </li>
                <li>
                  <a href="/discounts/travel" target="_self" rel="" data-drupal-link-system-path="taxonomy/term/1626">Travel</a>
                        </li>
                <li>
                  <a href="/discounts/apparel-and-accessories" target="_self" data-drupal-link-system-path="taxonomy/term/1411">Retail</a>
                        </li>
                <li>
                  <a href="/money/insurance" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/discounts/professional-services" data-drupal-link-system-path="taxonomy/term/1586">Services</a>
                        </li>
                <li>
                  <a href="/discounts/auto" data-drupal-link-system-path="taxonomy/term/1471">Auto</a>
                        </li>
                <li>
                  <a href="/discounts/electronics" data-drupal-link-system-path="taxonomy/term/1496">Electronics</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military</a>
                                <ul>
                    <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military Home</a>
                        </li>
                <li>
                  <a href="/join-armed-forces/asvab" data-drupal-link-system-path="node/2301">ASVAB</a>
                        </li>
                <li>
                  <a href="https://www.military.com/find-info/contact-recruiter?ESRC=mil_cta.os">Contact a Recruiter</a>
                        </li>
                <li>
                  <a href="/military-fitness" data-drupal-link-system-path="node/1991">Military Fitness</a>
                        </li>
                <li>
                  <a href="/benefits" data-drupal-link-system-path="node/206">Benefits</a>
                        </li>
    
</ul>
    
                        </li>
    
</ul>
    


    </div>
</div>



          </div>
  </header>
  <div class="entry-overlay">
    <div class="entry-overlay--container">
      <div id="entry-app"></div>
    </div>
  </div>



    
  <section class="page__top">
    <div class="page__promo-wrapper container">
              <div class="page__promo page__promo--left" data-position="left">
            
  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-5b45acb234008-BrandscapeLeft"></div>
        </div>
  


        </div>
      
              <div class="page__promo page__promo--right" data-position="right">
            
  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-5b45aceca4100-BrandscapeRight"></div>
        </div>
  


        </div>
          </div>

      
  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-5b45a9b3a0280-Top"></div>
        </div>
  

  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-5b45aa7398d50-MobileTop"></div>
        </div>
  


    
  </section>

  <main class="content">
    <div class="content__wrapper container">
        
  



      <div class="block block--secondary-nav">
    
    

      

  <!-- Start Secondary Nav-->
  <div class="secondary-nav--wrapper">

    <nav class="secondary-nav">
      <!-- Links Generated by Drupal -->
      <ul class="secondary-nav--main">
                  <li>
                          <a href="/daily-news">News</a>
                      </li>
                  <li>
                          <a href="/army">Army</a>
                      </li>
                  <li>
                          <a href="/navy">Navy</a>
                      </li>
                  <li>
                          <a href="/air-force">Air Force</a>
                      </li>
                  <li>
                          <a href="/marine-corps">Marine Corps</a>
                      </li>
                  <li>
                          <a href="/coast-guard">Coast Guard</a>
                      </li>
                  <li>
                          <a href="/space-force">Space Force</a>
                      </li>
                  <li>
                          <a href="/podcasts">Military Podcasts</a>
                      </li>
                  <li>
                          <a href="/daily-news/opinion">Opinion</a>
                      </li>
                  <li>
                          <a href="/video">Videos</a>
                      </li>
              </ul>
      <!-- End Links Generated by Drupal -->
      <div class="secondary-nav--more-btn">More</div>
      <div class="secondary-nav--vert">
          <!-- Dynamically Populated via JS -->
      </div>
    </nav>
  </div>
  <!-- End Secondary Nav-->


        </div>
  
<div data-drupal-messages-fallback class="hidden"></div>



                          
    
  



      <div class="block block--breadcrumb">
    
    

      
        </div>
  




      <div class="block block--page--title">
    
    

      
  <h1><span>Military Daily News</span>
</h1>


      </div>
  
  



      <div class="block block--addtoanyadv">
    
    

      <span class="a2a_kit a2a_kit_size_32 addtoany_list" data-a2a-url="https://www.military.com/daily-news" data-a2a-title="Military Daily News"><a class="a2a_dd addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fwww.military.com%2Fdaily-news&amp;title=Military%20Daily%20News"><img src="/themes/military/assets/images/icons/social-icons_share-with-text.svg" alt="Share"></a></span>
        </div>
  





<article about="/daily-news" class="node node--landing-page node--landing-page--full">
  
  

        <div class="row">
      <div class="col-md-8 page__content">
        
        






    <div class="field field--flexible-above field--label-hidden">                        





<div id="paragraph-466" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Top Military News
              </h2>




<div class="list-view list-view--three-features-tiled list--view--thumbnail-tile">
         <div class="row">
    <div class="col-sm-8"> 




<article about="/daily-news/2026/04/15/exclusive-how-senators-hero-act-bill-would-bolster-military-child-care.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Exclusive: How Senator&#039;s &#039;HERO Act&#039; Bill Would Bolster Military Child Care " class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/15/exclusive-how-senators-hero-act-bill-would-bolster-military-child-care.html">
    
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-tile field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-24d6a15b82f" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26043584162377.jpg?itok=Bjg-cXuX 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Sen. Joni Ernst, R-Iowa, speaks during a Senate Homeland Committee hearing on Capitol Hill in Washington, Thursday, Feb. 12, 2026, in Washington. (AP Photo/Tom Brenner)" title="Sen. Joni Ernst, R-Iowa, speaks during a Senate Homeland Committee hearing on Capitol Hill in Washington, Thursday, Feb. 12, 2026, in Washington. (AP Photo/Tom Brenner)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26043584162377.jpg?itok=Bjg-cXuX 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26043584162377.jpg?itok=D6v76H95" alt="Sen. Joni Ernst, R-Iowa, speaks during a Senate Homeland Committee hearing on Capitol Hill in Washington, Thursday, Feb. 12, 2026, in Washington. (AP Photo/Tom Brenner)" title="Sen. Joni Ernst, R-Iowa, speaks during a Senate Homeland Committee hearing on Capitol Hill in Washington, Thursday, Feb. 12, 2026, in Washington. (AP Photo/Tom Brenner)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    <span property="schema:name">Exclusive: How Senator&#039;s &#039;HERO Act&#039; Bill Would Bolster Military Child Care </span>

  </a>
</div>
</article>
     </div>
    <div class="col-sm-4"> 




<article about="/daily-news/2026/04/16/us-aircraft-carrier-breaks-record-longest-deployment-vietnam-war.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="US Aircraft Carrier Breaks Record for Longest Deployment Since the Vietnam War" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/16/us-aircraft-carrier-breaks-record-longest-deployment-vietnam-war.html">
    
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-tile field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-41ac7ffeb3e" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=-qYZ5tXY 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Aircraft Carrier Record Deployment" title="The USS Gerald R. Ford aircraft carrier leaves Naval Station Norfolk, June 23, 2025, in Norfolk, Va. (AP Photo/John Clark, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=-qYZ5tXY 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=hcZBhrqU" alt="Aircraft Carrier Record Deployment" title="The USS Gerald R. Ford aircraft carrier leaves Naval Station Norfolk, June 23, 2025, in Norfolk, Va. (AP Photo/John Clark, File)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    <span property="schema:name">US Aircraft Carrier Breaks Record for Longest Deployment Since the Vietnam War</span>

  </a>
</div>
</article>
        




<article about="/benefits/veterans-health-care/va-clinic-gave-veterans-glp-1s-weight-loss-year-later-everything-improved.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="A VA Clinic Gave Veterans GLP-1s for Weight Loss. A Year Later, Everything Improved" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/benefits/veterans-health-care/va-clinic-gave-veterans-glp-1s-weight-loss-year-later-everything-improved.html">
    
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-tile field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-f1c65b5e7d7" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=ETRgcmGO 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="A does of Wegovy." title="A dose of Wegovy, a drug used for weight loss, is displayed in Front Royal, Va., March 1, 2024. (Amanda Andrade-Rhoades/AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=ETRgcmGO 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=-LMSbrz9" alt="A does of Wegovy." title="A dose of Wegovy, a drug used for weight loss, is displayed in Front Royal, Va., March 1, 2024. (Amanda Andrade-Rhoades/AP)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    <span property="schema:name">A VA Clinic Gave Veterans GLP-1s for Weight Loss. A Year Later, Everything Improved</span>

  </a>
</div>
</article>
     </div>
  </div>
  </div>

        



<div class="list-view list-view--two-col list--view--thumbnail-small">
         <div class="items">
                                  




<article about="/daily-news/investigations-and-features/2026/04/13/trump-releases-renderings-of-proposed-arch-veterans-lawsuit-moves-forward.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="Trump Releases Renderings of Proposed Arch as Veterans’ Lawsuit Moves Forward " class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/investigations-and-features/2026/04/13/trump-releases-renderings-of-proposed-arch-veterans-lawsuit-moves-forward.html">
    <div class="thumbnail--small__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-small field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-ff59716dde7" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/arch_2_.jpg?itok=dB6rb8hd 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/arch_2_.jpg?itok=ZWIxpvyE 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="An artist&#039;s rendering of Trump&#039;s proposed arch. (Harrison Design/U.S. Commission of Fine Arts)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/arch_2_.jpg?itok=dB6rb8hd 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/arch_2_.jpg?itok=ZWIxpvyE 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/arch_2_.jpg?itok=T7u_GYt5" alt="" title="An artist&#039;s rendering of Trump&#039;s proposed arch. (Harrison Design/U.S. Commission of Fine Arts)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/investigations-and-features/2026/04/13/trump-releases-renderings-of-proposed-arch-veterans-lawsuit-moves-forward.html" class="text--title"><span property="schema:name">Trump Releases Renderings of Proposed Arch as Veterans’ Lawsuit Moves Forward </span>
</span>
    </div>
  </a>
</div>
</article>

          
                              




<article about="/daily-news/investigations-and-features/2026/04/14/record-30k-runners-raise-scholarship-funds-pat-tillman-foundation.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="Record 30K Runners Raise Scholarship Funds for Pat Tillman Foundation " class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/investigations-and-features/2026/04/14/record-30k-runners-raise-scholarship-funds-pat-tillman-foundation.html">
    <div class="thumbnail--small__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-small field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-157493797e1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/tillman_1_.jpg?itok=Hqn8e3wQ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/tillman_1_.jpg?itok=Ql8glEhD 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Runners hit the pavement at the start of Pat&#039;s Run in Tempe, Arizona on Saturday. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/tillman_1_.jpg?itok=Hqn8e3wQ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/tillman_1_.jpg?itok=Ql8glEhD 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV" alt="" title="Runners hit the pavement at the start of Pat&#039;s Run in Tempe, Arizona on Saturday. (Facebook)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/investigations-and-features/2026/04/14/record-30k-runners-raise-scholarship-funds-pat-tillman-foundation.html" class="text--title"><span property="schema:name">Record 30K Runners Raise Scholarship Funds for Pat Tillman Foundation </span>
</span>
    </div>
  </a>
</div>
</article>

          
            </div>
  </div>


      </div>

                        
  




<div id="paragraph-21401" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5d10f950aec44-MobileMiddle"></div>
        </div>
  

              </div>

      </div>

                        





<div id="paragraph-476" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        More Military Headlines
              </h2>







                              
    
  



  <div class="list-view list-view--three-col list--view--thumbnail-large-vertical">
              <div class="row">
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/16/australia-boosts-military-spending-iran-war-makes-global-impact.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Australia Boosts Military Spending as Iran War Makes Global Impact" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/16/australia-boosts-military-spending-iran-war-makes-global-impact.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-6b6e9c663d2" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=B8mObzUA 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=ClIPzxAd 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Australia Defense" title="Australian Defence Minister Richard Marles prepares to address the National Press Club in Canberra, Thursday, April 16, 2026. (Lukas Coch/AAP Image via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=B8mObzUA 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=ClIPzxAd 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Defense_16487.jpg?itok=8AtAborQ" alt="Australia Defense" title="Australian Defence Minister Richard Marles prepares to address the National Press Club in Canberra, Thursday, April 16, 2026. (Lukas Coch/AAP Image via AP)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/16/australia-boosts-military-spending-iran-war-makes-global-impact.html" class="text--title"><span property="schema:name">Australia Boosts Military Spending as Iran War Makes Global Impact</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Ukraine’s Army Evolves Under Fire, with New Units Challenging Soviet Legacy" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-34a59ba4d07" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=3TKxdLpj 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=lQgyMem3 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Russia Ukraine War Military" title="Soldiers from Ukraine&#039;s Khartia brigade practice shooting at a training ground in the Kharkiv region, Ukraine, Feb. 14, 2026. (AP Photo/Nikoletta Stoyanova)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=3TKxdLpj 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=lQgyMem3 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD" alt="Russia Ukraine War Military" title="Soldiers from Ukraine&#039;s Khartia brigade practice shooting at a training ground in the Kharkiv region, Ukraine, Feb. 14, 2026. (AP Photo/Nikoletta Stoyanova)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html" class="text--title"><span property="schema:name">Ukraine’s Army Evolves Under Fire, with New Units Challenging Soviet Legacy</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/14/disabled-veterans-charged-20k-file-va-benefits-claims-lawsuit.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Disabled Veterans Charged Up to $20K to File VA Benefits Claims: Lawsuit" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/14/disabled-veterans-charged-20k-file-va-benefits-claims-lawsuit.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-cdfea61c175" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=euHDIV7B 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=WZHG4ly9 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="A federal class-action lawsuit accuses a company, Trajector, of taking advantage of disabled veterans and their spouses. (Adobe)" title="A federal class-action lawsuit accuses a company, Trajector, of taking advantage of disabled veterans and their spouses. (Adobe)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=euHDIV7B 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=WZHG4ly9 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/veterans%20claim%20form%20scam%20stock%201800.jpg?itok=ANQ0XHMR" alt="A federal class-action lawsuit accuses a company, Trajector, of taking advantage of disabled veterans and their spouses. (Adobe)" title="A federal class-action lawsuit accuses a company, Trajector, of taking advantage of disabled veterans and their spouses. (Adobe)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/14/disabled-veterans-charged-20k-file-va-benefits-claims-lawsuit.html" class="text--title"><span property="schema:name">Disabled Veterans Charged Up to $20K to File VA Benefits Claims: Lawsuit</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
      <div class="row">
              <div class="col-sm-4">          




<article about="/benefits/veterans-health-care/how-veterans-can-receive-benefits-military-sexual-trauma-related-conditions.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="This Is How Veterans Can Receive Benefits for Military Sexual Trauma-Related Conditions" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/benefits/veterans-health-care/how-veterans-can-receive-benefits-military-sexual-trauma-related-conditions.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-518aa00ad51" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=aD7DJJ5h 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=J2ptIG38 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="A candle burning in a cup." title="A candle burning for the victims of sexual assault and sexual harassment during the Candlelight Vigil. This cause was in support of sexual harassment sexual assault prevention month, the candles during the event represented awareness for victims of sexual assault, signifying they do not have to handle their traumatic event alone and they are being heard. (Staff Sgt. Alon Humphrey/Army)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=aD7DJJ5h 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=J2ptIG38 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20sexual%20assault%20candlelight%20vigil%201800.jpg?itok=nNrBsA_s" alt="A candle burning in a cup." title="A candle burning for the victims of sexual assault and sexual harassment during the Candlelight Vigil. This cause was in support of sexual harassment sexual assault prevention month, the candles during the event represented awareness for victims of sexual assault, signifying they do not have to handle their traumatic event alone and they are being heard. (Staff Sgt. Alon Humphrey/Army)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/benefits/veterans-health-care/how-veterans-can-receive-benefits-military-sexual-trauma-related-conditions.html" class="text--title"><span property="schema:name">This Is How Veterans Can Receive Benefits for Military Sexual Trauma-Related Conditions</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/14/2040-and-beyond-newest-marine-corps-aviation-plan-blends-warfighters-ai.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="2040 and Beyond: Newest Marine Corps Aviation Plan Blends Warfighters, AI" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/14/2040-and-beyond-newest-marine-corps-aviation-plan-blends-warfighters-ai.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-f50751fa9e9" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/9610700.jpg?itok=GH9Rswtv 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/9610700.jpg?itok=F5Mgqa39 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="U.S. Marines with Marine Heavy Helicopter Squadron 466, Marine Aircraft Group 36, 1st Marine Aircraft Wing walk toward a CH-53E Super Stallion helicopter on Suwon Air Base, Gyeonggi-do, South Korea, April 6, 2026, after Korean Marine Exchange Program 26.1. (U.S. Marine Corps photo by Cpl. Jeremiah Barksdale)" title="U.S. Marines with Marine Heavy Helicopter Squadron 466, Marine Aircraft Group 36, 1st Marine Aircraft Wing walk toward a CH-53E Super Stallion helicopter on Suwon Air Base, Gyeonggi-do, South Korea, April 6, 2026, after Korean Marine Exchange Program 26.1. (U.S. Marine Corps photo by Cpl. Jeremiah Barksdale)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/9610700.jpg?itok=GH9Rswtv 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/9610700.jpg?itok=F5Mgqa39 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9610700.jpg?itok=p6BLapLO" alt="U.S. Marines with Marine Heavy Helicopter Squadron 466, Marine Aircraft Group 36, 1st Marine Aircraft Wing walk toward a CH-53E Super Stallion helicopter on Suwon Air Base, Gyeonggi-do, South Korea, April 6, 2026, after Korean Marine Exchange Program 26.1. (U.S. Marine Corps photo by Cpl. Jeremiah Barksdale)" title="U.S. Marines with Marine Heavy Helicopter Squadron 466, Marine Aircraft Group 36, 1st Marine Aircraft Wing walk toward a CH-53E Super Stallion helicopter on Suwon Air Base, Gyeonggi-do, South Korea, April 6, 2026, after Korean Marine Exchange Program 26.1. (U.S. Marine Corps photo by Cpl. Jeremiah Barksdale)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/14/2040-and-beyond-newest-marine-corps-aviation-plan-blends-warfighters-ai.html" class="text--title"><span property="schema:name">2040 and Beyond: Newest Marine Corps Aviation Plan Blends Warfighters, AI</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/14/missouri-military-academy-faces-sexual-abuse-lawsuit-pre-teen-cadet.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Pre-Teen Cadet Sues Missouri Military Academy for Alleged Sexual Abuse" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/14/missouri-military-academy-faces-sexual-abuse-lawsuit-pre-teen-cadet.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-f1266b33cf0" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/mma7.jpg?itok=iHCXEJuo 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/mma7.jpg?itok=UCG4sXtM 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/mma7.jpg?itok=iHCXEJuo 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/mma7.jpg?itok=UCG4sXtM 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mma7.jpg?itok=N4Gp0Ibe" alt="" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/14/missouri-military-academy-faces-sexual-abuse-lawsuit-pre-teen-cadet.html" class="text--title"><span property="schema:name">Pre-Teen Cadet Sues Missouri Military Academy for Alleged Sexual Abuse</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
      <div class="row">
              <div class="col-sm-4">          




<article about="/daily-news/investigations-and-features/2026/04/13/us-divers-begin-pulling-artifacts-sunken-wwii-hell-ship-philippines.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="US Divers Begin Pulling Artifacts From Sunken WWII &#039;Hell Ship&#039; in the Philippines" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/13/us-divers-begin-pulling-artifacts-sunken-wwii-hell-ship-philippines.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-d7ab48f624c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=_HQoFao2 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=-HxnW1bZ 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="The Oryoku Maru was used as a POW transport during WWII, also known as a ‘Hell Ship’ due to the horrifying conditions Allied prisoners endured. It was sunk by American aircraft in Subic Bay, killing hundreds of Allied POWs. (Wikimedia Commons)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=_HQoFao2 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=-HxnW1bZ 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oryoku_maru_1200x800.png.jpg?itok=yBZjSdxo" alt="" title="The Oryoku Maru was used as a POW transport during WWII, also known as a ‘Hell Ship’ due to the horrifying conditions Allied prisoners endured. It was sunk by American aircraft in Subic Bay, killing hundreds of Allied POWs. (Wikimedia Commons)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/13/us-divers-begin-pulling-artifacts-sunken-wwii-hell-ship-philippines.html" class="text--title"><span property="schema:name">US Divers Begin Pulling Artifacts From Sunken WWII &#039;Hell Ship&#039; in the Philippines</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/feature/2026/04/13/us-and-indonesia-form-major-defense-cooperation-partnership.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="US and Indonesia Form Major Defense Cooperation Partnership" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/13/us-and-indonesia-form-major-defense-cooperation-partnership.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-fb6e11e49f4" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/9612320.jpg?itok=9hI5vRSf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/9612320.jpg?itok=cuFMK2_- 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Secretary of War Pete Hegseth and Indonesia Minister of Defense Sjafrie Sjamsoeddin stand for the playing of the U.S. and Indonesian national anthems prior to a bilateral meeting at the Pentagon, Washington, D.C., Apr. 13, 2026. (DoD photo by U.S. Navy Petty Officer 2nd Class Carson Croom)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/9612320.jpg?itok=9hI5vRSf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/9612320.jpg?itok=cuFMK2_- 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS" alt="" title="Secretary of War Pete Hegseth and Indonesia Minister of Defense Sjafrie Sjamsoeddin stand for the playing of the U.S. and Indonesian national anthems prior to a bilateral meeting at the Pentagon, Washington, D.C., Apr. 13, 2026. (DoD photo by U.S. Navy Petty Officer 2nd Class Carson Croom)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/13/us-and-indonesia-form-major-defense-cooperation-partnership.html" class="text--title"><span property="schema:name">US and Indonesia Form Major Defense Cooperation Partnership</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/15/senate-republicans-reject-effort-halt-iran-war-some-eye-future-war-powers-votes.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Senate Republicans Reject Effort to Halt Iran War, but Some Eye Future War Powers Votes" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/15/senate-republicans-reject-effort-halt-iran-war-some-eye-future-war-powers-votes.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-614afcb56f1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=rRQ5LPLt 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=em-GQd1I 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="APTOPIX Senate Democrats" title="Senate Minority Leader Chuck Schumer, D-N.Y., listens during a news conference after a policy luncheon on Capitol Hill,Tuesday, April 14, 2026, in Washington. (AP Photo/Mariam Zuhaib)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=rRQ5LPLt 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=em-GQd1I 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Senate_Democrats_32772.jpg?itok=oZpPCrLT" alt="APTOPIX Senate Democrats" title="Senate Minority Leader Chuck Schumer, D-N.Y., listens during a news conference after a policy luncheon on Capitol Hill,Tuesday, April 14, 2026, in Washington. (AP Photo/Mariam Zuhaib)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/15/senate-republicans-reject-effort-halt-iran-war-some-eye-future-war-powers-votes.html" class="text--title"><span property="schema:name">Senate Republicans Reject Effort to Halt Iran War, but Some Eye Future War Powers Votes</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
      <div class="row">
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/15/pope-doubles-down-peace-and-unity-message-trumps-criticism-continues.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Pope Doubles Down on Peace and Unity Message as Trump’s Criticism Continues" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/15/pope-doubles-down-peace-and-unity-message-trumps-criticism-continues.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-838f77add9c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=iPhaFM06 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=JlarXsgh 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Cameroon Africa Pope" title="Pope Leo XIV speaks to journalists aboard his flight bound for Yaounde-Nsimalen International Airport, Cameroon, Wednesday, April 15, 2026, on the third day of an 11-day apostolic journey to Africa. (Guglielmo Mangiapane/Pool Photo via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=iPhaFM06 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=JlarXsgh 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cameroon_Africa_Pope_18494.jpg?itok=Li6M_4o7" alt="Cameroon Africa Pope" title="Pope Leo XIV speaks to journalists aboard his flight bound for Yaounde-Nsimalen International Airport, Cameroon, Wednesday, April 15, 2026, on the third day of an 11-day apostolic journey to Africa. (Guglielmo Mangiapane/Pool Photo via AP)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/15/pope-doubles-down-peace-and-unity-message-trumps-criticism-continues.html" class="text--title"><span property="schema:name">Pope Doubles Down on Peace and Unity Message as Trump’s Criticism Continues</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/15/veterans-mark-65th-anniversary-of-bay-of-pigs-invasion-new-museum-miami.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Veterans Mark the 65th Anniversary of the Bay of Pigs Invasion With a New Museum in Miami" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/15/veterans-mark-65th-anniversary-of-bay-of-pigs-invasion-new-museum-miami.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-b1842e8d620" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=H0obRKQG 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=YOAx-EFh 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Cuban Veterans" title="Bay of Pigs veteran Francisco J. Hernandez points out fellow Brigade 2506 members he knew personally who were killed in the 1961 invasion as the Bay of Pigs Museum prepares to reopen in a new and larger space, in Miami&#039;s Little Havana neighborhood., Tuesday, April 7, 2026. (AP Photo/Rebecca Blackwell)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=H0obRKQG 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=YOAx-EFh 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Cuban_Veterans__7779.jpg?itok=qiJJ7-wk" alt="Cuban Veterans" title="Bay of Pigs veteran Francisco J. Hernandez points out fellow Brigade 2506 members he knew personally who were killed in the 1961 invasion as the Bay of Pigs Museum prepares to reopen in a new and larger space, in Miami&#039;s Little Havana neighborhood., Tuesday, April 7, 2026. (AP Photo/Rebecca Blackwell)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/15/veterans-mark-65th-anniversary-of-bay-of-pigs-invasion-new-museum-miami.html" class="text--title"><span property="schema:name">Veterans Mark the 65th Anniversary of the Bay of Pigs Invasion With a New Museum in Miami</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/15/trump-risks-showdown-xi-summit-over-hormuz-blockade.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Trump Risks Showdown With Xi Before Summit Over Hormuz Blockade" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/15/trump-risks-showdown-xi-summit-over-hormuz-blockade.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-6b39473de7c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/world-news-uschina-filepic-get.jpg?itok=pQm0q2wZ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/world-news-uschina-filepic-get.jpg?itok=VExrZfm0 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="U.S. President Donald Trump, left, talks to China&#039;s President Xi Jinping as they shake hands after their talks at the Gimhae Air Base, located next to the Gimhae International Airport in Busan on Oct. 30, 2025. (Andrew Caballero-Reynolds/AFP/Getty Images/TNS)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/world-news-uschina-filepic-get.jpg?itok=pQm0q2wZ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/world-news-uschina-filepic-get.jpg?itok=VExrZfm0 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-uschina-filepic-get.jpg?itok=JfGXnDeH" alt="" title="U.S. President Donald Trump, left, talks to China&#039;s President Xi Jinping as they shake hands after their talks at the Gimhae Air Base, located next to the Gimhae International Airport in Busan on Oct. 30, 2025. (Andrew Caballero-Reynolds/AFP/Getty Images/TNS)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/15/trump-risks-showdown-xi-summit-over-hormuz-blockade.html" class="text--title"><span property="schema:name">Trump Risks Showdown With Xi Before Summit Over Hormuz Blockade</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
    </div>

              

      </div>

              </div>

        
        






                            





<div id="paragraph-31671" class="paragraph paragraph--full-text-area paragraph--default">
            






    <div class="field field--full-text field--label-hidden">                        <div data-lift-slot="f3f89ee0-8a1a-11e8-be06-176f54aa92b5"></div>
              </div>

      </div>

                        





<div id="paragraph-64841" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Investigations and Features
              </h2>





  <div class="list-view list-view--three-col list--view--thumbnail-large-vertical">
              <div class="row">
              <div class="col-sm-4">          




<article about="/daily-news/investigations-and-features/2026/04/14/tech-summits-miami-bring-workforce-opportunities-veterans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Tech Summits in Miami Bring Workforce Opportunities for Veterans " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/14/tech-summits-miami-bring-workforce-opportunities-veterans.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-23a693a1d09" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/summit_3_.jpg?itok=YExa_Njg 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/summit_3_.jpg?itok=cVyXVaMb 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Attendees at last year&#039;s eMerge Americas Conference and Tech Expo in Miami Beach, Florida. (eMerge Americas)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/summit_3_.jpg?itok=YExa_Njg 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/summit_3_.jpg?itok=cVyXVaMb 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/summit_3_.jpg?itok=J6SRdVKb" alt="" title="Attendees at last year&#039;s eMerge Americas Conference and Tech Expo in Miami Beach, Florida. (eMerge Americas)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/14/tech-summits-miami-bring-workforce-opportunities-veterans.html" class="text--title"><span property="schema:name">Tech Summits in Miami Bring Workforce Opportunities for Veterans </span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/benefits/military-pay/veteran-pay/2026/02/26/soldiers-angels-non-profit-puts-food-first-help-military-families.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="&#039;Soldiers&#039; Angels&#039; Non-Profit Puts &#039;Food First&#039; To Help Military Families " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/benefits/military-pay/veteran-pay/2026/02/26/soldiers-angels-non-profit-puts-food-first-help-military-families.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-a6e9350a7c8" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=ATL7guF1 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=esjG7D0T 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="&#039;Soldiers&#039; Angels&#039; Military Non-Profit Puts &#039;Food First&#039; in Orlando, FL Distribution" title="&#039;Soldiers&#039; Angels&#039; Military Non-Profit Puts &#039;Food First&#039; (Soldiers&#039; Angels)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=ATL7guF1 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=esjG7D0T 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/Orlando%20Food%20Distribution.jpg?itok=AUzl6mbu" alt="&#039;Soldiers&#039; Angels&#039; Military Non-Profit Puts &#039;Food First&#039; in Orlando, FL Distribution" title="&#039;Soldiers&#039; Angels&#039; Military Non-Profit Puts &#039;Food First&#039; (Soldiers&#039; Angels)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/benefits/military-pay/veteran-pay/2026/02/26/soldiers-angels-non-profit-puts-food-first-help-military-families.html" class="text--title"><span property="schema:name">&#039;Soldiers&#039; Angels&#039; Non-Profit Puts &#039;Food First&#039; To Help Military Families </span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/investigations-and-features/2026/02/23/body-of-missing-navy-veteran-72-found-georgia.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Body of Missing Navy Veteran, 72, Found in Georgia " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/02/23/body-of-missing-navy-veteran-72-found-georgia.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-03ecfd5ee30" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-02/hanley_update_1_.jpg?itok=N5pxRnAl 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-02/hanley_update_1_.jpg?itok=2S7FSQ6l 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="The body of missing Navy veteran Margaret Hanley was found on Feb. 21. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-02/hanley_update_1_.jpg?itok=N5pxRnAl 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-02/hanley_update_1_.jpg?itok=2S7FSQ6l 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-02/hanley_update_1_.jpg?itok=Gf0mAcdp" alt="" title="The body of missing Navy veteran Margaret Hanley was found on Feb. 21. (Facebook)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/02/23/body-of-missing-navy-veteran-72-found-georgia.html" class="text--title"><span property="schema:name">Body of Missing Navy Veteran, 72, Found in Georgia </span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
        



          
  <a href="/topics/investigations-and-features" class="view__more-link">View more</a>
  </div>

      </div>

                        





<div id="paragraph-16371" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Opinions
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/opinions/2025/11/19/beyond-headlines-what-viral-video-gets-wrong-about-military-professionalism.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="What the Democrats&#039; Video Gets Wrong About Military Professionalism" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/opinions/2025/11/19/beyond-headlines-what-viral-video-gets-wrong-about-military-professionalism.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-04cde59c1b8" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2025-11/86.jpeg.jpg?itok=Yb95Gy_a 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2025-11/86.jpeg.jpg?itok=5Yk5pzSA 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Army Spc. Caelum Astra practices scouting terrain while training for an Expert Soldier Badge at Camp Casey, South Korea, Sept. 23. 2025 (Army Pfc. Seu Chan, DoW)." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2025-11/86.jpeg.jpg?itok=Yb95Gy_a 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2025-11/86.jpeg.jpg?itok=5Yk5pzSA 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-11/86.jpeg.jpg?itok=KXJWxRlp" alt="" title="Army Spc. Caelum Astra practices scouting terrain while training for an Expert Soldier Badge at Camp Casey, South Korea, Sept. 23. 2025 (Army Pfc. Seu Chan, DoW)." typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">What the Democrats&#039; Video Gets Wrong About Military Professionalism</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A video circulated yesterday by some U.S. lawmakers urging U.S. service members to “refuse illegal orders,” and within hours...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/opinions/2025/09/19/veterans-private-residential-treatment-must-match-vas-quality-and-cost.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Veterans’ Private Residential Treatment Must Match VA’s Quality and Cost" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/opinions/2025/09/19/veterans-private-residential-treatment-must-match-vas-quality-and-cost.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-4270f200774" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2025-09/3400449.jpg?itok=f1Gnh5hr 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2025-09/3400449.jpg?itok=AdvQNhm1 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="U.S. Air Force Staff Sgt. Melissa A. Seel, an aerospace medical technician with the 177th Fighter Wing, New Jersey Air National Guard, holds her stethoscope at the All Wars Memorial Building in Atlantic City, N.J." title="U.S. Air Force Staff Sgt. Melissa A. Seel, an aerospace medical technician with the 177th Fighter Wing, New Jersey Air National Guard, holds her stethoscope at the All Wars Memorial Building in Atlantic City, N.J., May 17, 2017. (Mark C. Olsen/U.S. National Guard photo)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2025-09/3400449.jpg?itok=f1Gnh5hr 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2025-09/3400449.jpg?itok=AdvQNhm1 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/3400449.jpg?itok=dbzNi2qg" alt="U.S. Air Force Staff Sgt. Melissa A. Seel, an aerospace medical technician with the 177th Fighter Wing, New Jersey Air National Guard, holds her stethoscope at the All Wars Memorial Building in Atlantic City, N.J." title="U.S. Air Force Staff Sgt. Melissa A. Seel, an aerospace medical technician with the 177th Fighter Wing, New Jersey Air National Guard, holds her stethoscope at the All Wars Memorial Building in Atlantic City, N.J., May 17, 2017. (Mark C. Olsen/U.S. National Guard photo)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Veterans’ Private Residential Treatment Must Match VA’s Quality and Cost</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>America manages a precarious two-tier system where vulnerable veterans can receive dramatically different care depending on...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/opinions/how-military-can-streamline-moves-families-special-needs.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="How the Military can Streamline Moves for Families with Special Needs" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/opinions/how-military-can-streamline-moves-families-special-needs.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-f61dbbd775d" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2025-09/billard_1.png.jpg?itok=dLZcmJM2 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2025-09/billard_1.png.jpg?itok=-rkXQb5T 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Family Members Sign up For the EFMP at a military base." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2025-09/billard_1.png.jpg?itok=dLZcmJM2 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2025-09/billard_1.png.jpg?itok=-rkXQb5T 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-09/billard_1.png.jpg?itok=XxSc8Rgm" alt="" title="Family Members Sign up For the EFMP at a military base." typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">How the Military can Streamline Moves for Families with Special Needs</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Moving to a new duty station is a hallmark of military life, but for families enrolled in the Department of Defense&#039;s...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/opinion" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-16391" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Military Technology
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/feature/2026/03/27/mv-75-armys-new-aircraft-and-future-of-air-assault-warfare.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="The MV-75: The Army’s New Aircraft and Future of Air Assault Warfare" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/03/27/mv-75-armys-new-aircraft-and-future-of-air-assault-warfare.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-94719ee054d" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/image_47.png.jpg?itok=eayy5Bx_ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/image_47.png.jpg?itok=FPMCkl7D 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Pictured is the Bell V-280 Valor developed for the Army&#039;s Joint Multi-Role Technical Demonstrator program as a pre-cursor to the Future Long Range Assault Aircraft. On 5 December 2022, Bell was chosen to develop the MV-75 FLRAA. Photo by Matthew Ryan. Source: DVIDS." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/image_47.png.jpg?itok=eayy5Bx_ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/image_47.png.jpg?itok=FPMCkl7D 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_47.png.jpg?itok=1u6i-wgG" alt="" title="Pictured is the Bell V-280 Valor developed for the Army&#039;s Joint Multi-Role Technical Demonstrator program as a pre-cursor to the Future Long Range Assault Aircraft. On 5 December 2022, Bell was chosen to develop the MV-75 FLRAA. Photo by Matthew Ryan. Source: DVIDS." typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">The MV-75: The Army’s New Aircraft and Future of Air Assault Warfare</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The Army’s MV-75 tiltrotor aircraft will replace the Black Hawk, offering greater speed, range, and flexibility for modern...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/headlines/2026/03/26/us-troops-active-combat-army-speeds-ai-warfighting-push.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Army Speeds AI Warfighting Push as US Troops are in Active Combat" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/headlines/2026/03/26/us-troops-active-combat-army-speeds-ai-warfighting-push.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-1d0c5f341d1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-03/dod_111592759_10.jpg?itok=WdmRaX2f 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-03/dod_111592759_10.jpg?itok=MQTObruH 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="A U.S. Army armored vehicle equipped with advanced targeting and air defense systems maneuvers through a training range, reflecting the service’s push to integrate AI-driven capabilities and rapidly field combat-ready technology. (U.S. Army Materiel Command)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-03/dod_111592759_10.jpg?itok=WdmRaX2f 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-03/dod_111592759_10.jpg?itok=MQTObruH 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dod_111592759_10.jpg?itok=EbxIJBd6" alt="" title="A U.S. Army armored vehicle equipped with advanced targeting and air defense systems maneuvers through a training range, reflecting the service’s push to integrate AI-driven capabilities and rapidly field combat-ready technology. (U.S. Army Materiel Command)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Army Speeds AI Warfighting Push as US Troops are in Active Combat</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>An Army test used AI tools to hit 15 targets in one hour, signaling a rapid shift in how battlefield decisions are made and...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/feature/2026/03/22/pentagon-expands-palantirs-role-ai-contract.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Pentagon Expands Use of Palantir AI in New Defense Contract" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/03/22/pentagon-expands-palantirs-role-ai-contract.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-bec958320fe" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-03/image_38.png.jpg?itok=6143QrMP 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-03/image_38.png.jpg?itok=hbRYYo0J 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="U.S. Army Sgt. Brandyn Brooks, a 15P aviation operations specialist with the 101st Combat Aviation Brigade, Task Force CARDINAL, monitors mission systems at Al Asad Air Base, Iraq, June 8, 2025. Brooks supports operational integration of Project MAVEN tools, enhancing real-time situational awareness for Army aviation assets. U.S. Army photo by Sgt. Brianna Badder. Source: DVIDS." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-03/image_38.png.jpg?itok=6143QrMP 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-03/image_38.png.jpg?itok=hbRYYo0J 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_38.png.jpg?itok=BU5nx7MG" alt="" title="U.S. Army Sgt. Brandyn Brooks, a 15P aviation operations specialist with the 101st Combat Aviation Brigade, Task Force CARDINAL, monitors mission systems at Al Asad Air Base, Iraq, June 8, 2025. Brooks supports operational integration of Project MAVEN tools, enhancing real-time situational awareness for Army aviation assets. U.S. Army photo by Sgt. Brianna Badder. Source: DVIDS." typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Pentagon Expands Use of Palantir AI in New Defense Contract</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The Pentagon is expanding Palantir’s Maven AI into a long-term military program, raising questions about reliance on private...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/military-technology" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-21276" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Ukraine and Russia
              </h2>





  <div class="list-view list-view--three-col list--view--thumbnail-large-vertical">
              <div class="row">
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Ukraine’s Army Evolves Under Fire, with New Units Challenging Soviet Legacy" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-34a59ba4d07" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=3TKxdLpj 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=lQgyMem3 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Russia Ukraine War Military" title="Soldiers from Ukraine&#039;s Khartia brigade practice shooting at a training ground in the Kharkiv region, Ukraine, Feb. 14, 2026. (AP Photo/Nikoletta Stoyanova)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=3TKxdLpj 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=lQgyMem3 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Military__97_9.jpg?itok=IZ5iJVQD" alt="Russia Ukraine War Military" title="Soldiers from Ukraine&#039;s Khartia brigade practice shooting at a training ground in the Kharkiv region, Ukraine, Feb. 14, 2026. (AP Photo/Nikoletta Stoyanova)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/16/ukraines-army-evolves-under-fire-new-units-challenging-soviet-legacy.html" class="text--title"><span property="schema:name">Ukraine’s Army Evolves Under Fire, with New Units Challenging Soviet Legacy</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/15/ukraines-zelenskyy-pursues-more-arms-deals-allies-help-check-russias-invasion.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Ukraine&#039;s Zelenskyy Pursues More Arms Deals with Allies to Help Check Russia&#039;s Invasion" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/15/ukraines-zelenskyy-pursues-more-arms-deals-allies-help-check-russias-invasion.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-83e7ed3d463" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV- 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV- 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=brotvYQX 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=zSJaP7Nv 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV-" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Russia Ukraine War" title="Cars damaged by Russia&#039;s drone attack are seen in Zaporizhzhia, Ukraine, Wednesday, April 15, 2026. (AP Photo/Kateryna Klochko)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV- 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV- 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=brotvYQX 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=zSJaP7Nv 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_73836.jpg?itok=GoHOsbV-" alt="Russia Ukraine War" title="Cars damaged by Russia&#039;s drone attack are seen in Zaporizhzhia, Ukraine, Wednesday, April 15, 2026. (AP Photo/Kateryna Klochko)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/15/ukraines-zelenskyy-pursues-more-arms-deals-allies-help-check-russias-invasion.html" class="text--title"><span property="schema:name">Ukraine&#039;s Zelenskyy Pursues More Arms Deals with Allies to Help Check Russia&#039;s Invasion</span>
</span>
      </a>
</div>
</article>

                      </div>
              <div class="col-sm-4">          




<article about="/daily-news/2026/04/13/hungarian-election-victor-magyar-says-hed-speak-putin-and-ask-him-end-war-ukraine.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Hungarian Election Victor Magyar Says He’d Speak With Putin and Ask Him to End the War in Ukraine" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/13/hungarian-election-victor-magyar-says-hed-speak-putin-and-ask-him-end-war-ukraine.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-60962f1767f" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=JvnibWMK 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=7qtn71KR 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Hungary Election" title="A man wrapped in the European Union flag waves a Hungarian flag, backdropped by the parliament building, early Monday April 13, 2026 as people celebrate Peter Magyar ousting Prime Minister Viktor Orban after 16 years in power. (AP Photo/Sam McNeil)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=JvnibWMK 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=7qtn71KR 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Hungary_Election_659_4.jpg?itok=l4lN4BGH" alt="Hungary Election" title="A man wrapped in the European Union flag waves a Hungarian flag, backdropped by the parliament building, early Monday April 13, 2026 as people celebrate Peter Magyar ousting Prime Minister Viktor Orban after 16 years in power. (AP Photo/Sam McNeil)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/13/hungarian-election-victor-magyar-says-hed-speak-putin-and-ask-him-end-war-ukraine.html" class="text--title"><span property="schema:name">Hungarian Election Victor Magyar Says He’d Speak With Putin and Ask Him to End the War in Ukraine</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
        



          
  <a href="/topics/ukraine" class="view__more-link">View more</a>
  </div>

      </div>

                        





<div id="paragraph-16386" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Pacific Militarization
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/feature/2026/04/13/us-and-indonesia-form-major-defense-cooperation-partnership.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="US and Indonesia Form Major Defense Cooperation Partnership" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/13/us-and-indonesia-form-major-defense-cooperation-partnership.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-fb6e11e49f4" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/9612320.jpg?itok=9hI5vRSf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/9612320.jpg?itok=cuFMK2_- 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Secretary of War Pete Hegseth and Indonesia Minister of Defense Sjafrie Sjamsoeddin stand for the playing of the U.S. and Indonesian national anthems prior to a bilateral meeting at the Pentagon, Washington, D.C., Apr. 13, 2026. (DoD photo by U.S. Navy Petty Officer 2nd Class Carson Croom)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/9612320.jpg?itok=9hI5vRSf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/9612320.jpg?itok=cuFMK2_- 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9612320.jpg?itok=T0dW2yoS" alt="" title="Secretary of War Pete Hegseth and Indonesia Minister of Defense Sjafrie Sjamsoeddin stand for the playing of the U.S. and Indonesian national anthems prior to a bilateral meeting at the Pentagon, Washington, D.C., Apr. 13, 2026. (DoD photo by U.S. Navy Petty Officer 2nd Class Carson Croom)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">US and Indonesia Form Major Defense Cooperation Partnership</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>US and Indonesia just formed a Major Defense Cooperation Partnership to boost joint training, exercises and military...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/2026/04/12/iran-war-diverts-us-military-and-attention-asia-ahead-of-trumps-summit-chinas-leader.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Iran War Diverts US Military and Attention from Asia Ahead of Trump&#039;s Summit with China&#039;s Leader" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/12/iran-war-diverts-us-military-and-attention-asia-ahead-of-trumps-summit-chinas-leader.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-99ea5188b8f" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=hN4Thc9C 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=i3JzeYzq 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="USS Halsey conducts routine underway operations." title="FILE - In this photo provided by the U.S. Navy, the Arleigh Burke-class guided-missile destroyer USS Halsey (DDG 97) conducts routine underway operations while transiting through the Taiwan Strait, May 8, 2024. (Ismael Martinez/U.S. Navy via AP, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=hN4Thc9C 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=i3JzeYzq 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_US_Asia_275_6.jpg?itok=YTTnQ3Eh" alt="USS Halsey conducts routine underway operations." title="FILE - In this photo provided by the U.S. Navy, the Arleigh Burke-class guided-missile destroyer USS Halsey (DDG 97) conducts routine underway operations while transiting through the Taiwan Strait, May 8, 2024. (Ismael Martinez/U.S. Navy via AP, File)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Iran War Diverts US Military and Attention from Asia Ahead of Trump&#039;s Summit with China&#039;s Leader</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>By the time Trump rolled out his national security strategy in late 2025, the U.S. strategy in Asia had been narrowed to...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/2026/03/29/north-korea-conducts-engine-test-missile-capable-of-targeting-us-mainland.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="North Korea Conducts Engine Test for Missile Capable of Targeting US Mainland" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/29/north-korea-conducts-engine-test-missile-capable-of-targeting-us-mainland.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-5eda9ed7b6a" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=ndD7vfxT 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=UokHTxS9 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="a solid-fuel engine test" title="This undated photo provided on March 29, 2026, by the North Korean government, shows what it says a solid-fuel engine test at an undisclosed place in North Korea. Independent journalists were not given access to cover the event depicted in this image distributed by the North Korean government. The content of this image is as provided and cannot be independently verified. Korean language watermark on image as provided by source reads: &amp;quot;KCNA&amp;quot; which is the abbreviation for Korean Central News Agency. (Korean Central News Agency/Korea News Service via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=ndD7vfxT 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=UokHTxS9 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_22453.jpg?itok=TSGZDjQm" alt="a solid-fuel engine test" title="This undated photo provided on March 29, 2026, by the North Korean government, shows what it says a solid-fuel engine test at an undisclosed place in North Korea. Independent journalists were not given access to cover the event depicted in this image distributed by the North Korean government. The content of this image is as provided and cannot be independently verified. Korean language watermark on image as provided by source reads: &amp;quot;KCNA&amp;quot; which is the abbreviation for Korean Central News Agency. (Korean Central News Agency/Korea News Service via AP)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">North Korea Conducts Engine Test for Missile Capable of Targeting US Mainland</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Some experts speculate North Korea&#039;s claim may be an exaggeration.</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/pacific-militarization" class="view__more-link">View more</a>

  
</div>

      </div>

              

      </div>
      <div class="col-md-4 page__sidebar">
        






                            







                            





<div id="paragraph-67741" class="paragraph paragraph--widget paragraph--default">
            






    <div class="field field--widget field--label-hidden">                        
<div class="eck-entity">
    <style>
  div.eapp-weather-weather-component {
    width: 90% !important;
  }
  div.eapp-weather-weather-info {
    width: 100% !important;
  }
  div.eapp-weather-weather-detail {
    width: 100% !important;
    padding-left: 35px !important;
    padding-right: 35px !important;
  }

  div.eapp-weather-weather-component a {
    display: none !important;
  }
  div.weather-widget-sponsor-container {
    height: 60px;
    line-height: 60px;
  }
  a.weather-widget-sponsor-link {
    height: 60px;
  }
  span.weather-widget-provided-by {
    top: -15px;
  }
  @media only screen and (max-width: 992px) {
    div.weather-widget-sponsor-container {
      height: 80px;
      line-height: 80px;
    }
    a.weather-widget-sponsor-link {
      height: 80px;
    }
  }

  div#ww_a51b601aa0642 a {
    display: none;
  }
</style>


<!-- Elfsight widget -->

<div style="border: 1px solid #00529b; padding: 5px 0; text-align: center; height: 70px;">
  <div style="width: 50%; display: block; float: left; height: 100%;" class="weather-widget-sponsor-container">
     <span style="display: block; width: 100%; font-size: .7em; vertical-align: middle; line-height: normal;" class="weather-widget-provided-by">Weather by</span>
     <a href="http://pubads.g.doubleclick.net/gampad/clk?id=7260382471&iu=/39363775/Military_Trackers/Weather_Widget" target="_blank" style="display: block; width: 100%; height: 90%" class="weather-widget-sponsor-link">
       <img src="https://cdn.discounttire.com/sys-master/images/hc5/h31/8808331083806/DT_logo.svg" style="width: 135px; margin: auto;" />
     </a>
  </div>
  <div style="width: 50%; display: block; float: right; height: 100%; padding-top: 14px" class="weather-widget-container">
    <script type="text/plain" class="optanon-category-3" src="https://static.elfsight.com/platform/platform.js" data-use-service-core defer></script>
    <div class="elfsight-app-3f291835-5c74-49b8-aa48-cd75edd6f659"></div>
  </div>
</div>

<!-- END Elfsight widget -->

<!-- weatherwidget.org weather widget -->
<!--
<div style="border: 1px solid #00529b; padding: 5px 3px; text-align: center; height: 135px;">
  <div style="width: 50%; display: block; float: left; height: 100%; padding-top: 30px" class="weather-widget-sponsor-container">
     <span style="display: block; width: 100%; font-size: .7em; vertical-align: middle; line-height: normal;" class="weather-widget-provided-by">Weather by</span>
     <a href="http://pubads.g.doubleclick.net/gampad/clk?id=7260382471&iu=/39363775/Military_Trackers/Weather_Widget" target="_blank" style="display: block; width: 100%; height: 90%" class="weather-widget-sponsor-link">
       <img src="https://cdn.discounttire.com/sys-master/images/hc5/h31/8808331083806/DT_logo.svg" style="width: 135px; margin: auto;" />
     </a>
  </div>
  <div style="width: 50%; display: block; float: right; height: 100%;" class="weather-widget-container">
    <div id="ww_a51b601aa0642" v='1.3' loc='auto' a='{"t":"horizontal","lang":"en","sl_lpl":1,"ids":["wl1"],"font":"Arial","sl_ics":"one_a","sl_sot":"fahrenheit","cl_bkg":"image","cl_font":"#FFFFFF","cl_cloud":"#FFFFFF","cl_persp":"#81D4FA","cl_sun":"#FFC107","cl_moon":"#FFC107","cl_thund":"#FF5722","el_whr":3,"el_phw":3,"el_nme":3}'>More forecasts: <a href="https://oneweather.org/london/30_days/" id="ww_a51b601aa0642_u" target="_blank">London weather</a></div><script type="text/plain" class="optanon-category-3" async src="https://app2.weatherwidget.org/js/?id=ww_a51b601aa0642" ></script>
  </div>
</div>
-->
<!-- END weatherwidget.org weather widget -->
<img src='https://securepubads.g.doubleclick.net/gampad/adx?iu=/39363775/Military_Trackers/Weather_Widget&sz=1x1&t=Tracker%3Dimpressions&tile=7261920197&c=138549519582'
<img src="https://secure.adnxs.com/imptr?id=75954&t=2" width="1" height="1" style="display: none" />
<IMG SRC="https://ad.doubleclick.net/ddm/trackimp/N9515.4611MILITARY.COM6/B34846985.443032050;dc_trk_aid=636121691;dc_trk_cid=252636510;ord=[timestamp];dc_lat=;dc_rdid=;tag_for_child_directed_treatment=;tfua=;gdpr=${GDPR};gdpr_consent=${GDPR_CONSENT_755};ltd=;dc_tdv=1?" attributionsrc BORDER="0" HEIGHT="1" WIDTH="1" ALT="Advertisement">
</div>

              </div>

      </div>

                        





<div id="paragraph-13286" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Military News
              </h2>







                              
    




<div class="list-view list-view--two-col-bullet">
         <div class="items">
    <ul>
                        <li class="text--title"><a href="/daily-news/military-investigations" hreflang="en">Investigations and Features</a></li>
                  <li class="text--title"><a href="/army" hreflang="en">Army</a></li>
                  <li class="text--title"><a href="/navy" hreflang="en">Navy</a></li>
                  <li class="text--title"><a href="/air-force" hreflang="en">Air Force</a></li>
                                <li class="text--title"><a href="/marine-corps" hreflang="en">Marine Corps</a></li>
                  <li class="text--title"><a href="/coast-guard" hreflang="en">Coast Guard</a></li>
                  <li class="text--title"><a href="https://www.military.com/space-force" hreflang="en">Space Force</a></li>
                  <li class="text--title"><a href="/daily-news/opinion" hreflang="en">Military Opinion</a></li>
                  </ul>
  </div>
  </div>

              

      </div>

                        
  




<div id="paragraph-16316" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5bae57bf983b3-RightTop"></div>
        </div>
  

              </div>

      </div>

                        
  
    



<div id="paragraph-886" class="paragraph paragraph--block paragraph--default paragraph--mil-auth-my-membership">
      
<div class="my-membership-block-wrapper hide-title">
  <div id="selectServiceWrapper">
    <div class="component">
      <h2 id="selectServiceTitle" class="field--title">Select Service</h2>
            



    
    

      






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--mymembership">
    
    

      

<div class="myService" id="noServiceSelected">
  <ul id="serviceList">
    <li class="service army"><a href="https://www.military.com/newmembers/army" title="Army login link"><span>Army</span></a></li>
    <li class="service marine"><a href="https://www.military.com/newmembers/marines" title="Marines login link"><span>Marines</span></a></li>
    <li class="service navy"><a href="https://www.military.com/newmembers/navy" title="Navy login link"><span>Navy</span></a></li>
    <li class="service airfrc"><a href="https://www.military.com/newmembers/airforce" title="Air Force login link"><span>Air Force</span></a></li>
    <li class="service ngres"><a href="https://www.military.com/newmembers/guard" title="National Guard login link"><span>National Guard</span></a></li>
    <li class="service coastg"><a href="https://www.military.com/newmembers/coastguard" title="Coast Guard login link"><span>Coast Guard</span></a></li>
    <li class="service spacefrc"><a href="https://www.military.com/newmembers/space-force" title="Space Force login link"><span>Space Force</span></a></li>
    <li class="service spouse"><a href="https://www.military.com/newmembers/spouse" title="Spouse login link"><span>Spouse</span></a></li>
  </ul>
  <div class="login">
    <a href="https://www.military.com/member-reg/login.html" title="Login link"><span>Login</span></a>
  </div>
</div>
<div class="myService" id="armyServiceSelected">
  <a class="logo army" href="https://www.military.com/army" title="Army page link"><span>Army</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/army">Army Home Page</a>
  </div>
</div>
<div class="myService" id="navyServiceSelected">
  <a class="logo navy" href="https://www.military.com/navy" title="Navy page link"><span>Navy</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/navy">Navy Home Page</a>
  </div>
</div>
<div class="myService" id="airfrcServiceSelected">
  <a class="logo airforce" href="https://www.military.com/air-force" title="Air Force page link"><span>Air Force</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/air-force">Air Force Home Page</a>
  </div>
</div>
<div class="myService" id="marineServiceSelected">
  <a class="logo marines" href="https://www.military.com/marine-corps" title="Marines page link"><span>Marines</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/marine-corps">Marines Home Page</a>
  </div>
</div>
<div class="myService" id="coastgServiceSelected">
  <a class="logo coastguard" href="https://www.military.com/coast-guard" title="Coast Guard page link"><span>Coast Guard</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/coast-guard">Coast Guard Home Page</a>
  </div>
</div>
<div class="myService" id="spcfrcServiceSelected">
  <a class="logo spaceforce" href="https://www.military.com/space-force" title="Space Force page link"><span>Space Force</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/space-force">Space Force Home Page</a>
  </div>
</div>
<div class="myService" id="ngServiceSelected">
  <a class="logo nationalguard" href="https://www.military.com/national-guard" title="National Guard page link"><span>National Guard</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/national-guard">National Guard Home Page</a>
  </div>
</div>
<div class="myService" id="spouseServiceSelected">
  <a class="logo spouse" href="https://www.military.com/spouse" title="Spouse page link"><span>Spouse</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/spouse">Spouse Home Page</a>
  </div>
</div>
<div class="myService" id="otherServiceSelected">
  <a class="logo military" href="https://www.military.com/daily-news" title="Military News page link"><span>&nbsp;</span></a>
  <div class="links">
    <a href="https://www.military.com/profile/member-profile.html">My Profile</a>
    <a href="https://www.military.com/daily-news">News Home Page</a>
  </div>
</div>



        </div>
  

              </div>

        </div>
  </div>
</div>
  </div>

                        
  




<div id="paragraph-16321" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5bbf99ec71a20-FP1"></div>
        </div>
  

              </div>

      </div>

                        
  




<div id="paragraph-34806" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5bbf99ec71b95-RightBottom"></div>
        </div>
  

              </div>

      </div>

                        





<div id="paragraph-50601" class="paragraph paragraph--cta paragraph--default">
            






    <div class="field field--call-to-action field--label-hidden">                        




  
  










<div
  id="cta-nl-NEWS_MAIN_NLET_SIGNUP"
  class="call-to-action--nl  image-no-variant image-no-bg    cta-nl--loading cta-nl--hidden"
  data-nl-id="4,5,13"
  data-nl-isrc="NEWS_MAIN_NLET_SIGNUP"
  data-nl-esrc=""
  style=" "
>

  <div class="cta-container cta-default">
    <div class="cta-nl--logo">
      <img src="/themes/military/assets/images/m-logo-rect-blue.png" alt="">
    </div>



    <div class="cta-nl--content">

      <div class="cta-nl--image" style="background-image: url('/themes/military/assets/images/nl-cta-patch-popup.jpg');"></div>

      <div class="cta-nl--main">

        <div class="cta-state-signup">

          <div class="text-content">
            <h2>






                            Get the Military Insider Newsletter
              
</h2>
                          <p class="blurb">Get the latest on pay updates, benefit changes and award-winning military content. Right in your inbox.</p>
                      </div>

          <form class="cta-nl--form">
            <label class="user-email--label">Email</label>
            <input class="user-email" type="email" placeholder="" aria-label="Enter your email">
            
            <button type="submit" class="cta-nl--submit" style=" " aria-label=" Subscribe Now ">Subscribe Now</button>
          </form>
          <div class="disclaimer">By signing up, you agree to our <a href="/about-us/privacy-policy">Privacy Notice</a>.</div>
        </div>

        <div class="cta-state--message">

          <div class="message--thank-you">
                        <div class="message--heading">
              <span class="large">Thank you</span>
              <span>for subscribing!</span>
            </div>
            <p>View more newsletters on our <a href="/profile/member-profile-newsletter-settings.html">Subscriptions</a> page.</p>
          </div>

          <div class="message--confirmation">
                        <div class="message--heading">
              <span class="large">One last step.</span>
            </div>
            <p>Verify your free subscription by following the instructions in the email sent to:</p>
          </div>

        </div>
      </div>

    </div>

    
    <noscript>Please enable JavaScript to view this element.</noscript>

  </div>

</div>





              </div>

      </div>

                        





<div id="paragraph-881" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Most Popular Military News
              </h2>







                            



  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
          




<article about="/feature/2026/04/06/us-military-will-risk-everything-its-own-heres-why.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="The US Military Will Risk Everything for Its Own. Here’s Why" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/06/us-military-will-risk-everything-its-own-heres-why.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-21c15f4c3e0" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/2000w_q95.jpeg.jpg?itok=Hi5oWiW8 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/2000w_q95.jpeg.jpg?itok=LVw1QP-V 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="A U.S. Air Force F-15E Strike Eagle assigned to the 494th Expeditionary Fighter Squadron lands at a base in the Middle East, Jan. 18, 2026. The F-15&#039;s presence enhances combat readiness and promotes regional security and stability. (Courtesy Photo)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/2000w_q95.jpeg.jpg?itok=Hi5oWiW8 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/2000w_q95.jpeg.jpg?itok=LVw1QP-V 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/2000w_q95.jpeg.jpg?itok=PrTd08Ws" alt="" title="A U.S. Air Force F-15E Strike Eagle assigned to the 494th Expeditionary Fighter Squadron lands at a base in the Middle East, Jan. 18, 2026. The F-15&#039;s presence enhances combat readiness and promotes regional security and stability. (Courtesy Photo)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">The US Military Will Risk Everything for Its Own. Here’s Why</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The rescue of downed U.S. airmen in Iran shows why “leave no one behind” still defines the military, and why it matters for...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>





<article about="/feature/2026/04/07/10-actors-who-grew-military-children-and-how-it-shaped-their-careers.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="These Actors Grew Up as Military Children. It Shaped Everything" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/07/10-actors-who-grew-military-children-and-how-it-shaped-their-careers.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-7d135746471" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=N7vwW7-o 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=BGWSmY7s 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Bruce Willis in military gear in Tears of the Sun, actor who grew up in a military family. (Photo courtesy of Sony Pictures Releasing)" title="Bruce Willis in Tears of the Sun military role" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=N7vwW7-o 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=BGWSmY7s 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/militarybratsbrucewillistearsofthesun.jpg?itok=6By-FnJ4" alt="Bruce Willis in military gear in Tears of the Sun, actor who grew up in a military family. (Photo courtesy of Sony Pictures Releasing)" title="Bruce Willis in Tears of the Sun military role" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">These Actors Grew Up as Military Children. It Shaped Everything</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>These 10 actors were raised in military families. Their upbringing didn’t just shape their lives—it still influences how they...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>





<article about="/money/personal-finance/you-took-separation-pay-years-ago-now-va-wants-it-back-your-disability-check.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="You Took Separation Pay Years Ago. Now the VA Wants It Back From Your Disability Check." class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/money/personal-finance/you-took-separation-pay-years-ago-now-va-wants-it-back-your-disability-check.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-c03019c06e3" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=GgQRrmSg 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=CfSxGNMw 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Veterans hold signs supporting the PACT Act." title="Veterans, military family members and advocates support the PACT Act, a bill designed to help millions of veterans exposed to toxic substances during their military service, at the Capitol in Washington, D.C., Aug. 1, 2021. (J. Scott Applewhite/AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=GgQRrmSg 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=CfSxGNMw 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ap%20PACT%20Act%201800.jpg?itok=6TBkss8w" alt="Veterans hold signs supporting the PACT Act." title="Veterans, military family members and advocates support the PACT Act, a bill designed to help millions of veterans exposed to toxic substances during their military service, at the Capitol in Washington, D.C., Aug. 1, 2021. (J. Scott Applewhite/AP)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">You Took Separation Pay Years Ago. Now the VA Wants It Back From Your Disability Check.</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Under federal law, a veteran cannot receive both separation pay and VA disability compensation for the same period of service...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>





<article about="/daily-news/2026/03/11/could-us-bring-back-draft-who-would-be-called-first-and-who-qualifies.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Could the US Bring Back the Draft? Who Would Be Called First — and Who Qualifies" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/11/could-us-bring-back-draft-who-would-be-called-first-and-who-qualifies.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-5d3d701e17c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=tdcDr6Hf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Phe7ZZea 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="New recruits take the oath of enlistment at the Advocate Center for the Eleventh Annual Chicago Bulls Special Recruit Division Enlistment Ceremony in Chicago. (U.S. Navy photo by Mass Communication Specialist 2nd Class Camilo Fernan)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=tdcDr6Hf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Phe7ZZea 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/1000w_q95_2_1.jpeg.jpg?itok=Q72sYFjs" alt="" title="New recruits take the oath of enlistment at the Advocate Center for the Eleventh Annual Chicago Bulls Special Recruit Division Enlistment Ceremony in Chicago. (U.S. Navy photo by Mass Communication Specialist 2nd Class Camilo Fernan)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Could the US Bring Back the Draft? Who Would Be Called First — and Who Qualifies</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Could the U.S. bring back the draft? Here’s how Selective Service works today, who would be called first and why only about...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>





<article about="/spouse/military-relocation/pcs-moves/3-big-pcs-changes-are-coming-once-heres-what-service-members-need-know-peak-season.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="3 Big PCS Changes Are Coming at Once. Here’s What Service Members Need to Know Before Peak Season." class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/spouse/military-relocation/pcs-moves/3-big-pcs-changes-are-coming-once-heres-what-service-members-need-know-peak-season.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-9d93ef71f94" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=yYhDf9ap 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=34pwBYLU 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="A mover loads boxes." title="A mover loads boxes into the truck for transport to the next duty station during a Permanent Change of Station on Scott Air Force Base, Illinois, July 18, 2025. The Department of Defense established the Permanent Change of Station Joint Task Force to improve the moving experience for military members and their families. (Staff Sgt. Stephanie Henry/Air Force)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=yYhDf9ap 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=34pwBYLU 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/military%20PCS%20task%20force%201800.jpg?itok=-tRMvUIh" alt="A mover loads boxes." title="A mover loads boxes into the truck for transport to the next duty station during a Permanent Change of Station on Scott Air Force Base, Illinois, July 18, 2025. The Department of Defense established the Permanent Change of Station Joint Task Force to improve the moving experience for military members and their families. (Staff Sgt. Stephanie Henry/Air Force)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">3 Big PCS Changes Are Coming at Once. Here’s What Service Members Need to Know Before Peak Season.</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>In 2026, three major changes are affecting military household goods moves: a new permanent agency to run the system, the end...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

  </div>

              

      </div>

                        
  




<div id="paragraph-16326" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5bbf99ec71dc3-FP2"></div>
        </div>
  

              </div>

      </div>

                        





<div id="paragraph-51791" class="paragraph paragraph--linked-image paragraph--default">
        
      <a href="https://www.military.com/podcasts/fire-watch">
      






    <div class="field field--image field--label-hidden">                        




<figure>  






    <div class="field field--image field--label-hidden">                         
    
            <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/full/public/2022-07/MicrosoftTeams-image%20%282%29.png.jpg?itok=nzmdKJW7 1x" media="(min-width: 1200px)" type="image/jpeg" width="300" height="130"/>
              <source srcset="//images02.military.com/sites/default/files/styles/full/public/2022-07/MicrosoftTeams-image%20%282%29.png.jpg?itok=nzmdKJW7 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="300" height="130"/>
              <source srcset="//images02.military.com/sites/default/files/styles/full/public/2022-07/MicrosoftTeams-image%20%282%29.png.jpg?itok=nzmdKJW7 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="300" height="130"/>
              <source srcset="//images02.military.com/sites/default/files/styles/full/public/2022-07/MicrosoftTeams-image%20%282%29.png.jpg?itok=nzmdKJW7 1x" media="(max-width: 767px)" type="image/jpeg" width="300" height="130"/>
                  <img loading="eager" width="300" height="130" src="//images02.military.com/sites/default/files/styles/full/public/2022-07/MicrosoftTeams-image%20%282%29.png.jpg?itok=nzmdKJW7" alt="" typeof="foaf:Image" />

  </picture>

    
  

              </div>

  </figure>

              </div>

    </a>
    </div>

                        





<div id="paragraph-46711" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Latest Military Videos
              </h2>




<div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                   <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Powerful Winds from Super Typhoon Sinlaku Impact US Islands</div>




<div class="thumbnail--large__image">
  <div class="image">
  <i class="icon-photo_size_select_actual"></i>
<figure>
  <div data-content-gallery class="blazy blazy--content blazy--field blazy--poster blazy--poster--thumbnail-large field poster field--label-hidden" data-blazy="">
        
    <a href="/video/powerful-winds-super-typhoon-sinlaku-impact-us-islands" class="b-link">    <div data-b-token="b-5cd9b17ca19" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10528.jpg?itok=eugoJpOh 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10528.jpg?itok=eugoJpOh 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10528.jpg?itok=UgZ3yUnW 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10528.jpg?itok=T_cZHE88 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/brightcove/videos/images/posters/image_10528.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10528.jpg?itok=eugoJpOh 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10528.jpg?itok=eugoJpOh 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10528.jpg?itok=UgZ3yUnW 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10528.jpg?itok=T_cZHE88 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10528.jpg?itok=eugoJpOh" alt="" typeof="foaf:Image" />

  </picture>
</noscript>        </div></a>
        
  

        </div>
</figure>
</div>
</div>







<div class="thumbnail--large__content"><div class="text--small thumbnail--large__blurb">
<div class="field description field--label-hidden">              <p>Powerful winds from Super Typhoon Sinlaku continue to impact US islands in the Pacific.</p>



      </div>
</div>
</div>

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">House Approves Aviation Safety Bill Based on Deadly Midair Collision</div>




<div class="thumbnail--large__image">
  <div class="image">
  <i class="icon-photo_size_select_actual"></i>
<figure>
  <div data-content-gallery class="blazy blazy--content blazy--field blazy--poster blazy--poster--thumbnail-large field poster field--label-hidden" data-blazy="">
        
    <a href="/video/house-approves-aviation-safety-bill-based-deadly-midair-collision" class="b-link">    <div data-b-token="b-1b9c8cf7ac2" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10527.jpg?itok=0HjW2Ml- 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10527.jpg?itok=0HjW2Ml- 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10527.jpg?itok=SeoaaJYa 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10527.jpg?itok=xh_sLcoM 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/brightcove/videos/images/posters/image_10527.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10527.jpg?itok=0HjW2Ml- 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10527.jpg?itok=0HjW2Ml- 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10527.jpg?itok=SeoaaJYa 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10527.jpg?itok=xh_sLcoM 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10527.jpg?itok=0HjW2Ml-" alt="" typeof="foaf:Image" />

  </picture>
</noscript>        </div></a>
        
  

        </div>
</figure>
</div>
</div>







<div class="thumbnail--large__content"><div class="text--small thumbnail--large__blurb">
<div class="field description field--label-hidden">              <p>House approves aviation safety bill based on deadly midair collision near Washington.</p>



      </div>
</div>
</div>

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">How a US Blockade Near the Strait of Hormuz Could Work</div>




<div class="thumbnail--large__image">
  <div class="image">
  <i class="icon-photo_size_select_actual"></i>
<figure>
  <div data-content-gallery class="blazy blazy--content blazy--field blazy--poster blazy--poster--thumbnail-large field poster field--label-hidden" data-blazy="">
        
    <a href="/video/how-us-blockade-near-strait-of-hormuz-could-work" class="b-link">    <div data-b-token="b-1198e215773" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10526.jpg?itok=r-PzV6zo 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10526.jpg?itok=r-PzV6zo 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10526.jpg?itok=cPHJDLBf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10526.jpg?itok=3r7MNc_O 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/brightcove/videos/images/posters/image_10526.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10526.jpg?itok=r-PzV6zo 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10526.jpg?itok=r-PzV6zo 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10526.jpg?itok=cPHJDLBf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10526.jpg?itok=3r7MNc_O 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10526.jpg?itok=r-PzV6zo" alt="" typeof="foaf:Image" />

  </picture>
</noscript>        </div></a>
        
  

        </div>
</figure>
</div>
</div>







<div class="thumbnail--large__content"><div class="text--small thumbnail--large__blurb">
<div class="field description field--label-hidden">              <p>How a US blockade near the Strait of Hormuz could work.</p>



      </div>
</div>
</div>

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">North Korean Leader Supervises Missile Tests from His Naval Destroyer</div>




<div class="thumbnail--large__image">
  <div class="image">
  <i class="icon-photo_size_select_actual"></i>
<figure>
  <div data-content-gallery class="blazy blazy--content blazy--field blazy--poster blazy--poster--thumbnail-large field poster field--label-hidden" data-blazy="">
        
    <a href="/video/north-korean-leader-supervises-missile-tests-his-naval-destroyer" class="b-link">    <div data-b-token="b-da731be397d" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10525.jpg?itok=o9Ywi3vj 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10525.jpg?itok=o9Ywi3vj 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10525.jpg?itok=kJUXYGpH 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10525.jpg?itok=DuUD-0AP 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/brightcove/videos/images/posters/image_10525.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10525.jpg?itok=o9Ywi3vj 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10525.jpg?itok=o9Ywi3vj 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10525.jpg?itok=kJUXYGpH 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10525.jpg?itok=DuUD-0AP 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10525.jpg?itok=o9Ywi3vj" alt="" typeof="foaf:Image" />

  </picture>
</noscript>        </div></a>
        
  

        </div>
</figure>
</div>
</div>







<div class="thumbnail--large__content"><div class="text--small thumbnail--large__blurb">
<div class="field description field--label-hidden">              <p>North Korean leader supervises missile tests from his naval destroyer.</p>



      </div>
</div>
</div>

</div>
        </article>
      </div>
      
      



          
  <a href="/video/all" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-57926" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Investigations and Features
              </h2>







                            



  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
            <div class="video--thumbnail--large">
        <article>
    <div class="brightcove thumbnail--large">
              
        




<article about="/daily-news/investigations-and-features/2025/02/10/one-of-marines-most-iconic-jobs-stunning-pattern-of-suicide.html" class="node node--feature-article node--feature-article--thumbnail-large">
  
  

  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2025/02/10/one-of-marines-most-iconic-jobs-stunning-pattern-of-suicide.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-9854821208d" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=dfoa9ZRd 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=cPbs3TQp 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="(Zach Meyer/For The Washington Post)" title="(Zach Meyer/For The Washington Post)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=dfoa9ZRd 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=cPbs3TQp 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2025-02/1time-post-drill-instructor-graphic-1800.jpg?itok=PN8qfFjQ" alt="(Zach Meyer/For The Washington Post)" title="(Zach Meyer/For The Washington Post)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span>In One of the Marines&#039; Most Iconic Jobs, a Stunning Pattern of Suicide</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Marine Corps drill instructors are a national symbol of discipline. But for some, their imposing persona belies a dark...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>


            </div>
    </article>
        <article>
    <div class="brightcove thumbnail--large">
              
        




<article about="/daily-news/2024/04/10/unsupervised-military-child-care-centers-slow-report-abuse-little-oversight.html" class="node node--feature-article node--feature-article--thumbnail-large">
  
  

  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2024/04/10/unsupervised-military-child-care-centers-slow-report-abuse-little-oversight.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-0ed86df76de" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=_Ss8Cvpq 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=NR98aGwT 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Army Capt. Jeremy Kuykendall and his wife Kate, cradle their daughter" title="Army Capt. Jeremy Kuykendall and his wife Kate, cradle their youngest daughter Isabella at their new home in Fort Leavenworth, Kansas, on April 7, 2024. Bella was abused at a military day care center in Hawaii when she was little more than a year old. (Chase Castor/Military.com)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=_Ss8Cvpq 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=NR98aGwT 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2024-04/staff-jeremy-kuykendall-and-wife-kate-1800.jpg?itok=AA0D2jmQ" alt="Army Capt. Jeremy Kuykendall and his wife Kate, cradle their daughter" title="Army Capt. Jeremy Kuykendall and his wife Kate, cradle their youngest daughter Isabella at their new home in Fort Leavenworth, Kansas, on April 7, 2024. Bella was abused at a military day care center in Hawaii when she was little more than a year old. (Chase Castor/Military.com)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span>Unsupervised: Military Child Care Centers Slow to Report Abuse with Little Oversight</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A Military.com investigation into military day care centers revealed that service branch rules generally prioritize...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>


            </div>
    </article>
        </div>
            


    </div>

              

      </div>

                        





<div id="paragraph-20876" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Army News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/2026/04/14/aviation-safety-bill-based-deadly-midair-collision-near-washington-faces-house-vote.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="House Approves Aviation Safety Bill Based on Deadly Midair Collision near Washington" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/14/aviation-safety-bill-based-deadly-midair-collision-near-washington-faces-house-vote.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-ba4ae20535c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=6usj--0U 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=4aD94fzv 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Washington Midair Collision" title="FILE - Salvage crews work on recovering wreckage near the site in the Potomac River of a mid-air collision between an American Airlines jet and a Black Hawk helicopter at Ronald Reagan Washington National Airport, Feb. 6, 2025, in Arlington, Va. (AP Photo/Jose Luis Magana, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=6usj--0U 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=4aD94fzv 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Washington_Midair_Collision_56_36.jpg?itok=Ww_EmzUu" alt="Washington Midair Collision" title="FILE - Salvage crews work on recovering wreckage near the site in the Potomac River of a mid-air collision between an American Airlines jet and a Black Hawk helicopter at Ronald Reagan Washington National Airport, Feb. 6, 2025, in Arlington, Va. (AP Photo/Jose Luis Magana, File)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">House Approves Aviation Safety Bill Based on Deadly Midair Collision near Washington</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>An aviation safety bill seeking to address lessons learned from last year’s midair collision of a jet with an Army helicopter...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/2026/04/14/ex-army-contractor-accused-of-leaking-classified-information-be-released-home-detention.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Ex-Army Contractor, Accused of Leaking Classified Information, To Be Released to Home Detention" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/14/ex-army-contractor-accused-of-leaking-classified-information-be-released-home-detention.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-8f0408d3ee6" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=6TShdblZ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=j1ygZUHL 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="US Army Veteran Classified Info" title="FILE - A sign for Fort Bragg is seen, March 7, 2025, in Fort Bragg, N.C. (AP Photo/Chris Seward, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=6TShdblZ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=j1ygZUHL 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Army_Veteran_Classified_Info_14399.jpg?itok=kj9665Ok" alt="US Army Veteran Classified Info" title="FILE - A sign for Fort Bragg is seen, March 7, 2025, in Fort Bragg, N.C. (AP Photo/Chris Seward, File)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Ex-Army Contractor, Accused of Leaking Classified Information, To Be Released to Home Detention</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>An Army veteran accused of revealing classified information about an elite commando unit — members&#039; names, tactics and a unit...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/army" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-20881" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Navy News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/2026/04/16/us-aircraft-carrier-breaks-record-longest-deployment-vietnam-war.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="US Aircraft Carrier Breaks Record for Longest Deployment Since the Vietnam War" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/16/us-aircraft-carrier-breaks-record-longest-deployment-vietnam-war.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-e29250f05ee" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=4t8zVVPr 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=3pGMzgE0 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Aircraft Carrier Record Deployment" title="The USS Gerald R. Ford aircraft carrier leaves Naval Station Norfolk, June 23, 2025, in Norfolk, Va. (AP Photo/John Clark, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=4t8zVVPr 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=3pGMzgE0 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Aircraft_Carrier_Record_Deployment_12764.jpg?itok=vcgEM23Y" alt="Aircraft Carrier Record Deployment" title="The USS Gerald R. Ford aircraft carrier leaves Naval Station Norfolk, June 23, 2025, in Norfolk, Va. (AP Photo/John Clark, File)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">US Aircraft Carrier Breaks Record for Longest Deployment Since the Vietnam War</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The world&#039;s largest aircraft carrier, the USS Gerald R. Ford, broke the U.S. record for the longest post-Vietnam War...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/feature/2026/04/15/riley-green-says-playing-navy-seal-marshals-came-pressure.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Riley Green Says Playing Navy SEAL in ‘Marshals’ Came With Pressure" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/15/riley-green-says-playing-navy-seal-marshals-came-pressure.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-2f22507c47b" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/rileygreenmarshals.jpg?itok=LVffnkU2 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/rileygreenmarshals.jpg?itok=0CL42Umg 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Riley Green as Garrett. Photo: Fred Hayes/CBS ©2025 CBS Broadcasting, Inc. All Rights Reserved." title="Riley Green as Garrett in Marshals" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/rileygreenmarshals.jpg?itok=LVffnkU2 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/rileygreenmarshals.jpg?itok=0CL42Umg 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/rileygreenmarshals.jpg?itok=KMy6HYJG" alt="Riley Green as Garrett. Photo: Fred Hayes/CBS ©2025 CBS Broadcasting, Inc. All Rights Reserved." title="Riley Green as Garrett in Marshals" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Riley Green Says Playing Navy SEAL in ‘Marshals’ Came With Pressure</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>In an exclusive interview with Military.com, Riley Green opens up about playing a Navy SEAL in Marshals, the pressure to get...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/navy" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-20886" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Air Force News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/2026/04/10/not-just-moment-history-tuskegee-airmen-honored-philadelphia.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Not Just a Moment in History&#039;: Tuskegee Airmen Honored in Philadelphia" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/10/not-just-moment-history-tuskegee-airmen-honored-philadelphia.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-36db8cbb50a" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=GH_My99S 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=aqd8VNJn 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="The Greater Philadelphia Chapter of the Tuskegee Airmen board member James Thompson honors the legacy of the Tuskegee Airmen in Philadelphia, Penn., on March 28. (The Greater Philadelphia Chapter of the Tuskegee Airmen)" title="The Greater Philadelphia Chapter of the Tuskegee Airmen board member James Thompson honors the legacy of the Tuskegee Airmen in Philadelphia, Penn., on March 28. (The Greater Philadelphia Chapter of the Tuskegee Airmen)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=GH_My99S 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=aqd8VNJn 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mr._james_thompson_jr._chapter_director_of_communications_.jpg?itok=pPPtzQS6" alt="The Greater Philadelphia Chapter of the Tuskegee Airmen board member James Thompson honors the legacy of the Tuskegee Airmen in Philadelphia, Penn., on March 28. (The Greater Philadelphia Chapter of the Tuskegee Airmen)" title="The Greater Philadelphia Chapter of the Tuskegee Airmen board member James Thompson honors the legacy of the Tuskegee Airmen in Philadelphia, Penn., on March 28. (The Greater Philadelphia Chapter of the Tuskegee Airmen)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Not Just a Moment in History&#039;: Tuskegee Airmen Honored in Philadelphia</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>“It’s something that we need to make sure the rest of the world knows about,” a Tuskegee Airmen supporter told&amp;nbsp;Military.com...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/investigations-and-features/2026/04/09/fake-ai-photo-of-f-15-crew-rescue-iran-spreads-across-social-media.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Fake AI Photo of F-15 Crew Rescue in Iran Spreads Across Social Media" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/09/fake-ai-photo-of-f-15-crew-rescue-iran-spreads-across-social-media.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-5f638f8c85c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=OjrtPwAQ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=pwlBXU4o 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Screenshot of the AI-generated image that circulated on X and Facebook over Easter weekend. The photograph is fabricated. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=OjrtPwAQ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=pwlBXU4o 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/451f95f87546024cd0c4260c8ec5ef08.jpg?itok=PKU30JwI" alt="" title="Screenshot of the AI-generated image that circulated on X and Facebook over Easter weekend. The photograph is fabricated. (Facebook)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Fake AI Photo of F-15 Crew Rescue in Iran Spreads Across Social Media</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A fabricated image claiming to show an American airman rescued from Iranian soil spread across social media before users...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/air-force" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-57646" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Space Force News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/feature/2026/03/28/national-spacepower-center-advancing-us-and-allied-spacepower.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="National Spacepower Center: Advancing US and Allied Spacepower" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/03/28/national-spacepower-center-advancing-us-and-allied-spacepower.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-6f1f1ab59d0" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/nsc_2025_1.jpg?itok=uqrsCwGm 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/nsc_2025_1.jpg?itok=--0nxnxU 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Robbie Robertson, Sedaro CEO and co-founder, presents a live demo to USSF leadership Thursday, Dec. 11, 2025, at Spacepower Conference in Orlando, FL. (Photo courtesy of SFA)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-03/nsc_2025_1.jpg?itok=uqrsCwGm 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-03/nsc_2025_1.jpg?itok=--0nxnxU 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/nsc_2025_1.jpg?itok=ui6VtYx3" alt="" title="Robbie Robertson, Sedaro CEO and co-founder, presents a live demo to USSF leadership Thursday, Dec. 11, 2025, at Spacepower Conference in Orlando, FL. (Photo courtesy of SFA)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">National Spacepower Center: Advancing US and Allied Spacepower</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The Space Force Association launched the National Spacepower Center in Dec. 2025 to connect government, academia and industry...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/2026/03/22/exceptional-courage-uso-announces-its-2026-service-members-of-year.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Exceptional Courage&#039;: USO Announces its 2026 Service Members of the Year" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/22/exceptional-courage-uso-announces-its-2026-service-members-of-year.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-5fc656319f1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/smoy_2026_banner_16x9.jpg?itok=_9t7XafX 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/smoy_2026_banner_16x9.jpg?itok=GJo0BP3c 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" title="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/smoy_2026_banner_16x9.jpg?itok=_9t7XafX 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/smoy_2026_banner_16x9.jpg?itok=GJo0BP3c 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ" alt="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" title="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Exceptional Courage&#039;: USO Announces its 2026 Service Members of the Year</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>This year&#039;s crop of USO honorees saved motorcycle crash victims, rescued bodies underwater, saved civilians from a building...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/space-force" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-20891" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Marine Corps News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/investigations-and-features/2026/04/14/marine-corps-team-takes-armys-top-sniper-title-first-time-2009.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Marine Corps Team Takes Army&#039;s Top Sniper Title for First Time Since 2009 " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/14/marine-corps-team-takes-armys-top-sniper-title-first-time-2009.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-7f6bc645ecf" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/9608442_0_0.jpg?itok=3GzeT_jB 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/9608442_0_0.jpg?itok=TPsUGt5_ 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="The 2026 International Sniper Competition ends with an Awards Ceremony April 10, 2026 in McGinnis-Wickam Hall on Fort Benning, Georgia. Staff. Sgt. Tyler Johnson and Sgt. Spencer Harrell, representing the United States Marine Corps, won the championship trophy. (U.S. Army photo by Daniel Marble)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/9608442_0_0.jpg?itok=3GzeT_jB 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/9608442_0_0.jpg?itok=TPsUGt5_ 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9608442_0_0.jpg?itok=fMXk71d8" alt="" title="The 2026 International Sniper Competition ends with an Awards Ceremony April 10, 2026 in McGinnis-Wickam Hall on Fort Benning, Georgia. Staff. Sgt. Tyler Johnson and Sgt. Spencer Harrell, representing the United States Marine Corps, won the championship trophy. (U.S. Army photo by Daniel Marble)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Marine Corps Team Takes Army&#039;s Top Sniper Title for First Time Since 2009 </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Staff Sgt. Tyler Johnson and Sgt. Spencer Harrell won the International Sniper Competition at Fort Benning, only the second...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/investigations-and-features/2026/04/14/record-30k-runners-raise-scholarship-funds-pat-tillman-foundation.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Record 30K Runners Raise Scholarship Funds for Pat Tillman Foundation " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/14/record-30k-runners-raise-scholarship-funds-pat-tillman-foundation.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-157493797e1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/tillman_1_.jpg?itok=Hqn8e3wQ 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/tillman_1_.jpg?itok=Ql8glEhD 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Runners hit the pavement at the start of Pat&#039;s Run in Tempe, Arizona on Saturday. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/tillman_1_.jpg?itok=Hqn8e3wQ 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/tillman_1_.jpg?itok=Ql8glEhD 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/tillman_1_.jpg?itok=HVsO13jV" alt="" title="Runners hit the pavement at the start of Pat&#039;s Run in Tempe, Arizona on Saturday. (Facebook)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Record 30K Runners Raise Scholarship Funds for Pat Tillman Foundation </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>After two decades, thousands of runners still come out to support the Pat Tillman Foundation and pay tribute to the fallen...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/marine-corps" class="view__more-link">View more</a>

  
</div>

      </div>

                        





<div id="paragraph-20896" class="paragraph paragraph--list-view paragraph--default">
            






    <h2 class="field field--title field--label-hidden paragraph__title">                        Coast Guard News
              </h2>




  <div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                    




<article about="/daily-news/2026/04/07/coast-guard-cutter-finds-retrieves-family-missing-7-days-micronesia.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Coast Guard Cutter Finds, Retrieves Family Missing for 7 Days in Micronesia" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/07/coast-guard-cutter-finds-retrieves-family-missing-7-days-micronesia.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-1639d8b8d7c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/9356437.jpg?itok=5gMHPQXs 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/9356437.jpg?itok=adSprfsw 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Coast Guard Cutter Midgett (WMSL 757) prepares to Moore at their homeport Honolulu, Hawaii Oct. 3, 2025. (U.S. Coast Guard photo by Petty Officer 3rd Class Jennifer Nilson)" title="Coast Guard Cutter Midgett (WMSL 757) prepares to Moore at their homeport Honolulu, Hawaii Oct. 3, 2025. (U.S. Coast Guard photo by Petty Officer 3rd Class Jennifer Nilson)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/2026-04/9356437.jpg?itok=5gMHPQXs 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/2026-04/9356437.jpg?itok=adSprfsw 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9356437.jpg?itok=zF8WsOVa" alt="Coast Guard Cutter Midgett (WMSL 757) prepares to Moore at their homeport Honolulu, Hawaii Oct. 3, 2025. (U.S. Coast Guard photo by Petty Officer 3rd Class Jennifer Nilson)" title="Coast Guard Cutter Midgett (WMSL 757) prepares to Moore at their homeport Honolulu, Hawaii Oct. 3, 2025. (U.S. Coast Guard photo by Petty Officer 3rd Class Jennifer Nilson)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Coast Guard Cutter Finds, Retrieves Family Missing for 7 Days in Micronesia</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The rescue mission was one not &quot;routine&quot; to the Coast Guard and cutter crew that succeeded.</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

                




<article about="/daily-news/2026/03/22/exceptional-courage-uso-announces-its-2026-service-members-of-year.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Exceptional Courage&#039;: USO Announces its 2026 Service Members of the Year" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/22/exceptional-courage-uso-announces-its-2026-service-members-of-year.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-5fc656319f1" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/smoy_2026_banner_16x9.jpg?itok=_9t7XafX 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/smoy_2026_banner_16x9.jpg?itok=GJo0BP3c 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" title="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-03/smoy_2026_banner_16x9.jpg?itok=_9t7XafX 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-03/smoy_2026_banner_16x9.jpg?itok=GJo0BP3c 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/smoy_2026_banner_16x9.jpg?itok=gd4OE4hQ" alt="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" title="This year&#039;s USO 2026 &amp;quot;Service Members of the Year.&amp;quot; (USO)" typeof="foaf:Image" />

  </picture>
</noscript>        </div>
  
              </div>

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Exceptional Courage&#039;: USO Announces its 2026 Service Members of the Year</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>This year&#039;s crop of USO honorees saved motorcycle crash victims, rescued bodies underwater, saved civilians from a building...</p>



              </div>

        </div>
          </div>
  </a>
</div>
</article>

      
      



          
  <a href="/topics/coast-guard" class="view__more-link">View more</a>

  
</div>

      </div>

                        
  




<div id="paragraph-52786" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-5fda9e8d282f1-Military-Desktop-Interstitial"></div>
        </div>
  

              </div>

      </div>

                        
  




<div id="paragraph-52791" class="paragraph paragraph--block paragraph--default paragraph--mil-ad-block">
            






    <div class="field field--block field--label-hidden">                        
  



      <div class="block block--appnexus">
    
    

      <div id="adblock-660c2d764f532-Military-Mobile-Interstitial"></div>
        </div>
  

              </div>

      </div>

              


              

      </div>
    </div>
    
  
</article>



  

              
      
    </div>
  </main>

      
<footer>
  <div class="container">
              
  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-5e42df150d649-Bottom"></div>
        </div>
  

  



      <div class="mil-ad--mobile block block--mil-ad-block">
    
    

      <div id="adblock-5e42df260b59f-MobileBottom"></div>
        </div>
  




<div  class="meganav--footer meganav">
  <div class="meganav--container">
  



<div class="search-box">

  <form name="gs" method="GET" action="//www.military.com/search">

    <div class="search-wrapper">
      <input type="search" name="keyword" value="" class="searchInput" placeholder="Search Military.com" aria-label="Search Military.com">
      <button class="button--form-input"><span>GO</span><img class="search-arrow" src="/themes/military/assets/images/search-arrow.svg" alt="search arrow" /></button>
    </div>

  </form>
</div>
  <div class="meganav--sign-up">
    

<a id="login-app" class="button--sign-up button--sign-up--lg" href="/newmembers/member-reg?vlv_redir=&reg=true">
  Sign up
</a>
  </div>
      




        <ul class="menu menu--main">
              <li class="menu--account__authenticated--mobile">
        <a href="http://www.military.com/profile/member-profile.html">Profile</a>
        <ul>
  <li><a href="https://www.military.com/profile/member-profile.html">Profile</a></li>
    <li><a href="https://www.military.com/profile/member-profile-newsletter-settings.html">Subscriptions</a></li>
  <li><a class="user-menu-logout-link" href="https://www.military.com/member-reg/logout.html">Log out</a></li>
</ul>
      </li>

                        <li>
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News</a>
                                <ul>
                    <li>
                  <a href="/daily-news" target="_self" rel="" data-drupal-link-system-path="node/1251">News Home</a>
                        </li>
                <li>
                  <a href="/army" data-drupal-link-system-path="node/3241">Army</a>
                        </li>
                <li>
                  <a href="/navy" data-drupal-link-system-path="node/3271">Navy</a>
                        </li>
                <li>
                  <a href="/air-force" target="_self" rel="" data-drupal-link-system-path="node/3231">Air Force</a>
                        </li>
                <li>
                  <a href="/marine-corps" target="_self" rel="" data-drupal-link-system-path="node/3256">Marine Corps</a>
                        </li>
                <li>
                  <a href="/coast-guard" target="_self" rel="" data-drupal-link-system-path="node/3251">Coast Guard</a>
                        </li>
                <li>
                  <a href="/space-force" target="_self" rel="" data-drupal-link-system-path="node/221226">Space Force</a>
                        </li>
                <li>
                  <a href="/podcasts" target="_self" data-drupal-link-system-path="node/308881">Military Podcasts</a>
                        </li>
                <li>
                  <a href="/daily-news/opinion" target="_self" rel="" data-drupal-link-system-path="node/99241">Opinion</a>
                        </li>
                <li>
                  <a href="https://www.military.com/video" target="_self" rel="">Videos</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits</a>
                                <ul>
                    <li>
                  <a href="/benefits" target="_self" rel="" data-drupal-link-system-path="node/206">Benefits Home</a>
                        </li>
                <li>
                  <a href="/benefits/military-pay" target="_self" data-drupal-link-system-path="node/3671">Military Pay and Money</a>
                        </li>
                <li>
                  <a href="/education/gi-bill" target="_self" rel="" data-drupal-link-system-path="node/1206">GI Bill</a>
                        </li>
                <li>
                  <a href="/benefits/veterans-health-care" target="_self" rel="" data-drupal-link-system-path="node/3816">Veteran Health Care</a>
                        </li>
                <li>
                  <a href="/benefits/tricare" target="_self" rel="" data-drupal-link-system-path="node/3736">Tricare</a>
                        </li>
                <li>
                  <a href="/money/va-loans" target="_self" rel="" data-drupal-link-system-path="node/1941">VA Loans</a>
                        </li>
                <li>
                  <a href="/money/insurance" target="_self" rel="" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/money/retirement" target="_self" rel="" data-drupal-link-system-path="node/2511">Retirement</a>
                        </li>
                <li>
                  <a href="/benefits/veteran-benefits/the-ebenefits-program.html" target="_self" rel="" data-drupal-link-system-path="node/42065">VA eBenefits</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/veteran-jobs" target="_self" rel="" data-drupal-link-system-path="node/1746">Veteran Jobs</a>
                                <ul>
                    <li>
                  <a href="/veteran-jobs" target="_self" data-drupal-link-system-path="node/1746">Veteran Job Search</a>
                        </li>
                <li>
                  <a href="/veteran-employment-project" target="_self" data-drupal-link-system-path="node/339886">Veteran Employment Project</a>
                        </li>
                <li>
                  <a href="/veteran-employers" target="_self" rel="" data-drupal-link-system-path="node/1016">Vet Friendly Employers</a>
                        </li>
                <li>
                  <a href="/veteran-jobs/career-advice" target="_self" rel="" data-drupal-link-system-path="node/2201">Career Advice</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life</a>
                                <ul>
                    <li>
                  <a href="/military-life" target="_self" rel="" data-drupal-link-system-path="node/1791">Military Life Home</a>
                        </li>
                <li>
                  <a href="/money" target="_self" rel="" data-drupal-link-system-path="node/2401">Money</a>
                        </li>
                <li>
                  <a href="/off-duty" target="_self" rel="" data-drupal-link-system-path="node/2241">Off Duty</a>
                        </li>
                <li>
                  <a href="/military-fitness" target="_self" rel="" data-drupal-link-system-path="node/1991">Fitness</a>
                        </li>
                <li>
                  <a href="/trivia" target="_self" rel="" data-drupal-link-system-path="node/4251">Military Trivia Game</a>
                        </li>
                <li>
                  <a href="/veterans-day" target="_self" rel="" data-drupal-link-system-path="node/5206">Veterans Day</a>
                        </li>
                <li>
                  <a href="/spouse" target="_self" rel="" data-drupal-link-system-path="node/3621">Spouse &amp; Family</a>
                        </li>
                <li>
                  <a href="/deployment" target="_self" rel="" data-drupal-link-system-path="node/4226">Deployment</a>
                        </li>
                <li>
                  <a href="/history" data-drupal-link-system-path="node/4231">Military History</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts</a>
                                <ul>
                    <li>
                  <a href="/discounts" target="" rel="" data-drupal-link-system-path="node/1086">Discounts Home</a>
                        </li>
                <li>
                  <a href="/discounts/hot-deals" target="_self" data-drupal-link-system-path="taxonomy/term/1551">Featured Discounts</a>
                        </li>
                <li>
                  <a href="/veterans-day/restaurants-veterans-day-military-discounts.html" target="_self" rel="" data-drupal-link-system-path="node/49210">Veterans Day Restaurant Discounts</a>
                        </li>
                <li>
                  <a href="/discounts/dining" data-drupal-link-system-path="taxonomy/term/1486">Dining</a>
                        </li>
                <li>
                  <a href="/discounts/travel" target="_self" rel="" data-drupal-link-system-path="taxonomy/term/1626">Travel</a>
                        </li>
                <li>
                  <a href="/discounts/apparel-and-accessories" target="_self" data-drupal-link-system-path="taxonomy/term/1411">Retail</a>
                        </li>
                <li>
                  <a href="/money/insurance" data-drupal-link-system-path="node/2466">Insurance</a>
                        </li>
                <li>
                  <a href="/discounts/professional-services" data-drupal-link-system-path="taxonomy/term/1586">Services</a>
                        </li>
                <li>
                  <a href="/discounts/auto" data-drupal-link-system-path="taxonomy/term/1471">Auto</a>
                        </li>
                <li>
                  <a href="/discounts/electronics" data-drupal-link-system-path="taxonomy/term/1496">Electronics</a>
                        </li>
    
</ul>
    
                        </li>
                <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military</a>
                                <ul>
                    <li>
                  <a href="/join-armed-forces" data-drupal-link-system-path="node/2291">Join the Military Home</a>
                        </li>
                <li>
                  <a href="/join-armed-forces/asvab" data-drupal-link-system-path="node/2301">ASVAB</a>
                        </li>
                <li>
                  <a href="https://www.military.com/find-info/contact-recruiter?ESRC=mil_cta.os">Contact a Recruiter</a>
                        </li>
                <li>
                  <a href="/military-fitness" data-drupal-link-system-path="node/1991">Military Fitness</a>
                        </li>
                <li>
                  <a href="/benefits" data-drupal-link-system-path="node/206">Benefits</a>
                        </li>
    
</ul>
    
                        </li>
    
</ul>
    


    </div>
</div>

  <div class="container-m-logo">
    <div class="footer-m-logo">
      <img src="//images.military.com/themes/military/assets/images/m-logo-circle-ts200.png" width=60 height=60 class="m-logo-dtm" alt="Military.com icon">
      



      <nav class="block block--system-menu-block-military-network">
    
      <h2 class="block__title">Military.com Network</h2>
    

      




        <ul class="menu">
                            <li>
                  <a href="/air-force" target="_self" rel="" data-drupal-link-system-path="node/3231">Air Force</a>
                        </li>
                <li>
                  <a href="/army" target="_self" rel="" data-drupal-link-system-path="node/3241">Army</a>
                        </li>
                <li>
                  <a href="/coast-guard" target="_self" rel="" data-drupal-link-system-path="node/3251">Coast Guard</a>
                        </li>
                <li>
                  <a href="/marine-corps" target="_self" rel="" data-drupal-link-system-path="node/3256">Marine Corps</a>
                        </li>
                <li>
                  <a href="/national-guard" target="_self" rel="" data-drupal-link-system-path="node/3266">National Guard</a>
                        </li>
                <li>
                  <a href="/navy" target="_self" rel="" data-drupal-link-system-path="node/3271">Navy</a>
                        </li>
                <li>
                  <a href="/space-force" target="_self" rel="" data-drupal-link-system-path="node/221226">Space Force</a>
                        </li>
    
</ul>
    


        </nav>
      </div>
  </div>





      <nav class="block block--system-menu-block-social">
    
    

      




        <ul class="menu menu--social">
                            <li>
                  <a href="https://www.facebook.com/militarydotcom" class="link--facebook" aria-label="facebook">
            
<i class="icon icon-facebook"></i>
          </a>
              </li>
                <li>
                  <a href="https://instagram.com/militarydotcom" class="link--instagram" aria-label="instagram">
            
<i class="icon icon-instagram"></i>
          </a>
              </li>
                <li>
                  <a href="https://pinterest.com/Militarydotcom/" class="link--pinterest" aria-label="pinterest">
            
<i class="icon icon-pinterest"></i>
          </a>
              </li>
                <li>
                  <a href="https://www.twitter.com/militarydotcom" class="link--twitter" aria-label="twitter">
            
<i class="icon icon-twitter"></i>
          </a>
              </li>
                <li>
                  <a href="https://www.youtube.com/user/MilcomVids" class="link--youtube" aria-label="youtube">
            
<i class="icon icon-youtube"></i>
          </a>
              </li>
    
</ul>
    


        </nav>
  



      <nav class="block block--system-menu-block-about-military">
    
      <h2 class="block__title">About Military.com</h2>
    

      




        <ul class="menu">
                            <li>
                  <a href="/about-us" target="_self" rel="" data-drupal-link-system-path="node/4771">About Us &amp; Press Room</a>
                        </li>
                <li>
                  <a href="/daily-news/military-rss-feeds.html" target="_self" rel="" data-drupal-link-system-path="node/46207">RSS</a>
                        </li>
                <li>
                  <a href="/about-us/advertising-and-sales" target="_self" rel="" data-drupal-link-system-path="node/4786">Advertise with Us</a>
                        </li>
                <li>
                  <a href="https://www.parsintl.com/publications/military-com" target="_blank">Reprints &amp; Permissions</a>
                        </li>
    
</ul>
    


        </nav>
  



      <nav class="block block--system-menu-block-aux-footer-links">
    
    

      




        <ul class="menu">
                            <li>
                  <a href="/profile/member-profile-newsletter-settings.html" target="_self" rel="">Subscriptions</a>
                        </li>
                <li>
                  <a href="/about-us/user-agreement" target="_self" rel="" data-drupal-link-system-path="node/4796">User Agreement</a>
                        </li>
                <li>
                  <a href="/about-us/privacy-policy" target="_self" rel="" data-drupal-link-system-path="node/4801">Privacy Policy</a>
                        </li>
                <li>
                  <a href="/your-privacy-choices" class="footer--privacy-choices" data-drupal-link-system-path="node/394921">Your Privacy Choices</a>
                        </li>
                <li>
                  <a href="/sitemap" target="_self" rel="" data-drupal-link-system-path="node/3891">Site Map</a>
                        </li>
    
</ul>
    


        </nav>
  


  



<div class="customer-support footer--block  ">

  <div class="journalism-fund--text" style="margin-bottom: 24px">
    <a href="/military-veteran-journalism-fund">
      <h2 class="block__title">Military &amp; Veteran Journalism Fund</h2>
    </a>
  </div>

  <div class="customer-support--text">
    <h2 class="block__title">Need customer support?</h2>
    <p>Visit our Customer Support center for solutions or to contact us.</p>
  </div>
  <div class="customer-support--button">
    <a href="https://militarycom.freshdesk.com/support/tickets/new" class="button button--custom button--customer-support">Customer Support</a>
  </div>

  <script>
    window.fwSettings={
      'widget_id':8000000394
    };
    !function(){if("function"!=typeof window.FreshworksWidget){var n=function(){n.q.push(arguments)};n.q=[],window.FreshworksWidget=n}}()
    FreshworksWidget('hide', 'launcher');

  </script>
  <script type='text/javascript' src='https://widget.freshworks.com/widgets/8000000394.js' async defer></script>

</div>



  



      <div class="block block--mil-ad-block">
    
    

      <div id="adblock-623c0cfebca8c-AnchorAd"></div>
        </div>
  




      <div class="block block--copyright">
    
    

      <div class="footer--meta text--small">
	<div class="copyright">
		<span th:utext="${'&amp;copy; 2026 Military.com'}">© 2026 Military.com</span>
	</div>
	<div class="adchoices">
		<span><a href="//preferences-mgr.truste.com/?pid=monster01&amp;aid=military_PublisherSolution&amp;type=military" target="_blank" title="AdChoices" class="adchoices">AdChoices <span class="adchoices-icon"><img src="https://images.military.com/sites/default/files/media/shared/css-global/2012/05/adchoices-icon.png" alt="AdChoices icon"></span></a></span>
	</div>
</div>
        </div>
  

        </div>
</footer>
  </div>

<!-- Segment Pixel - Military ROS Visitor - DO NOT MODIFY -->
<script>
  function injectAdnxsScript(consentValue, consentString, useConsentParamOnly = false) {
    const params = new URLSearchParams({
      add: '17273707',
      t: '1'
    });

    if (useConsentParamOnly && consentValue !== null) {
      params.set('consent', consentValue);
    } else if (!useConsentParamOnly) {
      params.set('gdpr', '1');
      params.set('gdpr_consent', consentString || '');
    }

    const script = document.createElement('script');
    script.src = `https://secure.adnxs.com/seg?${params.toString()}`;
    script.type = 'text/javascript';
    document.body.appendChild(script);
  }

  if (typeof window.__tcfapi === 'function') {
    window.__tcfapi('getTCData', 2, function (tcData, success) {
      if (success && tcData) {
        const hasConsent = tcData.purpose.consents['1'] === true;
        const consentValue = hasConsent ? 1 : 0;
        const consentString = tcData.tcString || '';
        injectAdnxsScript(consentValue, consentString);
      } else {
        // TCF API available but fails
        injectAdnxsScript(0, '', true);
      }
    });
  } else if (typeof window.__gpp === 'function') {
    window.__gpp("addEventListener", (data, success) => {
      if (success && data.pingData.signalStatus === "ready") {
        // remove the listener for one time data access
        window.__gpp('removeEventListener', () => {
          if (typeof OptanonActiveGroups !== 'undefined') {
            let groups = OptanonActiveGroups.split(',');
            // if targeting cookies not allowed
            if (groups.includes('4') === false) {
              //reject
              injectAdnxsScript(0, '', true);
            } else {
              //accept
              injectAdnxsScript(1, '', true);
            }
          }
        }, data.listenerId);
      }
    });
  } else {
    // No TCF or NO GPP API available — don't send consent param
    injectAdnxsScript(0, '', true);
  }


</script>
<!-- End of Segment Pixel -->


  </div>

      
      <div id="mil-overlay"></div>
      <script src="//images05.military.com/sites/default/files/js/js_2liz6FeFEBhiB_jHcC3Lv-9j4tnHV-wpQk-UCX7gsA8.js?scope=footer&amp;delta=0&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>
<script src="https://static.addtoany.com/menu/page.js" async></script>
<script src="//images01.military.com/sites/default/files/js/js_YtlP9QINQD1BKDHgDv6QxBfV35jOO-7yifOP_XK5Jxc.js?scope=footer&amp;delta=2&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>
<script src="//images03.military.com/modules/custom/mil_base/js/ga4.js?tdib4e" type="text/plain" class="optanon-category-2"></script>
<script src="//images01.military.com/sites/default/files/js/js_v8pfQvtE2_nJQIm9_f1sazQSpLxxUng_r9LE-S_Z6lw.js?scope=footer&amp;delta=4&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>
<script src="https://assets.freshdesk.com/widget/freshwidget.js"></script>
<script src="//images01.military.com/sites/default/files/js/js_fsHKqHJLmMi9rmWyRqDNvfdLoElK7d43TXVfIo9FG9s.js?scope=footer&amp;delta=6&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>

              <!-- Extract Meta -->

      
                  <div id="addtoany_custom_responsive" class="addtoany_custom_responsive_class">
        
          <!-- AddToAny Float -->
          <div class="a2a_kit a2a_kit_size_32 a2a_floating_style a2a_default_style" style="bottom:0px; right:0px;">
              <a class="a2a_button_facebook" aria-label="Facebook"></a>
              <a class="a2a_button_x" aria-label="X"></a>
              <a class="a2a_button_pinterest" aria-label="Pinterest"></a>
              <a class="a2a_button_email" aria-label="Email"></a>
              <a class="a2a_dd" href="https://www.addtoany.com/share" aria-label="Share"></a>
          </div>
          <!-- End AddToAny -->

              
          </div>

  </body>
</html>
