main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 50px 64px;
}

.fleche-retour {
    grid-column: 1;
}

.titre-projet {
    grid-column: 2 /span 5;
    font-family: 'Mukta';
    font-size: 100px;
    font-weight: 800;
    color: #8689AC;
}

.img_infographie_carte {
    grid-column: 3 / span 8;
    img {
        width: 100%;
        pointer-events: none;
        border-radius: 10px;
    }
}

.img_infographie_carte img {
    object-fit: cover;
}

.btn_site_mmi_pret {
    background-color: #1011161e;
    font-family: 'Mukta';
    font-size: 18px;
    font-weight: 600;
    color: #8689AC;
    padding: 10px 20px;
    text-decoration: none;
    display: table; 
    border-radius: 5px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn_site_mmi_pret:hover {
    background-color: #8689ac7e;
    color: #101116;

}

.info-connexion {
    font-family: 'Mukta';
    font-size: 18px;
    font-weight: 600;
    color: #8689AC;
    margin-bottom: 5px;
}

.contenu-projet {
    grid-column: 4 / span 6;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Crée deux colonnes de taille égale */
    gap: 32px; /* Espace entre les colonnes */
    margin-top: 50px;
}

.contexte-infographie {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;

}

.sous-titre-projet {
    font-family: 'Mukta';
    font-size: 24px;
    font-weight: 700;
    color: #8689AC;
    grid-column: 1 / span 1;
}

.texte-projet {
    font-family: 'Mukta';
    font-size: 16px;
    font-weight: 400;
    color: #101116;
    line-height: 1.75;
    grid-column: 1 / -1;
}

.texte-projet-1 {
    grid-column: 1; 
    font-family: 'Mukta';
    font-size: 16px;
    font-weight: 400;
    color: #101116;
    line-height: 1.75;
}

.image-projet-1 {
    grid-column: 2; 
    width: 100%;
    height: auto;
    img {
        border-radius: 10px;
    }
}