

<!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:description" content="Daily updates of everything that you need know about what is going on in the military community and abroad including military gear and equipment, breaking news, international news and more." />
<meta name="twitter:title" content="Military Daily News" />
<meta name="twitter:site" content="@militarydotcom" />
<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",
            "description": "Daily U.S. military news updates including military gear and equipment, breaking news, international news and more.",
            "breadcrumb": {
                "@type": "BreadcrumbList",
                "itemListElement": [
                    {
                        "@type": "ListItem",
                        "position": 1,
                        "name": "Home",
                        "item": "https://www.military.com/"
                    }
                ]
            }
        },
        {
            "@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?tdalkc"></script>
<script src="//images02.military.com/modules/contrib/google_tag/js/gtm.js?tdalkc"></script>
<script src="//images03.military.com/sites/default/files/js/js_W8s75bCU1gJd-Jlj02ACLSaDRHBFi8XBsLI4FSqlCow.js?scope=header&amp;delta=4&amp;language=en&amp;theme=military&amp;include=eJxtUWtuwyAMvlAcjlQ54BBvgBGYdunpRyqqtFX_mO9lgQ06p4JpNzjAvBZJOi0B77t51IFtwFoD16cXBN2AWcK-cghPWiRypcEKrgPdaMmTlUImiqOS-F4mL-IDXRS98b188hl_8O9djFPkcMGmmzlAq1Q6c6xf9EipzT_1i5MLX9HuL87e03GhUjfOz54FKxmPD3xj50mrGedsJUZJh8WK5diV2F-ASB4TXl_0pioJgO1beqiVfYKWT8NiCKACaJV7IIVH5C3RqkqkArXlLEVPZyPsez358VtwZboB6FaIYCXUVqiCciB3Bo89Qb_SSkv6KUfkl4dn9HSySn0q1xH0mf8B41bjKA"></script>

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

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



<div class="page">
      

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






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

      



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






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

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



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

      




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

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


        </nav>
  


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






    
    

      



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

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

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

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

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

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

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

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








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



<div class="search-box">

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

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

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

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




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

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


    </div>
</div>



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



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



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

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


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



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

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


        </div>
          </div>

      
  



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

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

  



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

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


    
  </section>

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



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

      

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

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


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



                          
    
  



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

      
        </div>
  




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

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


      </div>
  
  



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

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





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

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






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





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






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




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




<article about="/daily-news/2026/04/09/which-americans-will-be-automatically-registered-military-draft-and-when.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Which Americans Will Be Automatically Registered for Military Draft, and When?" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/09/which-americans-will-be-automatically-registered-military-draft-and-when.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-6839403939b" 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/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=NZIv6NjS 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/8618394.jpg?itok=S-itnN9v" 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="Command Sgt. Maj. John Brown, senior enlisted advisor of the 38th Air Defense Artillery Brigade, provides a rousing speech to the Soldiers of Bravo Battery before departing on a deployment to the United States Central Command area of responsibility on August 19, 2024 at Kadena Air Force Base, Japan. (U.S. Army photos by Capt. Frank Spatt)" title="Command Sgt. Maj. John Brown, senior enlisted advisor of the 38th Air Defense Artillery Brigade, provides a rousing speech to the Soldiers of Bravo Battery before departing on a deployment to the United States Central Command area of responsibility on August 19, 2024 at Kadena Air Force Base, Japan. (U.S. Army photos by Capt. Frank Spatt)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=S-itnN9v 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/8618394.jpg?itok=NZIv6NjS 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/8618394.jpg?itok=S-itnN9v" alt="Command Sgt. Maj. John Brown, senior enlisted advisor of the 38th Air Defense Artillery Brigade, provides a rousing speech to the Soldiers of Bravo Battery before departing on a deployment to the United States Central Command area of responsibility on August 19, 2024 at Kadena Air Force Base, Japan. (U.S. Army photos by Capt. Frank Spatt)" title="Command Sgt. Maj. John Brown, senior enlisted advisor of the 38th Air Defense Artillery Brigade, provides a rousing speech to the Soldiers of Bravo Battery before departing on a deployment to the United States Central Command area of responsibility on August 19, 2024 at Kadena Air Force Base, Japan. (U.S. Army photos by Capt. Frank Spatt)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Which Americans Will Be Automatically Registered for Military Draft, and When?</span>

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




<article about="/daily-news/2026/04/09/irans-10-point-plan-us-negotiations-amid-israels-bombardment-of-lebanon.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Iran&#039;s 10-Point Plan, US Negotiations Amid Israel&#039;s Bombardment of Lebanon" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/09/irans-10-point-plan-us-negotiations-amid-israels-bombardment-of-lebanon.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-3f37f0743c5" 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/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=z8PoIGdP 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/ap26099415569929.jpg?itok=KsbDgUkG" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="A government supporter weeps during a mourning ceremony marking the 40th day since the death of Iranian Supreme Leader Ayatollah Ali Khamenei, who was killed in the U.S. and Israel strikes in Tehran, Iran, Thursday, April 9, 2026. (AP Photo/Vahid Salemi)" title="A government supporter weeps during a mourning ceremony marking the 40th day since the death of Iranian Supreme Leader Ayatollah Ali Khamenei, who was killed in the U.S. and Israel strikes in Tehran, Iran, Thursday, April 9, 2026. (AP Photo/Vahid Salemi)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=KsbDgUkG 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/ap26099415569929.jpg?itok=z8PoIGdP 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/ap26099415569929.jpg?itok=KsbDgUkG" alt="A government supporter weeps during a mourning ceremony marking the 40th day since the death of Iranian Supreme Leader Ayatollah Ali Khamenei, who was killed in the U.S. and Israel strikes in Tehran, Iran, Thursday, April 9, 2026. (AP Photo/Vahid Salemi)" title="A government supporter weeps during a mourning ceremony marking the 40th day since the death of Iranian Supreme Leader Ayatollah Ali Khamenei, who was killed in the U.S. and Israel strikes in Tehran, Iran, Thursday, April 9, 2026. (AP Photo/Vahid Salemi)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Iran&#039;s 10-Point Plan, US Negotiations Amid Israel&#039;s Bombardment of Lebanon</span>

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




<article about="/daily-news/2026/04/09/pentagon-white-house-push-back-alleged-remarks-made-pope-vatican.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Pentagon, White House Push Back on Alleged Remarks Made to Pope, Vatican" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/09/pentagon-white-house-push-back-alleged-remarks-made-pope-vatican.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-8e272e61a95" 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/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=GLGCgOVj 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/ap26094723096142.jpg?itok=cgCQQ3x7" 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="Pope Leo XIV leads the Easter Vigil inside St. Peter&#039;s Basilica at The Vatican, Saturday, April 4, 2026. (AP Photo/Andrew Medichini)" title="Pope Leo XIV leads the Easter Vigil inside St. Peter&#039;s Basilica at The Vatican, Saturday, April 4, 2026. (AP Photo/Andrew Medichini)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=cgCQQ3x7 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/ap26094723096142.jpg?itok=GLGCgOVj 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/ap26094723096142.jpg?itok=cgCQQ3x7" alt="Pope Leo XIV leads the Easter Vigil inside St. Peter&#039;s Basilica at The Vatican, Saturday, April 4, 2026. (AP Photo/Andrew Medichini)" title="Pope Leo XIV leads the Easter Vigil inside St. Peter&#039;s Basilica at The Vatican, Saturday, April 4, 2026. (AP Photo/Andrew Medichini)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Pentagon, White House Push Back on Alleged Remarks Made to Pope, Vatican</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/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-small">
  
    <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--small">
  <a href="/daily-news/2026/03/11/could-us-bring-back-draft-who-would-be-called-first-and-who-qualifies.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-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--small__content">
      <span href="/daily-news/2026/03/11/could-us-bring-back-draft-who-would-be-called-first-and-who-qualifies.html" 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>
  </a>
</div>
</article>

          
                              




<article about="/daily-news/investigations-and-features/2026/04/09/950000-gallons-of-coffee-and-2-million-energy-drinks-fueled-epic-fury.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="950,000 Gallons of Coffee and 2 Million Energy Drinks Fueled Epic Fury" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/investigations-and-features/2026/04/09/950000-gallons-of-coffee-and-2-million-energy-drinks-fueled-epic-fury.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-78dd512de4f" 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/7376151.jpg?itok=xD-tZUdl 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/7376151.jpg?itok=xD-tZUdl 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/7376151.jpg?itok=5Rk83fNw 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/7376151.jpg?itok=xzqKmclT 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/7376151.jpg?itok=xD-tZUdl" 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. Air Force 2nd Lt. Kristina Dean, 81st Training Wing Public Affairs officer, and Airman 1st Class Trenten Walters, 81st Training Wing public affairs specialist, examine the ingredients on an energy drink label at the Base Exchange on Keesler Air Force Base, Mississippi, Aug. 16, 2022. (U.S. Air Force photo by Airman 1st Class Elizabeth Davis)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/7376151.jpg?itok=xD-tZUdl 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/7376151.jpg?itok=xD-tZUdl 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/7376151.jpg?itok=5Rk83fNw 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/7376151.jpg?itok=xzqKmclT 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/7376151.jpg?itok=xD-tZUdl" alt="" title="U.S. Air Force 2nd Lt. Kristina Dean, 81st Training Wing Public Affairs officer, and Airman 1st Class Trenten Walters, 81st Training Wing public affairs specialist, examine the ingredients on an energy drink label at the Base Exchange on Keesler Air Force Base, Mississippi, Aug. 16, 2022. (U.S. Air Force photo by Airman 1st Class Elizabeth Davis)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/investigations-and-features/2026/04/09/950000-gallons-of-coffee-and-2-million-energy-drinks-fueled-epic-fury.html" class="text--title"><span property="schema:name">950,000 Gallons of Coffee and 2 Million Energy Drinks Fueled Epic Fury</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/10/pope-amplifies-criticism-of-iran-war-and-says-god-does-not-bless-any-conflict.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Pope Amplifies Criticism of Iran War and Says ‘God Does Not Bless Any Conflict&#039;" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/pope-amplifies-criticism-of-iran-war-and-says-god-does-not-bless-any-conflict.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-86a432ea095" 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_Vatican_Pope_75723.jpg?itok=tiTDpiPn 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_Vatican_Pope_75723.jpg?itok=tiTDpiPn 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_Vatican_Pope_75723.jpg?itok=qUsPf1S5 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_Vatican_Pope_75723.jpg?itok=93OqeihA 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_Vatican_Pope_75723.jpg?itok=tiTDpiPn" 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="Vatican Pope" title="Pope Leo XIV blesses faithful as he starts his weekly general audience in St. Peter&#039;s Square, at the Vatican, Wednesday, April 8, 2026. (AP Photo/Gregorio Borgia)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Vatican_Pope_75723.jpg?itok=tiTDpiPn 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_Vatican_Pope_75723.jpg?itok=tiTDpiPn 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_Vatican_Pope_75723.jpg?itok=qUsPf1S5 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_Vatican_Pope_75723.jpg?itok=93OqeihA 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_Vatican_Pope_75723.jpg?itok=tiTDpiPn" alt="Vatican Pope" title="Pope Leo XIV blesses faithful as he starts his weekly general audience in St. Peter&#039;s Square, at the Vatican, Wednesday, April 8, 2026. (AP Photo/Gregorio Borgia)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/pope-amplifies-criticism-of-iran-war-and-says-god-does-not-bless-any-conflict.html" class="text--title"><span property="schema:name">Pope Amplifies Criticism of Iran War and Says ‘God Does Not Bless Any Conflict&#039;</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/10/venezuelas-gold-rush-could-pull-us-companies-illicit-gang-run-networks.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Venezuela’s Gold Rush Could Pull US Companies Into Illicit, Gang-Run Networks" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/venezuelas-gold-rush-could-pull-us-companies-illicit-gang-run-networks.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-9e9a4be0956" 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/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI 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/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI 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/oped-usvenezuela-mining-investment-get.jpg?itok=o-Wigs5e 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/oped-usvenezuela-mining-investment-get.jpg?itok=Q56rFn-b 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/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI" 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 man works at an artisanal gold mine in the town of El Dorado, Venezuela, on May 25, 2025. El Dorado is part of a region christened by the government as the Arco Minero del Orinoco, which has large mineral reserves and is criss-crossed by illegal mining and organized crime, and where trade with gold dust is common currency. (Pedro Mattey/AFP/Getty Images/TNS)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI 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/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI 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/oped-usvenezuela-mining-investment-get.jpg?itok=o-Wigs5e 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/oped-usvenezuela-mining-investment-get.jpg?itok=Q56rFn-b 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/oped-usvenezuela-mining-investment-get.jpg?itok=BnJvhliI" alt="" title="A man works at an artisanal gold mine in the town of El Dorado, Venezuela, on May 25, 2025. El Dorado is part of a region christened by the government as the Arco Minero del Orinoco, which has large mineral reserves and is criss-crossed by illegal mining and organized crime, and where trade with gold dust is common currency. (Pedro Mattey/AFP/Getty Images/TNS)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/venezuelas-gold-rush-could-pull-us-companies-illicit-gang-run-networks.html" class="text--title"><span property="schema:name">Venezuela’s Gold Rush Could Pull US Companies Into Illicit, Gang-Run Networks</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/10/vance-warns-iran-not-play-us-he-departs-negotiations-aimed-ending-their-war.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Vance Warns Iran Not to ‘Play’ the US as He Departs for Negotiations Aimed at Ending Their War" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/vance-warns-iran-not-play-us-he-departs-negotiations-aimed-ending-their-war.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-2b1ba7f2f3e" 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=J1oZu1bu 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=Ss2DZ6OV 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM" 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 Iran US Vance" title="Vice President JD Vance walks to speak with the Press before boarding Air Force Two, Friday, April 10, 2026, at Joint Base Andrews, Md., for expected departure to Pakistan, for talks on Iran. (AP Photo/Jacquelyn Martin, pool)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=J1oZu1bu 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=Ss2DZ6OV 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_APTOPIX_Iran_US_Vance_77855.jpg?itok=L9mvf9cM" alt="APTOPIX Iran US Vance" title="Vice President JD Vance walks to speak with the Press before boarding Air Force Two, Friday, April 10, 2026, at Joint Base Andrews, Md., for expected departure to Pakistan, for talks on Iran. (AP Photo/Jacquelyn Martin, pool)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/vance-warns-iran-not-play-us-he-departs-negotiations-aimed-ending-their-war.html" class="text--title"><span property="schema:name">Vance Warns Iran Not to ‘Play’ the US as He Departs for Negotiations Aimed at Ending Their War</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/09/family-mourns-marine-veteran-41-killed-gunfire-while-driving.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Family Mourns Marine Veteran, 41, Killed by Gunfire While Driving" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/09/family-mourns-marine-veteran-41-killed-gunfire-while-driving.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-c05844700ff" 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=9084r8jG 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/garcia_1_.jpg?itok=zuR6GWCb 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/garcia_1_.jpg?itok=T9n8dNuo" 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 veteran Michael Garcia. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=9084r8jG 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/garcia_1_.jpg?itok=zuR6GWCb 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/garcia_1_.jpg?itok=T9n8dNuo" alt="" title="Marine Corps veteran Michael Garcia. (Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/09/family-mourns-marine-veteran-41-killed-gunfire-while-driving.html" class="text--title"><span property="schema:name">Family Mourns Marine Veteran, 41, Killed by Gunfire While Driving</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/08/fight-valor-vietnam-veteran-battles-get-war-hero-medal-of-honor.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Fight for Valor: Vietnam Veteran Battles to Get War Hero Medal of Honor" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/08/fight-valor-vietnam-veteran-battles-get-war-hero-medal-of-honor.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-c1197e57a1c" 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=z-hMS7RQ 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/cuddy_1_.jpg?itok=mE2dWjDH 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/cuddy_1_.jpg?itok=sVnZ05nT" 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 veteran David Zartarian holds a photo of Col. Francis &amp;quot;Frank&amp;quot; Cuddy. (Nora Lewis/University of Rhode Island)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=z-hMS7RQ 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/cuddy_1_.jpg?itok=mE2dWjDH 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/cuddy_1_.jpg?itok=sVnZ05nT" alt="" title="Army veteran David Zartarian holds a photo of Col. Francis &amp;quot;Frank&amp;quot; Cuddy. (Nora Lewis/University of Rhode Island)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/08/fight-valor-vietnam-veteran-battles-get-war-hero-medal-of-honor.html" class="text--title"><span property="schema:name">Fight for Valor: Vietnam Veteran Battles to Get War Hero Medal of Honor</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/10/gaza-marks-6-months-of-ceasefire-may-offer-lessons-iran-war.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Gaza Marks 6 Months of a Ceasefire that May Offer Lessons for the Iran War" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/gaza-marks-6-months-of-ceasefire-may-offer-lessons-iran-war.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-ddd62ab4f15" 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=jxJmwfVz 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=SOuSKTNc 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU" 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 Israel Palestinians Gaza" title="Palestinians walk through a flooded area in a temporary tent camp after heavy rainfall in Gaza City, Thursday, March 26, 2026 (AP Photo/Jehad Alshrafi)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=jxJmwfVz 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=SOuSKTNc 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_APTOPIX_Israel_Palestinians_Gaza_81610.jpg?itok=-lJlVfPU" alt="APTOPIX Israel Palestinians Gaza" title="Palestinians walk through a flooded area in a temporary tent camp after heavy rainfall in Gaza City, Thursday, March 26, 2026 (AP Photo/Jehad Alshrafi)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/gaza-marks-6-months-of-ceasefire-may-offer-lessons-iran-war.html" class="text--title"><span property="schema:name">Gaza Marks 6 Months of a Ceasefire that May Offer Lessons for the Iran War</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/10/artemis-ii-astronauts-describe-their-lunar-voyage-surreal-and-profound-ahead-of-earth-return.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Artemis II Astronauts Describe Their Lunar Voyage as Surreal and Profound Ahead of Earth Return" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/artemis-ii-astronauts-describe-their-lunar-voyage-surreal-and-profound-ahead-of-earth-return.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-382186dccf6" 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_183_4.jpg?itok=AAyPrv9Y 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_183_4.jpg?itok=AAyPrv9Y 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_183_4.jpg?itok=16-zCwE_ 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_183_4.jpg?itok=2td9bEto 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_183_4.jpg?itok=AAyPrv9Y" 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="This image provided by NASA, the Artemis II crew captured this view the Moon and Earth are shown on 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_183_4.jpg?itok=AAyPrv9Y 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_183_4.jpg?itok=AAyPrv9Y 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_183_4.jpg?itok=16-zCwE_ 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_183_4.jpg?itok=2td9bEto 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_183_4.jpg?itok=AAyPrv9Y" alt="NASA Artemis Moonshot" title="This image provided by NASA, the Artemis II crew captured this view the Moon and Earth are shown on Monday, April 6, 2026. (NASA via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/artemis-ii-astronauts-describe-their-lunar-voyage-surreal-and-profound-ahead-of-earth-return.html" class="text--title"><span property="schema:name">Artemis II Astronauts Describe Their Lunar Voyage as Surreal and Profound Ahead of Earth Return</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/10/federal-judge-finds-pentagon-violating-court-order-restore-access-reporters.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Federal Judge Finds Pentagon Is Violating Court Order to Restore Access to Reporters" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/10/federal-judge-finds-pentagon-violating-court-order-restore-access-reporters.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-a0a31c12b59" 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_Trump__67_2.jpg?itok=8TXeG5iq 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_Trump__67_2.jpg?itok=8TXeG5iq 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_Trump__67_2.jpg?itok=BuJ2qKyT 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_Trump__67_2.jpg?itok=-mBeI3TI 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_Trump__67_2.jpg?itok=8TXeG5iq" 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="Trump" title="President Donald Trump, accompanied by Defense Secretary Pete Hegseth and Chairman of the Joint Chiefs of Staff Gen. Dan Caine, speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Trump__67_2.jpg?itok=8TXeG5iq 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_Trump__67_2.jpg?itok=8TXeG5iq 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_Trump__67_2.jpg?itok=BuJ2qKyT 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_Trump__67_2.jpg?itok=-mBeI3TI 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_Trump__67_2.jpg?itok=8TXeG5iq" alt="Trump" title="President Donald Trump, accompanied by Defense Secretary Pete Hegseth and Chairman of the Joint Chiefs of Staff Gen. Dan Caine, speaks with reporters in the James Brady Press Briefing Room at the White House, Monday, April 6, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/10/federal-judge-finds-pentagon-violating-court-order-restore-access-reporters.html" class="text--title"><span property="schema:name">Federal Judge Finds Pentagon Is Violating Court Order to Restore Access to Reporters</span>
</span>
      </a>
</div>
</article>

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




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


  
          
  


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

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

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/06/us-military-will-risk-everything-its-own-heres-why.html" class="text--title"><span property="schema:name">The US Military Will Risk Everything for Its Own. Here’s Why</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/09/cadets-recount-how-rotc-leader-and-members-subdued-gunman-who-targeted-them-old-dominion.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Cadets Recount How ROTC Leader and Members Subdued Gunman Who Targeted Them at Old Dominion" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/09/cadets-recount-how-rotc-leader-and-members-subdued-gunman-who-targeted-them-old-dominion.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-75ea00eb12d" 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_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X 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_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X 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_University_Shooting_Virginia_14891.jpg?itok=TTiMbTUn 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_University_Shooting_Virginia_14891.jpg?itok=LeSI9rio 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_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X" 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="University Shooting Virginia" title="FILE - Police arrive outside Old Dominion University&#039;s campus after reports of an active shooter on March 12, 2026 in Norfolk, Va. (Kendall Warner/The Virginian-Pilot via AP, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X 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_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X 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_University_Shooting_Virginia_14891.jpg?itok=TTiMbTUn 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_University_Shooting_Virginia_14891.jpg?itok=LeSI9rio 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_University_Shooting_Virginia_14891.jpg?itok=kuDwAk5X" alt="University Shooting Virginia" title="FILE - Police arrive outside Old Dominion University&#039;s campus after reports of an active shooter on March 12, 2026 in Norfolk, Va. (Kendall Warner/The Virginian-Pilot via AP, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/09/cadets-recount-how-rotc-leader-and-members-subdued-gunman-who-targeted-them-old-dominion.html" class="text--title"><span property="schema:name">Cadets Recount How ROTC Leader and Members Subdued Gunman Who Targeted Them at Old Dominion</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/09/rat-mars-nasa-responds-viral-image-old-conspiracies-resurface.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Rat on Mars? NASA Responds to Viral Image as Old Conspiracies Resurface" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/09/rat-mars-nasa-responds-viral-image-old-conspiracies-resurface.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-1b71069bfda" 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=AscoWCoM 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=p7RM7UlC 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L" 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 Curiosity rover driving across the Martian surface. (Photo credit: NASA/JPL-Caltech)" title="NASA Curiosity Rover on Mars Surface" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=AscoWCoM 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=p7RM7UlC 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/images-assets.nasa_.govimagepia14165pia14165orig.jpg?itok=lDahP74L" alt="NASA Curiosity rover driving across the Martian surface. (Photo credit: NASA/JPL-Caltech)" title="NASA Curiosity Rover on Mars Surface" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/09/rat-mars-nasa-responds-viral-image-old-conspiracies-resurface.html" class="text--title"><span property="schema:name">Rat on Mars? NASA Responds to Viral Image as Old Conspiracies Resurface</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/05/targeted-military-child-care-reforms.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Military Child Care Costs Could Drop Under New NDAA Changes" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/05/targeted-military-child-care-reforms.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-9f5eff5f072" 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/new_cdc_0_0.jpg?itok=n1iSxjCe 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/new_cdc_0_0.jpg?itok=n1iSxjCe 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/new_cdc_0_0.jpg?itok=-hP5mR12 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/new_cdc_0_0.jpg?itok=1Vp3ajcv 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/new_cdc_0_0.jpg?itok=n1iSxjCe" 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="Educators and children of Naval Base Kitsap&#039;s Child &amp;amp; Youth Programs, break ground on the Cascade Child Development Center (CDC) Jan. 14, 2026. The CDC, scheduled to open in 2027, will be a state-of-the-art facility that will accommodate up to 92 children, increasing the capacity of high-quality childcare for military families stationed in the region. (Naval Base Kitsap courtesy photo, DVIDS)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/new_cdc_0_0.jpg?itok=n1iSxjCe 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/new_cdc_0_0.jpg?itok=n1iSxjCe 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/new_cdc_0_0.jpg?itok=-hP5mR12 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/new_cdc_0_0.jpg?itok=1Vp3ajcv 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/new_cdc_0_0.jpg?itok=n1iSxjCe" alt="" title="Educators and children of Naval Base Kitsap&#039;s Child &amp;amp; Youth Programs, break ground on the Cascade Child Development Center (CDC) Jan. 14, 2026. The CDC, scheduled to open in 2027, will be a state-of-the-art facility that will accommodate up to 92 children, increasing the capacity of high-quality childcare for military families stationed in the region. (Naval Base Kitsap courtesy photo, DVIDS)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/05/targeted-military-child-care-reforms.html" class="text--title"><span property="schema:name">Military Child Care Costs Could Drop Under New NDAA Changes</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/04/06/us-military-will-risk-everything-its-own-heres-why.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="The US Military Will Risk Everything for Its Own. Here’s Why" class="hidden"></span>


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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





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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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





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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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





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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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





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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

  </div>

              

      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        





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






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




<figure>  






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

  </picture>

    
  

              </div>

  </figure>

              </div>

    </a>
    </div>

                        





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






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




<div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                   <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Texas Senator Ted Cruz Speaks with Artemis Crew</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/texas-senator-ted-cruz-speaks-artemis-crew" class="b-link">    <div data-b-token="b-19d3dc2ede9" 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_10521.jpg?itok=_z_N17N- 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_10521.jpg?itok=_z_N17N- 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_10521.jpg?itok=9jHtFWdw 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_10521.jpg?itok=LgzsMtOh 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_10521.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_10521.jpg?itok=_z_N17N- 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_10521.jpg?itok=_z_N17N- 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_10521.jpg?itok=9jHtFWdw 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_10521.jpg?itok=LgzsMtOh 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_10521.jpg?itok=_z_N17N-" 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>Texas Senator Ted Cruz speaks with Artemis crew as they prepare to enter Earth&#039;s atmosphere.</p>



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


</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Kentucky Service Member Killed in Plane Crash Brought Home</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/kentucky-service-member-killed-plane-crash-brought-home" class="b-link">    <div data-b-token="b-a607481657d" 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_10520.jpg?itok=qKGRuT6h 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_10520.jpg?itok=qKGRuT6h 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_10520.jpg?itok=v2f4NJsY 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_10520.jpg?itok=izD8eEEk 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_10520.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_10520.jpg?itok=qKGRuT6h 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_10520.jpg?itok=qKGRuT6h 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_10520.jpg?itok=v2f4NJsY 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_10520.jpg?itok=izD8eEEk 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_10520.jpg?itok=qKGRuT6h" 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>Kentucky service member killed in plane crash brought home for funeral.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Russia&#039;s Internet Crackdown Leads to a Spring of Growing Discontent</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/russias-internet-crackdown-leads-spring-of-growing-discontent" class="b-link">    <div data-b-token="b-0842a44a130" 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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10519.jpg?itok=ZcP52gGD 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/brightcove/videos/images/posters/image_10519.jpg?itok=ZcP52gGD 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10519.jpg?itok=p4mjSYsP 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10519.jpg?itok=nkDnTH-f 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/brightcove/videos/images/posters/image_10519.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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10519.jpg?itok=ZcP52gGD 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10519.jpg?itok=ZcP52gGD 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/brightcove/videos/images/posters/image_10519.jpg?itok=p4mjSYsP 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10519.jpg?itok=nkDnTH-f 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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10519.jpg?itok=ZcP52gGD" 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>Russia&#039;s internet crackdown leads to a spring of growing discontent.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Israeli Military Releases Video of Strikes on Southern Lebanon</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/israeli-military-releases-video-of-strikes-southern-lebanon" class="b-link">    <div data-b-token="b-bd680297aba" 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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10517.jpg?itok=xbDmYZ_N 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/brightcove/videos/images/posters/image_10517.jpg?itok=xbDmYZ_N 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10517.jpg?itok=ZH8sYwC4 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10517.jpg?itok=9w_MRO88 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/brightcove/videos/images/posters/image_10517.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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10517.jpg?itok=xbDmYZ_N 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10517.jpg?itok=xbDmYZ_N 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/brightcove/videos/images/posters/image_10517.jpg?itok=ZH8sYwC4 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10517.jpg?itok=9w_MRO88 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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10517.jpg?itok=xbDmYZ_N" 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>Israeli military releases video of strikes on southern Lebanon.</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/09/army-veteran-charged-sharing-classified-details-of-elite-commando-unit.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="An Army Veteran Is Charged with Sharing Classified Details of an Elite Commando Unit" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/09/army-veteran-charged-sharing-classified-details-of-elite-commando-unit.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






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

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

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">An Army Veteran Is Charged with Sharing Classified Details of an Elite Commando Unit</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>An Army veteran has been charged with sharing classified information about an elite commando unit with a journalist, which...</p>



              </div>

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

                




<article about="/daily-news/investigations-and-features/2026/04/08/wheelchair-basketball-team-provides-purpose-disabled-veterans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Wheelchair Basketball Team Provides Purpose for Disabled Veterans " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/08/wheelchair-basketball-team-provides-purpose-disabled-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-ea90a0222cb" 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/wheelchair_basketball_2_.jpg?itok=I4femo0g 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/wheelchair_basketball_2_.jpg?itok=I4femo0g 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/wheelchair_basketball_2_.jpg?itok=8C9pzSb1 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/wheelchair_basketball_2_.jpg?itok=58FLH66i 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/wheelchair_basketball_2_.jpg?itok=I4femo0g" 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="Team Air Force wheelchair basketball athlete Joshua Oshua fights for a rebound against Team Special Operations Command athlete Master Sgt. Scotty Roessler during a preliminary game against Team SOCOM at the Department of Defense Warrior Games at the U.S. Air Force Academy, Colorado Springs, Colorado, June 3, 2018. (U.S. Air Force)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/wheelchair_basketball_2_.jpg?itok=I4femo0g 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/wheelchair_basketball_2_.jpg?itok=I4femo0g 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/wheelchair_basketball_2_.jpg?itok=8C9pzSb1 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/wheelchair_basketball_2_.jpg?itok=58FLH66i 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/wheelchair_basketball_2_.jpg?itok=I4femo0g" alt="" title="Team Air Force wheelchair basketball athlete Joshua Oshua fights for a rebound against Team Special Operations Command athlete Master Sgt. Scotty Roessler during a preliminary game against Team SOCOM at the Department of Defense Warrior Games at the U.S. Air Force Academy, Colorado Springs, Colorado, June 3, 2018. (U.S. 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">Wheelchair Basketball Team Provides Purpose for Disabled Veterans </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Searching for hope and direction after catastrophic injuries, a pair of Colorado veterans found their new community on the...</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/08/military-exchange-shoppers-donated-25m-army-air-force-2025.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Military Exchange Shoppers Donated $2.5M to Army, Air Force in 2025" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/08/military-exchange-shoppers-donated-25m-army-air-force-2025.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-94a75667343" 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=VSrnxrY5 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/54009397163_1852964e1f_c.jpg?itok=QzhzNLGe 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/54009397163_1852964e1f_c.jpg?itok=kXhR996-" 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 soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" title="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=VSrnxrY5 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/54009397163_1852964e1f_c.jpg?itok=QzhzNLGe 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/54009397163_1852964e1f_c.jpg?itok=kXhR996-" alt="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" title="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Military Exchange Shoppers Donated $2.5M to Army, Air Force in 2025</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Military Exchange shoppers have donated more than $11.7 million dating back to 2017.</p>



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




<article about="/daily-news/2026/04/08/military-exchange-shoppers-donated-25m-army-air-force-2025.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Military Exchange Shoppers Donated $2.5M to Army, Air Force in 2025" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/08/military-exchange-shoppers-donated-25m-army-air-force-2025.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-94a75667343" 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=VSrnxrY5 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/54009397163_1852964e1f_c.jpg?itok=QzhzNLGe 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/54009397163_1852964e1f_c.jpg?itok=kXhR996-" 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 soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" title="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=kXhR996- 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/54009397163_1852964e1f_c.jpg?itok=VSrnxrY5 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/54009397163_1852964e1f_c.jpg?itok=QzhzNLGe 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/54009397163_1852964e1f_c.jpg?itok=kXhR996-" alt="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" title="A soldier visits a troop store on USAG Bavaria to make purchases at a self-checkout register. (Army &amp;amp; Air Force Exchange Service Public Affairs)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Military Exchange Shoppers Donated $2.5M to Army, Air Force in 2025</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Military Exchange shoppers have donated more than $11.7 million dating back to 2017.</p>



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




<article about="/daily-news/investigations-and-features/2026/04/09/family-mourns-marine-veteran-41-killed-gunfire-while-driving.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Family Mourns Marine Veteran, 41, Killed by Gunfire While Driving" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/09/family-mourns-marine-veteran-41-killed-gunfire-while-driving.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-c05844700ff" 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=9084r8jG 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/garcia_1_.jpg?itok=zuR6GWCb 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/garcia_1_.jpg?itok=T9n8dNuo" 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 veteran Michael Garcia. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=T9n8dNuo 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/garcia_1_.jpg?itok=9084r8jG 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/garcia_1_.jpg?itok=zuR6GWCb 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/garcia_1_.jpg?itok=T9n8dNuo" alt="" title="Marine Corps veteran Michael Garcia. (Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Family Mourns Marine Veteran, 41, Killed by Gunfire While Driving</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Marine Corps veteran Michael Garcia&#039;s senseless killing in New Orleans has loved ones shocked and grieving, shedding new a...</p>



              </div>

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

                




<article about="/daily-news/investigations-and-features/2026/04/08/fight-valor-vietnam-veteran-battles-get-war-hero-medal-of-honor.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Fight for Valor: Vietnam Veteran Battles to Get War Hero Medal of Honor" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/08/fight-valor-vietnam-veteran-battles-get-war-hero-medal-of-honor.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-c1197e57a1c" 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=z-hMS7RQ 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/cuddy_1_.jpg?itok=mE2dWjDH 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/cuddy_1_.jpg?itok=sVnZ05nT" 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 veteran David Zartarian holds a photo of Col. Francis &amp;quot;Frank&amp;quot; Cuddy. (Nora Lewis/University of Rhode Island)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=sVnZ05nT 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/cuddy_1_.jpg?itok=z-hMS7RQ 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/cuddy_1_.jpg?itok=mE2dWjDH 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/cuddy_1_.jpg?itok=sVnZ05nT" alt="" title="Army veteran David Zartarian holds a photo of Col. Francis &amp;quot;Frank&amp;quot; Cuddy. (Nora Lewis/University of Rhode Island)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Fight for Valor: Vietnam Veteran Battles to Get War Hero Medal of Honor</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Is Marine Corps pilot Francis Cuddy deserving of the nation&#039;s highest military honor? Fellow Vietnam veteran David Zartarian...</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?tdalkc" 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>
