.ne-main-wrapper {
    max-width: 1200px;
    margin: 5px auto;
}

.ne-seccion-titulo {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #02385b;
    margin: 10px 0 5px 0; 
    
    border-bottom: 2px solid #0170b9;
    display: inline-block;
    padding-bottom: 1px;
}

.ne-noticias-externas-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc; 
    background-color: #fff;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
}

.ne-noticia-item {
    display: flex; 
    flex-direction: column;
    justify-content: space-between; 
    border-right: 1px solid #ccc; 
    border-bottom: 1px solid #ccc; 
    transition: background-color 0.2s;
}

.ne-noticia-item:hover { background-color: #d3eaeb; }

.ne-noticia-link-wrapper {
    display: flex; 
    text-decoration: none !important;
    padding: 12px 15px 5px 15px; 
    flex-grow: 1;
    align-items: flex-start;
}

.ne-noticia-imagen {
    flex: 0 0 90px; 
    width: 90px;
    height: 90px; 
    margin-right: 15px;
}

.ne-noticia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.ne-noticia-titulo {
    margin: 0 0 2px 0;
    font-size: 15px; 
    line-height: 1.3;
    font-weight: 600;
    color: #333 !important;
}

/* Autor: Mucho más pequeño y gris */
.ne-noticia-autor {
    display: block;
    font-size: 9px;
    color: #999;
    margin-bottom: 2px;
    
    letter-spacing: 0.5px;
}

.ne-noticia-footer {
    display: flex;
    flex-direction: column-reverse; 
    align-items: flex-end; 
    padding: 0 15px 12px 15px; 
}

.ne-noticia-medio {
    margin: 0; 
    color: #02385b; 
    font-size: 12px;
    font-weight: bold;
}

.ne-separador-azul {
    width: 35px;
    height: 4px;
    background-color: #0170b9; 
    margin-bottom: 2px; 
}

@media (max-width: 768px) {
    .ne-noticias-externas-grid { grid-template-columns: 1fr !important; }
}