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;
}

.contenu-projet {
    grid-column: 2 / span 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.video-projet {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 0 64px;
    padding-bottom: 75px;
    max-width: 100vw;
}

.video-projet > video {
    grid-column: 3 / span 8;
    aspect-ratio: 1084 / 610;
    width: 100%;
    border-radius: 10px;
}

.projet-2 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 32px;
    padding: 0 64px;
}

.contenu-projet-2 {
    grid-column: 4 / span 6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    img {
        width: 100%;
    }
}

.sous-titre-projet-2 {
    font-family: 'Mukta';
    font-size: 24px;
    font-weight: 700;
    color: #8689AC;
}

.texte-projet-2 {
    font-family: 'Mukta';
    font-size: 16px;
    font-weight: 400;
    color: #101116;
    line-height: 1.75;
    margin-bottom: 50px;
}

.btn_motion {
    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: 50px;
}

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

.lien_elena {
    font-family: 'Mukta';
    font-size: 16px;
    font-weight: 400;
    color: #8689AC;
}