.episode {
    display:flex;
    flex-direction: column;
    gap: 22px;
    max-width: 578px;
    position: relative;

    > .episode-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 20px;
        gap: 20px;
        background: #cbefff;
        background: --webkit-gradient(linear, left top, left bottom, color-stop(4%, #f1fbff), to(#cbefff));
        background: -o-linear-gradient(top, #f1fbff 4%, #cbefff 100%);
        background: linear-gradient(to bottom, #f1fbff 4%, #cbefff 100%);
    }
}

.episode .episode-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
    gap: 20px;
    background: #cbefff;
    background: --webkit-gradient(linear, left top, left bottom, color-stop(4%, #f1fbff), to(#cbefff));
    background: -o-linear-gradient(top, #f1fbff 4%, #cbefff 100%);
    background: linear-gradient(to bottom, #f1fbff 4%, #cbefff 100%);
    max-height: fit-content;
}

.episode .episode-list p {
    text-align: center;
}

.episode .episode-list .episode-ctas .episode-ctas-title {
    font-family: "Mitr Bold", sans-serif;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.episode .episode-list .episode-ctas .episode-cta:hover {
    border-color: var(--blue)
}

.episode .episode-list .episode-ctas .episode-ctas-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.episode .episode-list .episode-ctas .episode-ctas-links a {
    font-weight: 600;
}

.episode .left-ctas-list {
    position: sticky;
    top: 70px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 20px;
    z-index: 10;
}

.episode .left-ctas-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-weight: 600;
}


@media screen and (min-width: 48rem) {
    .episode { 
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 0.5fr 3fr;
        height: 100%;
        gap:22px;
    }

    .episode-bloc{
        display: grid;
        grid-template-columns: 1fr 4fr;
    }

    .episode .bloc-left-ctas-list {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        height:100%;
    }

    .episode .bloc-episode-list {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        height:100%;
    }

    .episode .left-ctas-list {
        position: sticky;
        top: 70px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 20px;
        z-index: 10;
        height: min-content;
    }
}

@media screen and (min-width: 64rem) {
    .episode { 
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 0.5fr 7fr;
        height: 100%;
        width: 348px;
    }

    .episode-bloc{
        display: grid;
        grid-template-columns: 1fr 4fr;
    }

    .episode .bloc-left-ctas-list {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        height:100%;
    }

    .episode .bloc-episode-list {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        height:100%;
    }

    .episode .left-ctas-list {
        position: sticky;
        top: 70px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 20px;
        z-index: 10;
        width: 348px;
        height: min-content;
    }
}

@media screen and (min-width: 70rem) {
    .episode { 
        margin-right: -100px;
    }
}