.noticia__img {
    width: 100%;
    aspect-ratio: 2.8 / 2.3;
    height: auto;
    overflow: hidden;
    position: relative
}

    .noticia__img::after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .75) 100%);
    }

.noticia__titulo {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia__texto {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (min-width: 992px){
    .noticia__img {
        aspect-ratio: 4.12 / 2.43;
       
    }
}