/********************************************************
 * TV V2 Episode Detail Page
 ********************************************************/
.mc-tv-v2-episode-hero
{
    min-height: 430px;
    align-items: flex-end;

    background-color: rgba(0,0,0,0.35);
    background-size: cover;
    background-position: center center;
}

.mc-tv-v2-episode-subtitle
{
    margin: -4px 0 14px 0;
    color: rgba(255,255,255,0.84);
    font-size: 23px;
    font-weight: 500;
}

.mc-tv-v2-back-link
{
    display: inline-block;
    margin-bottom: 10px;

    color: rgba(255,255,255,0.78);
    font-size: 14px;
    text-decoration: none;
}

.mc-tv-v2-back-link:hover
{
    color: #ffffff;
}

.mc-tv-v2-episode-detail .mc-tv-v2-summary
{
    max-width: 850px;
}

/********************************************************
 * Fallback when episode has no still image
 ********************************************************/
.mc-tv-v2-episode-hero:not([style])
{
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 32%),
        linear-gradient(135deg, rgba(22,22,28,0.98), rgba(4,4,8,0.98));
}

/********************************************************
 * Mobile
 ********************************************************/
@media (max-width: 767px)
{
    .mc-tv-v2-episode-hero
    {
        min-height: auto;
    }

    .mc-tv-v2-episode-subtitle
    {
        font-size: 19px;
    }
}