#sobre-accion-portabella{
    min-height: 90vh;
}

#sobre-accion-portabella > h1{
    text-transform: none;
    color: var(--acento);
    font-size: 3vh;
}

#sobre-accion-portabella h2{
    text-transform: none;
    color: var(--negro);
    font-size: 1.5vh;
    margin-top: 2vh;
}

#sobre-accion-portabella #texto p{
    margin-bottom: 1vh;
}

#sobre-accion-portabella .desc_cont{
    display: flex;
    flex-direction: row;
    padding: 1vw;
    gap: 2vw;
}

#sobre-accion-portabella .desc_img{
    width: 30%;
}

#sobre-accion-portabella .desc_txt{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1.6vw;
}

#sobre-accion-portabella > a{
    color: var(--acento);
    
}

#entidades{
    columns: 2;
    column-gap: 2vw;
}

#entidades .lista_item{
    padding: 0;
    border: none;
    break-inside: avoid;
}

#entidades .lista_item > *{
    font-size: max(1vh, 14pt);
}



@media (max-width: 768px) {

    #sobre-accion-portabella .desc_cont{
        flex-direction: column;
        padding: 0px;
        gap: 2vw;
    }
    
    #sobre-accion-portabella .desc_img{
        width: 100%;
    }

    #sobre-accion-portabella .desc_txt{
        width: 100%;
    }

    #entidades{
        columns: 1;
    }
}