/* Single Episode Page Styles */
.episode-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 30px;
    text-align: center;
    min-height: 100%;
}

.top-container {
    display: flex;
    flex-direction: row;
}

.episode-cover {
    /* margin-bottom: 20px; */
    display: block;
}

.cover-image {
    width: 300px;
    height: auto;
    max-width: 300px;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

.meta-container {
    padding: 20px;
    padding-top: 40px;
    text-align: left;
}

.episode-meta {
    font-size: 0.9rem;
    color: #aaa;
    margin: 5px 0;
}

.meta-highlight {
    color: #f5f5f5;
    font-weight: bold;
}

.episode-title {
    font-size: 2rem;
    color: #ff5252;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.episode-authors {
    font-size: 1rem;
    color: #ddd;
    margin: 10px 0;
}

.episode-links {
    text-align: left;
    margin: 20px 0;
}

.link-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.3s ease;
}

.link-button.youtube {
    background-color: #ff0000;
}

.link-button.youtube:hover {
    background-color: #cc0000;
}

.link-button.spotify {
    background-color: #1db954;
}

.link-button.spotify:hover {
    background-color: #17a443;
}

.link-button.apple-podcasts {
    background-color: #833ab4;
}

.link-button.apple-podcasts:hover {
    background-color: #6b2a94;
}

.link-button.soundcloud {
    background-color: #ff7700;
}

.link-button.soundcloud:hover {
    background-color: #cc5f00;
}

.link-button.direct-download {
    background-color: #007bff;
}

.link-button.direct-download:hover {
    background-color: #0056b3;
}

.episode-body {
    font-size: 1rem;
    color: #ccc;
    margin-top: 20px;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .top-container {
        flex-direction: column;
    }
    .cover-image {
        width: 250px;
    }
    .meta-container {
        text-align: center;
        padding: 20px 5px 20px 5px;
    }
    .episode-title {
        font-size: 1.75rem;   
    }
}