/* Base */
body {
	font-family: var(--fuente-body);
	font-size: var(--texto-base);
	line-height: 1.7;
	color: var(--tinta);
	background-color: var(--papel);
	-webkit-font-smoothing: antialiased;
	font-optical-sizing: auto;
}

/* Titulares */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--fuente-display);
	font-weight: 700;
	line-height: 1.15;
	color: var(--tinta);
	letter-spacing: -0.01em;
}

/* Entradilla destacada */
.nl-entradilla {
	font-family: var(--fuente-body);
	font-size: var(--texto-xl);
	font-weight: 300;
	line-height: 1.6;
	color: var(--gris);
	font-style: italic;
}

/* UI: kickers, fechas, etiquetas */
.nl-kicker,
.nl-fecha,
.nl-meta,
.nl-tiempo {
	font-family: var(--fuente-ui);
	font-size: var(--texto-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* Cuerpo del artículo */
.entry-content {
	font-family: var(--fuente-body);
	font-size: var(--texto-lg);
	line-height: 1.8;
}

.entry-content p { margin-bottom: var(--esp-6); }

.entry-content h2 {
	font-size: var(--texto-2xl);
	margin-top: var(--esp-8);
	margin-bottom: var(--esp-4);
}

.entry-content h3 {
	font-size: var(--texto-xl);
	margin-top: var(--esp-6);
	margin-bottom: var(--esp-3);
}

.entry-content blockquote {
	border-left: 4px solid var(--leon-purpura);
	padding: var(--esp-3) var(--esp-6);
	margin: var(--esp-6) 0;
	font-style: italic;
	color: var(--gris);
}

/* Responsive */
@media (max-width: 768px) {
	h1 { font-size: var(--texto-4xl); }
	h2 { font-size: var(--texto-3xl); }
	h3 { font-size: var(--texto-2xl); }
	.nl-entradilla { font-size: var(--texto-lg); }
	.entry-content { font-size: var(--texto-base); }
}
