ADVERTISEMENT

Yastremska hopes Ukraine proud of Australian Open exploits

Published Jan 23, 2024 12:35 am

At A Glance

  • Fearless Ukrainian qualifier Dayana Yastremska said she hoped she had made her war-torn country proud by reaching a maiden Grand Slam quarterfinal Monday, Jan. 22, while admitting it was emotionally hard.

MELBOURNE (AFP) -- Fearless Ukrainian qualifier Dayana Yastremska said she hoped she had made her war-torn country proud by reaching a maiden Grand Slam quarterfinal Monday, Jan. 22, while admitting it was emotionally hard.

DAYANA.jpg
Ukraine's Dayana Yastremska (AFP)

Driven by a booming serve and aggressive groundstrokes, the athletic 23-year-old battled past two-time champion Victoria Azarenka 7-6 (8/6), 6-4 on Rod Laver Arena to secure a last-eight berth at the Australian Open.

Her reward is a clash with unseeded Czech Linda Noskova, who progressed when Ukrainian Elina Svitolina retired with a bad back while trailing 3-0 in the first set.

"I think they're going to be really proud of me and I'm happy to make them be proud," Yastremska said of Ukrainians back home.

Yastremska won three WTA Tour titles as a teenager but has struggled in recent years, admitting the conflict had affected her game.

"A lot of things affected me, and because of that I couldn't really play like I wanted. Plus I put a lot of pressure on myself, as well," she said.

"The war, of course, it's affected us a lot because you cannot go home like you wanted, when you wanted, like it was before. You always read the news. You always see the videos.

"As I said before, for example, when I was in Brisbane (this month), the rocket arrived on my grandmother's house. It's tough emotionally to play."

Yastremska's previous best at the Slams was a fourth-round appearance at Wimbledon in 2019, but she has been in impressive touch at Melbourne Park.

Ranked 93, she has beaten a number of top 50 players, including Wimbledon champion and seventh seed Marketa Vondrousova in the first round.

She landed the first blow in a rollercoaster opening set in her fourth-round match on Monday, going up 3-1, but 18th seed Azarenka responded to put it back on serve as Yastremska's error-count ballooned.

Her veteran opponent then broke again to move 4-3 ahead, but faltered badly serving for the set at 5-4, blown away to love.

Another break gave Azarenka a 6-5 advantage, but she again lost her nerve, with Yastremska saving two set points before sending it to a tie-break, where she prevailed after 74 draining minutes.

Azarenka flew 3-0 up in the second set but her serve was again exposed and Yastremska came storming back, with a searing backhand down the line giving her a second break for 4-3 and she never relented.

Related Tags

Dayana Yastremska AUSTRALIAN OPEN
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.