.contenedor_noticias_k{
    display:flex;
    width:100%;
    flex-wrap: wrap;
    justify-content:space-between;
    align-items: flex-start;
    height:1500px;
}

.noticia_kk{

    width:350px;
    transition: scale 0.2s ease 0.2s, box-sadow 0.2s ease 0.2s, padding 0.2s ease 0.2s;
}
.noticia_kk:hover{
    scale: 120%;
    cursor:pointer;
    background-color:#FFF;
    box-shadow:  0px 1px 26px -7px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow:  0px 1px 26px -7px rgba(0, 0, 0, 0.6);
    padding:.2rem;
}

.noticia_kk .imagen_noticia_k{
    width:96%;
    margin:auto;
}

.noticia_kk .bloque_textos_k{
    
    margin-top:.5rem;
    margin-left:auto;
    margin-right:auto;
    width:96%;
}

.noticia_kk .bloque_textos_k .antetitulo_k{
    font-size:1.1rem;
    color:#800040;
}
.noticia_kk .bloque_textos_k .titular_k{
    font-size:1.1rem;
}

.imagen_noticia_k img{
    object-fit: cover;
    width:100%;
    height:250px;
}

@media (max-width:850px)
{
    .noticia_kk:hover{
        scale:100%;
        padding:initial;
        box-shadow:initial;

    }
    .noticia_kk{
        width:100%;
        margin-bottom:1.5rem;
    }
    .noticia_kk .bloque_textos_k{
        margin-top:.1rem;
    }
    .imagen_noticia_k img{
        height:300px;
    }
    .contenedor_noticias_k{
        height:auto;
    }
}

@media (min-width:850px) and (max-width:1500px)
{
    .noticia_kk:hover{
        scale: 110%;
        cursor:pointer;
        background-color:#FFF;
        box-shadow:  0px 1px 26px -7px rgba(0, 0, 0, 0.6);
        -webkit-box-shadow:  0px 1px 26px -7px rgba(0, 0, 0, 0.6);
        padding:.1rem;

    }
    .noticia_kk{
        width:300px;
        margin-bottom:1.5rem;
    }
    .noticia_kk .bloque_textos_k{
        margin-top:.1rem;
    }
    .imagen_noticia_k img{
        height:300px;
    }
    .contenedor_noticias_k{
        height:auto;
    }
}