* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #222222;
}

/* ===== Contenu principal ===== */

#disque1 {
    flex: 1;
    min-height: 500px;
    background-color: #222222;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 20px 40px;
}

#disque1 .content-wrap {
    width: min(100%, 1100px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2rem;
}

#disque1 article
{
    background-image: url(Image/Poch6.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 390px;
    height: 354px;
    flex: 0 0 390px;
    margin: 0;
}

#disque1 .infos {
    max-width: 360px;
    padding-top: 10px;
}

#disque1 h3 {
    font-family: verdana, cursive, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: bold;
    color: #999999;
    line-height: 1.4;
}

#disque1 p {
    padding-top: 16px;
    font-family: verdana, cursive, sans-serif;
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    font-weight: bold;
    color: #999999;
    margin-bottom: 0;
    line-height: 1.7;
}

.stream {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 1.25rem;
    justify-content: space-evenly;
    gap: 5rem 0.25rem;
    padding: 3em;
    margin: 2em;
}

.stream img {
    width: 140px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

/* ===== Footer ===== */

footer {
    margin-top: auto;
}

/* ===== Tablette ===== */

@media screen and (max-width: 900px) {
    #disque1 {
        background-position: center top;
        background-size: cover;
        padding-top: 40px;
    }

    #disque1 .content-wrap {
        gap: 1.25rem;
    }

    #disque1 article {
        width: 320px;
        height: 290px;
        flex-basis: 320px;
    }

    #disque1 .infos {
        max-width: 300px;
    }

    .stream img {
        width: 84px;
    }
}

/* ===== Smartphone ===== */

@media screen and (max-width: 600px) {

    #disque1 {
        min-height: auto;
    }

    #disque1 .content-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    #disque1 article {
        width: min(100%, 320px);
        height: 290px;
        flex: none;
    }

    #disque1 .infos {
        max-width: 320px;
        padding-top: 0;
    }

    #disque1 h3 {
        font-size: 1.05rem;
    }

    #disque1 p {
        font-size: 0.98rem;
        line-height: 1.65;
        padding-top: 12px;
    }

    .stream {
        justify-content: center;
        margin-top: 1.5rem;
        gap: 1rem 1.5rem;
    }

    .stream img {
        width: 82px;
    }

}

/* ===== Très petit écran ===== */

@media screen and (max-width: 380px) {
    #disque1 article {
        width: min(100%, 280px);
        height: 254px;
    }

    .stream img {
        width: 82px;
    }
}