.brxe-trop-awards{
    width: 100%;
}

.awards{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
}

.award-item{
    flex: 1;
    width: 100%;
    /* font-size: clamp(16px, 1.7vw , 20px);
    font-size: 15px; */
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
}

.award-year{
    width: 10%;
    padding-right: 5%;
    white-space: nowrap;
}

.award-name{
    width: 50%;
    padding-right: 15%;
}

.award-project{
    width: 40%;
    padding-right: 25%;
}
    .award-project a{
        text-decoration: underline;
        text-decoration-style: dotted;
        text-decoration-color: #858585;
        text-decoration-thickness: 1px;
        color: #363636;
    }
    .award-project a:hover{
        text-decoration-style: solid;
    }

@media screen and (max-width: 900px){
    .award-name{
        width: 50%;
        padding-right: 5%;
    }

    .award-project{
        width: 40%;
        padding-right: 5%;
    }

}


@media screen and (max-width: 600px){
    .awards{
        flex-direction: column-reverse;
    }
    .awards-data{
        flex: 1;
        width: 100%;
    }

    .award-item{
        display: grid;
        grid-template-columns: 30% 70%;
        grid-template-rows: auto auto;
        margin-bottom: 20px;
    }
    
    .award-year{
        width: unset;
        padding-right: unset;
    }
    
    .award-name{
        width: unset;
        padding-right: 20px;
    }
    
    .award-project{
        grid-column: 2 / 2;
        width: unset;
        padding-right: 20px;
    }

}