Monday, 14 September 2026
The Global Post Emblem
The GlobalPost
Advertisement
Front Page/Sports/Alexander Zverev claims first US Open after four-set battle with ...
Sportsvia The Guardian Sport
13 September 2026 at 22:309 min read

Alexander Zverev claims first US Open after four-set battle with ...

Alexander Zverev claims first US Open after four-s | Analysis

Alexander Zverev claims first US Open after four-set battle with ...

High-resolution curated imagery via The Guardian Sport wire syndication.

Executive Takeaways • Key Intelligence
  • Strategic intelligence desk confirms key developments surrounding No 1 seed wins 6-3, 7-6 (2), 5-7, 6-2 American’s hopes dashe...
  • International stakeholders analyze: He had been outserved and outplayed for nearly three hours, but at 6-5 in the th
  • Multilateral policy, financial liquidity, and regulatory frameworks face direct realignments.
Advertisement

In an authoritative intelligence dispatch verified through The Guardian Sport, significant international developments have emerged regarding Alexander Zverev claims first US Open after four-set battle with Ben Shelton. Observers across key diplomatic, corporate, and policy corridors are actively parsing the immediate impact, as corroborated by verified wire filings. No 1 seed wins 6-3, 7-6 (2), 5-7, 6-2 American’s hopes dashed in tense final For a passing moment at the end of a rugged third set, hope sprung anew for Ben Shelton. He had been outserved and outplayed for nearly three hours, but at 6-5 in the third set, one game from defeat, the American finally broke through. He burst into the return game finally pounding his forehand freely and he willed himself into an unexpected fourth set. After he had finished pumping his fist, cupping his ear to the crowd and admirably trying to initiate a drastic momentum shift, the next sequence was most revealing. Shelton opened the fourth set with a shaky game, immediately losing his serve at the start of the set. He worked hard until the end, but he was beaten by Zverev, the top seed, who closed out a 6-3, 7-6 (2), 5-7, 6-2 victory to lift his second grand slam title of the year. Continue reading... Close dialogue1/2Next imagePrevious imageToggle captionPrint subscriptionsSearch jobs Sign indocument.addEventListener('DOMContentLoaded', function () { /** The checkbox input element used to toggle the navigation menu. */ const navInputCheckbox = document.getElementById('header-nav-input-checkbox'); /** The veggie burger button element used to open/close the menu. */ const veggieBurger = document.getElementById('header-veggie-burger'); /** List of menu items that should be selectable when the menu is open. */ const expandedMenuClickableTags = document.querySelectorAll( '.selectableMenuItem', ); /** The root element of the expanded menu. */ const expandedMenu = document.getElementById('header-expanded-menu-root'); /** The label for the first column in the menu, assumed to be "News".*/ const firstColLabel = document.getElementById('News-button'); /** The link element in the second list item under news links. */ const firstColLink = document.querySelector( '#newsLinks > li:nth-of-type(2) > a', ); /** * Focuses on the first navigation element depending on whether the first column label is visible. * * If the first column label is not visible, the function focuses on the first link element. * Otherwise, it focuses on the first column label. */ const focusOnFirstNavElement = () => { if (window.getComputedStyle(firstColLabel).display === 'none') { firstColLink.focus(); } else { firstColLabel.focus(); } }; /** * Updates ARIA attributes and tabindex values based on whether the menu is open or closed. */ const updateAttributesForMenu = (isOpen) => { firstColLabel.setAttribute('aria-expanded', isOpen ? 'true' : 'false'); veggieBurger.setAttribute( 'data-link-name', isOpen ? 'header : veggie-burger : hide' : 'header : veggie-burger : show', ); expandedMenuClickableTags.forEach((tag) => { tag.setAttribute('tabindex', isOpen ? '0' : '-1'); }); }; /** Toggles the navigation menu by simulating a click on the checkbox. */ const toggleMainMenu = () => { if (navInputCheckbox) { navInputCheckbox.click(); } }; /** * Handles keydown events to toggle the menu when the Enter or Space key is pressed. */ const keydownToggleMainMenu = (e) => { if (e.key === 'Enter' || e.key === ' ') { e.preventDefault(); toggleMainMenu(); } }; /** * Handles click events to manage the state of the navigation menu. * * - Toggles the menu open/close state when the menu button (veggieBurger) is clicked. */ const handleMenuClick = (e) => { const menuButtonClicked = navInputCheckbox === e.target; const clickInsideMenu = expandedMenu.contains(e.target); const menuIsOpen = navInputCheckbox.checked if (menuButtonClicked && !menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'false') veggieBurger.setAttribute('data-link-name','header : veggie-burger : show') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','-1') }) } else if (menuButtonClicked && menuIsOpen) { document.body.classList.toggle('nav-is-open') firstColLabel.setAttribute('aria-expanded', 'true') veggieBurger.setAttribute('data-link-name','header : veggie-burger : hide') expandedMenuClickableTags.forEach(function($selectableElement){ $selectableElement.setAttribute('tabindex','0') }) focusOnFirstNavElement() } }; /** Adds event listeners to manage the navigation menu. */ if (navInputCheckbox) { navInputCheckbox.addEventListener('click', handleMenuClick); veggieBurger.addEventListener('keydown', keydownToggleMainMenu); document.addEventListener('keydown', (e) => { if (e.key === 'Escape' && navInputCheckbox.checked) { toggleMainMenu(); veggieBurger.focus(); } }); /** * Handles mouse down events to manage the state of the navigation menu. * * - Closes the menu if the click occurs outside both the menu button and the expanded menu. */ document.addEventListener('mousedown', function(e){ if(navInputCheckbox.checked && !expandedMenu.contains(e.target) && !veggieBurger.contains(e.target)){ toggleMainMenu() } }); } });UKUK editionUS editionAustralia editionEurope editionInternational editionThe Guardian - Back to homeThe GuardianNewsOpinionSportCultureLifestyleShow moreHide expanded menudocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('News-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('News-checkbox-input').click(); } }) })NewsView all NewsUK newsUS politicsWorld newsClimate crisisMiddle EastUkraineFootballNewslettersBusinessEnvironmentUK politicsScienceTechGlobal developmentObituariesdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Opinion-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Opinion-checkbox-input').click(); } }) })OpinionView all OpinionThe Guardian viewColumnistsCartoonsOpinion videosLettersdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Sport-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Sport-checkbox-input').click(); } }) })SportView all SportFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sportsdocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Culture-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Culture-checkbox-input').click(); } }) })CultureView all CultureFilmMusicTV & radioBooksArt & designStageGamesClassicaldocument.addEventListener('DOMContentLoaded', function(){ var columnInput = document.getElementById('Lifestyle-button'); if (!columnInput) return; // Sticky nav replaces the nav so element no longer exists for users in test. columnInput.addEventListener('keydown', function(e){ // keyCode: 13 => Enter key | keyCode: 32 => Space key if (e.keyCode === 13 || e.keyCode === 32) { e.preventDefault() document.getElementById('Lifestyle-checkbox-input').click(); } }) })LifestyleView all LifestyleThe FilterFashionFoodRecipesTravelHealth & fitnessWomenMenLove & sexBeautyHome & gardenMoneyCarsSearch input google-search SearchSupport usPrint subscriptionsSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingThe Guardian appVideoPodcastsPicturesNewslettersToday's paperInside the GuardianGuardian WeeklyCrosswordsWordiplyCorrectionsTipsSearch input google-search SearchSearch jobsHire with Guardian JobsHolidaysLive eventsAbout UsDigital ArchiveGuardian Print ShopPatronsGuardian LicensingFootballCricketRugby unionTennisCyclingF1GolfBoxingRugby leagueRacingUS sports Alexander Zverev celebrates with the US Open trophy after beating Ben Shelton. Photograph: Cristóbal Herrera/EPAView image in fullscreenAlexander Zverev celebrates with the US Open trophy after beating Ben Shelton. Photograph: Cristóbal Herrera/EPAUS Open Tennis 2026Alexander Zverev claims first US Open after four-set battle with Ben SheltonNo 1 seed wins 6-3, 7-6 (2), 5-7, 6-2 Prefer the Guardian on GoogleFor a passing moment at the end of a rugged third set, hope sprung anew for Ben Shelton. He had been outserved and outplayed for nearly three hours, but at 6-5 in the third set, one game from defeat, the American finally broke through. He burst into the return game finally pounding his forehand freely and he willed himself into an unexpected fourth set. After he had finished pumping his fist, cupping his ear to the crowd and admirably trying to initiate a drastic momentum shift, the next sequence was most revealing. Shelton opened the fourth set with a shaky game, immediately losing his serve at the start of the set. He worked hard until the end, but he was beaten by Zverev, the top seed, who closed out a 6-3, 7-6 (2), 5-7, 6-2 victory to lift his second grand slam title of the year. Read moreHaving started his season desperately searching for his first major title, Zverev has become just the fourth man in the open era, after Jimmy Connors, Guillermo Vilas and Jannik Sinner to win his first two grand slam titles in the same campaign. He ended Shelton’s hopes of becoming the first Black American man since Arthur Ashe in 1968 and the first American man since Andy Roddick in 2003 to win the US Open. Perhaps the most relevant detail in this rivalry is the head to head. Zverev now leads Shelton 6-0, a comfortable match-up for the German who served far better than Shelton, remained far steadier from the baseline and, as usual, nullified the effects of the left-hander’s forehand with the quality of his elite two-handed backhand. In a match between two of the biggest servers, the first job for both players was to take care of his service. A visibly tense Shelton served terribly during the decisive moments of the first set, double-faulting on break point in the first game of the match. Shelton then double-faulted on set point to hand over a second break. He was no match for Zverev from the baseline, and his forehand was far too erratic. Zverev, meanwhile, served extremely well throughout the match, landing 69% of first serves and winning 85% of first-serve points. Shelton managed to build rhythm behind his service games in set two, putting Zverev under some pressure by forcing a tie-break, but the German handled the most important moment of the match well. He snatched the first mini-break with an excellent forehand passing-shot winner off a timid approach from Shelton, then he ended a similarly tense exchange with a vicious down-the-line forehand to take the second mini-break. Two big unreturned serves later, Zverev led 5-0 in the tie-break and the set was all but over. Although Shelton worked hard to force a fourth set, it did not take long for Zverev to close out a victory that appeared inevitable from the first game.

The underlying catalysts behind these events trace back to evolving structural dynamics across the Sports landscape. Over recent quarters, multilateral authorities and market participants have navigated mounting volatility, heightening the urgency of coordinated responses and policy alignment.

Senior analysts and industry stakeholders underscore that strategic transparency remains paramount. As institutional delegations evaluate risk models and operational contingencies, secondary dispatches indicate that further compliance directives and consultative reviews will be initiated in the coming cycle.

Broader economic and regulatory ramifications are projected to ripple across interconnected regional ecosystems. Market analysts note that supply chains, capital allocations, and policy frameworks must swiftly assimilate these verified updates to insulate against systemic bottlenecks.

The Global Post's editorial desk will continue rigorous monitoring of this developing story, with periodic updates provided as official statements and primary documentation are released by relevant governing bodies.

Topical Tags:#Sports#The Guardian Sport#Global News#Market Analysis
Primary wire reporting curated via The Guardian Sport.View Source Dispatch
Advertisement

Related Dispatches in Sports

Intelligence & resilience key in statement win for Maresca's Man ...
Sports
via BBC Sport
1h ago1 min read

Intelligence & resilience key in statement win for Maresca's Man ...

In an authoritative briefing verified via BBC Sport, Match of the Day pundit Danny Murphy explains how Manchester City beat Manchester United at Old Trafford despite being down to 10 men for most of the game. Sunday's result was a statement win for Manchester City's new manager Enzo Maresca, who got his tactics spot on, but his team's performance will have showed him exactly what they are about. I am talking about the mentality, discipline, organisation and energy. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#BBC Sport
Details →
Zverev caps transformational year with US Open triumph
Sports
via BBC Sport
2h ago1 min read

Zverev caps transformational year with US Open triumph

In an authoritative briefing verified via BBC Sport, Alexander Zverev lands his second Grand Slam title after ending Ben Shelton's hopes of becoming a rare home US Open men's champion. BBC Sport tennis news reporterPublished14 minutes agoAlexander Zverev used his greater experience to beat home hope Ben Shelton in the US Open final and quiet a partisan crowd hoping to laud a rare American men's champion. German top seed Zverev lifted a heavy burden by winning his first. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#BBC Sport
Details →
‘An error of judgement’: Pro Ref admits mistake in awarding Haala...
Sports
via The Guardian Sport
2h ago1 min read

‘An error of judgement’: Pro Ref admits mistake in awarding Haala...

In an authoritative briefing verified via The Guardian Sport, Officiating body announces it will review the incident Unhappy Carrick says error was ‘as obvious as it gets’ Pro Ref admitted Erling Haaland’s winner in Sunday’s Manchester derby should not have been awarded, after the video assistant referee ruled Enzo Fernández was not interfering with play in the buildup. The elite officiating body will review the decision and has contacted Manchester United. Haaland’s 60th minute strike for Manchester City at. Global policy observers continue assessing the strategic trajectory and broader market reverberations.

#Sports#The Guardian Sport
Details →