.episodes-list {
    display:flex;
    flex-direction:column;
    width:100%;
    height:auto;
    padding:10px;
    box-sizing:border-box;
}
.episode-list-individual:hover {
    box-shadow: 0 10px 20px rgba(66, 42, 2, 0.15), 0 7px 7px rgba(0,0,0,0.12);
}
.episode-list-individual {
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); */
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    background-color:white;
    box-sizing: border-box;
    width:100%;
    height:auto;
    cursor: pointer;
    margin-bottom:10px;
    justify-content: space-between;
    box-shadow: 0px;
    overflow:hidden;
    transition: all 0.1s ease 0s;
    bottom:0px;
    display:flex;
    flex-direction: row;
    /* border:solid 1px #adadad; */
    /* border:solid 1px #adadad; */
    border: solid 1px rgb(6, 33, 70, 0.1);
}

.episode-image {
    order:1;
    height:100px;
    /* margin:3px; */
    width:100px;

    /* background-color:#d8d8d8; */
}

.episode-image img {
    height:100px;
    width:100px;
    /* border-radius:5px; */
    overflow: hidden;
    /* border: solid 1px #cccccc; */
    /* border-right:solid 1px #adadad; */
    border-right:solid 1px rgb(6, 33, 70, 0.1) ;

    box-sizing: border-box;
}

.episode-title {
    order:1;
    flex-grow:1;
    height:auto;
    box-sizing: border-box;
    padding:20px;
    padding-top:8px;
    font-weight:bold;
    line-height:20px;
    display:flex;
    /* background-color:yellow; */
    flex-direction:column;;
}
.episode-title a {
    text-decoration:none;
    color:inherit;
}


.episode-item-name {
    width:100%;
    order:1;
    flex-grow:1;
    
    /* background-color:red; */
}

.episode-item-datetime {
    flex-grow:1;
    order:2;
    font-weight: lighter;
    color:#707070;

    /* background-color:green; */
}

