/* Template Global */
#single_episode_wrap {
    width: 100%;
    max-width: 1100px;
    padding: 20px;
    background: #fff;
}
#single_episode_wrap a {
    color: #f00;
    text-decoration: none;
}
#single_episode_wrap img {
    display: block;
    width: 100%
}
/* Template Header */
#episode_title h1 {
    margin: 0;
    font-family: 'Comfortaa';
    color: #808080;
    font-size: 1.75em;
}
#episode_date span {
    font-size: 0.75em;
    color: #666;
    text-transform: uppercase;
}

#episode_links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: space-between;
    align-items: center;
}
#episode_links .episode_link_wrap {
    width: 33.3%;
}
#episode_links #link_wrap_ctm-tonight {
    text-align: center;
}
#episode_links #link_wrap_ctm-tonight h2 {
    font-size: 30px;
}

/* TEMPLATE CONTENT */
#episode_content_intro {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
#episode_guests {
    width: 25%;
    font-size: 18px;
}
#episode_description {
    width: 75%;
    font-size: 18px;
}
.episode_intro_heading {
    background: #000;
    padding: 15px;
    color: #FFF;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.episode_intro_content {
    padding: 15px 0;
    font-weight: 400;
}
#episode_video {
    margin-top: 50px;
}
#episode_listen_links {
    width: 100%;
    position: relative;
    margin-top: 50px;
}
#episode_listen_links h2 {
    text-align: center;
    background: #fff;
    width: 220px;
    margin: 0 auto;
    color: #000;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
}
#episode_listen_links #heading_line {
    height: 2px;
    background: #000;
    width: 100%;
    margin-top: -20px;

}
#listen_links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
#listen_links a {
    display: block;
    padding: 10px;
    text-align: center;
    color: #000 !important;
}
#listen_links a img {
    margin-bottom: 8px;
}

/* MEMBER ACCESS */
#episode_member_access {
    width: 100%;
}
#episode_member_access_inner {
    background: #000;

    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

#member_access_right,
#member_access_left {
    width: 30%;
}
#member_access_center {
    width: 40%;
}
#member_access_center p {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: "Jost", sans-serif;
}
#member_access_center {
    text-align: center;
}
#member_access_center p a {
    color: #f00 !important;
}

#member_access_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF0000;
    background-color: #FF0000;
    font-family: "Roboto", Sans-serif;
    font-size: 19px;
    font-weight: 500;
    fill: #FFFFFF !important;
    color: #FFFFFF !important;
    border-radius: 10px 10px 10px 10px;
    padding: 25px 25px 25px 25px;
    margin-top: 30px;
}

/* RECENT EPISODES */
#recent_episodes_heading {
    margin-top: 100px;
    margin-bottom: 25px;
}
#recent_episodes_heading h2 {
    text-align: center;
    background: #fff;
    width: 350px;
    margin: 0 auto;
    color: #000;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
}
#recent_episodes_heading #heading_line {
    height: 2px;
    background: #000;
    width: 100%;
    margin-top: -20px;

}
#recent_episodes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.recent_ep_box {
    display: block;
    width: 32%;
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    overflow: hidden;
    color: #303133 !important;
}
.recent_ep_box:hover {
    color: #f00 !important;
}
.recent_ep_img img{
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.recent_ep_content {
    padding: 15px;
}
.recent_ep_title {
    color: #303133;
    margin: 10px 0 5px;
    font-size: 1.2em;
    font-weight: 400;
}
.recent_ep_excerpt {
    color: #303133;
    font-size: 14px;
}
.recent_ep_date {
    color: #929292;
    font-size: 12px;
    display: block;
}

@media screen and (max-width:768px) {
    #episode_links {
        flex-direction: column;
    }
    #episode_links .episode_link_wrap {
        width: 100%;
    }
    #episode_content_intro {
        flex-direction: column;
    }
    #episode_guests,
    #episode_description {
        width: 100%;
    }
    #listen_links a {
        max-width: 25%;
    }
    #listen_links {
        flex-wrap: wrap;
    }
    .recent_ep_box {
        width: 100%;
    }
    #episode_member_access_inner {
        flex-direction: column;
    }
    #member_access_left,
    #member_access_right,
    #member_access_center{
        width: 100%;
    }
}