

.episode-header {
    display: flex;
    flex-direction: column; /* Stack image and title vertically */
    align-items: flex-start; /* Align items to the left */
    gap: 20px; /* Adjust gap for vertical stacking */
    margin-bottom: 40px;
    text-align: left;
}

.episode-detail-poster {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.episode-title-meta {
    text-align: left;
}

.episode-title-meta h1 {
    font-size: 2.8em;
    font-weight: 900;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.meta-info {
    color: #5a5a5a;
    margin: 0;
}

.episode-content {
    text-align: left;
}

.player-container {
    margin-bottom: 40px;
}

.show-notes {
    text-align: left;
}

.show-notes h2 {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

.show-notes h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.show-notes p, .show-notes ul {
    font-size: 1.1em;
    line-height: 1.7;
    color: #3a3a3a;
}

.footnotes {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.footnotes h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
}

.footnotes p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #5a5a5a;
}

/* --- Episode Hosts & Guests Section --- */
#episode-hosts-guests {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 160px;
}

#episode-hosts-guests .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 60px;
}

.show-notes ul {
    padding-left: 20px;
}

.show-notes li {
    margin-bottom: 10px;
}

/* --- More Episodes Section --- */
#more-episodes {
    max-width: 1200px; /* Match homepage section width */
    margin: 80px auto; /* Add space above and below */
    padding: 0 160px; /* Match main content padding */
}

#more-episodes .section-header {
    justify-content: flex-start; /* Align the 'More Episodes' title to the left */
    text-align: left;
    margin-bottom: 40px;
}
