
/* APPARENCES */

/* couleur de fond - blanc */
.videoYt.bg-white{
    margin-top: -6rem;
    margin-bottom: -6rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* couleur de fond - mauve gradients */
.videoYt.bg-gradient{
    background: #710097;
    background: linear-gradient(90deg,rgba(113, 0, 151, 1) 0%, rgba(167, 48, 220, 1) 50%, rgba(113, 0, 151, 1) 100%);
    z-index: 11;
}
.videoYt.bg-gradient2{
    background: #710097;
    background: linear-gradient(180deg, rgba(167, 48, 220, 1) 0%, rgba(113, 0, 151, 1) 90%);
    z-index: 11;
}
.bg-purple + .videoYt.bg-gradient2{
    background: linear-gradient(180deg, rgb(131 16 174) 0%, rgba(113, 0, 151, 1) 90%);
}
.archiveBanner + .videoYt.bg-gradient::before,
.archiveBanner + .videoYt.bg-gradient2::before{
    content: '';
    background: #710097;
    background: linear-gradient(90deg,rgba(113, 0, 151, 1) 0%, rgba(167, 48, 220, 1) 50%, rgba(113, 0, 151, 1) 100%);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 300px;
    top: -300px;
    z-index: 0;
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
}
.videoYt.bg-gradient, .videoYt.bg-gradient2{
    margin-top: -6rem;
    margin-bottom: -6rem;
    padding-bottom: 6rem;
}

/* couleur de fond - mauve */
.videoYt.bg-mauve{
    background: #830FAE;
    z-index: 11;
}
.videoYt.bg-mauve{
   /* margin-top: -6rem;*/
    /* margin-bottom: -6rem;*/
}

/* Apparence vidéo */ 
.videoYt .aspect-video{
    aspect-ratio: 16 / 9;
}
.videoYt .aspect-4-3{
    aspect-ratio: 4 / 3;
}
.videoYt .aspect-square{
    aspect-ratio: 1 / 1;
}

/* MOBILE */

@media (max-width: 769px) {
    .videoYt.bg-white, .videoYt.bg-mauve, .videoYt.bg-gradient, .videoYt.bg-gradient2{
        margin-top: -2.5rem;
        margin-bottom: -2.5rem;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
}