/* Fondo transparente (para OBS o navegador con overlay) */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: transparent;
    background-attachment: fixed;
}

/* Título principal (opcional, puedes quitar si quieres solo las noticias) */
.titulo-principal {
    text-align: center;
    padding: 20px;
    background: rgba(5, 10, 30, 0.7);
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.4);
}

/* Cada tarjeta de noticia */
.noticia-card {
    border-radius: 16px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Cabecera (Título) */
.noticia-header {
    background: rgba(0, 0, 30, 0.8);
    padding: 15px;
}

.noticia-titulo {
    margin: 0;
    font-size: 1.5rem;
    text-decoration: underline;
}

.noticia-titulo a {
    color: #ffffff;
    text-decoration: none;
}

.noticia-titulo a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Metadatos (medio, autor, etc.) */
.noticia-meta {
    background: rgba(0, 0, 50, 0.7);
    padding: 15px;
    font-size: 0.95rem;
    line-height: 1.5em;
}

.noticia-meta p {
    margin: 5px 0;
}

/* Cuerpo de la noticia */
.noticia-cuerpo {
    background: rgba(0, 0, 70, 0.75);
    padding: 20px;
    font-size: 1.1rem;
    line-height: 1.6em;
    flex-grow: 1; /* ocupa el espacio restante */
    overflow-y: auto;
}
