.noticias-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.noticia-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.noticia-card:hover {
    transform: translateY(-5px);
}

.noticia-imagem {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.noticia-conteudo {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.noticia-titulo {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
    /* Limita o título a 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.5em;
}

.noticia-resumo {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    /* Limita o resumo a 3 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.2em;
}

.noticia-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.noticia-data {
    color: #666;
    font-size: 0.9em;
}

.noticia-secretaria {
    background: #e9ecef;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    color: #495057;
}

.noticia-acoes {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.btn-ler-mais {
    display: inline-block;
    padding: 8px 16px;
    background: #113260;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-ler-mais:hover {
    background: #af2727;
    color: white;
}