/* Estilos para o Widget Notícias CNC Elementor */

.widget-noticias-cnc-elementor {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.wnc-item {
    flex: 1;
    /*border: 1px solid #e0e0e0;*/
    border-radius: 8px;
    overflow: hidden;
    /*background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.wnc-item:hover {
    transform: translateY(-5px);
}

.wnc-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    /*border-bottom: 1px solid #e0e0e0;*/
    border-radius: 8px 8px 8px 8px; /* Arredonda os cantos superiores */
}

.wnc-title {
    padding: 15px;
    font-family: "Plus Jakarta Sans", Sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.wnc-title a {
    text-decoration: none;
    color: inherit;
}

.wnc-title a:hover {
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .widget-noticias-cnc-elementor {
        flex-direction: column;
    }

    .wnc-item {
        margin-bottom: 20px;
    }
}
