.accolades__component{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    align-content:flex-start;
    justify-content:space-between;
    gap:2rem;
}

.text__area{
    flex:1 1 400px;
    min-width:0;
}

.accolades{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    align-items:center;
    gap:1rem;
    flex:0 1 auto;
}

.accolade img{
    display:block;
    max-height:125px;
    width:auto;
}

/* Mobile */
@media (max-width: 768px){
    .accolades__component{
        flex-direction:column;
        flex-wrap:nowrap;
        align-items:flex-start;
        gap:1.5rem;
    }

    .text__area{
        flex:none;
        width:100%;
    }

    .accolades{
        width:100%;
        justify-content:flex-start;
    }

    .accolade img{
        max-height:90px;
    }
}