/* ================= TWITCH ================= */

.twitch-section{
    padding:80px 0;
}

.twitch-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
    margin-top:40px;
}

.twitch-player,
.twitch-chat{
    background:#18181b;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

.twitch-player iframe{
    width:100%;
    height:600px;
}

.twitch-chat iframe{
    width:100%;
    height:600px;
}

@media(max-width:1000px){

    .twitch-grid{
        grid-template-columns:1fr;
    }

    .twitch-player iframe{
        height:450px;
    }

    .twitch-chat iframe{
        height:500px;
    }

}