.noticia__item {
    box-shadow: 0px 3px 30px #00000021;
}
.noticia__img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    overflow: hidden;
    background-image: url("img/logo.svg");
    background-position: center;
    background-size: 40%;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

    .noticia__img::after {
        content: "";
        width: 80px;
        height: 80px;
        position: absolute;
        top: -45px;
        left: -45px;
        transform: rotate(45deg);
        background: rgb(var(--color-white-rgb));
    }


.noticia__titulo {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia__texto {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


