.episode_wrap {
    padding: 10px;
    justify-self: start;
    width: 100%;
}
.episode_wrap:hover .episode_title_text {
    color: var(--green);
}
.episode {
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: space-between;
    padding: 10px;
    border-radius: 8px;
    height: 100%;
    text-decoration: none;
    z-index: 1;
    transition: 0.2s ease;
}
.episode:hover {
    z-index: 0;
    transition: 0.2s ease;
}
.episode_title {
    padding-bottom: 10px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    width: 100%;
}
.episode_title_text {
    flex: 1;
    flex-grow: 1;
    font-weight: 600;
    font-size: 18px;
}
.release_date {
    padding-top: 20px;
    opacity: 0.5;
}
.episode_content {
    flex: 1;
    flex-grow: 1;
    padding-left: 40px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: start;
    min-height: 100%;
}
.episode_cover {
    flex: 1;
    flex-grow: 1;
    max-width: 400px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: start;
    overflow: hidden;
    border-radius: 6px;
    background-color: rgb(0,0,0);
    aspect-ratio: 1.7778;
}
.episode_cover_src {
    width: 100%;
}
.episode_description {
    flex: 1;
    flex-grow: 1;
    opacity: 0.5;
    line-height: 20px;
}
.season_episode {
    padding-bottom: 10px;
    font-size: 12px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.dot_separator {
    display: block;
    width: 6px;
    height: 6px;
    box-shadow: 0px 0px 4px rgba(184,211,35,0.8);
    background-color: var(--green);
    border-radius: 50%;
    margin: 0px 5px;
}