/* 1. CONTENEDOR PRINCIPAL */
.contenido-noticia {
    width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;

    /* CAMBIO CLAVE 1: Color de texto oscuro para fondo blanco */
    color: #212529;
    /* Gris muy oscuro (casi negro) */

    line-height: 1.8;
    font-size: 1.1rem;
}

/* 2. RESET DE ELEMENTOS INTERNOS */
.contenido-noticia * {
    max-width: 100% !important;
    background-color: transparent !important;
    font-family: inherit !important;

    /* CAMBIO CLAVE 2: Forzar que hereden el color oscuro */
    color: inherit !important;
}

/* 3. IMÁGENES Y VIDEOS */
.contenido-noticia img,
.contenido-noticia video,
.contenido-noticia iframe {
    height: auto !important;
    display: block;
    margin: 1rem 0;
    border-radius: 6px;
}

.contenido-noticia iframe {
    width: 100% !important;
    aspect-ratio: 16/9;
}

/* 4. TABLAS */
.contenido-noticia table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
    border-collapse: collapse;
    margin-bottom: 1rem;

    /* Asegurar que las tablas tengan borde o contraste si es necesario */
    border: 1px solid #dee2e6;
}

/* 5. TÍTULOS */
.contenido-noticia h1,
.contenido-noticia h2,
.contenido-noticia h3 {
    /* CAMBIO CLAVE 3: Títulos en negro puro */
    color: #000000 !important;

    margin-top: 2rem !important;
    font-weight: bold;
}

/* 6. ENLACES */
.contenido-noticia a {
    color: #0d6efd !important;
    /* Azul Bootstrap standard */
    text-decoration: underline;
}