﻿.noticia__img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1.8;
    background: var(--bg-noticia-img-card);
    border-radius: 4px;
    overflow: hidden;
}

.noticia__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 200ms;
}

.noticia__data {
    font-size: 14px;
    color: var(--color-medium);
}

.noticia__data::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--color-medium);
    position: absolute;
    bottom: 0;
    left: 0;
}

.noticia__titulo {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .noticia__titulo:hover, .noticia__titulo:focus {
        color: var(--cor-primaria);
        text-decoration: underline !important;
    }

.noticia__chamada {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia__item:hover .noticia__img img, .noticia__item:focus .noticia__img img {
    transform: scale(1.1);
}