.noticia-card {
    min-height: auto;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
}

.noticia-img {
    height: 180px;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.noticia-link {
    text-decoration: none !important;
}

.noticia-link:hover h3 {
    display: block;
    background-color: #e6f0ff;
}

.noticia-titulo {
    color: #1351b4;
    font-size: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.3rem;
}

.noticia-conteudo {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.5em;
    margin: 0;
    min-width: 100%;
    word-break: break-word;
    font-size: 1rem;
    color: #555;
}