
/*BLOG AÑADIDO POR JOSECARLOS*/
.listadeblogs{
    display:flex;
    flex-wrap:wrap;
}
.listadeblogs li{
    flex-basis: calc(33% - 2rem);
    margin: 1rem;
    justify-content: space-evenly;
    width:30%;
}

.listadeblogs li img{
    width: 100%;
}

.listadeblogs li h3{
    color: black;
    line-height: 1.8rem;
    margin: 1rem;
    font-size: 1.5rem;
}
.listadeblogs .imageblock{
    position: relative;
    min-height: 4rem;
     overflow: hidden;
}


.listadeblogs .imageblock img{
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);

}

.listadeblogs .imageblock:hover img{
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);

    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.listadeblogs .categoria{
    position: absolute;
    background: #FF5F5F;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 1.2rem;
    left: 0;
    bottom: 1rem;
    display: inline-block;
}

.listadeblogs p{
    color:black;
}


@media screen and (max-width: 700px) {
    .listadeblogs li{
        flex-basis: calc(100% - 2rem);
    }
    
    .listadeblogs img{
        max-height: 250px;
        object-fit: cover;
        object-position: center center;
    }
}