

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

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

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

 <script type="text/javascript">

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

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

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

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

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

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

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


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


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



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

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

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

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

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

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


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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

      'networkCategory': DL.isArticleNetworkCategory,

      'segment': '',

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  return DL;
}

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

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

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

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

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

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

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

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

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

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

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

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



<div class="page">
      

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






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

      



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






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

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



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

      




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

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


        </nav>
  


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






    
    

      



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

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

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

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

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

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

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

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








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



<div class="search-box">

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

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

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

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




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

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


    </div>
</div>



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



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



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

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


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



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

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


        </div>
          </div>

      
  



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

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

  



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

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


    
  </section>

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



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

      

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

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


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



                          
    
  



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

      
        </div>
  




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

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


      </div>
  
  



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

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





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

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






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





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






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




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




<article about="/daily-news/2026/04/18/ibogaine-lsd-and-psilocybin-trumps-new-order-medical-turning-point.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Ibogaine, LSD and Psilocybin: Trump’s New Order a Medical ‘Turning Point’" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/2026/04/18/ibogaine-lsd-and-psilocybin-trumps-new-order-medical-turning-point.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-b20f3bfb979" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26108712483718.jpg?itok=vo3zwoRu 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk" 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="President Donald Trump speaks in the Oval Office of the White House, Saturday, April 18, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" title="President Donald Trump speaks in the Oval Office of the White House, Saturday, April 18, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/ap26108712483718.jpg?itok=vo3zwoRu 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/ap26108712483718.jpg?itok=gPR2tpRk" alt="President Donald Trump speaks in the Oval Office of the White House, Saturday, April 18, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" title="President Donald Trump speaks in the Oval Office of the White House, Saturday, April 18, 2026, in Washington. (AP Photo/Julia Demaree Nikhinson)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Ibogaine, LSD and Psilocybin: Trump’s New Order a Medical ‘Turning Point’</span>

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




<article about="/daily-news/investigations-and-features/2026/04/17/family-ties-nfl-draft-prospects-share-how-military-bonds-shaped-their-lives.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Family Ties: NFL Draft Prospects Share How Military Bonds Shaped Their Lives" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/investigations-and-features/2026/04/17/family-ties-nfl-draft-prospects-share-how-military-bonds-shaped-their-lives.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-48274e5d46c" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="710" height="472" data-srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/nfl_players_1_.jpg?itok=dwNK3-_s 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx" 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="Army pilot Emma Rodriguez with husband and NFL prospect, Jacob Rodriguez. (USAA)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x" media="(min-width: 1200px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="500" height="334"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_tile_xs/public/2026-04/nfl_players_1_.jpg?itok=dwNK3-_s 1x" media="(max-width: 767px)" type="image/jpeg" width="710" height="472"/>
                  <img decoding="async" class="media__element" loading="lazy" width="500" height="334" src="//images01.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/nfl_players_1_.jpg?itok=Og3QJhOx" alt="" title="Army pilot Emma Rodriguez with husband and NFL prospect, Jacob Rodriguez. (USAA)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Family Ties: NFL Draft Prospects Share How Military Bonds Shaped Their Lives</span>

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




<article about="/daily-news/headlines/2026/04/18/guard-reserve-sound-alarm-readiness-strained-budget-clash.html" typeof="schema:Article" class="node node--article node--article--thumbnail-tile">
  
    <span property="schema:name" content="Guard, Reserve Sound Alarm That Readiness Strained in Defense Budget Talks" class="hidden"></span>


  
          
  

<div class="thumbnail--tile">
  <a href="/daily-news/headlines/2026/04/18/guard-reserve-sound-alarm-readiness-strained-budget-clash.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-958c9c2cf39" 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/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=IWYU8Ovb 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/9623086.jpg?itok=pT7PsIiL" 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="Air Force Gen. Steve Nordhaus, chief of the National Guard Bureau, joins reserve component chiefs to testify before the House Appropriations Committee Subcommittee on Defense during a National Guard and Reserve Forces oversight hearing in Washington, April 17, 2026. (U.S. Army photo by Master Sgt. Zach Sheely)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_tile/public/2026-04/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=pT7PsIiL 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/9623086.jpg?itok=IWYU8Ovb 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/9623086.jpg?itok=pT7PsIiL" alt="" title="Air Force Gen. Steve Nordhaus, chief of the National Guard Bureau, joins reserve component chiefs to testify before the House Appropriations Committee Subcommittee on Defense during a National Guard and Reserve Forces oversight hearing in Washington, April 17, 2026. (U.S. Army photo by Master Sgt. Zach Sheely)" typeof="foaf:Image" />

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

  </figure>

</div>
    <span property="schema:name">Guard, Reserve Sound Alarm That Readiness Strained in Defense Budget Talks</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/17/lew-harned-brigadier-general-who-served-wwii-desert-storm-dies-101.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="Lew Harned, Brigadier General Who Served From WWII to Desert Storm, Dies at 101" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/investigations-and-features/2026/04/17/lew-harned-brigadier-general-who-served-wwii-desert-storm-dies-101.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-a187b615fb9" 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=qNbvn7S1 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=bQ7QJh_f 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk" 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="Retired Brig. Gen. Lew Harned with Miss Madison Teen Natalie Popp, who wrote &amp;quot;Lew for the Red, White and Blue.” (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=qNbvn7S1 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=bQ7QJh_f 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/534448742_1171596908327377_3754096367696420264_n.jpg?itok=rodTFXBk" alt="" title="Retired Brig. Gen. Lew Harned with Miss Madison Teen Natalie Popp, who wrote &amp;quot;Lew for the Red, White and Blue.” (Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/investigations-and-features/2026/04/17/lew-harned-brigadier-general-who-served-wwii-desert-storm-dies-101.html" class="text--title"><span property="schema:name">Lew Harned, Brigadier General Who Served From WWII to Desert Storm, Dies at 101</span>
</span>
    </div>
  </a>
</div>
</article>

          
                              




<article about="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.html" typeof="schema:Article" class="node node--article node--article--thumbnail-small">
  
    <span property="schema:name" content="73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight" class="hidden"></span>


  
          
  


<div class="thumbnail--small">
  <a href="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.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-181887d3521" 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" 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="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" alt="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--small__content">
      <span href="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.html" class="text--title"><span property="schema:name">73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight</span>
</span>
    </div>
  </a>
</div>
</article>

          
            </div>
  </div>


      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        





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






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







                              
    
  



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




<article about="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Russia Has Looted Thousands of Ukrainian Cultural Objects in the War. Finding Them is a Challenge" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.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-962b2d68c50" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=rLCOILJz 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=MctnS88I 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv" 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="Ukraine&#039;s Culture Minister Tetiana Berezhna" title="Ukraine&#039;s Culture Minister Tetiana Berezhna speaks during an interview with the Associated Press in Kyiv, Ukraine, on Feb. 20, 2026. (AP Photo/Efrem Lukatsky)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=rLCOILJz 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=MctnS88I 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv" alt="Ukraine&#039;s Culture Minister Tetiana Berezhna" title="Ukraine&#039;s Culture Minister Tetiana Berezhna speaks during an interview with the Associated Press in Kyiv, Ukraine, on Feb. 20, 2026. (AP Photo/Efrem Lukatsky)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.html" class="text--title"><span property="schema:name">Russia Has Looted Thousands of Ukrainian Cultural Objects in the War. Finding Them is a Challenge</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/19/iranian-official-says-us-maximalist-demands-stall-face-face-talks.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Iranian Official Says US &#039;Maximalist&#039; Demands Stall Face-to-Face Talks" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/19/iranian-official-says-us-maximalist-demands-stall-face-face-talks.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-257ecd2c26e" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=oH0nVXvm 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=-rpIMiyy 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="Iran&#039;s Deputy Foreign Minister Saeed Khatibzadeh" title="Iran&#039;s Deputy Foreign Minister Saeed Khatibzadeh adjusts his glasses as he talks during an interview with Associated Press at the Antalya Diplomacy Forum, in Antalya, southern Turkey, Saturday, April 18, 2026. (AP Photo/Riza Ozel)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=oH0nVXvm 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=-rpIMiyy 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Turkey_Diplomacy_568_7.jpg?itok=P_cM8QSv" alt="Iran&#039;s Deputy Foreign Minister Saeed Khatibzadeh" title="Iran&#039;s Deputy Foreign Minister Saeed Khatibzadeh adjusts his glasses as he talks during an interview with Associated Press at the Antalya Diplomacy Forum, in Antalya, southern Turkey, Saturday, April 18, 2026. (AP Photo/Riza Ozel)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/19/iranian-official-says-us-maximalist-demands-stall-face-face-talks.html" class="text--title"><span property="schema:name">Iranian Official Says US &#039;Maximalist&#039; Demands Stall Face-to-Face Talks</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/19/north-korea-launches-multiple-short-range-ballistic-missiles-toward-sea.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="North Korea Launches Multiple Short-Range Ballistic Missiles Toward Sea" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/19/north-korea-launches-multiple-short-range-ballistic-missiles-toward-sea.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-74be44376e0" 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_Koreas_Tensions_53999.jpg?itok=pQe16hRS 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_Koreas_Tensions_53999.jpg?itok=pQe16hRS 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_Koreas_Tensions_53999.jpg?itok=LyDhykn8 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_Koreas_Tensions_53999.jpg?itok=mSUKaZxQ 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_Koreas_Tensions_53999.jpg?itok=pQe16hRS" 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&#039;s leader Kim Jong Un observes the test launches of missiles." title="FILE - In this photo provided by the North Korean government, its leader Kim Jong Un, center, visits to observe the test launches of missiles at an undisclosed place in North Korea Sunday, April 12, 2026. 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, File)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Koreas_Tensions_53999.jpg?itok=pQe16hRS 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_Koreas_Tensions_53999.jpg?itok=pQe16hRS 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_Koreas_Tensions_53999.jpg?itok=LyDhykn8 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_Koreas_Tensions_53999.jpg?itok=mSUKaZxQ 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_Koreas_Tensions_53999.jpg?itok=pQe16hRS" alt="North Korea&#039;s leader Kim Jong Un observes the test launches of missiles." title="FILE - In this photo provided by the North Korean government, its leader Kim Jong Un, center, visits to observe the test launches of missiles at an undisclosed place in North Korea Sunday, April 12, 2026. 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, File)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/19/north-korea-launches-multiple-short-range-ballistic-missiles-toward-sea.html" class="text--title"><span property="schema:name">North Korea Launches Multiple Short-Range Ballistic Missiles Toward Sea</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/16/coast-guard-seized-enough-cocaine-eastern-pacific-kill-14m-americans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Coast Guard Seized Enough Cocaine in Eastern Pacific to Kill 1.4M Americans" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/16/coast-guard-seized-enough-cocaine-eastern-pacific-kill-14m-americans.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-7b8f452068a" 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=t3Yhz5ml 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/9521851.jpg?itok=ECtJnQ3M 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/9521851.jpg?itok=MnYFbQQJ" 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 USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" title="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=t3Yhz5ml 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/9521851.jpg?itok=ECtJnQ3M 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/9521851.jpg?itok=MnYFbQQJ" alt="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" title="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/16/coast-guard-seized-enough-cocaine-eastern-pacific-kill-14m-americans.html" class="text--title"><span property="schema:name">Coast Guard Seized Enough Cocaine in Eastern Pacific to Kill 1.4M Americans</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/headlines/2026/04/17/astronauts-admit-losing-focus-space-views-overwhelm.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Lost in the View: Artemis II Astronauts Intimately Describe Time in Space" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/headlines/2026/04/17/astronauts-admit-losing-focus-space-views-overwhelm.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-25145b666d8" 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/ap26101526506974.jpg?itok=limfUuTm 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/ap26101526506974.jpg?itok=limfUuTm 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/ap26101526506974.jpg?itok=ZnGNpHDh 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/ap26101526506974.jpg?itok=VRuyJN2r 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/ap26101526506974.jpg?itok=limfUuTm" 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="In this photo provided by NASA, the Artemis II astronauts Victor Glover and Christina Koch are photographed on the flight deck of USS John P. Murtha after they were extracted from their Orion spacecraft after splashdown on Friday, April 11, 2026. (NASA via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26101526506974.jpg?itok=limfUuTm 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/ap26101526506974.jpg?itok=limfUuTm 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/ap26101526506974.jpg?itok=ZnGNpHDh 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/ap26101526506974.jpg?itok=VRuyJN2r 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/ap26101526506974.jpg?itok=limfUuTm" alt="" title="In this photo provided by NASA, the Artemis II astronauts Victor Glover and Christina Koch are photographed on the flight deck of USS John P. Murtha after they were extracted from their Orion spacecraft after splashdown on Friday, April 11, 2026. (NASA via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/headlines/2026/04/17/astronauts-admit-losing-focus-space-views-overwhelm.html" class="text--title"><span property="schema:name">Lost in the View: Artemis II Astronauts Intimately Describe Time in Space</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/14/navy-commissions-first-destroyer-named-vietnam-medal-of-honor-recipient.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Navy Commissions Destroyer Named for a Vietnam War Medal of Honor Recipient" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/14/navy-commissions-first-destroyer-named-vietnam-medal-of-honor-recipient.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-56eaedf4b2d" 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/9586152.jpg?itok=jivh_8yl 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/9586152.jpg?itok=jivh_8yl 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/9586152.jpg?itok=u5Ru7GqM 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/9586152.jpg?itok=j25IZ6XE 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/9586152.jpg?itok=jivh_8yl" 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="Retired U.S. Marine Corps Col. Harvey C. Barnum Jr., left, a Medal of Honor recipient and namesake of the future Arleigh Burke-class guided-missile destroyer USS Harvey C. Barnum Jr. (DDG 124), poses for a photo with his wife Martha Hill, the ship’s sponsor, following the warship’s arrival at its homeport of Naval Station Norfolk, Virginia, March 20, 2026. (U.S. Navy photo by Mass Communication Specialist Seaman Oliver McCain Vieira)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9586152.jpg?itok=jivh_8yl 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/9586152.jpg?itok=jivh_8yl 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/9586152.jpg?itok=u5Ru7GqM 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/9586152.jpg?itok=j25IZ6XE 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/9586152.jpg?itok=jivh_8yl" alt="" title="Retired U.S. Marine Corps Col. Harvey C. Barnum Jr., left, a Medal of Honor recipient and namesake of the future Arleigh Burke-class guided-missile destroyer USS Harvey C. Barnum Jr. (DDG 124), poses for a photo with his wife Martha Hill, the ship’s sponsor, following the warship’s arrival at its homeport of Naval Station Norfolk, Virginia, March 20, 2026. (U.S. Navy photo by Mass Communication Specialist Seaman Oliver McCain Vieira)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/14/navy-commissions-first-destroyer-named-vietnam-medal-of-honor-recipient.html" class="text--title"><span property="schema:name">Navy Commissions Destroyer Named for a Vietnam War Medal of Honor Recipient</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/headlines/2026/04/17/Hormuz-Reopens-US-Still-Blocking-Iran-Shipping" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Strait of Hormuz Reopens — US Still Blocking Iran Shipping" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/headlines/2026/04/17/Hormuz-Reopens-US-Still-Blocking-Iran-Shipping">
    <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--view blazy--field-image blazy--field-image--thumbnail-large blazy--view--articles-block-block-you-may-also-like blazy--view--articles blazy--view--articles--block-you-may-also-like field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-21ac4d94592" 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/ap25173094917531.jpg?itok=6Kvd6tP1 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/ap25173094917531.jpg?itok=6Kvd6tP1 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/ap25173094917531.jpg?itok=aWxWU_1L 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/ap25173094917531.jpg?itok=AAR7vUPN 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/ap25173094917531.jpg?itok=6Kvd6tP1" 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="In this image provided by the White House, President Donald Trump and Secretary of State Marco Rubio, right, sit in the Situation Room, Saturday, June 21, 2025, at the White House in Washington. (The White House via AP)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap25173094917531.jpg?itok=6Kvd6tP1 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/ap25173094917531.jpg?itok=6Kvd6tP1 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/ap25173094917531.jpg?itok=aWxWU_1L 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/ap25173094917531.jpg?itok=AAR7vUPN 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/ap25173094917531.jpg?itok=6Kvd6tP1" alt="" title="In this image provided by the White House, President Donald Trump and Secretary of State Marco Rubio, right, sit in the Situation Room, Saturday, June 21, 2025, at the White House in Washington. (The White House via AP)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/headlines/2026/04/17/Hormuz-Reopens-US-Still-Blocking-Iran-Shipping" class="text--title"><span property="schema:name">Strait of Hormuz Reopens — US Still Blocking Iran Shipping</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/investigations-and-features/2026/04/15/gulf-war-veteran-battling-colon-cancer-urges-get-screened-early.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Gulf War Veteran Battling Colon Cancer Urges ‘Get Screened Early’ " class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/investigations-and-features/2026/04/15/gulf-war-veteran-battling-colon-cancer-urges-get-screened-early.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--view blazy--field-image blazy--field-image--thumbnail-large blazy--view--articles-block-block-you-may-also-like blazy--view--articles blazy--view--articles--block-you-may-also-like field field--image field--label-hidden" data-blazy="">                            <div data-b-token="b-6a834f89483" 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/worthy_1_.jpg?itok=hs4iSk47 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/worthy_1_.jpg?itok=hs4iSk47 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/worthy_1_.jpg?itok=EjOdvGNr 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/worthy_1_.jpg?itok=VSNwG-Ii 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/worthy_1_.jpg?itok=hs4iSk47" 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 Joe Worthy with his wife, Jennifer. (Facebook)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/worthy_1_.jpg?itok=hs4iSk47 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/worthy_1_.jpg?itok=hs4iSk47 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/worthy_1_.jpg?itok=EjOdvGNr 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/worthy_1_.jpg?itok=VSNwG-Ii 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/worthy_1_.jpg?itok=hs4iSk47" alt="" title="Marine Corps veteran Joe Worthy with his wife, Jennifer. (Facebook)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/investigations-and-features/2026/04/15/gulf-war-veteran-battling-colon-cancer-urges-get-screened-early.html" class="text--title"><span property="schema:name">Gulf War Veteran Battling Colon Cancer Urges ‘Get Screened Early’ </span>
</span>
      </a>
</div>
</article>

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




<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-vertical">
  
    <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-vertical">
  <a href="/daily-news/2026/04/18/coast-guard-searches-6-people-after-losing-contact-boat-following-typhoon-sinlaku.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-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>
    <span href="/daily-news/2026/04/18/coast-guard-searches-6-people-after-losing-contact-boat-following-typhoon-sinlaku.html" class="text--title"><span property="schema:name">Coast Guard Searches for 6 People After Losing Contact with Boat Following Typhoon Sinlaku</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/18/2-jber-soldiers-injured-bear-attack-during-training-exercise.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="2 JBER Soldiers Injured in Bear Attack During Training Exercise" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/18/2-jber-soldiers-injured-bear-attack-during-training-exercise.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-9fb0d94c886" 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=wC8jKvOw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=STmtaZ39 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw" 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="Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska" title="A McDonnell F-4C Phantom II static display is hoisted in front of the Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska, Feb 18, 2021. (Adriana Barrientos/U.S. Air Force)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=wC8jKvOw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=STmtaZ39 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw" alt="Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska" title="A McDonnell F-4C Phantom II static display is hoisted in front of the Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska, Feb 18, 2021. (Adriana Barrientos/U.S. Air Force)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/18/2-jber-soldiers-injured-bear-attack-during-training-exercise.html" class="text--title"><span property="schema:name">2 JBER Soldiers Injured in Bear Attack During Training Exercise</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/17/weve-got-your-six-billboards-outside-clinics-follow-va-abortion-shift.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="&#039;We&#039;ve Got Your Six&#039; Billboards Outside Clinics Follow VA Abortion Shift" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/17/weve-got-your-six-billboards-outside-clinics-follow-va-abortion-shift.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-7a303d242fb" 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=RDuFsguk 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=pyUWp1Dr 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM" 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 example of new billboards in multiple U.S. cities. This sits outside the Las Cruces VA clinic in New Mexico. (Lamar Billboards)" title="An example of new billboards in multiple U.S. cities. This sits outside the Las Cruces VA clinic in New Mexico. (Lamar Billboards)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=RDuFsguk 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=pyUWp1Dr 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/screenshot_2026-04-16_at_10.57.19_am.png.jpg?itok=S_ChG3kM" alt="An example of new billboards in multiple U.S. cities. This sits outside the Las Cruces VA clinic in New Mexico. (Lamar Billboards)" title="An example of new billboards in multiple U.S. cities. This sits outside the Las Cruces VA clinic in New Mexico. (Lamar Billboards)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/17/weve-got-your-six-billboards-outside-clinics-follow-va-abortion-shift.html" class="text--title"><span property="schema:name">&#039;We&#039;ve Got Your Six&#039; Billboards Outside Clinics Follow VA Abortion Shift</span>
</span>
      </a>
</div>
</article>

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




<article about="/daily-news/2026/04/18/stories-of-black-and-indigenous-patriots-come-focus-us-remembers-american-revolution.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Stories of Black and Indigenous Patriots Come into Focus as US Remembers the American Revolution" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/18/stories-of-black-and-indigenous-patriots-come-focus-us-remembers-american-revolution.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-a4ccf2cae19" 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_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q 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_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q 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_America_25__Battle_of_Lexington_16152.jpg?itok=shvSoxLN 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_America_25__Battle_of_Lexington_16152.jpg?itok=PwBICucM 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_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q" 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="Revolutionary War re-enactor Charles Price" title="Revolutionary War re-enactor Charles Price, 95, who for decades portrayed enslaved Minuteman Prince Estabrook, poses for a portrait near the Minute Man statue, Monday, April 13, 2026, in Lexington, Mass. (AP Photo/Charles Krupa)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q 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_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q 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_America_25__Battle_of_Lexington_16152.jpg?itok=shvSoxLN 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_America_25__Battle_of_Lexington_16152.jpg?itok=PwBICucM 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_America_25__Battle_of_Lexington_16152.jpg?itok=Lv8vTo4q" alt="Revolutionary War re-enactor Charles Price" title="Revolutionary War re-enactor Charles Price, 95, who for decades portrayed enslaved Minuteman Prince Estabrook, poses for a portrait near the Minute Man statue, Monday, April 13, 2026, in Lexington, Mass. (AP Photo/Charles Krupa)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/18/stories-of-black-and-indigenous-patriots-come-focus-us-remembers-american-revolution.html" class="text--title"><span property="schema:name">Stories of Black and Indigenous Patriots Come into Focus as US Remembers the American Revolution</span>
</span>
      </a>
</div>
</article>

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

              

      </div>

              </div>

        
        






                            





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






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

      </div>

                        





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






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





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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

                      </div>
          </div>
        



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

      </div>

                        





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






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




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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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





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




<article about="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large-vertical">
  
    <span property="schema:name" content="Russia Has Looted Thousands of Ukrainian Cultural Objects in the War. Finding Them is a Challenge" class="hidden"></span>


  
          
  


<div class="thumbnail--large-vertical">
  <a href="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.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-962b2d68c50" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=rLCOILJz 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=MctnS88I 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv" 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="Ukraine&#039;s Culture Minister Tetiana Berezhna" title="Ukraine&#039;s Culture Minister Tetiana Berezhna speaks during an interview with the Associated Press in Kyiv, Ukraine, on Feb. 20, 2026. (AP Photo/Efrem Lukatsky)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=rLCOILJz 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images05.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=MctnS88I 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images05.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_Russia_Ukraine_War_Lost_Heritage_9455_.jpg?itok=JjeSg0bv" alt="Ukraine&#039;s Culture Minister Tetiana Berezhna" title="Ukraine&#039;s Culture Minister Tetiana Berezhna speaks during an interview with the Associated Press in Kyiv, Ukraine, on Feb. 20, 2026. (AP Photo/Efrem Lukatsky)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>
    <span href="/daily-news/2026/04/19/russia-has-looted-thousands-of-ukrainian-cultural-objects-war-finding-them-challenge.html" class="text--title"><span property="schema:name">Russia Has Looted Thousands of Ukrainian Cultural Objects in the War. Finding Them is a Challenge</span>
</span>
      </a>
</div>
</article>

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

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

                      </div>
          </div>
        



          
  <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 PCS Changes Are Coming at Once. Here’s What Service Members Need to Know Before Peak Season." class="hidden"></span>


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

  </div>

              

      </div>

                        
  




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






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



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

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

              </div>

      </div>

                        





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






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




<figure>  






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

  </picture>

    
  

              </div>

  </figure>

              </div>

    </a>
    </div>

                        





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






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




<div class="list-view list-view--vertical-thumb-left list--view--thumbnail-large">
                   <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Zelenskyy Honored with Prestigious International Four Freedoms Award</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/zelenskyy-honored-prestigious-international-four-freedoms-award" class="b-link">    <div data-b-token="b-a1a555347f2" 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_10534.jpg?itok=_RsJM6XC 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_10534.jpg?itok=_RsJM6XC 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_10534.jpg?itok=5BTa3Om7 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_10534.jpg?itok=9dJyXbbD 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_10534.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_10534.jpg?itok=_RsJM6XC 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_10534.jpg?itok=_RsJM6XC 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_10534.jpg?itok=5BTa3Om7 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_10534.jpg?itok=9dJyXbbD 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_10534.jpg?itok=_RsJM6XC" 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>Zelenskyy honored with prestigious International Four Freedoms Award for Ukraine&#039;s resilience.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">US Troops Complete Their Withdrawal from an Air Base in Syria</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/us-troops-complete-their-withdrawal-air-base-syria" class="b-link">    <div data-b-token="b-683e834389a" 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_10533.jpg?itok=zN53omc0 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_10533.jpg?itok=zN53omc0 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_10533.jpg?itok=w21wiC4O 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_10533.jpg?itok=E5bHvUHN 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_10533.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_10533.jpg?itok=zN53omc0 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_10533.jpg?itok=zN53omc0 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_10533.jpg?itok=w21wiC4O 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_10533.jpg?itok=E5bHvUHN 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_10533.jpg?itok=zN53omc0" 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>US troops complete their withdrawal from an air base in Syria.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Top US General Likens Hormuz Blockade to Supermarket Parking Lot</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/top-us-general-likens-hormuz-blockade-supermarket-parking-lot" class="b-link">    <div data-b-token="b-923d63de7c0" class="media media--blazy media--switch media--switch--content media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10532.jpg?itok=7WOEHoXg 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10532.jpg?itok=7WOEHoXg 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183" data-srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10532.jpg?itok=eRCUri6e 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="650" height="366" data-srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10532.jpg?itok=Vfv0FtWA 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images04.military.com/sites/default/files/brightcove/videos/images/posters/image_10532.jpg" width="200" height="133" src="data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D&#039;http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg&#039;%20viewBox%3D&#039;0%200%201%201&#039;%2F%3E" alt="" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10532.jpg?itok=7WOEHoXg 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10532.jpg?itok=7WOEHoXg 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_325x325/public/brightcove/videos/images/posters/image_10532.jpg?itok=eRCUri6e 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="325" height="183"/>
              <source srcset="//images04.military.com/sites/default/files/styles/max_650x650/public/brightcove/videos/images/posters/image_10532.jpg?itok=Vfv0FtWA 1x" media="(max-width: 767px)" type="image/jpeg" width="650" height="366"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images04.military.com/sites/default/files/styles/thumbnail_large/public/brightcove/videos/images/posters/image_10532.jpg?itok=7WOEHoXg" 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>Top US general likens Hormuz blockade to supermarket parking lot and confirms no ships boarded yet.</p>



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

</div>
        </article>
      </div>
                <div class="generated-list video--thumbnail--large">
        <article>
          <div class="thumbnail--large"><div class="thumbnail--large__content">Hegseth Blasts ‘Unpatriotic’ Press, Compares Reporters to Biblical Pharisees</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/hegseth-blasts-unpatriotic-press-compares-reporters-biblical-pharisees" class="b-link">    <div data-b-token="b-f04611c2d31" 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_10531.jpg?itok=Koh-b7er 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_10531.jpg?itok=Koh-b7er 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_10531.jpg?itok=LBdmVq5H 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_10531.jpg?itok=4AoKAtN8 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_10531.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_10531.jpg?itok=Koh-b7er 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_10531.jpg?itok=Koh-b7er 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_10531.jpg?itok=LBdmVq5H 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_10531.jpg?itok=4AoKAtN8 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_10531.jpg?itok=Koh-b7er" 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>Hegseth blasts ‘unpatriotic’ press, compares reporters to biblical Pharisees.</p>



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

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



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

  
</div>

      </div>

                        





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






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







                            



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




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

  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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


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




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

  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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


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


    </div>

              

      </div>

                        





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






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




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




<article about="/daily-news/2026/04/18/2-jber-soldiers-injured-bear-attack-during-training-exercise.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="2 JBER Soldiers Injured in Bear Attack During Training Exercise" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/18/2-jber-soldiers-injured-bear-attack-during-training-exercise.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-9fb0d94c886" 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=wC8jKvOw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=STmtaZ39 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw" 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="Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska" title="A McDonnell F-4C Phantom II static display is hoisted in front of the Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska, Feb 18, 2021. (Adriana Barrientos/U.S. Air Force)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=wC8jKvOw 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=STmtaZ39 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/2024-03/mil-joint-base-elmendorf-richardson-gate-1800.jpg?itok=SGiMv5Pw" alt="Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska" title="A McDonnell F-4C Phantom II static display is hoisted in front of the Government Hill Gate at Joint Base Elmendorf-Richardson, Alaska, Feb 18, 2021. (Adriana Barrientos/U.S. Air Force)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">2 JBER Soldiers Injured in Bear Attack During Training Exercise</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The U.S. Army 11th Airborne Division soldiers were hurt in the encounter with a brown bear while participating a &quot;land...</p>



              </div>

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

                




<article about="/daily-news/investigations-and-features/2026/04/17/family-ties-nfl-draft-prospects-share-how-military-bonds-shaped-their-lives.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Family Ties: NFL Draft Prospects Share How Military Bonds Shaped Their Lives" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/investigations-and-features/2026/04/17/family-ties-nfl-draft-prospects-share-how-military-bonds-shaped-their-lives.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-452865edf06" 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/nfl_players_1_.jpg?itok=5s4oQzoo 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/nfl_players_1_.jpg?itok=5s4oQzoo 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/nfl_players_1_.jpg?itok=mnMsE_tY 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/nfl_players_1_.jpg?itok=KoYSnNZq 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/nfl_players_1_.jpg?itok=5s4oQzoo" 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 pilot Emma Rodriguez with husband and NFL prospect, Jacob Rodriguez. (USAA)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images01.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/nfl_players_1_.jpg?itok=5s4oQzoo 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/nfl_players_1_.jpg?itok=5s4oQzoo 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/nfl_players_1_.jpg?itok=mnMsE_tY 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/nfl_players_1_.jpg?itok=KoYSnNZq 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/nfl_players_1_.jpg?itok=5s4oQzoo" alt="" title="Army pilot Emma Rodriguez with husband and NFL prospect, Jacob Rodriguez. (USAA)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Family Ties: NFL Draft Prospects Share How Military Bonds Shaped Their Lives</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Before their names are called in the NFL Draft, two players shared their military ties and what service and sacrifice means...</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/18/iranian-gunboats-fire-tanker-strait-of-hormuz-iran-reimposes-restrictions.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Iranian Gunboats Fire on Tanker in Strait of Hormuz as Iran Reimposes Restrictions" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/18/iranian-gunboats-fire-tanker-strait-of-hormuz-iran-reimposes-restrictions.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-5922f3820b0" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=pvojYCcf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=gU_ri1b0 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan" 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 man reacts as he enters an apartment destroyed in an airstrike." title="Assem Abdallah reacts as he enters his friend&#039;s apartment destroyed in an Israeli airstrike in Kfar Roumman, southern Lebanon, Friday, April 17, 2026, following a ceasefire between Israel and Hezbollah. (AP Photo/Hassan Ammar)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=pvojYCcf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=gU_ri1b0 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan" alt="A man reacts as he enters an apartment destroyed in an airstrike." title="Assem Abdallah reacts as he enters his friend&#039;s apartment destroyed in an Israeli airstrike in Kfar Roumman, southern Lebanon, Friday, April 17, 2026, following a ceasefire between Israel and Hezbollah. (AP Photo/Hassan Ammar)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Iranian Gunboats Fire on Tanker in Strait of Hormuz as Iran Reimposes Restrictions</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Confusion over the critical chokepoint threatened to deepen the energy crisis roiling the global economy and push the two...</p>



              </div>

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

                




<article about="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.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-181887d3521" 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" 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="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" alt="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The list of signatories include Air Force, Army and Navy veterans, 17 of whom are 4-stars.</p>



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




<article about="/daily-news/2026/04/18/iranian-gunboats-fire-tanker-strait-of-hormuz-iran-reimposes-restrictions.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Iranian Gunboats Fire on Tanker in Strait of Hormuz as Iran Reimposes Restrictions" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/18/iranian-gunboats-fire-tanker-strait-of-hormuz-iran-reimposes-restrictions.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-5922f3820b0" class="media media--blazy media--image media--responsive is-b-loading">  <picture>
                  <source srcset="about:blank" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x"/>
              <source srcset="about:blank" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x"/>
              <source srcset="about:blank" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=pvojYCcf 1x"/>
              <source srcset="about:blank" media="(max-width: 767px)" type="image/jpeg" width="200" height="133" data-srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=gU_ri1b0 1x"/>
                  <img decoding="async" class="media__element b-lazy b-responsive" loading="lazy" data-src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan" 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 man reacts as he enters an apartment destroyed in an airstrike." title="Assem Abdallah reacts as he enters his friend&#039;s apartment destroyed in an Israeli airstrike in Kfar Roumman, southern Lebanon, Friday, April 17, 2026, following a ceasefire between Israel and Hezbollah. (AP Photo/Hassan Ammar)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x" media="(min-width: 1200px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan 1x" media="(min-width: 992px) and (max-width: 1199px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_325x325/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=pvojYCcf 1x" media="(min-width: 768px) and (max-width: 991px)" type="image/jpeg" width="200" height="133"/>
              <source srcset="//images03.military.com/sites/default/files/styles/max_650x650/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=gU_ri1b0 1x" media="(max-width: 767px)" type="image/jpeg" width="200" height="133"/>
                  <img decoding="async" class="media__element" loading="lazy" width="200" height="133" src="//images03.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ApNewsroom_APTOPIX_Lebanon_Israel_Iran_War_32233.jpg?itok=D0p9Cjan" alt="A man reacts as he enters an apartment destroyed in an airstrike." title="Assem Abdallah reacts as he enters his friend&#039;s apartment destroyed in an Israeli airstrike in Kfar Roumman, southern Lebanon, Friday, April 17, 2026, following a ceasefire between Israel and Hezbollah. (AP Photo/Hassan Ammar)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Iranian Gunboats Fire on Tanker in Strait of Hormuz as Iran Reimposes Restrictions</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Confusion over the critical chokepoint threatened to deepen the energy crisis roiling the global economy and push the two...</p>



              </div>

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

                




<article about="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/17/73-military-veterans-including-17-4-stars-defend-sen-mark-kelly-legal-fight.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-181887d3521" 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" 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="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images04.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=FqHd5-Kk 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/ap26101590030050.jpg?itok=gY8-8gew 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/ap26101590030050.jpg?itok=ZAXnaHSs 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/ap26101590030050.jpg?itok=FqHd5-Kk" alt="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" title="Sen. Mark Kelly, D-Ariz., speaks at the National Action Network (NAN) Convention in New York, Saturday, April 11, 2026. (AP Photo/Angelina Katsanis)" typeof="foaf:Image" />

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

  </figure>

</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">73 Military Veterans, including 17 4-Stars, Defend Sen. Mark Kelly in Legal Fight</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The list of signatories include Air Force, Army and Navy veterans, 17 of whom are 4-stars.</p>



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

  
</div>

      </div>

                        





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






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




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




<article about="/militarycoms-commenting-policy.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Military.com’s Commenting Policy" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/militarycoms-commenting-policy.html">
    <div class="thumbnail--large__image">
      
<div class="image">
  
<i class="icon icon-photo_size_select_actual"></i>
  
</div>
    </div>

    <div class="thumbnail--large__content">
      <span class="text--title"><span property="schema:name">Military.com’s Commenting Policy</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>Comments should contribute meaningfully to the conversation and maintain a respectful environment for all users.</p>



              </div>

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

                




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


  
          
  


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




<figure>  






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

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

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

  </figure>

</div>
    </div>

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






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



              </div>

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

      
      



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

                




<article about="/daily-news/2026/04/16/coast-guard-seized-enough-cocaine-eastern-pacific-kill-14m-americans.html" typeof="schema:Article" class="node node--article node--article--thumbnail-large">
  
    <span property="schema:name" content="Coast Guard Seized Enough Cocaine in Eastern Pacific to Kill 1.4M Americans" class="hidden"></span>


  
          
  


<div class="thumbnail--large">
  <a href="/daily-news/2026/04/16/coast-guard-seized-enough-cocaine-eastern-pacific-kill-14m-americans.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-7b8f452068a" 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=t3Yhz5ml 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/9521851.jpg?itok=ECtJnQ3M 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/9521851.jpg?itok=MnYFbQQJ" 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 USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" title="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" typeof="foaf:Image" />

  </picture>
<noscript>  <picture>
                  <source srcset="//images02.military.com/sites/default/files/styles/thumbnail_large/public/2026-04/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=MnYFbQQJ 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/9521851.jpg?itok=t3Yhz5ml 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/9521851.jpg?itok=ECtJnQ3M 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/9521851.jpg?itok=MnYFbQQJ" alt="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" title="A USCGC Seneca (WMEC 906) crew member wraps bails of illicit narcotics during a drug offload at Port Everglades in Fort Lauderdale, Florida, Feb.13, 2026. (U.S. Coast Guard photo by Petty Officer 3rd Class Moriah Cannion)" 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 Seized Enough Cocaine in Eastern Pacific to Kill 1.4M Americans</span>
</span>
              <div class="text--small thumbnail--large__blurb">
          






    <div class="field field--summary field--label-hidden">                          <p>The Coast Guard has seized more than 215,000 pounds of cocaine since August 2025 as part of Operation Pacific Viper.</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>
