/* =========================
   MOBILE VERSION
========================= */
.rapports {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2rem;
    margin-bottom:4rem;
}

.rapports > p {
    background-color: rgba(241,90,34, 0.3);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    margin-left: 0;
}

.rapports h2 {
    margin-left: 0;
    margin-right: auto;
}

.rapports section {
    background-color: #f8f8f8;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
}

.rapports h3 {
    margin: 1.5rem 0;
}

.rapports span {
    font-weight: 600;
}

.rapports section div > ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    list-style-position: inside;
}

.rapports section a img {
    border-radius: 6px;
    display:flex;
    flex-direction: column;
}

.rapports section a {
    font-size: 1.2rem;
    font-style: italic;
    text-align:center;
    
}

.rapports section li, .rapports section p {
    margin-top: 1.5rem;
}


/* =========================
   TABLET VERSION
========================= */




/* =========================
   DESKTOP VERSION
========================= */

@media(min-width: 1024px) {
    .rapports {
        width: 70%;
    }

    .rapports h3 {
        margin: 1.5rem 0;
        grid-column: 1 / 3;
    }

    .rapports section {
        display:grid;
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(2, auto);
        column-gap: 2rem;
    }
}


/* =========================
   BIG DESKTOP VERSION
========================= */
@media (min-width: 1440px) {
    .rapports {
        width: 60vw;
    }
}