.noticia-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.noticia-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

.noticia-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover img {
    transform: scale(1.08);
}

/* Faixa escura semitransparente */
.noticia-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    color: #fff;
}

.noticia-categoria {
    font-size: 0.85rem;
    color: #fdd835;
    display: inline-block;
    margin-bottom: 6px;
    border-bottom: 2px solid #fdd835; /* linha amarela */
    padding-bottom: 2px;
}

.noticia-overlay h5 {
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.gap-col {
    padding: 10px;
}

.noticia-pequena {
    margin-bottom: 20px; /* ou o valor que você preferir */
}

/* Para remover a margem da última notícia */
.noticia-pequena:last-child {
    margin-bottom: 0;
}