/******************** DESKTOP ********************/

.three_cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.three_cards_title {
    font-size: var(--cml-title-size);
    font-weight: 400;
    color: #323232;
    text-align: center;
    margin-bottom: 30px;
}

.three_cards_productes_venda_div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    flex-grow: 0;
}

.three_cards_producte_venda_a {
    position: relative;
    border-radius: 20px;
    flex-grow: 1;
    flex-basis: 33%;
    overflow: hidden;
}

.three_cards_producte_venda {
    position: absolute;
    top: 0;
    text-align: start;
    height: 100%;
}


.three_cards_producte_venda_titol {
    font-size: var(--cml-subtitle-size);
    font-weight: 500;
    color: #323232;
    margin: 0;
    padding: 30px 30px 20px 30px;
}

.three_cards_producte_venda_descripcio {
    font-size: var(--cml-subtitle-size);
    color: #323232;
    min-height: 62px;
    margin: 0;
    padding: 0 30px;
    font-weight: 300;
}

.three_cards_productes_venda_fons img {
    width: 100%;
    height: auto;
}

/******************** MOBILE ********************/
@media (max-width: 990px) {
    #div_three_cards{
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .three_cards {
        width: auto;
        margin: 0;
        padding: 15px;
    }

    .three_cards_title {
        margin: 0;
    }

    .three_cards_productes_venda_div {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
    }

    .three_cards_producte_venda_a {
        padding: 0;
        border-radius: 20px;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
        flex-basis: 75% !important;
        
    }

    .three_cards_producte_venda {
/*        height: 450px;
        width: 280px;*/
        margin: 0 20px;
    }

    .three_cards_producte_venda_titol {
        /*font-size: 30px;*/
        margin: 20px 0 0 0;
        padding: 0;
        min-height: auto;
/*        width: 86%;*/
    }

    .three_cards_producte_venda_descripcio {
        /*font-size: 25px;*/
/*        min-height: 124px;*/
        margin: 0;
        padding: 0;
    }
}
