

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

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

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

 <script type="text/javascript">

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

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

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

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

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

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

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


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


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



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

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

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

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

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

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


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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

      'networkCategory': DL.isArticleNetworkCategory,

      'segment': '',

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  return DL;
}

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

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

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

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

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

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

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

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

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

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

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

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



<div class="page">
      

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






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

      



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






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

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



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

      




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

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


        </nav>
  


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






    
    

      



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

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

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

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

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

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

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

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








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



<div class="search-box">

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

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

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

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




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

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


    </div>
</div>



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



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



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

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


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



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

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


        </div>
          </div>

      
  



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

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

  



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

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


    
  </section>

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



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

      

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

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


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



                          
    
  



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

      
        </div>
  




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

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


      </div>
  
  



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

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





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

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






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





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






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




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




<article about="/daily-news/headlines/2026/04/28/Supreme-Court-Haiti-Syria-TPS-Trump-Immigration.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Supreme Court Weighs Trump&#039;s Move to End Temporary Protected Status" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/headlines/2026/04/28/Supreme-Court-Haiti-Syria-TPS-Trump-Immigration.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-36e5d8ca89e" 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/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=4ZOogk9q 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/ap26028746849716.jpg?itok=DiARPjrv" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="People march during a rally in support of the extension of Temporary Protected Status (TPS) for Haitian immigrants before it expires on February 3, Wednesday, Jan. 28, 2026, in Fort Lauderdale, Fla. (AP Photo/Lynne Sladky)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=DiARPjrv 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/ap26028746849716.jpg?itok=4ZOogk9q 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/ap26028746849716.jpg?itok=DiARPjrv" alt="" title="People march during a rally in support of the extension of Temporary Protected Status (TPS) for Haitian immigrants before it expires on February 3, Wednesday, Jan. 28, 2026, in Fort Lauderdale, Fla. (AP Photo/Lynne Sladky)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Supreme Court Weighs Trump&#039;s Move to End Temporary Protected Status</span>

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




<article about="/daily-news/headlines/2026/04/29/kill-switch-car-fears-explode-gop-moves-block-rule.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="GOP Lawmakers Want FISA Amendment Amid ‘Kill Switch’ Car Surveillance Fears" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/headlines/2026/04/29/kill-switch-car-fears-explode-gop-moves-block-rule.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-dd17b48f90c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26078063561783.jpg?itok=OfV8owIA 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17" width="500" height="334" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="Rep. Chip Roy, R-Texas, a member of the conservative House Freedom Caucus, listens at the Capitol in Washington, April 9, 2025. (AP Photo/J. Scott Applewhite, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26078063561783.jpg?itok=OfV8owIA 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26078063561783.jpg?itok=nCorpd17" alt="" title="Rep. Chip Roy, R-Texas, a member of the conservative House Freedom Caucus, listens at the Capitol in Washington, April 9, 2025. (AP Photo/J. Scott Applewhite, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">GOP Lawmakers Want FISA Amendment Amid ‘Kill Switch’ Car Surveillance Fears</span>

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




<article about="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.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-b4ff60e4efa" 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/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=KpecHl0B 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/1086341542534339338.jpg?itok=gc75iUPm" 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="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=gc75iUPm 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/1086341542534339338.jpg?itok=KpecHl0B 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/1086341542534339338.jpg?itok=gc75iUPm" alt="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe</span>

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

        



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




<article about="/daily-news/investigations-and-features/2026/04/27/wwii-medal-of-honor-recipient-will-be-buried-hometown-80-years-later.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="Missing WWII Medal of Honor Recipient Returns Home for Burial 80 Years Later" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/investigations-and-features/2026/04/27/wwii-medal-of-honor-recipient-will-be-buried-hometown-80-years-later.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-71e780fe028" 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/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6 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/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6 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/8230-willibald-bianchi-kopie.jpg?itok=QURyGmJE 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/8230-willibald-bianchi-kopie.jpg?itok=kIXjuLMn 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/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6" 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 Capt. Willibald C. Bianchi was one of only three members of the Philippine Scouts to receive the Medal of Honor. (DPAA)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6 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/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6 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/8230-willibald-bianchi-kopie.jpg?itok=QURyGmJE 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/8230-willibald-bianchi-kopie.jpg?itok=kIXjuLMn 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/8230-willibald-bianchi-kopie.jpg?itok=Jjd4Jxw6" alt="" title="Army Capt. Willibald C. Bianchi was one of only three members of the Philippine Scouts to receive the Medal of Honor. (DPAA)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/investigations-and-features/2026/04/27/wwii-medal-of-honor-recipient-will-be-buried-hometown-80-years-later.html" class="text--title"><span property="schema:name">Missing WWII Medal of Honor Recipient Returns Home for Burial 80 Years Later</span>
</span>
    </div>
  </a>
</div>
</article>

          
                              




<article about="/daily-news/2026/04/28/john-oliver-raises-alarm-ai-chatbots-experts-warn-of-risks-veterans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="John Oliver Raises Alarm on AI Chatbots as Experts Warn of Risks for Veterans" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/2026/04/28/john-oliver-raises-alarm-ai-chatbots-experts-warn-of-risks-veterans.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-895ebf7a35f" 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/john-oliver_2.jpg?itok=4Xk7U9xc 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/john-oliver_2.jpg?itok=4Xk7U9xc 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/john-oliver_2.jpg?itok=CSFEgWJo 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/john-oliver_2.jpg?itok=xTt71qRg 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/john-oliver_2.jpg?itok=4Xk7U9xc" 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="AI Chatbots: Last Week Tonight with John Oliver (HBO)" title="AI Chatbots: Last Week Tonight with John Oliver (HBO)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/john-oliver_2.jpg?itok=4Xk7U9xc 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/john-oliver_2.jpg?itok=4Xk7U9xc 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/john-oliver_2.jpg?itok=CSFEgWJo 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/john-oliver_2.jpg?itok=xTt71qRg 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/john-oliver_2.jpg?itok=4Xk7U9xc" alt="AI Chatbots: Last Week Tonight with John Oliver (HBO)" title="AI Chatbots: Last Week Tonight with John Oliver (HBO)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/2026/04/28/john-oliver-raises-alarm-ai-chatbots-experts-warn-of-risks-veterans.html" class="text--title"><span property="schema:name">John Oliver Raises Alarm on AI Chatbots as Experts Warn of Risks for Veterans</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="/feature/2026/04/28/kid-rock-flies-army-apache-helicopters-weeks-after-nashville-flight-controversy.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Pentagon Defends Latest Kid Rock, Hegseth Flight in Army Apache Helicopters" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/28/kid-rock-flies-army-apache-helicopters-weeks-after-nashville-flight-controversy.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-f2fc860f8eb" 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=mbTn2L6B 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/the_white_house_-_54423945211_copy.jpg?itok=wIBsBURC 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL" 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="Kid Rock stands in the Oval Office as President Donald Trump signs an executive order, March 31, 2025. (Official White House Photo by Molly Riley)" title="Kid Rock with President Donald Trump in the Oval Office During 2025 Executive Order Signing" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=mbTn2L6B 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/the_white_house_-_54423945211_copy.jpg?itok=wIBsBURC 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL" alt="Kid Rock stands in the Oval Office as President Donald Trump signs an executive order, March 31, 2025. (Official White House Photo by Molly Riley)" title="Kid Rock with President Donald Trump in the Oval Office During 2025 Executive Order Signing" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/28/kid-rock-flies-army-apache-helicopters-weeks-after-nashville-flight-controversy.html" class="text--title"><span property="schema:name">Pentagon Defends Latest Kid Rock, Hegseth Flight in Army Apache Helicopters</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/28/nebraska-school-earns-military-friendly-designation.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Nebraska School Earns &#039;Military Friendly&#039; Designation" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/28/nebraska-school-earns-military-friendly-designation.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-e0297b29da2" 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/northeast1.jpg?itok=tbXqP_4T 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/northeast1.jpg?itok=tbXqP_4T 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/northeast1.jpg?itok=PNP2lxdr 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/northeast1.jpg?itok=7iXXZaY1 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/northeast1.jpg?itok=tbXqP_4T" 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="Students and staff at Northeast Community College in Norfolk, NE, named a 2026 Military Friendly School (Military Friendly)." title="Students and staff at Northeast Community College in Norfolk, NE, named a 2026 Military Friendly School (Military Friendly)." typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/northeast1.jpg?itok=tbXqP_4T 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/northeast1.jpg?itok=tbXqP_4T 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/northeast1.jpg?itok=PNP2lxdr 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/northeast1.jpg?itok=7iXXZaY1 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/northeast1.jpg?itok=tbXqP_4T" alt="Students and staff at Northeast Community College in Norfolk, NE, named a 2026 Military Friendly School (Military Friendly)." title="Students and staff at Northeast Community College in Norfolk, NE, named a 2026 Military Friendly School (Military Friendly)." typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/28/nebraska-school-earns-military-friendly-designation.html" class="text--title"><span property="schema:name">Nebraska School Earns &#039;Military Friendly&#039; Designation</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2025/10/28/car-racing-program-provides-therapy-veterans-families.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Car Racing Program Provides Therapy for Veterans, Families " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2025/10/28/car-racing-program-provides-therapy-veterans-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-1ba3430cd59" 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-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a 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-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a 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-10/racing_photo_3_2.jpeg.jpg?itok=A3-IozL3 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-10/racing_photo_3_2.jpeg.jpg?itok=jw8yk61Z 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-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a" 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 young driver takes his first driving lesson at the Australian racetrack. (Photo by Sarah Moss, ABC Illawarra)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2025-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a 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-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a 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-10/racing_photo_3_2.jpeg.jpg?itok=A3-IozL3 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-10/racing_photo_3_2.jpeg.jpg?itok=jw8yk61Z 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-10/racing_photo_3_2.jpeg.jpg?itok=fRj3lm2a" alt="" title="A young driver takes his first driving lesson at the Australian racetrack. (Photo by Sarah Moss, ABC Illawarra)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2025/10/28/car-racing-program-provides-therapy-veterans-families.html" class="text--title"><span property="schema:name">Car Racing Program Provides Therapy for Veterans, Families </span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/29/defying-protocol-trump-relays-details-of-private-conversation-king-charles-iii.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Defying Protocol, Trump Relays Details of Private Conversation with King Charles III" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/29/defying-protocol-trump-relays-details-of-private-conversation-king-charles-iii.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-e2713ec19b1" 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=PdPInT9o 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=aORw1zWy 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ" 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 Britain Royal Visit Trump" title="Britain&#039;s King Charles III toasts with President Donald Trump during a State Dinner with first lady Melania Trump and Queen Camilla in the East Room of the White House State Dinner Tuesday, April 28, 2026, in Washington. (AP Photo/Alex Brandon)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=PdPInT9o 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=aORw1zWy 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_US_Britain_Royal_Visit_Trump_92211.jpg?itok=yrFVEqEZ" alt="US Britain Royal Visit Trump" title="Britain&#039;s King Charles III toasts with President Donald Trump during a State Dinner with first lady Melania Trump and Queen Camilla in the East Room of the White House State Dinner Tuesday, April 28, 2026, in Washington. (AP Photo/Alex Brandon)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/29/defying-protocol-trump-relays-details-of-private-conversation-king-charles-iii.html" class="text--title"><span property="schema:name">Defying Protocol, Trump Relays Details of Private Conversation with King Charles III</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/26/nine-books-hit-different-after-military-service.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Nine Books That Hit Different After Military Service" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/26/nine-books-hit-different-after-military-service.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-021fa6fb9bf" 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=QG2v50j1 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=5hn-9XeO 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M" 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. Army soldier in combat gear reading a book while deployed in Iraq beside a military vehicle. (U.S. Army photo via Wikimedia Commons, public domain)" title="U.S. Army Soldier Reading During Deployment in Iraq" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=QG2v50j1 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=5hn-9XeO 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/us-army-soldier-reading-book-iraq-deployment.jpg?itok=0WNE5j1M" alt="U.S. Army soldier in combat gear reading a book while deployed in Iraq beside a military vehicle. (U.S. Army photo via Wikimedia Commons, public domain)" title="U.S. Army Soldier Reading During Deployment in Iraq" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/26/nine-books-hit-different-after-military-service.html" class="text--title"><span property="schema:name">Nine Books That Hit Different After Military Service</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/29/hegseth-will-be-grilled-congress-first-time-iran-war-began.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Hegseth Will Be Grilled by Congress for the First Time Since the Iran War Began" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/29/hegseth-will-be-grilled-congress-first-time-iran-war-began.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-57ba530f69d" 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_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI 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_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI 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_Pentagon_US_Iran_46439.jpg?itok=lHXsCQxu 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_Pentagon_US_Iran_46439.jpg?itok=Qu7ooGbF 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_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI" 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="Pentagon US Iran" title="Defense Secretary Pete Hegseth and Chairman of the Joint Chiefs of Staff Gen. Dan Caine speaks to members of the media during a press briefing at the Pentagon, Thursday, April 16, 2026 in Washington. (AP Photo/Kevin Wolf)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI 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_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI 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_Pentagon_US_Iran_46439.jpg?itok=lHXsCQxu 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_Pentagon_US_Iran_46439.jpg?itok=Qu7ooGbF 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_Pentagon_US_Iran_46439.jpg?itok=ed3Pl0eI" alt="Pentagon US Iran" title="Defense Secretary Pete Hegseth and Chairman of the Joint Chiefs of Staff Gen. Dan Caine speaks to members of the media during a press briefing at the Pentagon, Thursday, April 16, 2026 in Washington. (AP Photo/Kevin Wolf)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/29/hegseth-will-be-grilled-congress-first-time-iran-war-began.html" class="text--title"><span property="schema:name">Hegseth Will Be Grilled by Congress for the First Time Since the Iran War Began</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/29/senate-rejects-attempt-end-trumps-blockade-of-cuba.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Senate Rejects Attempt to End Trump&#039;s Blockade of Cuba" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/29/senate-rejects-attempt-end-trumps-blockade-of-cuba.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-389c190fafa" 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_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9 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_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9 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_Senate_Armed_Services_5_167.jpg?itok=W8nFE76g 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_Senate_Armed_Services_5_167.jpg?itok=iwX8eEvH 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_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9" 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="Senate Armed Services" title="Sen. Mazie Hirono, D-Hawaii, left, questions a witness as Sen. Tim Kaine, D-Va., right, looks on during the Senate Committee on Armed Services hearing on Capitol Hill in Washington, Tuesday, April 28, 2026. (AP Photo/Cliff Owen)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9 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_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9 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_Senate_Armed_Services_5_167.jpg?itok=W8nFE76g 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_Senate_Armed_Services_5_167.jpg?itok=iwX8eEvH 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_Senate_Armed_Services_5_167.jpg?itok=y-XaPCw9" alt="Senate Armed Services" title="Sen. Mazie Hirono, D-Hawaii, left, questions a witness as Sen. Tim Kaine, D-Va., right, looks on during the Senate Committee on Armed Services hearing on Capitol Hill in Washington, Tuesday, April 28, 2026. (AP Photo/Cliff Owen)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/29/senate-rejects-attempt-end-trumps-blockade-of-cuba.html" class="text--title"><span property="schema:name">Senate Rejects Attempt to End Trump&#039;s Blockade of Cuba</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/headlines/2026/04/28/Iran-War-Heads-Toward-Legal-Showdown-as-May-1-Deadline-Nears" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iran War Heads Toward Legal Showdown as May 1 Deadline Nears" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/headlines/2026/04/28/Iran-War-Heads-Toward-Legal-Showdown-as-May-1-Deadline-Nears">
    <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-9a813335b03" 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/ap26104801277191.jpg?itok=GdfU3Hf7 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/ap26104801277191.jpg?itok=GdfU3Hf7 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/ap26104801277191.jpg?itok=cboSb0ay 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/ap26104801277191.jpg?itok=9deutU7w 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/ap26104801277191.jpg?itok=GdfU3Hf7" 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="Sen. Majority Leader John Thune, R-S.D., left, speaks during a news conference after a policy luncheon on Capitol Hill, Tuesday, April 14, 2026, in Washington. (AP Photo/Mariam Zuhaib)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26104801277191.jpg?itok=GdfU3Hf7 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/ap26104801277191.jpg?itok=GdfU3Hf7 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/ap26104801277191.jpg?itok=cboSb0ay 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/ap26104801277191.jpg?itok=9deutU7w 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/ap26104801277191.jpg?itok=GdfU3Hf7" alt="" title="Sen. Majority Leader John Thune, R-S.D., left, speaks during a news conference after a policy luncheon on Capitol Hill, Tuesday, April 14, 2026, in Washington. (AP Photo/Mariam Zuhaib)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/headlines/2026/04/28/Iran-War-Heads-Toward-Legal-Showdown-as-May-1-Deadline-Nears" class="text--title"><span property="schema:name">Iran War Heads Toward Legal Showdown as May 1 Deadline Nears</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/23/how-wwii-battle-of-cisterna-destroyed-and-transformed-army-rangers.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="How the WWII Battle of Cisterna Destroyed and Transformed the Army Rangers" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/23/how-wwii-battle-of-cisterna-destroyed-and-transformed-army-rangers.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-3a458337d4c" 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/cisterna007.jpg?itok=sT311ari 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/cisterna007.jpg?itok=sT311ari 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/cisterna007.jpg?itok=23U8VJit 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/cisterna007.jpg?itok=3oS6THW2 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/cisterna007.jpg?itok=sT311ari" 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 infantryman firing on German positions during the Battle of Cisterna. (U.S. Army)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/cisterna007.jpg?itok=sT311ari 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/cisterna007.jpg?itok=sT311ari 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/cisterna007.jpg?itok=23U8VJit 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/cisterna007.jpg?itok=3oS6THW2 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/cisterna007.jpg?itok=sT311ari" alt="" title="A U.S. Army infantryman firing on German positions during the Battle of Cisterna. (U.S. Army)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/23/how-wwii-battle-of-cisterna-destroyed-and-transformed-army-rangers.html" class="text--title"><span property="schema:name">How the WWII Battle of Cisterna Destroyed and Transformed the Army Rangers</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/28/us-jury-deliberating-trial-of-alleged-isis-militant-charged-deadly-kabul-airport-bombing.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="US Jury Is Deliberating in Trial of Alleged ISIS Militant Charged in Deadly Kabul Airport Bombing" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/28/us-jury-deliberating-trial-of-alleged-isis-militant-charged-deadly-kabul-airport-bombing.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-f8e5936ccde" 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_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji 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_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji 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_Afghanistan_Attack_Suspect_57986.jpg?itok=xc-tfpGn 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_Afghanistan_Attack_Suspect_57986.jpg?itok=DCnogAxd 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_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji" 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="Afghanistan Attack Suspect" title="This courtroom sketch depicts Justice Department prosecutor John Gibbs speaking as defense attorneys Lauren Rosen, Geremy Kamens, from center middle seated, defendant Mohammad Sharifullah, and an interpreter, listen along with Judge Anthony John Trenga during the opening day of the trial for Sharifullah in federal court in Alexandria, Va., Monday, April 20, 2026. (Dana Verkouteren via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji 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_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji 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_Afghanistan_Attack_Suspect_57986.jpg?itok=xc-tfpGn 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_Afghanistan_Attack_Suspect_57986.jpg?itok=DCnogAxd 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_Afghanistan_Attack_Suspect_57986.jpg?itok=ppF2moji" alt="Afghanistan Attack Suspect" title="This courtroom sketch depicts Justice Department prosecutor John Gibbs speaking as defense attorneys Lauren Rosen, Geremy Kamens, from center middle seated, defendant Mohammad Sharifullah, and an interpreter, listen along with Judge Anthony John Trenga during the opening day of the trial for Sharifullah in federal court in Alexandria, Va., Monday, April 20, 2026. (Dana Verkouteren via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/28/us-jury-deliberating-trial-of-alleged-isis-militant-charged-deadly-kabul-airport-bombing.html" class="text--title"><span property="schema:name">US Jury Is Deliberating in Trial of Alleged ISIS Militant Charged in Deadly Kabul Airport Bombing</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/22/nothing-prepared-me-wwii-medic-104-reflects-liberating-buchenwald.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="‘Nothing Prepared Me’: WWII Medic, 104, Reflects on Liberating Buchenwald" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/22/nothing-prepared-me-wwii-medic-104-reflects-liberating-buchenwald.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-ef547c03e71" 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/kiniry_1_.jpg?itok=_HQWQ-tW 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/kiniry_1_.jpg?itok=_HQWQ-tW 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/kiniry_1_.jpg?itok=jFtxpKU5 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/kiniry_1_.jpg?itok=moYObDFo 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/kiniry_1_.jpg?itok=_HQWQ-tW" 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 Tim Kiniry, 104, signs a baseball card of himself on April 16 at Stockton University. (Susan Allen/Stockton University)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/kiniry_1_.jpg?itok=_HQWQ-tW 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/kiniry_1_.jpg?itok=_HQWQ-tW 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/kiniry_1_.jpg?itok=jFtxpKU5 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/kiniry_1_.jpg?itok=moYObDFo 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/kiniry_1_.jpg?itok=_HQWQ-tW" alt="" title="Army veteran Tim Kiniry, 104, signs a baseball card of himself on April 16 at Stockton University. (Susan Allen/Stockton University)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/22/nothing-prepared-me-wwii-medic-104-reflects-liberating-buchenwald.html" class="text--title"><span property="schema:name">‘Nothing Prepared Me’: WWII Medic, 104, Reflects on Liberating Buchenwald</span>
</span>
      </a>
</div>
</article>

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




<article about="/feature/2026/04/26/inside-umgcs-military-affiliated-learner-community.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Inside UMGC’s Military-Affiliated Learner Community" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/feature/2026/04/26/inside-umgcs-military-affiliated-learner-community.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-57b5a59b48f" 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/umgc3_3.jpg?itok=o6F-EETA 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/umgc3_3.jpg?itok=o6F-EETA 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/umgc3_3.jpg?itok=bxG_crPI 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/umgc3_3.jpg?itok=D30lgRxz 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/umgc3_3.jpg?itok=o6F-EETA" 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="Photo courtesy of UMGC" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/umgc3_3.jpg?itok=o6F-EETA 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/umgc3_3.jpg?itok=o6F-EETA 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/umgc3_3.jpg?itok=bxG_crPI 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/umgc3_3.jpg?itok=D30lgRxz 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/umgc3_3.jpg?itok=o6F-EETA" alt="" title="Photo courtesy of UMGC" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/feature/2026/04/26/inside-umgcs-military-affiliated-learner-community.html" class="text--title"><span property="schema:name">Inside UMGC’s Military-Affiliated Learner Community</span>
</span>
      </a>
</div>
</article>

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

              

      </div>

              </div>

        
        






                            





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






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

      </div>

                        





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






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





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




<article about="/daily-news/investigations-and-features/2026/04/24/alleged-serial-killers-remains-disinterred-national-cemetery.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Alleged Serial Killer’s Remains Disinterred from National Cemetery  " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/24/alleged-serial-killers-remains-disinterred-national-cemetery.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-6ec477509b6" 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/cota_1_.jpg?itok=HOtwcWmY 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/cota_1_.jpg?itok=HOtwcWmY 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/cota_1_.jpg?itok=e5P4_xxS 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/cota_1_.jpg?itok=ZSXXWORw 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/cota_1_.jpg?itok=HOtwcWmY" 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="Fernando V. Cota (Submitted)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/cota_1_.jpg?itok=HOtwcWmY 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/cota_1_.jpg?itok=HOtwcWmY 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/cota_1_.jpg?itok=e5P4_xxS 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/cota_1_.jpg?itok=ZSXXWORw 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/cota_1_.jpg?itok=HOtwcWmY" alt="" title="Fernando V. Cota (Submitted)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/24/alleged-serial-killers-remains-disinterred-national-cemetery.html" class="text--title"><span property="schema:name">Alleged Serial Killer’s Remains Disinterred from National Cemetery  </span>
</span>
      </a>
</div>
</article>

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

                      </div>
          </div>
        



          
  <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="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.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-0084c18ad87" 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=CBrJL8iv 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/1086341542534339338.jpg?itok=tUy_LY6Y 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/1086341542534339338.jpg?itok=VcBA9dOe" 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="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=CBrJL8iv 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/1086341542534339338.jpg?itok=tUy_LY6Y 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/1086341542534339338.jpg?itok=VcBA9dOe" alt="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Skyline Nav AI, headquartered in the Greater Boston Area, is changing the game with its Pathfinder technology that is making...</p>



              </div>

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

                




<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>

      
      



          
  <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/28/ukraine-says-it-shot-down-33000-russian-drones-march-monthly-record.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Ukraine Says It Shot Down 33,000 Russian Drones in March, a Monthly Record" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/28/ukraine-says-it-shot-down-33000-russian-drones-march-monthly-record.html">
    <div class="thumbnail--large-vertical__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  




<figure>  






    <div class="blazy blazy--field blazy--field-image blazy--field-image--thumbnail-large field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-54b398be901" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=DkhChWoE 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=rfQdPhly 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Russia Ukraine War" title="FILE - An instructor from the Ukrainian company General Cherry demonstrates the operation of an anti-air interceptor drone designed to destroy Russian attack drones in Kyiv region, on March 11, 2026. (AP Photo/Efrem Lukatsky, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=DkhChWoE 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=rfQdPhly 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_17356.jpg?itok=Sg5OEMb9" alt="Russia Ukraine War" title="FILE - An instructor from the Ukrainian company General Cherry demonstrates the operation of an anti-air interceptor drone designed to destroy Russian attack drones in Kyiv region, on March 11, 2026. (AP Photo/Efrem Lukatsky, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/28/ukraine-says-it-shot-down-33000-russian-drones-march-monthly-record.html" class="text--title"><span property="schema:name">Ukraine Says It Shot Down 33,000 Russian Drones in March, a Monthly Record</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/27/germany-defense-spending-hits-36-year-high-boosts-infantry-space-program.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Germany Defense Spending Hits 36-Year High, Boosts Infantry &amp; Space Program" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/27/germany-defense-spending-hits-36-year-high-boosts-infantry-space-program.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-914f483a3c2" 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=mHpe3GS3 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/ap26081292768664.jpg?itok=br-weXju 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/ap26081292768664.jpg?itok=6mSAJwk7" 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="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" title="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=mHpe3GS3 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/ap26081292768664.jpg?itok=br-weXju 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/ap26081292768664.jpg?itok=6mSAJwk7" alt="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" title="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/27/germany-defense-spending-hits-36-year-high-boosts-infantry-space-program.html" class="text--title"><span property="schema:name">Germany Defense Spending Hits 36-Year High, Boosts Infantry &amp; Space Program</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/27/north-korea-opens-memorial-museum-troops-killed-russia-ukraine-war.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="North Korea Opens Memorial Museum for Troops Killed in Russia-Ukraine War" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/27/north-korea-opens-memorial-museum-troops-killed-russia-ukraine-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-ed8ab0b7002" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=NsSHbmxm 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=GIAtTv_B 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO" 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="North Korea Russia" title="In this photo provided by the North Korean government, from front right to left, its leader Kim Jong Un, Russian parliament speaker Vyacheslav Volodin and Russian Defense Minister Andrei Beloussov attend an inaugural ceremony of a memorial museum in Pyongyang, North Korea Sunday, April 26, 2026. (Korean Central News Agency/Korea News Service via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=NsSHbmxm 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=GIAtTv_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="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_North_Korea_Russia_29425.jpg?itok=rebuHolO" alt="North Korea Russia" title="In this photo provided by the North Korean government, from front right to left, its leader Kim Jong Un, Russian parliament speaker Vyacheslav Volodin and Russian Defense Minister Andrei Beloussov attend an inaugural ceremony of a memorial museum in Pyongyang, North Korea Sunday, April 26, 2026. (Korean Central News Agency/Korea News Service via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/27/north-korea-opens-memorial-museum-troops-killed-russia-ukraine-war.html" class="text--title"><span property="schema:name">North Korea Opens Memorial Museum for Troops Killed in Russia-Ukraine War</span>
</span>
      </a>
</div>
</article>

                      </div>
          </div>
        



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

      </div>

                        





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






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




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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

              

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






                            







                            





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






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

              </div>

      </div>

                        





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






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







                              
    




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

              

      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        
  
    



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



    
    

      






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



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

      

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



        </div>
  

              </div>

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

                        
  




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






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



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

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

              </div>

      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        





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






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




  
  










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

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



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

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

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

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

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






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

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

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

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

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

        </div>
      </div>

    </div>

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

  </div>

</div>





              </div>

      </div>

                        





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






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







                            



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




<article about="/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-large">
  
    <span property="schema:name" content="Which Americans Will Be Automatically Registered for Military Draft, and When?" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/09/which-americans-will-be-automatically-registered-military-draft-and-when.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-463638f31b6" 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/8618394.jpg?itok=goGqoYKg 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/8618394.jpg?itok=goGqoYKg 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/8618394.jpg?itok=kVzNF-vX 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/8618394.jpg?itok=N1WclZex 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/8618394.jpg?itok=goGqoYKg" 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="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_large/public/2026-04/8618394.jpg?itok=goGqoYKg 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/8618394.jpg?itok=goGqoYKg 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/8618394.jpg?itok=kVzNF-vX 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/8618394.jpg?itok=N1WclZex 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/8618394.jpg?itok=goGqoYKg" 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>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Which Americans Will Be Automatically Registered for Military Draft, and When?</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Last year&#039;s defense bill passed by Congress paved the way for the new automatic registration process.</p>



              </div>

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





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


  
          
  


<div class="thumbnail--large">
  <a href="/benefits/veterans-health-care/va-clinic-gave-veterans-glp-1s-weight-loss-year-later-everything-improved.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-93cfdb43c5f" 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/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z 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/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z 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/ap%20Wegovy%20dose%201800.jpg?itok=ogH_sP8J 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/ap%20Wegovy%20dose%201800.jpg?itok=ZlRhzB-z 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/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z" 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 does of Wegovy." title="A dose of Wegovy, a drug used for weight loss, is displayed in Front Royal, Va., March 1, 2024. (Amanda Andrade-Rhoades/AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z 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/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z 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/ap%20Wegovy%20dose%201800.jpg?itok=ogH_sP8J 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/ap%20Wegovy%20dose%201800.jpg?itok=ZlRhzB-z 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/ap%20Wegovy%20dose%201800.jpg?itok=E3gWTA5z" alt="A does of Wegovy." title="A dose of Wegovy, a drug used for weight loss, is displayed in Front Royal, Va., March 1, 2024. (Amanda Andrade-Rhoades/AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

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






    <div class="field field--summary field--label-hidden">                          <p>Researchers tracked 201 veterans prescribed semaglutide, the drug sold under the brand names Ozempic and Wegovy. After one...</p>



              </div>

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





<article about="/daily-news/investigations-and-features/2026/04/07/wwii-veteran-who-lied-about-his-age-serve-takes-honor-flight.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="WWII Veteran Who Lied About His Age to Serve Takes Honor Flight " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/07/wwii-veteran-who-lied-about-his-age-serve-takes-honor-flight.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-f0528245c60" 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/duran_1_.jpg?itok=gFrMnaig 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/duran_1_.jpg?itok=gFrMnaig 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/duran_1_.jpg?itok=a3l3zr79 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/duran_1_.jpg?itok=gTefJ-8g 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/duran_1_.jpg?itok=gFrMnaig" 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 Al Duran. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/duran_1_.jpg?itok=gFrMnaig 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/duran_1_.jpg?itok=gFrMnaig 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/duran_1_.jpg?itok=a3l3zr79 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/duran_1_.jpg?itok=gTefJ-8g 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/duran_1_.jpg?itok=gFrMnaig" alt="" title="Marine Corps veteran Al Duran. (Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">WWII Veteran Who Lied About His Age to Serve Takes Honor Flight </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Joining the military at 16 to serve in World War II to service in Korea and Vietnam, humble Al Duran has lived quite a life.</p>



              </div>

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





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


  
          
  


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

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

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Disabled Veterans Charged Up to $20K to File VA Benefits Claims: Lawsuit</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The company being sued told Military.com it doesn&#039;t charge for VA claims. Plaintiffs disagree, citing purported deceptive...</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 Military PCS Changes Are Coming at Once. Here’s What to Know Before 2026 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 Military PCS Changes Are Coming at Once. Here’s What to Know Before 2026 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">Republicans Amp Up Their Push for White House Ballroom</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/republicans-amp-their-push-white-house-ballroom" class="b-link">    <div data-b-token="b-54d3e386bca" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10552.jpg?itok=R-tKoKuk 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10552.jpg?itok=R-tKoKuk 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10552.jpg?itok=32lovWc5 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10552.jpg?itok=L5DVCPt7 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/brightcove/videos/images/posters/image_10552.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10552.jpg?itok=R-tKoKuk 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10552.jpg?itok=R-tKoKuk 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10552.jpg?itok=32lovWc5 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10552.jpg?itok=L5DVCPt7 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10552.jpg?itok=R-tKoKuk" 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>Republicans amp up their push for White House ballroom.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">South Korea and New Zealand Conduct Joint Amphibious Drill</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/south-korea-and-new-zealand-conduct-joint-amphibious-drill" class="b-link">    <div data-b-token="b-c2fb77be471" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10551.jpg?itok=YD_8NGuK 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10551.jpg?itok=YD_8NGuK 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10551.jpg?itok=EoAVh37w 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10551.jpg?itok=6W0mApBj 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/brightcove/videos/images/posters/image_10551.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10551.jpg?itok=YD_8NGuK 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10551.jpg?itok=YD_8NGuK 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10551.jpg?itok=EoAVh37w 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images01.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10551.jpg?itok=6W0mApBj 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images01.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10551.jpg?itok=YD_8NGuK" 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>South Korea and New Zealand conduct joint amphibious drill.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Chinese Navy Conducts Military Exercises</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/chinese-navy-conducts-military-exercises" class="b-link">    <div data-b-token="b-967ba7581f5" 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_10550.jpg?itok=wLPpTMad 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_10550.jpg?itok=wLPpTMad 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_10550.jpg?itok=Gt0Ze9df 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_10550.jpg?itok=kzN4S0ND 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_10550.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_10550.jpg?itok=wLPpTMad 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_10550.jpg?itok=wLPpTMad 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_10550.jpg?itok=Gt0Ze9df 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_10550.jpg?itok=kzN4S0ND 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_10550.jpg?itok=wLPpTMad" 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>Chinese navy conducts military exercises in the waters east of the Philippine’s Luzon Island.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Russian Officials Attend Military Memorial Opening in North Korea</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/russian-officials-attend-military-memorial-opening-north-korea" class="b-link">    <div data-b-token="b-2a0b6457ba8" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10549.jpg?itok=HOmXb9nF 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10549.jpg?itok=HOmXb9nF 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10549.jpg?itok=xnBDnqL4 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10549.jpg?itok=YzhB9pXS 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/brightcove/videos/images/posters/image_10549.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10549.jpg?itok=HOmXb9nF 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10549.jpg?itok=HOmXb9nF 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10549.jpg?itok=xnBDnqL4 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10549.jpg?itok=YzhB9pXS 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10549.jpg?itok=HOmXb9nF" 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>Russian officials attend military memorial opening in North Korea.</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--nojs 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">  <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" 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>
        </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--nojs 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">  <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" 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>
        </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="/feature/2026/04/28/kid-rock-flies-army-apache-helicopters-weeks-after-nashville-flight-controversy.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Pentagon Defends Latest Kid Rock, Hegseth Flight in Army Apache Helicopters" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/28/kid-rock-flies-army-apache-helicopters-weeks-after-nashville-flight-controversy.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-f2fc860f8eb" 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=mbTn2L6B 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/the_white_house_-_54423945211_copy.jpg?itok=wIBsBURC 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL" 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="Kid Rock stands in the Oval Office as President Donald Trump signs an executive order, March 31, 2025. (Official White House Photo by Molly Riley)" title="Kid Rock with President Donald Trump in the Oval Office During 2025 Executive Order Signing" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL 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/the_white_house_-_54423945211_copy.jpg?itok=mbTn2L6B 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/the_white_house_-_54423945211_copy.jpg?itok=wIBsBURC 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/the_white_house_-_54423945211_copy.jpg?itok=u1LFhWnL" alt="Kid Rock stands in the Oval Office as President Donald Trump signs an executive order, March 31, 2025. (Official White House Photo by Molly Riley)" title="Kid Rock with President Donald Trump in the Oval Office During 2025 Executive Order Signing" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Pentagon Defends Latest Kid Rock, Hegseth Flight in Army Apache Helicopters</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Kid Rock flew in Army Apache helicopters with Defense Secretary Pete Hegseth at Fort Belvoir, weeks after scrutiny over...</p>



              </div>

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

                




<article about="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/26/100-billion-blackout-how-one-startup-saving-us-gps-catastrophe.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-0084c18ad87" 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=CBrJL8iv 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/1086341542534339338.jpg?itok=tUy_LY6Y 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/1086341542534339338.jpg?itok=VcBA9dOe" 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="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=VcBA9dOe 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/1086341542534339338.jpg?itok=CBrJL8iv 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/1086341542534339338.jpg?itok=tUy_LY6Y 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/1086341542534339338.jpg?itok=VcBA9dOe" alt="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" title="Skyline Nav AI’s team outside their office in the Greater Boston area. (Nick Mordowanec)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">$100 Billion Blackout: How One Startup is Saving Us from a GPS Catastrophe</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Skyline Nav AI, headquartered in the Greater Boston Area, is changing the game with its Pathfinder technology that is making...</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/25/us-protected-ships-iran-strait-of-hormuz-80s-could-it-again.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="The US Protected Ships from Iran in the Strait of Hormuz in the &#039;80s. Could It Again?" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/25/us-protected-ships-iran-strait-of-hormuz-80s-could-it-again.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-619e039f908" 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_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo 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_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo 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_APTOPIX_Iran_War_263_6.jpg?itok=YHA05AlH 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_APTOPIX_Iran_War_263_6.jpg?itok=wVP_Va3O 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_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo" 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 container ship is seen in the Strait of Hormuz" title="A container ship is seen in the Strait of Hormuz off the coast of Qeshm Island, Iran, Saturday, April 18, 2026. (AP Photo/Asghar Besharati)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo 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_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo 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_APTOPIX_Iran_War_263_6.jpg?itok=YHA05AlH 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_APTOPIX_Iran_War_263_6.jpg?itok=wVP_Va3O 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_APTOPIX_Iran_War_263_6.jpg?itok=OUGNkrPo" alt="A container ship is seen in the Strait of Hormuz" title="A container ship is seen in the Strait of Hormuz off the coast of Qeshm Island, Iran, Saturday, April 18, 2026. (AP Photo/Asghar Besharati)" 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 Protected Ships from Iran in the Strait of Hormuz in the &#039;80s. Could It Again?</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The “Tanker war” grew out of the fierce eight-year war between Iraq and Iran in the 1980s.</p>



              </div>

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

                




<article about="/daily-news/2026/04/25/us-says-its-hunting-explosive-mines-latest-push-open-strait-of-hormuz.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="US Says it&#039;s Hunting for Explosive Mines in Latest Push to Open the Strait of Hormuz" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/25/us-says-its-hunting-explosive-mines-latest-push-open-strait-of-hormuz.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-a0bf6a3efad" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=_QpJHaNF 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=Pvu2dUDd 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="The sun rises behind tankers anchored in the Strait of Hormuz off the coast of Qeshm Island, Iran." title="The sun rises behind tankers anchored in the Strait of Hormuz off the coast of Qeshm Island, Iran, Saturday, April 18, 2026. (AP Photo/Asghar Besharati)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=_QpJHaNF 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images02.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=Pvu2dUDd 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Iran_War_89863.jpg?itok=koLkkxPR" alt="The sun rises behind tankers anchored in the Strait of Hormuz off the coast of Qeshm Island, Iran." title="The sun rises behind tankers anchored in the Strait of Hormuz off the coast of Qeshm Island, Iran, Saturday, April 18, 2026. (AP Photo/Asghar Besharati)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">US Says it&#039;s Hunting for Explosive Mines in Latest Push to Open the Strait of Hormuz</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Sweeping for underwater explosives could take months despite a tenuous ceasefire between the United States and Iran in the...</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/investigations-and-features/2026/04/23/plaque-mount-soledad-memorializes-medal-of-honor-hero.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Plaque on Mount Soledad Memorializes Medal of Honor Hero " class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/23/plaque-mount-soledad-memorializes-medal-of-honor-hero.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-5cd4c5e024c" 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/chapman_1_.jpg?itok=Z-8NBuda 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/chapman_1_.jpg?itok=Z-8NBuda 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/chapman_1_.jpg?itok=3rzr-vrj 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/chapman_1_.jpg?itok=A1siayhK 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/chapman_1_.jpg?itok=Z-8NBuda" 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 plaque honoring Master Sgt. &amp;quot;Chappy&amp;quot; Chapman was unveiled on Wednesday. (Combat Control Foundation/Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/chapman_1_.jpg?itok=Z-8NBuda 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/chapman_1_.jpg?itok=Z-8NBuda 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/chapman_1_.jpg?itok=3rzr-vrj 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/chapman_1_.jpg?itok=A1siayhK 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/chapman_1_.jpg?itok=Z-8NBuda" alt="" title="The plaque honoring Master Sgt. &amp;quot;Chappy&amp;quot; Chapman was unveiled on Wednesday. (Combat Control Foundation/Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Plaque on Mount Soledad Memorializes Medal of Honor Hero </span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>His bravery led him to posthumously receive the Medal of Honor in 2018 and now Air Force hero John Chapman has been honored...</p>



              </div>

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

                




<article about="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.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-09f1caf5a91" 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" 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;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" alt="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Lila Morgan is 18 years old but has written a book, started a nonprofit, and is graduating college soon. She credits her...</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="/daily-news/2026/04/27/germany-defense-spending-hits-36-year-high-boosts-infantry-space-program.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Germany Defense Spending Hits 36-Year High, Boosts Infantry &amp; Space Program" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/27/germany-defense-spending-hits-36-year-high-boosts-infantry-space-program.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-914f483a3c2" 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=mHpe3GS3 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/ap26081292768664.jpg?itok=br-weXju 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/ap26081292768664.jpg?itok=6mSAJwk7" 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="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" title="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=6mSAJwk7 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/ap26081292768664.jpg?itok=mHpe3GS3 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/ap26081292768664.jpg?itok=br-weXju 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/ap26081292768664.jpg?itok=6mSAJwk7" alt="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo via AP)" title="German Defense Minister Boris Pistorius speaks, along with Japanese Defense Minister Shinjiro Koizumi, during the joint press statement at the Japan Maritime Self-Defense Force (JMSDF) Yokosuka Naval Base on Sunday March 22, 2026, in Yokosuka, near Tokyo.(David Mareuil/Pool Photo 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">Germany Defense Spending Hits 36-Year High, Boosts Infantry &amp; Space Program</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Germany has positioned itself to become the &quot;strongest conventional army in Europe&quot; by 2039. Big military investments are...</p>



              </div>

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

                




<article about="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.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-09f1caf5a91" 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" 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;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" alt="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Lila Morgan is 18 years old but has written a book, started a nonprofit, and is graduating college soon. She credits her...</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="/feature/2026/04/24/camp-lejeune-opens-new-logistics-facility-equip-marines-faster.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Camp Lejeune Opens New Logistics Facility to Equip Marines Faster" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/feature/2026/04/24/camp-lejeune-opens-new-logistics-facility-equip-marines-faster.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-79bd85bccc0" 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/9616950.jpg?itok=qlBLFIJ3 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/9616950.jpg?itok=qlBLFIJ3 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/9616950.jpg?itok=yVUWW56j 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/9616950.jpg?itok=ztdox0Kq 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/9616950.jpg?itok=qlBLFIJ3" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" title="U.S. Marine Corps Sgt. Maj. Carlos A. Ruiz, the 20th Sergeant Major of the Marine Corps, serves as the guest speaker for the Class II Logistics Facility ribbon cutting ceremony, Marine Corps Base Camp Lejeune, North Carolina, April 14, 2026. (U.S. Marine Corps photo by Gunnery Sergeant Jordan E. Gilbert)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9616950.jpg?itok=qlBLFIJ3 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/9616950.jpg?itok=qlBLFIJ3 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/9616950.jpg?itok=yVUWW56j 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/9616950.jpg?itok=ztdox0Kq 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/9616950.jpg?itok=qlBLFIJ3" alt="" title="U.S. Marine Corps Sgt. Maj. Carlos A. Ruiz, the 20th Sergeant Major of the Marine Corps, serves as the guest speaker for the Class II Logistics Facility ribbon cutting ceremony, Marine Corps Base Camp Lejeune, North Carolina, April 14, 2026. (U.S. Marine Corps photo by Gunnery Sergeant Jordan E. Gilbert)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Camp Lejeune Opens New Logistics Facility to Equip Marines Faster</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Marines at Camp Lejeune now issue, turn in and repair gear under one roof at the new 109,000-square-foot Class II Logistics...</p>



              </div>

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

                




<article about="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.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-09f1caf5a91" 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" 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;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" alt="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Lila Morgan is 18 years old but has written a book, started a nonprofit, and is graduating college soon. She credits her...</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/23/military-child-of-year-awards-honor-seven-teens-seven-services.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/23/military-child-of-year-awards-honor-seven-teens-seven-services.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-09f1caf5a91" 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" 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;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX 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/mcoy_awards_on_table.jpg?itok=cUzztl8K 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/mcoy_awards_on_table.jpg?itok=sD5txf5Q 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/mcoy_awards_on_table.jpg?itok=JhfZpIDX" alt="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" title="&#039;Military Child of the Year&#039; awards wait to be presented to past honorees at an awards gala. (Operation Homefront)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">&#039;Military Child of the Year&#039; Awards Honor Seven Teens from Seven Services</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Lila Morgan is 18 years old but has written a book, started a nonprofit, and is graduating college soon. She credits her...</p>



              </div>

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

                




<article about="/daily-news/2026/04/18/coast-guard-searches-6-people-after-losing-contact-boat-following-typhoon-sinlaku.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Coast Guard Searches for 6 People After Losing Contact with Boat Following Typhoon Sinlaku" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/18/coast-guard-searches-6-people-after-losing-contact-boat-following-typhoon-sinlaku.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-e2f0387e896" 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=Zs207Sg8 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=prsJqsjv 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV" 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="An HC-130 Hercules airplane crew offloads supplies in Saipan." title="An HC-130 Hercules airplane crew assigned to U.S. Coast Guard Air Station Barbers Point in Kapolei, Hawaii, offloads personnel and supplies at the Francisco C. Ada/Saipan International Airport in I Fadang, Saipan, April 17, 2026. Coast Guard aircrews transported personnel with FEMA, the U.S. Army Corps of Engineers, the Department of Public Health and Social Services, and the Department of War to Saipan in support of recovery efforts following Typhoon Sinlaku. (Corinne Zilnicki/U.S. Coast Guard)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=Zs207Sg8 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=prsJqsjv 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/mil%20Coast%20Guard%20HC-130%20Hercules%20with%20supplies%20for%20Guam%201800x1200.jpg?itok=uwclWdsV" alt="An HC-130 Hercules airplane crew offloads supplies in Saipan." title="An HC-130 Hercules airplane crew assigned to U.S. Coast Guard Air Station Barbers Point in Kapolei, Hawaii, offloads personnel and supplies at the Francisco C. Ada/Saipan International Airport in I Fadang, Saipan, April 17, 2026. Coast Guard aircrews transported personnel with FEMA, the U.S. Army Corps of Engineers, the Department of Public Health and Social Services, and the Department of War to Saipan in support of recovery efforts following Typhoon Sinlaku. (Corinne Zilnicki/U.S. Coast Guard)" 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 Searches for 6 People After Losing Contact with Boat Following Typhoon Sinlaku</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>A Coast Guard HC-130 Hercules aircraft was launched to search for the six people on board, but it had to return to Guam...</p>



              </div>

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

      
      



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

  
</div>

      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        
  




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






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



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

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

              </div>

      </div>

              


              

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



  

              
      
    </div>
  </main>

      
<footer>
  <div class="container">
              
  



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

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

  



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

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




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



<div class="search-box">

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

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

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

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




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

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


    </div>
</div>

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



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

      




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


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





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

      




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


        </nav>
  



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

      




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


        </nav>
  



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

      




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


        </nav>
  


  



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

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

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

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

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

</div>



  



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

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




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

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

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

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

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

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

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


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


  </div>

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

              <!-- Extract Meta -->

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

              
          </div>

  </body>
</html>
