Moments from the dirt, the studio, and everywhere in between. New content drops with every episode.
Photo Coming Soon
Video Coming Soon▶ Clip
Photo Coming Soon
Photo Coming Soon
Video Coming Soon▶ Clip
Photo Coming Soon
Photo Coming Soon
Video Coming Soon▶ Clip
Photos and clips from upcoming episodes will be added here as they're released.
🥎 Launching August 10th
Get the Dirt In Your Inbox
Monthly softball talk, workforce skills, bloopers, and a special note from Jaime & Hallie — plus early access and a personal discount code for the store. No spam. Just dirt.
// ── Newsletter Popup ─────────────────────────────────────────────────────────
(function() {
const overlay = document.getElementById('nl-overlay');
const closeBtn = document.getElementById('nl-close');
const trigger = document.getElementById('nl-trigger');
if (!overlay) return;
function openPopup() { overlay.classList.add('open'); document.body.style.overflow = 'hidden'; }
function closePopup() { overlay.classList.remove('open'); document.body.style.overflow = ''; }
// Open on trigger click
trigger && trigger.addEventListener('click', openPopup);
// Close on X or overlay click
closeBtn && closeBtn.addEventListener('click', closePopup);
overlay.addEventListener('click', e => { if (e.target === overlay) closePopup(); });
// Close on Escape
document.addEventListener('keydown', e => { if (e.key === 'Escape') closePopup(); });
// Auto-open after 18 seconds (only once per session)
if (!sessionStorage.getItem('nl_shown')) {
setTimeout(() => {
openPopup();
sessionStorage.setItem('nl_shown', '1');
}, 18000);
}
})();