

<!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:title" content="Military Daily News" />
<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:site:id" content="14692385" />
<meta name="twitter:creator" content="@militarydotcom" />
<meta name="twitter:creator:id" content="14692385" />
<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?tcw1b7"></script>
<script src="//images02.military.com/modules/contrib/google_tag/js/gtm.js?tcw1b7"></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="/feature/2026/04/06/us-military-will-risk-everything-its-own-heres-why.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="The US Military Will Risk Everything for Its Own. Here’s Why" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/feature/2026/04/06/us-military-will-risk-everything-its-own-heres-why.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-561c228abc2" 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=15DZyymO 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df" 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="" 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_tile/public/2026-04/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df 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/2000w_q95.jpeg.jpg?itok=15DZyymO 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/2000w_q95.jpeg.jpg?itok=ip3Uu6Df" 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>
    <span property="schema:name">The US Military Will Risk Everything for Its Own. Here’s Why</span>

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




<article about="/daily-news/headlines/2026/04/06/very-hostile-trump-details-airman-rescue-inside-iran.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Trump, Officials Reveal Details of ‘No-Fail’ Rescue of Downed Pilots" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/headlines/2026/04/06/very-hostile-trump-details-airman-rescue-inside-iran.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-15c6dab75d4" 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="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26096640062299.jpg?itok=ibac4zcZ 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp" 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="" title="President Donald Trump speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington, as Defense Secretary Pete Hegseth listens. (AP Photo/Mark Schiefelbein)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26096640062299.jpg?itok=ibac4zcZ 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="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26096640062299.jpg?itok=t7esVNrp" alt="" title="President Donald Trump speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington, as Defense Secretary Pete Hegseth listens. (AP Photo/Mark Schiefelbein)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Trump, Officials Reveal Details of ‘No-Fail’ Rescue of Downed Pilots</span>

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




<article about="/daily-news/2026/04/06/republican-congressman-says-us-boots-ground-may-be-required-iran.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Republican Congressman Says US Boots on Ground &#039;May Be Required&#039; in Iran" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/06/republican-congressman-says-us-boots-ground-may-be-required-iran.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-94a841dd00e" 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="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap24204622312737.jpg?itok=eJfqoSyD 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e" 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="Rep. Pat Fallon, R-Texas, questions U.S. Secret Service Director Kimberly Cheatle as she testifies before the House Oversight and Accountability Committee about the attempted assassination of former President Donald Trump at a campaign event in Pennsylvania, at the Capitol in Washington, Monday, July 22, 2024. (AP Photo/John McDonnell)" title="Rep. Pat Fallon, R-Texas, questions U.S. Secret Service Director Kimberly Cheatle as she testifies before the House Oversight and Accountability Committee about the attempted assassination of former President Donald Trump at a campaign event in Pennsylvania, at the Capitol in Washington, Monday, July 22, 2024. (AP Photo/John McDonnell)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap24204622312737.jpg?itok=eJfqoSyD 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="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap24204622312737.jpg?itok=yxF4z74e" alt="Rep. Pat Fallon, R-Texas, questions U.S. Secret Service Director Kimberly Cheatle as she testifies before the House Oversight and Accountability Committee about the attempted assassination of former President Donald Trump at a campaign event in Pennsylvania, at the Capitol in Washington, Monday, July 22, 2024. (AP Photo/John McDonnell)" title="Rep. Pat Fallon, R-Texas, questions U.S. Secret Service Director Kimberly Cheatle as she testifies before the House Oversight and Accountability Committee about the attempted assassination of former President Donald Trump at a campaign event in Pennsylvania, at the Capitol in Washington, Monday, July 22, 2024. (AP Photo/John McDonnell)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Republican Congressman Says US Boots on Ground &#039;May Be Required&#039; in Iran</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/2026/04/07/coast-guard-cutter-finds-retrieves-family-missing-7-days-micronesia.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="Coast Guard Cutter Finds, Retrieves Family Missing for 7 Days in Micronesia" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/2026/04/07/coast-guard-cutter-finds-retrieves-family-missing-7-days-micronesia.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-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--small__content">
      <span href="/daily-news/2026/04/07/coast-guard-cutter-finds-retrieves-family-missing-7-days-micronesia.html" class="text--title"><span property="schema:name">Coast Guard Cutter Finds, Retrieves Family Missing for 7 Days in Micronesia</span>
</span>
    </div>
  </a>
</div>
</article>

          
                              




<article about="/daily-news/2026/04/06/nato-disapproval-hits-record-high-new-survey-alliance-shows-cracks.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="NATO Disapproval Hits Record High in New Survey as Alliance Shows Cracks" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/2026/04/06/nato-disapproval-hits-record-high-new-survey-alliance-shows-cracks.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-ee592476105" 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/ap26021669748686.jpg?itok=33bRyAH5 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/ap26021669748686.jpg?itok=33bRyAH5 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/ap26021669748686.jpg?itok=XfcirYRW 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/ap26021669748686.jpg?itok=9m1xJXv1 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/ap26021669748686.jpg?itok=33bRyAH5" 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="President Donald Trump speaks during a meeting with NATO Secretary General Mark Rutte on the sidelines of the Annual Meeting of the World Economic Forum in Davos, Switzerland, Wednesday, Jan. 21, 2026. (AP Photo/Evan Vucci)" title="President Donald Trump speaks during a meeting with NATO Secretary General Mark Rutte on the sidelines of the Annual Meeting of the World Economic Forum in Davos, Switzerland, Wednesday, Jan. 21, 2026. (AP Photo/Evan Vucci)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26021669748686.jpg?itok=33bRyAH5 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/ap26021669748686.jpg?itok=33bRyAH5 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/ap26021669748686.jpg?itok=XfcirYRW 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/ap26021669748686.jpg?itok=9m1xJXv1 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/ap26021669748686.jpg?itok=33bRyAH5" alt="President Donald Trump speaks during a meeting with NATO Secretary General Mark Rutte on the sidelines of the Annual Meeting of the World Economic Forum in Davos, Switzerland, Wednesday, Jan. 21, 2026. (AP Photo/Evan Vucci)" title="President Donald Trump speaks during a meeting with NATO Secretary General Mark Rutte on the sidelines of the Annual Meeting of the World Economic Forum in Davos, Switzerland, Wednesday, Jan. 21, 2026. (AP Photo/Evan Vucci)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/2026/04/06/nato-disapproval-hits-record-high-new-survey-alliance-shows-cracks.html" class="text--title"><span property="schema:name">NATO Disapproval Hits Record High in New Survey as Alliance Shows Cracks</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/07/iranian-generals-relatives-lived-lavish-la-lifestyle-while-promoting-iranian-regime-propaganda.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iranian General’s Relatives Lived Lavish LA Lifestyle While Promoting ‘Iranian Regime Propaganda’" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/iranian-generals-relatives-lived-lavish-la-lifestyle-while-promoting-iranian-regime-propaganda.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--nojs blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-e625ddfeff5" class="media media--blazy media--image media--responsive">  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-usiran-soleimani-relatives-arrest-get.jpg?itok=TZsI8BKC 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/world-news-usiran-soleimani-relatives-arrest-get.jpg?itok=TZsI8BKC 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/world-news-usiran-soleimani-relatives-arrest-get.jpg?itok=RHcFMhPR 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/world-news-usiran-soleimani-relatives-arrest-get.jpg?itok=_pPQefEH 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/world-news-usiran-soleimani-relatives-arrest-get.jpg?itok=TZsI8BKC" alt="" title="An Iranian holds a picture of Qasem Soleimani, the commander of the Iranian Revolutionary Guard Corps’ Quds force, who was assassinated by the United States in 2020 while participating in a protest rally to condemn the Israeli airstrike in Lebanon that killed Hassan Nasrallah and several Hezbollah commanders in Tehran, Iran, on Sept. 28, 2024, in Tehran. (Majid Saeedi/Getty Images/TNS)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/iranian-generals-relatives-lived-lavish-la-lifestyle-while-promoting-iranian-regime-propaganda.html" class="text--title"><span property="schema:name">Iranian General’s Relatives Lived Lavish LA Lifestyle While Promoting ‘Iranian Regime Propaganda’</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/07/iraqi-officials-believe-powerful-iran-backed-militia-behind-us-journalists-abduction.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iran-Backed Iraqi Militia Says It Will Release American Journalist Shelly Kittleson" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/iraqi-officials-believe-powerful-iran-backed-militia-behind-us-journalists-abduction.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-d0c9a09e3f1" 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=I6Qon7wW 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=i9yhyRhv 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f" 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="Iraq US Kidnapped Journalist," title="U.S. journalist Shelly Kittleson poses for a cellphone photo in a cafe in Baghdad, Iraq, March 25, 2025. (AP Photo)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=I6Qon7wW 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=i9yhyRhv 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_Iraq_US_Kidnapped_Journalist%2C_8287_.jpg?itok=NNiD8f2f" alt="Iraq US Kidnapped Journalist," title="U.S. journalist Shelly Kittleson poses for a cellphone photo in a cafe in Baghdad, Iraq, March 25, 2025. (AP Photo)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/iraqi-officials-believe-powerful-iran-backed-militia-behind-us-journalists-abduction.html" class="text--title"><span property="schema:name">Iran-Backed Iraqi Militia Says It Will Release American Journalist Shelly Kittleson</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/07/un-vote-watered-down-resolution-open-strait-of-hormuz-russia-and-china-are-key.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="UN to Vote on Watered-Down Resolution to Open the Strait of Hormuz. Russia and China Are Key" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/un-vote-watered-down-resolution-open-strait-of-hormuz-russia-and-china-are-key.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-e6eb5c8313e" 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_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N 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_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N 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_United_Nations-Slavery_35108.jpg?itok=5_i6pB7L 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_United_Nations-Slavery_35108.jpg?itok=U6CGbCQJ 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_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N" 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="United Nations-Slavery" title="FILE - The United Nations logo is seen inside the 79th session of the United Nations General Assembly, Tuesday, Sept. 24, 2024. (AP Photo/Pamela Smith, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N 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_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N 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_United_Nations-Slavery_35108.jpg?itok=5_i6pB7L 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_United_Nations-Slavery_35108.jpg?itok=U6CGbCQJ 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_United_Nations-Slavery_35108.jpg?itok=GNt7YN4N" alt="United Nations-Slavery" title="FILE - The United Nations logo is seen inside the 79th session of the United Nations General Assembly, Tuesday, Sept. 24, 2024. (AP Photo/Pamela Smith, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/un-vote-watered-down-resolution-open-strait-of-hormuz-russia-and-china-are-key.html" class="text--title"><span property="schema:name">UN to Vote on Watered-Down Resolution to Open the Strait of Hormuz. Russia and China Are Key</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/05/safe-and-sound-trump-says-f-15-crew-member-rescued-us-forces-iran.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="&#039;Planned and Rehearsed&#039;: How US Rescued F-15E Crew Member in Iran" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/05/safe-and-sound-trump-says-f-15-crew-member-rescued-us-forces-iran.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-f80eb502fbe" 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=bOAR0PAl 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_Iran_War_51_61.jpg?itok=jynUZ3ro 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_Iran_War_51_61.jpg?itok=jwVlK6Vo" 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="Iran War" title="In this image provided by Sepahnews, the Iranian Revolutionary Guard&#039;s official website, wreckage is shown at what Iran&#039;s state TV claimed was the site of a downed American transport plane and two helicopters involved in a rescue operation, in Isfahan province, Iran, April, 2026. (Sepahnews via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=bOAR0PAl 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_Iran_War_51_61.jpg?itok=jynUZ3ro 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_Iran_War_51_61.jpg?itok=jwVlK6Vo" alt="Iran War" title="In this image provided by Sepahnews, the Iranian Revolutionary Guard&#039;s official website, wreckage is shown at what Iran&#039;s state TV claimed was the site of a downed American transport plane and two helicopters involved in a rescue operation, in Isfahan province, Iran, April, 2026. (Sepahnews via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/05/safe-and-sound-trump-says-f-15-crew-member-rescued-us-forces-iran.html" class="text--title"><span property="schema:name">&#039;Planned and Rehearsed&#039;: How US Rescued F-15E Crew Member in Iran</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/05/final-four-weekend-indiana-features-military-family-give-back.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Final Four Weekend in Indiana Features Military Family Give Back" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/05/final-four-weekend-indiana-features-military-family-give-back.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-3981741b435" 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/check_presentation.jpg?itok=vxybDtcz 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/check_presentation.jpg?itok=vxybDtcz 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/check_presentation.jpg?itok=un0lR6oD 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/check_presentation.jpg?itok=Z0hv1P_S 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/check_presentation.jpg?itok=vxybDtcz" 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="Eric Brewer, VP of Sales for Walmart presents $10,000 check to Rebecca Tayamen, Program Coordinator, Operation Homefront to support military families (Operation Homefront)." title="Eric Brewer, VP of Sales for Walmart presents $10,000 check to Rebecca Tayamen, Program Coordinator, Operation Homefront to support military families (Operation Homefront)." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/check_presentation.jpg?itok=vxybDtcz 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/check_presentation.jpg?itok=vxybDtcz 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/check_presentation.jpg?itok=un0lR6oD 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/check_presentation.jpg?itok=Z0hv1P_S 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/check_presentation.jpg?itok=vxybDtcz" alt="Eric Brewer, VP of Sales for Walmart presents $10,000 check to Rebecca Tayamen, Program Coordinator, Operation Homefront to support military families (Operation Homefront)." title="Eric Brewer, VP of Sales for Walmart presents $10,000 check to Rebecca Tayamen, Program Coordinator, Operation Homefront to support military families (Operation Homefront)." typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/05/final-four-weekend-indiana-features-military-family-give-back.html" class="text--title"><span property="schema:name">Final Four Weekend in Indiana Features Military Family Give Back</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/05/homeschooling-military-families.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Military Families Are Homeschooling at Twice the Rate—Why?" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/05/homeschooling-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-97acfc8360f" 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/stem_homeschooling.jpg?itok=md1HHsHo 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/stem_homeschooling.jpg?itok=md1HHsHo 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/stem_homeschooling.jpg?itok=Ht0MlQJJ 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/stem_homeschooling.jpg?itok=thosCd3R 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/stem_homeschooling.jpg?itok=md1HHsHo" 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="Alexia Foster Fort Hood Child and Youth Services Science, Technology, Engineering, and Mathematics, or STEM, program homeschool student, learns airway management, from Cpt. Deborah Kappel, student registered nurse anesthesia, Carl R. Darnall Army Medical Center during a hospital tour March 20. (Photo by Rodney Jackson, DVIDS)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/stem_homeschooling.jpg?itok=md1HHsHo 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/stem_homeschooling.jpg?itok=md1HHsHo 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/stem_homeschooling.jpg?itok=Ht0MlQJJ 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/stem_homeschooling.jpg?itok=thosCd3R 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/stem_homeschooling.jpg?itok=md1HHsHo" alt="" title="Alexia Foster Fort Hood Child and Youth Services Science, Technology, Engineering, and Mathematics, or STEM, program homeschool student, learns airway management, from Cpt. Deborah Kappel, student registered nurse anesthesia, Carl R. Darnall Army Medical Center during a hospital tour March 20. (Photo by Rodney Jackson, DVIDS)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/05/homeschooling-military-families.html" class="text--title"><span property="schema:name">Military Families Are Homeschooling at Twice the Rate—Why?</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/07/us-soldier-trying-halt-wifes-deportation-after-she-was-detained-louisiana-military-base.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="US Soldier Trying to Halt Wife&#039;s Deportation After She Was Detained on Louisiana Military Base" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/us-soldier-trying-halt-wifes-deportation-after-she-was-detained-louisiana-military-base.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-6d30678d2fa" 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=zuYACB17 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/picture.png.jpg?itok=aRX8De7D 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/picture.png.jpg?itok=O_7WDaQ-" 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 photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" title="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=zuYACB17 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/picture.png.jpg?itok=aRX8De7D 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/picture.png.jpg?itok=O_7WDaQ-" alt="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" title="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/us-soldier-trying-halt-wifes-deportation-after-she-was-detained-louisiana-military-base.html" class="text--title"><span property="schema:name">US Soldier Trying to Halt Wife&#039;s Deportation After She Was Detained on Louisiana Military Base</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/07/former-australian-soldier-charged-committing-5-war-crime-murders-afghanistan.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Former Australian Soldier Charged with Committing 5 War Crime Murders in Afghanistan" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/former-australian-soldier-charged-committing-5-war-crime-murders-afghanistan.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-44e8688eb84" 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=wrRgmCoj 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=I76IbPIX 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI" 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 Afghanistan War Crimes" title="FILE - Ben Roberts-Smith arrives at the Federal Court in Sydney, Australia, on June 9, 2021. (AP Photo/Rick Rycroft, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=wrRgmCoj 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=I76IbPIX 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_Australia_Afghanistan_War_Crimes_672_5.jpg?itok=vgNAWqgI" alt="Australia Afghanistan War Crimes" title="FILE - Ben Roberts-Smith arrives at the Federal Court in Sydney, Australia, on June 9, 2021. (AP Photo/Rick Rycroft, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/former-australian-soldier-charged-committing-5-war-crime-murders-afghanistan.html" class="text--title"><span property="schema:name">Former Australian Soldier Charged with Committing 5 War Crime Murders in Afghanistan</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/07/iran-calls-human-chains-protect-power-plants-trumps-deadline-nears.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iran Calls for Human Chains to Protect Power Plants as Trump&#039;s Deadline Nears" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/07/iran-calls-human-chains-protect-power-plants-trumps-deadline-nears.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-ace666bba76" 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_Iran_War_569_9.jpg?itok=ezn2fZc1 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_Iran_War_569_9.jpg?itok=ezn2fZc1 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_Iran_War_569_9.jpg?itok=3yQOiOO9 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_Iran_War_569_9.jpg?itok=-5KFdDgT 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_Iran_War_569_9.jpg?itok=ezn2fZc1" 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="Iran War" title="A first responder leaves the site of a strike that, according to a security official at the scene, destroyed half of the Khorasaniha Synagogue and nearby residential buildings in Tehran, Iran, Tuesday, April 7, 2026. (AP Photo/Francisco Seco)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_War_569_9.jpg?itok=ezn2fZc1 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_Iran_War_569_9.jpg?itok=ezn2fZc1 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_Iran_War_569_9.jpg?itok=3yQOiOO9 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_Iran_War_569_9.jpg?itok=-5KFdDgT 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_Iran_War_569_9.jpg?itok=ezn2fZc1" alt="Iran War" title="A first responder leaves the site of a strike that, according to a security official at the scene, destroyed half of the Khorasaniha Synagogue and nearby residential buildings in Tehran, Iran, Tuesday, April 7, 2026. (AP Photo/Francisco Seco)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/07/iran-calls-human-chains-protect-power-plants-trumps-deadline-nears.html" class="text--title"><span property="schema:name">Iran Calls for Human Chains to Protect Power Plants as Trump&#039;s Deadline Nears</span>
</span>
      </a>
</div>
</article>

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




<article about="/benefits/spouse-and-family-benefits/every-benefit-available-surviving-military-spouses-2026.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Every Benefit Available to Surviving Military Spouses in 2026" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/benefits/spouse-and-family-benefits/every-benefit-available-surviving-military-spouses-2026.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-f2c1da5fa0d" 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/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM 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/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM 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/military%20gold%20star%20flag%201800.jpg?itok=NNjb67RM 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/military%20gold%20star%20flag%201800.jpg?itok=IyqOtMHP 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/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM" 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="Three flags against the sky, one with a gold star." title="Members of the Puerto Rico military community gathered at Soldiers Plaza on April 5, 2024, to participate in a Gold Star Spouses Day ceremony to honor the surviving loved ones of military service members who died while serving their country. (Jose Lopez/Army)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM 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/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM 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/military%20gold%20star%20flag%201800.jpg?itok=NNjb67RM 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/military%20gold%20star%20flag%201800.jpg?itok=IyqOtMHP 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/military%20gold%20star%20flag%201800.jpg?itok=xcXEY0XM" alt="Three flags against the sky, one with a gold star." title="Members of the Puerto Rico military community gathered at Soldiers Plaza on April 5, 2024, to participate in a Gold Star Spouses Day ceremony to honor the surviving loved ones of military service members who died while serving their country. (Jose Lopez/Army)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/benefits/spouse-and-family-benefits/every-benefit-available-surviving-military-spouses-2026.html" class="text--title"><span property="schema:name">Every Benefit Available to Surviving Military Spouses in 2026</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/06/artemis-ii-kicks-off-trip-around-moon-after-surpassing-apollo-13s-distance-record.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Artemis II Kicks Off Trip Around the Moon After Surpassing Apollo 13’s Distance Record" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/06/artemis-ii-kicks-off-trip-around-moon-after-surpassing-apollo-13s-distance-record.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-3c783ad8566" 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_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY 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_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY 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_NASA_Artemis_Moonshot_32818.jpg?itok=7NtB8wRH 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_NASA_Artemis_Moonshot_32818.jpg?itok=WRzyGzdx 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_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY" 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="NASA Artemis Moonshot" title="In this image from video provided by NASA, the Moon is seen from a camera outside the Orion Spacecraft after the Artemis II astronauts surpassed the farthest distance ever traveled by humans from Earth, Monday, April 6, 2026. (NASA via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY 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_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY 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_NASA_Artemis_Moonshot_32818.jpg?itok=7NtB8wRH 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_NASA_Artemis_Moonshot_32818.jpg?itok=WRzyGzdx 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_NASA_Artemis_Moonshot_32818.jpg?itok=5W17s7kY" alt="NASA Artemis Moonshot" title="In this image from video provided by NASA, the Moon is seen from a camera outside the Orion Spacecraft after the Artemis II astronauts surpassed the farthest distance ever traveled by humans from Earth, Monday, April 6, 2026. (NASA via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/06/artemis-ii-kicks-off-trip-around-moon-after-surpassing-apollo-13s-distance-record.html" class="text--title"><span property="schema:name">Artemis II Kicks Off Trip Around the Moon After Surpassing Apollo 13’s Distance Record</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/06/major-step-new-law-would-prep-va-fda-approved-psychedelic-treatments.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="&#039;Major Step&#039;: New Law Would Prep VA for FDA-Approved Psychedelic Treatments" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/06/major-step-new-law-would-prep-va-fda-approved-psychedelic-treatments.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-1102635ea0b" 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/shutterstock_1727914180.jpg?itok=J_7Thp46 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/shutterstock_1727914180.jpg?itok=J_7Thp46 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/shutterstock_1727914180.jpg?itok=bDwEvGrd 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/shutterstock_1727914180.jpg?itok=LcLG_m6x 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/shutterstock_1727914180.jpg?itok=J_7Thp46" 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="New bipartisan Senate legislation would require the Department of Veterans Affairs (VA) to responsibly evaluate and implement emerging mental health treatments for veterans, including psychedelics. (Shutterstock)" title="New bipartisan Senate legislation would require the Department of Veterans Affairs (VA) to responsibly evaluate and implement emerging mental health treatments for veterans, including psychedelics. (Shutterstock)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/shutterstock_1727914180.jpg?itok=J_7Thp46 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/shutterstock_1727914180.jpg?itok=J_7Thp46 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/shutterstock_1727914180.jpg?itok=bDwEvGrd 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/shutterstock_1727914180.jpg?itok=LcLG_m6x 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/shutterstock_1727914180.jpg?itok=J_7Thp46" alt="New bipartisan Senate legislation would require the Department of Veterans Affairs (VA) to responsibly evaluate and implement emerging mental health treatments for veterans, including psychedelics. (Shutterstock)" title="New bipartisan Senate legislation would require the Department of Veterans Affairs (VA) to responsibly evaluate and implement emerging mental health treatments for veterans, including psychedelics. (Shutterstock)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/06/major-step-new-law-would-prep-va-fda-approved-psychedelic-treatments.html" class="text--title"><span property="schema:name">&#039;Major Step&#039;: New Law Would Prep VA for FDA-Approved Psychedelic Treatments</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="/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 class="col-sm-4">          




<article about="/feature/2026/01/16/questions-mount-over-who-student-veterans-of-america-serves-and-how-it-spends.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Questions Mount Over Who Student Veterans of America Serves And How It Spends" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/01/16/questions-mount-over-who-student-veterans-of-america-serves-and-how-it-spends.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-3ab1767c388" 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-01/image_13.png.jpg?itok=7REzflSC 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-01/image_13.png.jpg?itok=7REzflSC 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-01/image_13.png.jpg?itok=g_RKNcz_ 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-01/image_13.png.jpg?itok=6cuNf7nF 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-01/image_13.png.jpg?itok=7REzflSC" 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="SVA table at Illinois State University. Source: DVIDS" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-01/image_13.png.jpg?itok=7REzflSC 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-01/image_13.png.jpg?itok=7REzflSC 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-01/image_13.png.jpg?itok=g_RKNcz_ 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-01/image_13.png.jpg?itok=6cuNf7nF 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-01/image_13.png.jpg?itok=7REzflSC" alt="" title="SVA table at Illinois State University. Source: DVIDS" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/01/16/questions-mount-over-who-student-veterans-of-america-serves-and-how-it-spends.html" class="text--title"><span property="schema:name">Questions Mount Over Who Student Veterans of America Serves And How It Spends</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/05/long-mideast-war-could-take-away-support-ukraine-zelenskyy-tells-ap.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="A Long Mideast War Could Take Away From Support for Ukraine, Zelenskyy Tells the AP" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/05/long-mideast-war-could-take-away-support-ukraine-zelenskyy-tells-ap.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-efe7739def6" 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_Syria_Ukraine_81823.jpg?itok=E2ch91xG 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_Syria_Ukraine_81823.jpg?itok=E2ch91xG 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_Syria_Ukraine_81823.jpg?itok=2HJO9uwl 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_Syria_Ukraine_81823.jpg?itok=mTOiARsK 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_Syria_Ukraine_81823.jpg?itok=E2ch91xG" 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="Syrian President Ahmad al-Sharaa, right, shakes hands with Ukrainian President Volodymyr Zelenskyy" title="Syrian President Ahmad al-Sharaa, right, shakes hands with Ukrainian President Volodymyr Zelenskyy before a meeting at the People&#039;s Palace in Damascus, Syria, Sunday, April 5, 2026. (AP Photo/Ghaith Alsayed)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Syria_Ukraine_81823.jpg?itok=E2ch91xG 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_Syria_Ukraine_81823.jpg?itok=E2ch91xG 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_Syria_Ukraine_81823.jpg?itok=2HJO9uwl 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_Syria_Ukraine_81823.jpg?itok=mTOiARsK 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_Syria_Ukraine_81823.jpg?itok=E2ch91xG" alt="Syrian President Ahmad al-Sharaa, right, shakes hands with Ukrainian President Volodymyr Zelenskyy" title="Syrian President Ahmad al-Sharaa, right, shakes hands with Ukrainian President Volodymyr Zelenskyy before a meeting at the People&#039;s Palace in Damascus, Syria, Sunday, April 5, 2026. (AP Photo/Ghaith Alsayed)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/05/long-mideast-war-could-take-away-support-ukraine-zelenskyy-tells-ap.html" class="text--title"><span property="schema:name">A Long Mideast War Could Take Away From Support for Ukraine, Zelenskyy Tells the AP</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/03/26/zelenskyy-visits-saudi-arabia-ukraine-provides-expertise-against-iranian-drones.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Zelenskyy Visits Saudi Arabia as Ukraine Provides Expertise Against Iranian Drones" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/03/26/zelenskyy-visits-saudi-arabia-ukraine-provides-expertise-against-iranian-drones.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-6ca964155f8" 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=4p8WPZNc 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=06sy2LV- 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH" 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 Ukrainian drone pilot reaches for a reconnaissance drone in the Luhansk Region, Ukraine" title="A Ukrainian drone pilot reaches for a reconnaissance drone in the Luhansk Region, Ukraine, Saturday, Aug. 19, 2023. The drone unit&#039;s task is to destroy Russia&#039;s heavy machinery, armored vehicles and infantry. (AP Photo/Bram Janssen)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=4p8WPZNc 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=06sy2LV- 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/2023-09/ApNewsroom_Russia_Ukraine_War_Drones_19210.jpg?itok=eB1WlbAH" alt="A Ukrainian drone pilot reaches for a reconnaissance drone in the Luhansk Region, Ukraine" title="A Ukrainian drone pilot reaches for a reconnaissance drone in the Luhansk Region, Ukraine, Saturday, Aug. 19, 2023. The drone unit&#039;s task is to destroy Russia&#039;s heavy machinery, armored vehicles and infantry. (AP Photo/Bram Janssen)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/03/26/zelenskyy-visits-saudi-arabia-ukraine-provides-expertise-against-iranian-drones.html" class="text--title"><span property="schema:name">Zelenskyy Visits Saudi Arabia as Ukraine Provides Expertise Against Iranian Drones</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/03/26/iran-war-deflects-attention-ukraine-emboldened-russia-starts-spring-offensive.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iran War Deflects Attention from Ukraine as an Emboldened Russia Starts Spring Offensive" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/03/26/iran-war-deflects-attention-ukraine-emboldened-russia-starts-spring-offensive.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-199fd7a4202" 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=4FGWHT86 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=jvoQYzgb 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ" 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 Russia Ukraine War" title="Rescue workers try to put out a fire of a residential building burning after a Russian drone attack on Zaporizhzhia, Ukraine, Tuesday, March 24, 2026. (AP Photo/Kateryna Klochko)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=4FGWHT86 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=jvoQYzgb 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-03/ApNewsroom_APTOPIX_Russia_Ukraine_War_81841.jpg?itok=oH4TMykJ" alt="APTOPIX Russia Ukraine War" title="Rescue workers try to put out a fire of a residential building burning after a Russian drone attack on Zaporizhzhia, Ukraine, Tuesday, March 24, 2026. (AP Photo/Kateryna Klochko)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/03/26/iran-war-deflects-attention-ukraine-emboldened-russia-starts-spring-offensive.html" class="text--title"><span property="schema:name">Iran War Deflects Attention from Ukraine as an Emboldened Russia Starts Spring Offensive</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="/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>

                




<article about="/daily-news/2026/03/10/north-korean-leaders-sister-criticized-us-south-korea-proceeding-joint-drills.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="North Korean Leader&#039;s Sister Criticized US-South Korea for Proceeding with Joint Drills" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/10/north-korean-leaders-sister-criticized-us-south-korea-proceeding-joint-drills.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-c11b3ad4dbc" 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=ZBvuWI4i 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=YmWkqbpr 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e" 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 North Korean military guard post" title="A North Korean military guard post, top, and a South Korean post, bottom, are seen from Paju, South Korea, near the border with North Korea, Thursday, Feb. 26, 2026. (AP Photo/Ahn Young-joon)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=ZBvuWI4i 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=YmWkqbpr 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/ApNewsroom_North_Korea_Party_Congress_33581.jpg?itok=rkHNjw_e" alt="A North Korean military guard post" title="A North Korean military guard post, top, and a South Korean post, bottom, are seen from Paju, South Korea, near the border with North Korea, Thursday, Feb. 26, 2026. (AP Photo/Ahn Young-joon)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">North Korean Leader&#039;s Sister Criticized US-South Korea for Proceeding with Joint Drills</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The powerful sister of North Korean leader Kim Jong Un criticized the United States and South Korea for proceeding with their...</p>



              </div>

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

                




<article about="/feature/2026/03/09/unmanned-naval-fleet-bolsters-marine-corps-force-design-pacific.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Unmanned Naval Fleet Bolsters Marine Corps Force Design in Pacific" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/03/09/unmanned-naval-fleet-bolsters-marine-corps-force-design-pacific.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-73a5840bc5d" 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-03/alpv_clb12.jpg?itok=AkHnm0Ly 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-03/alpv_clb12.jpg?itok=AkHnm0Ly 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-03/alpv_clb12.jpg?itok=c1eFHqY0 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-03/alpv_clb12.jpg?itok=Al8Kcq8s 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-03/alpv_clb12.jpg?itok=AkHnm0Ly" 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. Marine Corps Cpl. Gilbert Elliott, an engineer equipment mechanic with Combat Logistics Battalion 12, 3d Marine Logistics Group, kneels for a portrait while on an Autonomous Low-Profile Vessel off the coast of Naval Base Point Loma, Calif., on June 13, 2024. (U.S. Marine Corps photo by Sergeant Patrick King)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/alpv_clb12.jpg?itok=AkHnm0Ly 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-03/alpv_clb12.jpg?itok=AkHnm0Ly 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-03/alpv_clb12.jpg?itok=c1eFHqY0 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-03/alpv_clb12.jpg?itok=Al8Kcq8s 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-03/alpv_clb12.jpg?itok=AkHnm0Ly" alt="" title="U.S. Marine Corps Cpl. Gilbert Elliott, an engineer equipment mechanic with Combat Logistics Battalion 12, 3d Marine Logistics Group, kneels for a portrait while on an Autonomous Low-Profile Vessel off the coast of Naval Base Point Loma, Calif., on June 13, 2024. (U.S. Marine Corps photo by Sergeant Patrick King)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Unmanned Naval Fleet Bolsters Marine Corps Force Design in Pacific</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Blue Water Autonomy&#039;s Liberty Class autonomous ships are poised to revolutionize Marine Corps Expeditionary Advanced Base...</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/03/31/army-expands-combat-patch-eligibility-modern-deployments-redefine-combat-service.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Army Expands Combat Patch Eligibility as Modern Deployments Redefine Combat Service" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/03/31/army-expands-combat-patch-eligibility-modern-deployments-redefine-combat-service.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-8f2f6e4d207" 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-03/image_60.png.jpg?itok=ozK6X0PA 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-03/image_60.png.jpg?itok=ozK6X0PA 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-03/image_60.png.jpg?itok=sHlvJ3T9 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-03/image_60.png.jpg?itok=Kaev4iTu 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-03/image_60.png.jpg?itok=ozK6X0PA" 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 Soldiers assigned to Task Force Nighthawk, 4th Combat Aviation Brigade, 4th Infantry Division receive their Shoulder Sleeve Insignia – Military Operations in Hostile Conditions (SSI- MOHC) during a patching ceremony at Erbil Air Base, Iraq on Oct. 23, 2025. U.S. Army photo by Capt. Bernard Jenkins Jr. Source: DVIDS." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/image_60.png.jpg?itok=ozK6X0PA 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-03/image_60.png.jpg?itok=ozK6X0PA 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-03/image_60.png.jpg?itok=sHlvJ3T9 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-03/image_60.png.jpg?itok=Kaev4iTu 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-03/image_60.png.jpg?itok=ozK6X0PA" alt="" title="U.S. Army Soldiers assigned to Task Force Nighthawk, 4th Combat Aviation Brigade, 4th Infantry Division receive their Shoulder Sleeve Insignia – Military Operations in Hostile Conditions (SSI- MOHC) during a patching ceremony at Erbil Air Base, Iraq on Oct. 23, 2025. U.S. Army photo by Capt. Bernard Jenkins Jr. 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">Army Expands Combat Patch Eligibility as Modern Deployments Redefine Combat Service</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The Army expanded combat patch eligibility, recognizing soldiers in modern deployments where risk is high even without...</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/29/25-years-nephew-remembers-pow-navy-pilot-dieter-dengler-who-escaped-vietnam.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="25 Years: Nephew Remembers P.O.W. Navy Pilot Dieter Dengler Who Escaped Vietnam" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/03/29/25-years-nephew-remembers-pow-navy-pilot-dieter-dengler-who-escaped-vietnam.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-d75576207b3" 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/dieter.jpg?itok=XLsFZAl3 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/dieter.jpg?itok=XLsFZAl3 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/dieter.jpg?itok=TYB24M45 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/dieter.jpg?itok=fGP8O9D- 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/dieter.jpg?itok=XLsFZAl3" 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="Dieter Dengler is photographed after being rescued following his escape from Vietnam, weighing 93 pounds. (Matthäus Dengler)" title="Dieter Dengler is photographed after being rescued following his escape from Vietnam, weighing 93 pounds. (Matthäus Dengler)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-03/dieter.jpg?itok=XLsFZAl3 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/dieter.jpg?itok=XLsFZAl3 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/dieter.jpg?itok=TYB24M45 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/dieter.jpg?itok=fGP8O9D- 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/dieter.jpg?itok=XLsFZAl3" alt="Dieter Dengler is photographed after being rescued following his escape from Vietnam, weighing 93 pounds. (Matthäus Dengler)" title="Dieter Dengler is photographed after being rescued following his escape from Vietnam, weighing 93 pounds. (Matthäus Dengler)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">25 Years: Nephew Remembers P.O.W. Navy Pilot Dieter Dengler Who Escaped Vietnam</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Dieter Dengler, who died about 25 years ago, was &quot;bigger than life.&quot;</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">Trump Offers More Details of Dramatic Rescue of Airman in Iran</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/trump-offers-more-details-of-dramatic-rescue-of-airman-iran" class="b-link">    <div data-b-token="b-7ce43f58f2b" 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_10514.jpg?itok=JD89uy2_ 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_10514.jpg?itok=JD89uy2_ 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_10514.jpg?itok=WvAZhYRG 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_10514.jpg?itok=zx4aM3lY 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_10514.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_10514.jpg?itok=JD89uy2_ 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_10514.jpg?itok=JD89uy2_ 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_10514.jpg?itok=WvAZhYRG 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_10514.jpg?itok=zx4aM3lY 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_10514.jpg?itok=JD89uy2_" 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>Trump offers more details of dramatic rescue of airman in Iran.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Former Australian Soldier Charged with Committing Five War Crime Murders in Afghanistan</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/former-australian-soldier-charged-committing-five-war-crime-murders-afghanistan" class="b-link">    <div data-b-token="b-ad0fca240ef" 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_10511.jpg?itok=X4Gqg4nZ 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_10511.jpg?itok=X4Gqg4nZ 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_10511.jpg?itok=d8I2aVZE 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_10511.jpg?itok=EWCGZBLz 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_10511.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_10511.jpg?itok=X4Gqg4nZ 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_10511.jpg?itok=X4Gqg4nZ 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_10511.jpg?itok=d8I2aVZE 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_10511.jpg?itok=EWCGZBLz 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_10511.jpg?itok=X4Gqg4nZ" 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>Former Australian soldier charged with committing five war crime murders in Afghanistan.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Artemis II Breaks Apollo 13’s Distance Record</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/artemis-ii-breaks-apollo-13s-distance-record" class="b-link">    <div data-b-token="b-9ddf5ac0761" 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_10510.jpg?itok=NPyoDaeD 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_10510.jpg?itok=NPyoDaeD 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_10510.jpg?itok=XisnQbfF 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_10510.jpg?itok=1Nx5PDyE 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_10510.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_10510.jpg?itok=NPyoDaeD 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_10510.jpg?itok=NPyoDaeD 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_10510.jpg?itok=XisnQbfF 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_10510.jpg?itok=1Nx5PDyE 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_10510.jpg?itok=NPyoDaeD" 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>Artemis II breaks Apollo 13’s distance record as humans travel farther from Earth than ever before.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Ukrainians Find Joy in Releasing Bats Rescued from War</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/ukrainians-find-joy-releasing-bats-rescued-war" class="b-link">    <div data-b-token="b-5356d6209e4" 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="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10508.jpg?itok=lMYc7jvO 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/brightcove/videos/images/posters/image_10508.jpg?itok=lMYc7jvO 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10508.jpg?itok=4Vkpr04M 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10508.jpg?itok=a0UHlxBT 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/brightcove/videos/images/posters/image_10508.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="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10508.jpg?itok=lMYc7jvO 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10508.jpg?itok=lMYc7jvO 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/brightcove/videos/images/posters/image_10508.jpg?itok=4Vkpr04M 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10508.jpg?itok=a0UHlxBT 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="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10508.jpg?itok=lMYc7jvO" 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>After a harsh winter, Ukrainians find joy in releasing bats rescued from war.</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/07/us-soldier-trying-halt-wifes-deportation-after-she-was-detained-louisiana-military-base.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="US Soldier Trying to Halt Wife&#039;s Deportation After She Was Detained on Louisiana Military Base" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/07/us-soldier-trying-halt-wifes-deportation-after-she-was-detained-louisiana-military-base.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-6d30678d2fa" 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=zuYACB17 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/picture.png.jpg?itok=aRX8De7D 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/picture.png.jpg?itok=O_7WDaQ-" 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 photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" title="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=O_7WDaQ- 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/picture.png.jpg?itok=zuYACB17 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/picture.png.jpg?itok=aRX8De7D 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/picture.png.jpg?itok=O_7WDaQ-" alt="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling via AP)" title="This photo provided by Jen Rickling shows U.S. Army staff sergeant, Matthew Blank, left, and his wife, Annie Ramos, posing for a photo while celebrating their wedding, in March, 2026, in Houston. (Jen Rickling 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">US Soldier Trying to Halt Wife&#039;s Deportation After She Was Detained on Louisiana Military Base</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A U.S. Army staff sergeant is trying to halt his wife&#039;s deportation after she was detained inside a Louisiana military base...</p>



              </div>

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

                




<article about="/daily-news/2026/04/03/monkey-business-pentagon-sued-us-taxpayer-funded-primate-labs.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Monkey Business&#039;: Pentagon Sued for US Taxpayer-Funded Primate Labs" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/03/monkey-business-pentagon-sued-us-taxpayer-funded-primate-labs.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-f61b08239fe" 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=T1nvUrHH 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/ap20114555792608.jpg?itok=834GBCbU 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/ap20114555792608.jpg?itok=62XfJyvg" 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="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" title="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=T1nvUrHH 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/ap20114555792608.jpg?itok=834GBCbU 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/ap20114555792608.jpg?itok=62XfJyvg" alt="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" title="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Monkey Business&#039;: Pentagon Sued for US Taxpayer-Funded Primate Labs</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>“It&#039;s troubling that agencies like the Department of Defense continue to fund animal labs overseas when we&#039;ve seen how...</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/03/monkey-business-pentagon-sued-us-taxpayer-funded-primate-labs.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Monkey Business&#039;: Pentagon Sued for US Taxpayer-Funded Primate Labs" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/03/monkey-business-pentagon-sued-us-taxpayer-funded-primate-labs.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-f61b08239fe" 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=T1nvUrHH 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/ap20114555792608.jpg?itok=834GBCbU 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/ap20114555792608.jpg?itok=62XfJyvg" 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="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" title="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=62XfJyvg 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/ap20114555792608.jpg?itok=T1nvUrHH 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/ap20114555792608.jpg?itok=834GBCbU 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/ap20114555792608.jpg?itok=62XfJyvg" alt="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" title="Monkeys eat tomatoes distributed by social workers near a Hindu temple during nationwide lockdown in Gauhati, India, Thursday, April 23, 2020. (AP Photo/Anupam Nath)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Monkey Business&#039;: Pentagon Sued for US Taxpayer-Funded Primate Labs</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>“It&#039;s troubling that agencies like the Department of Defense continue to fund animal labs overseas when we&#039;ve seen how...</p>



              </div>

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

                




<article about="/daily-news/2026/04/01/however-long-it-takes-uss-bush-gets-underway-iran-conflict-rages.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;However Long It Takes&#039;: USS Bush Gets Underway as Iran Conflict Rages" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/01/however-long-it-takes-uss-bush-gets-underway-iran-conflict-rages.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-cc5d89e11f3" 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/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e 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/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e 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/trib_uss_bush_deployment_1800.jpg?itok=L43vVSz1 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/trib_uss_bush_deployment_1800.jpg?itok=FlqEcHL1 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/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e" 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="Loved ones make hearts with their hands for their sailor on board while the USS George H.W. Bush (CVN 77) prepares to pull away from Naval Station Norfolk for deployment." title="Loved ones make hearts with their hands for their sailor on board while the USS George H.W. Bush (CVN 77) prepares to pull away from Naval Station Norfolk for deployment on Tuesday, March 31, 2026. (Kendall Warner/The Virginian-Pilot/TNS)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e 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/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e 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/trib_uss_bush_deployment_1800.jpg?itok=L43vVSz1 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/trib_uss_bush_deployment_1800.jpg?itok=FlqEcHL1 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/trib_uss_bush_deployment_1800.jpg?itok=CyU-nN3e" alt="Loved ones make hearts with their hands for their sailor on board while the USS George H.W. Bush (CVN 77) prepares to pull away from Naval Station Norfolk for deployment." title="Loved ones make hearts with their hands for their sailor on board while the USS George H.W. Bush (CVN 77) prepares to pull away from Naval Station Norfolk for deployment on Tuesday, March 31, 2026. (Kendall Warner/The Virginian-Pilot/TNS)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;However Long It Takes&#039;: USS Bush Gets Underway as Iran Conflict Rages</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The USS George H.W. Bush got underway from Naval Station Norfolk as the conflict in the Middle East continues to rage.</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/headlines/2026/04/06/very-hostile-trump-details-airman-rescue-inside-iran.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Trump, Officials Reveal Details of ‘No-Fail’ Rescue of Downed Pilots" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/headlines/2026/04/06/very-hostile-trump-details-airman-rescue-inside-iran.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-b73da8e39c0" 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/ap26096640062299.jpg?itok=DMEjOzqA 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/ap26096640062299.jpg?itok=DMEjOzqA 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/ap26096640062299.jpg?itok=6_QJa1f9 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/ap26096640062299.jpg?itok=cwaQvMWp 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/ap26096640062299.jpg?itok=DMEjOzqA" 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="President Donald Trump speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington, as Defense Secretary Pete Hegseth listens. (AP Photo/Mark Schiefelbein)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26096640062299.jpg?itok=DMEjOzqA 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/ap26096640062299.jpg?itok=DMEjOzqA 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/ap26096640062299.jpg?itok=6_QJa1f9 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/ap26096640062299.jpg?itok=cwaQvMWp 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/ap26096640062299.jpg?itok=DMEjOzqA" alt="" title="President Donald Trump speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington, as Defense Secretary Pete Hegseth listens. (AP Photo/Mark Schiefelbein)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Trump, Officials Reveal Details of ‘No-Fail’ Rescue of Downed Pilots</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A downed U.S. airman evaded capture for nearly two days inside Iran before a rescue mission under fire pulled him out.</p>



              </div>

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

                




<article about="/daily-news/2026/04/05/safe-and-sound-trump-says-f-15-crew-member-rescued-us-forces-iran.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Planned and Rehearsed&#039;: How US Rescued F-15E Crew Member in Iran" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/05/safe-and-sound-trump-says-f-15-crew-member-rescued-us-forces-iran.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-f80eb502fbe" 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=bOAR0PAl 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_Iran_War_51_61.jpg?itok=jynUZ3ro 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_Iran_War_51_61.jpg?itok=jwVlK6Vo" 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="Iran War" title="In this image provided by Sepahnews, the Iranian Revolutionary Guard&#039;s official website, wreckage is shown at what Iran&#039;s state TV claimed was the site of a downed American transport plane and two helicopters involved in a rescue operation, in Isfahan province, Iran, April, 2026. (Sepahnews via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=jwVlK6Vo 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_Iran_War_51_61.jpg?itok=bOAR0PAl 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_Iran_War_51_61.jpg?itok=jynUZ3ro 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_Iran_War_51_61.jpg?itok=jwVlK6Vo" alt="Iran War" title="In this image provided by Sepahnews, the Iranian Revolutionary Guard&#039;s official website, wreckage is shown at what Iran&#039;s state TV claimed was the site of a downed American transport plane and two helicopters involved in a rescue operation, in Isfahan province, Iran, April, 2026. (Sepahnews 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">&#039;Planned and Rehearsed&#039;: How US Rescued F-15E Crew Member in Iran</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Trump called the rescues of two F-15 crew members &quot;one of the most daring in U.S. history.&quot;</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 Space Center in Dec. 2025 to connect government, academia and industry and...</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/06/medal-of-honor-recipient-dakota-meyer-completes-marine-recon-training.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Medal of Honor Recipient Dakota Meyer Completes Marine Recon Training" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/06/medal-of-honor-recipient-dakota-meyer-completes-marine-recon-training.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-5d7b040b799" 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/9599183.jpg?itok=C9Osd5Jq 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/9599183.jpg?itok=C9Osd5Jq 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/9599183.jpg?itok=sICdNLwJ 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/9599183.jpg?itok=Ahy84xso 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/9599183.jpg?itok=C9Osd5Jq" 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. Marine Corps Sgt. Maj. Carlos A. Ruiz, the 20th Sergeant Major of the Marine Corps, visits Marine Corps Base Camp Pendleton, California, April 3, 2026. During Ruiz’s visit, he attended the 2-26 Basic Reconnaissance Course (BRC) graduation, where Medal of Honor recipient Sgt. Dakota Meyer graduated as one of the BRC 2-26 graduates. (U.S. Marine Corps photo by GySgt Jordan E. Gilbert)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9599183.jpg?itok=C9Osd5Jq 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/9599183.jpg?itok=C9Osd5Jq 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/9599183.jpg?itok=sICdNLwJ 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/9599183.jpg?itok=Ahy84xso 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/9599183.jpg?itok=C9Osd5Jq" alt="" title="U.S. Marine Corps Sgt. Maj. Carlos A. Ruiz, the 20th Sergeant Major of the Marine Corps, visits Marine Corps Base Camp Pendleton, California, April 3, 2026. During Ruiz’s visit, he attended the 2-26 Basic Reconnaissance Course (BRC) graduation, where Medal of Honor recipient Sgt. Dakota Meyer graduated as one of the BRC 2-26 graduates. (U.S. Marine Corps photo by GySgt Jordan E. Gilbert)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Medal of Honor Recipient Dakota Meyer Completes Marine Recon Training</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Sgt. Dakota Meyer, who received the Medal of Honor for heroism in Afghanistan, completed the Marine Corps&#039; Basic...</p>



              </div>

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

                




<article about="/daily-news/investigations-and-features/2026/04/01/organization-honors-fallen-marines-building-nature-retreat-veterans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Organization Honors Fallen Marines by Building Nature Retreat for Veterans " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/01/organization-honors-fallen-marines-building-nature-retreat-veterans.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-dda236dbe03" 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/jared_1__0.jpg?itok=1SSEbmDp 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/jared_1__0.jpg?itok=1SSEbmDp 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/jared_1__0.jpg?itok=6o0-FBmy 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/jared_1__0.jpg?itok=sf-AhJwn 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/jared_1__0.jpg?itok=1SSEbmDp" 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="Marine Corps Lance Cpl. Jared Schmitz. (thefreedom13.org)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/jared_1__0.jpg?itok=1SSEbmDp 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/jared_1__0.jpg?itok=1SSEbmDp 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/jared_1__0.jpg?itok=6o0-FBmy 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/jared_1__0.jpg?itok=sf-AhJwn 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/jared_1__0.jpg?itok=1SSEbmDp" alt="" title="Marine Corps Lance Cpl. Jared Schmitz. (thefreedom13.org)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Organization Honors Fallen Marines by Building Nature Retreat for Veterans </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Following the devasting loss of his son and 12 other Marines, Mark Schmitz vowed to do something to honor their sacrifice. He...</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?tcw1b7" 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>
