
body {
	font-family: 'Georgia', 'Times New Roman', serif;
	background-color: #f5f5f5;
	margin: 0;
	padding: 0;
	color: #333;
	line-height: 1.6;
}

header {
	background-color: #c41e3a;
	border-bottom: 4px solid #8b1429;
	padding: 20px 0;
	text-align: center;
	color: #fff;
}

.cabecera-superior {
	font-size: 12px;
	color: #f0f0f0;
	text-transform: uppercase;
	padding-bottom: 5px;
	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: 48px;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	font-weight: bold;
}

.slogan-sitio {
	font-family: 'Georgia', serif;
	font-style: italic;
	color: #f0f0f0;
	margin-top: 5px;
	font-size: 14px;
}

nav.menu-principal {
	background-color: #2c2c2c;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	margin-top: 0;
	border-bottom: 2px solid #c41e3a;
}

nav.menu-principal a {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	transition: color 0.3s;
}

nav.menu-principal a:hover {
	color: #c41e3a;
	text-decoration: none;
}

.contenedor-principal {
	width: 90%;
	max-width: 1000px;
	margin: 30px auto;
	background-color: #fff;
	padding: 30px;
	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;
	background-color: #fff;
}

article.tarjeta-resumen h2 {
	font-family: 'Georgia', serif;
	font-size: 24px;
	margin-bottom: 10px;
	line-height: 1.3;
}

article.tarjeta-resumen h2 a {
	color: #1a1a1a;
	text-decoration: none;
}

article.tarjeta-resumen h2 a:hover {
	color: #c41e3a;
	text-decoration: underline;
}

.meta-datos {
	font-size: 11px;
	color: #c41e3a;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.resumen-texto {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.leer-mas {
	display: inline-block;
	margin-top: 10px;
	color: #c41e3a;
	font-weight: bold;
	text-decoration: none;
	font-size: 14px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s;
}

.leer-mas:hover {
	border-bottom-color: #c41e3a;
}

.articulo-completo h1 {
	font-family: 'Georgia', serif;
	font-size: 42px;
	margin-bottom: 15px;
	line-height: 1.2;
	color: #1a1a1a;
	font-weight: bold;
}

.articulo-completo .bajada {
	font-size: 18px;
	font-weight: normal;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.4;
	font-style: italic;
}

.cuerpo-articulo {
	font-size: 18px;
	line-height: 1.8;
	font-family: 'Georgia', serif;
	color: #333;
}

.cuerpo-articulo p {
	margin-bottom: 20px;
	text-align: justify;
}

footer {
	background-color: #2c2c2c;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	margin-top: 50px;
	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;
}

.contenedor-grid-fichas {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 25px;
	padding-bottom: 20px;
}

.ficha-noticia {
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.2s, box-shadow 0.2s;
}

.ficha-noticia:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	border-color: #c41e3a;
}

.ficha-noticia h2 {
	font-family: 'Georgia', serif;
	font-size: 20px;
	margin-top: 0;
	margin-bottom: 10px;
	line-height: 1.3;
}

.ficha-noticia h2 a {
	color: #222;
	text-decoration: none;
}

.ficha-noticia h2 a:hover {
	color: #c41e3a;
}

.ficha-noticia .meta-datos {
	margin-bottom: 12px;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 8px;
}

.ficha-noticia .resumen-texto {
	font-size: 14px;
	color: #555;
	flex-grow: 1;
	margin-bottom: 15px;
}

.boton-leer-mas {
	align-self: flex-start;
	background-color: #c41e3a;
	color: white;
	text-decoration: none;
	padding: 8px 15px;
	font-size: 12px;
	font-weight: bold;
	border-radius: 3px;
	text-transform: uppercase;
	transition: background-color 0.2s;
}

.boton-leer-mas:hover {
	background-color: #5c1313;
	color: white;
}

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