/* Fondo transparente para overlay/OBS */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: transparent;
    background-attachment: fixed;
}

/* Tarjeta de noticia (misma estética solicitada) */
.noticia-card {
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.5);
}

/* 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: #00bfff;
    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;
}

/* (Opcional) Oculta scrollbars del body en algunos navegadores */
html, body {
    overscroll-behavior: none;
}
