.noticia__card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 0;
    transition: 300ms ease-in-out;
}

.noticia__img {
    background-color: var(--bg-img-noticia);
    background-image: url(../img/logo.png);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
}

    .noticia__img img {
        border-radius: 4px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.noticia__textos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.noticia__titulo {
    color: var(--tx-dark);
    font-size: var(--body-lg);
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia__chamada {
    color: var(--tx-medium);
    font-size: var(--body-md);
    font-weight: 400;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia__data {
    color: var(--tx-medium);
    font-size: var(--body-sm);
    font-weight: 300;
    position: relative;
    padding-bottom: 5px;
}

    .noticia__data::after {
        content: "";
        width: 50%;
        height: 3px;
        background: var(--tx-light);
        position: absolute;
        bottom: 0;
    }
