/* Hides anything with the word 'episode' in the class name */
div[class*="episode"], 
section[class*="episode"] { 
    display: none !important; 
}

/* Hides the "Load More" button which often uses a different naming convention */
.load-more, .pod-load-more {
    display: none !important;
}

/* Adds a bit of breathing room at the bottom of the header */
.header {
    margin-bottom: 50px;
}

/* If Podbean updates their theme and changes the word "episode" to something like "post" or "show," the episodes might come back. If they do, you'd just update the word 'episode' in the above line of code */
