.episode_wrap {
    padding: 10px;
    justify-self: start;
}
.episode {
    display: flex;
    flex-flow: column nowrap;
    padding: 10px;
    padding-bottom: 20px;
    border-radius: 8px;
    height: 100%;
    text-decoration: none;
}
.episode:hover {
    background-color: rgba(255,255,255,0.1);
}
.episode_title {
    padding-top: 20px;
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 10px;
}
.release_date {
    padding-top: 20px;
    opacity: 0.5;
}
.episode_cover {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 6px;
    background-color: white;
    aspect-ratio: 16 / 9;
}
.episode_cover_src {
    width: 100%;
}
.episode_description {
    flex: 1;
    flex-grow: 1;
    opacity: 0.5;
    line-height: 20px;
}
.season_episode {
    opacity: 0.5;
    padding-bottom: 10px;
    font-size: 12px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
}
.dot_separator {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: red;
    border-radius: 50%;
    margin: 0px 5px;
}