
/* -- A la une Template ----------------------------- */
/* .moviesalaune__template{} */
.moviesalaune__template-img{
    height: 10em;
}


/* -- Movies/Playlist Template ----------------------------- */
.template{
    display: flex;
    flex-direction: column;
    border: 0.1rem;
    box-shadow: 10px 5px 5px #d7d5d5;
    height: 34rem;
    max-width: 15rem;
}
.template-img{
    min-width: 100%;
    min-height: 22em;
}
.template-content{
    padding: 1em 1.5em;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
}
.template-info{
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 0.3em;
    width: 100%;
}
.template-titre{
    font-family: var(--ff--titre);
    font-weight: var(--fw--800);
    line-height: var(--lh-1);
}
.template-fonction{
    font-family: var(--ff--soustitre);
    font-weight: var(--fw--600);
    line-height: var(--lh-1);
}
.template-date{
    font-family: var(--ff--texte);
    font-weight: var(--fw--100);
}
.template-buttons{
    padding: 1em 0;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}




/* -- Trailer Template ----------------------------- */
.trailer__template{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1em;
    width: 100%;
}
.trailer__template-video{
    width: 360px;
    height: 215px;
}
.trailer__template-info{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.trailer__template-title{
    font-family: var(--ff--title);
    font-size: 2rem;
    font-weight: var(--fw--800);
    text-align: left;
}
.trailer__template-desc{
    padding: 0 2em;
    width: auto;
    text-align: center;
}



@media (min-width: 60em) {
    .moviesalaune__template-img{
        height: 25em;
    }
    .template{
        flex-direction: row;
        height: 21rem;
        min-width: 25rem;
    }
    .template-img{
        min-height: 12em;
        min-width: 15em;
    }
    .trailer__template{
        justify-content: center;
        flex-direction: row;
    }
    .trailer__template-info{
        align-items: flex-start;
    }
    .trailer__template-video{
        width: 1060px;
        height: 615px;
    }
    .trailer__template-desc{
        padding: 0;
        max-width: 30rem;
        text-align: left;
    }
}