
body {
	font-family: 'Arial', sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 0;
	color: #333;
}
header {
	background-color: #fff;
	border-bottom: 5px solid #8a1c1c; /* Rojo oscuro tipo periódico serio */
	padding: 20px 0;
	text-align: center;
}
.cabecera-superior {
	font-size: 12px;
	color: #666;
	text-transform: uppercase;
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	margin-bottom: 10px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
}
h1.logo-sitio {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-size: 60px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: -2px;
	color: #000;
}
.slogan-sitio {
	font-family: 'Georgia', serif;
	font-style: italic;
	color: #555;
	margin-top: 5px;
}
nav.menu-principal {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 10px 0;
	margin-top: 20px;
}
nav.menu-principal a {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
}
nav.menu-principal a:hover {
	color: #ddd;
	text-decoration: underline;
}
.contenedor-principal {
	width: 90%;
	max-width: 930px;
	margin: 20px auto;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	display: block;
}
.columna-noticias {
	/* Columna principal */
}
.barra-lateral {
	border-left: 1px solid #eee;
	padding-left: 20px;
}
article.tarjeta-resumen {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
article.tarjeta-resumen h2 {
	font-family: 'Georgia', serif;
	font-size: 24px;
	margin-bottom: 10px;
}
article.tarjeta-resumen h2 a {
	color: #000;
	text-decoration: none;
}
article.tarjeta-resumen h2 a:hover {
	color: #8a1c1c;
}
.meta-datos {
	font-size: 11px;
	color: #8a1c1c;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.resumen-texto {
	font-size: 16px;
	line-height: 1.5;
	color: #444;
}
.leer-mas {
	display: inline-block;
	margin-top: 10px;
	color: #8a1c1c;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
}
/* Estilos para página individual */
.articulo-completo h1 {
	font-family: 'Georgia', serif;
	font-size: 36px;
	margin-bottom: 10px;
	line-height: 1.2;
}
.articulo-completo .bajada {
	font-size: 18px;
	font-weight: bold;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.4;
}
.cuerpo-articulo {
	font-size: 18px;
	line-height: 1.6;
	font-family: 'Georgia', serif;
}
.cuerpo-articulo p {
	margin-bottom: 15px;
}
footer {
	background-color: #222;
	color: #fff;
	text-align: center;
	padding: 40px 0;
	margin-top: 40px;
	font-size: 14px;
}

.publicidad {
	background-color: #f9f9f9;
	border: 1px solid #ddd;
	padding: 20px;
	text-align: center;
	margin-bottom: 20px;
	font-family: sans-serif;
	font-size: 12px;
	color: #999;
}

.wiki-link {
	color: #8a1c1c;
	text-decoration: none;
	border-bottom: 1px dotted #8a1c1c;
}
.wiki-link:hover {
	background-color: #ffe6e6;
}
