.blog-noticias-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
    align-items: stretch;
}

.blog-card-noticia {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 640px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    background: #ffffff;
    padding: 14px;
    box-sizing: border-box;
    overflow: hidden;
}

.blog-card-imagem-link {
    display: block;
    width: 100%;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-imagem {
    width: 100%;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.blog-card-conteudo {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding-top: 14px;
    overflow: hidden;
}

.blog-card-titulo {
    margin: 0 0 12px 0;
    height: 108px;
    min-height: 108px;
    max-height: 108px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.blog-card-titulo a {
    text-decoration: none;
    color: #000;
}

.blog-card-data {
    margin: 0 0 12px 0;
    height: 24px;
    min-height: 24px;
    max-height: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #5d6875;
    text-align: left;
    overflow: hidden;
}

.blog-card-resumo {
    margin: 0;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
    text-align: center;
    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.blog-no-data {
    grid-column: 1 / -1;
    text-align: center;
}