.chamada_youtube {
    background-color: #2e4255;
    display: grid;
    justify-items: center;
}
.chamada_youtube_canal {
    color: #fff;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;

    padding: 1.2rem 2rem .9rem;
}

.icone-youtube::before {
    content: "";

    width: 3rem;
    height: 3rem;

    background-image: url(../img/icone-youtube.svg);
    background-size: 100%;
    background-repeat: no-repeat;

    position: absolute;
    top:0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.canal_titulo {
    color: #e93d50;

    font-size: 1rem;
    font-weight: 700;

    margin-top: .9rem;
    margin-bottom: .1rem;

    letter-spacing: .5px;
}

.canal_texto {
    font-size: .6rem;
    letter-spacing: .8px;
    line-height: 12px;
    margin-bottom: 1rem;
}

.canal_button {
    color: #fff;
    background-color: #e93d50;
}

.video_descricao {
    width: 85%;
}

.descricao_titulo {
    font-size: .9rem;
    font-weight: 500;
    line-height: 15px;
    margin-bottom: .5rem;
}

.descricao_titulo::before {
    content: "";

    width: 3rem;
    height: 3rem;

    background-image: url(../img/play-button.svg);
    background-size: 100%;

    display: block;
    margin: 1.2rem auto 1rem;
}

.chamada_youtube-video1 {
    background-image: url(../img/videos-thumbnail-video1.png);
}
.chamada_youtube-video2 {
    background-image: url(../img/videos-thumbnail-video2.png);
}
.chamada_youtube-video1, .chamada_youtube-video2 {
    background-size: cover;
    width: 100%;
}

@media (min-width: 768px) {
    .chamada_youtube {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
        "chamada chamada"
        "video1 video2";
    }

    .youtube_informacao {
        padding: 2rem 17%;
        box-sizing: border-box;
        grid-area: chamada;
    }

    .-icone-youtube::before {
        width: 5rem;
        height: 5rem;
    }

    .chamada_youtube-video1 {
        grid-area: video1;
    }

    .chamada_youtube-video2 {
        grid-area: video2;
    }

    .canal_titulo {
        font-size: 1.5rem;
    }
    .descricao_texto {
        font-size: .8rem;
    }
}

@media (min-width: 1200px) {
    .youtube_informacao {
        padding: 4rem 20%;
    }

    .icone-youtube::before {
        width: 6rem;
        height: 6rem;
    }

    .canal-titulo {
        font-size: 2rem;
        margin-bottom: .4rem;
    }
    .canal_texto {
        font-size: 1rem;
        line-height: 1rem;
    }
    .video_descricao {
        width: 75%;
        text-align: left;
    }
    .descricao_titulo {
        font-size: 1.2rem;
        line-height: 1.4rem;
        margin-bottom: 1.5rem;
    }
    .descricao_texto {
        font-size: .9rem;
    }
}