/*@todo fichiers data analyses*/

.grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.grid > .rounded{
    margin: 0 auto;
    width:200px;
}

@media (max-width: 509px) {
    .grid{
        grid-template-columns: repeat(1, 1fr);
    }

    .grid > .rounded{
        width:15rem;
    }

    .grid > .rounded >.row{
        margin: 0 auto;
    }
}

@media (min-width: 510px) and (max-width: 779px) {
    .grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 780px) and (max-width: 989px) {
    .grid{
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 990px) and (max-width: 1200px) {
    .grid{
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1201px) {
    .grid > .rounded{
        width:280px;
        margin:0 auto;
    }
}

.conteneur {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.bloc {
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 600px;
    background-image: url("https://dev.mailex.fr/sitevitrine/steven/citelogic/public/image/icones/fichiersDataAnalyses/traitement-technique-fichiers-background-texte.svg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    box-sizing: border-box;
}

.contenu {
    width: 100%;
    max-width: 90%;
    text-align: justify;
}

.contenu p {
    margin: 0;
    font-family: sans-serif;
    color: #002B7F;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .conteneur {
        flex-direction: column;
        padding: 1rem;
        gap: 1.5rem;
    }

    .bloc {
        min-height: 400px;
        padding: 4rem;
    }

    .contenu {
        max-width: 100%;
    }
}

.bloc-traitement {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    /*border-radius: 1.5rem;*/
    font-weight: bold;
    font-size: 1rem;
    min-height: 65px;
	color : var(--couleur1);
}

.bloc-traitement img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
