/*
 * Compás Vital · Hoja de impresión / PDF
 * ──────────────────────────────────────
 * Se carga con media="print" (ver functions.php): estas reglas SOLO se aplican
 * al imprimir o «Guardar como PDF». Convierte cualquier artículo en un dossier
 * limpio con la marca, ocultando la interfaz (cabecera, menú, footer, CTAs).
 * Colores y tipos salen del sistema de diseño (--cv-*); en papel el fondo es
 * blanco para no gastar tinta (la regla «nunca blanco puro» es para pantalla).
 */

@page {
	margin: 18mm;
}

/* ── Ocultar la interfaz: solo queda el artículo ──────────────────────────── */
.cv-header,
.cv-footer,
.cv-nav,
.cv-print-hide,
.cv-pdf-bar .wp-block-buttons,
.cv-photo,
.wp-block-query-pagination,
/* Imagen modelo «no hay foto» (attachment #90): fuera del PDF. Las fotos
   reales que la sustituyan sí se imprimirán (no llevan wp-image-90). */
img.wp-image-90,
.wp-block-image:has( img.wp-image-90 ) {
	display: none !important;
}

/* La marca solo se imprime (oculta en pantalla vía sections.css) */
.cv-print-only {
	display: block !important;
}
.cv-pdf-bar {
	justify-content: flex-start !important;
	margin: 0 0 8mm !important;
}
.cv-print-brand {
	font-weight: 700;
	color: #18605A; /* --cv-primary */
	font-size: 12pt;
	margin: 0;
}

/* ── Lienzo limpio a sangre ───────────────────────────────────────────────── */
html,
body {
	background: #fff !important;
}
main,
.wp-block-group {
	margin-top: 0 !important;
}

/* ── Tipografía legible en papel ──────────────────────────────────────────── */
body {
	font-size: 12pt;
	line-height: 1.5;
	color: #1E2A2D; /* --cv-ink */
}
h1 { font-size: 22pt; }
h2 { font-size: 16pt; }
h3 { font-size: 13pt; }

/* ── Evitar cortes de página feos ─────────────────────────────────────────── */
h1, h2, h3, h4 {
	break-after: avoid;
}
.cv-callout,
.cv-vcard,
.cv-variants,
.cv-fuentes,
figure,
.wp-block-image,
li {
	break-inside: avoid;
}

/* ── Las fuentes muestran su URL (útil en papel) ──────────────────────────── */
.cv-fuentes a[href]::after {
	content: " (" attr(href) ")";
	font-size: 9pt;
	color: #5C6A6E; /* --cv-muted */
	word-break: break-all;
}
