/* =========================================================
   Nexempleo CV — hoja del currículo (4 plantillas)
   Compartido por el editor y el perfil público.
   ========================================================= */

.nxcv-hoja {
	--h-acento: #1560a8;
	--h-acento-luz: color-mix(in srgb, var(--h-acento) 10%, #fff);
	--h-tinta: #14181d;
	--h-tinta-2: #4d5761;
	--h-tinta-3: #8a939c;
	--h-linea: #e3e7ec;
	--h-pad: 54px;
	--h-base: 13px;
	--h-alto: 1.55;
	--h-gap: 24px;
	--h-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--h-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	--h-serif: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;

	/* Medidas de página a 96 ppp: A4 210x297 mm, Carta 216x279 mm. */
	--h-ancho: 794px;
	--h-alto-pag: 1123px;

	width: var(--h-ancho);
	min-height: var(--h-alto-pag);
	background: #fff;
	color: var(--h-tinta);
	font-family: var(--h-sans);
	font-size: var(--h-base);
	line-height: var(--h-alto);
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.nxcv-hoja *,
.nxcv-hoja *::before,
.nxcv-hoja *::after { box-sizing: border-box; }

.nxcv-hoja--carta { --h-ancho: 816px; --h-alto-pag: 1056px; }

.nxcv-hoja[data-densidad="compacta"] { --h-pad: 42px; --h-base: 12px; --h-alto: 1.45; --h-gap: 17px; }
.nxcv-hoja[data-densidad="amplia"]  { --h-pad: 64px; --h-base: 13.5px; --h-alto: 1.72; --h-gap: 32px; }

.nxcv-hoja p, .nxcv-hoja h1, .nxcv-hoja h2, .nxcv-hoja h3, .nxcv-hoja ul, .nxcv-hoja li { margin: 0; padding: 0; }
.nxcv-hoja ul { list-style: none; }
.nxcv-hoja a { color: inherit; text-decoration: none; }

/* ---------- Piezas comunes ---------- */

.nxcv-h-cab-izq { display: flex; align-items: center; min-width: 0; flex: 1 1 auto; }
.nxcv-h-cab-izq > .nxcv-h-foto { margin-right: 18px; }
.nxcv-h-cab-izq > div { min-width: 0; }

.nxcv-h-nombre {
	font-size: 2.35em;
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

.nxcv-h-titular {
	font-size: 1em;
	color: var(--h-acento);
	font-weight: 600;
	margin-top: 5px;
}

.nxcv-h-contacto {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
	font-size: .88em;
	color: var(--h-tinta-2);
}

/* Separación por relleno, no por «gap»: los navegadores antiguos
   de Android e iOS ignoran «gap» en flexbox y todo se pega. */
.nxcv-h-contacto span { display: block; padding: 1.5px 8px; }

.nxcv-h-seccion { margin-top: var(--h-gap); }

.nxcv-h-rotulo {
	font-family: var(--h-mono);
	font-size: .76em;
	letter-spacing: .18em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--h-acento);
}

.nxcv-h-rotulo span { flex: 0 0 auto; }

.nxcv-h-entrada { margin-bottom: 14px; }
.nxcv-h-entrada:last-child { margin-bottom: 0; }

.nxcv-h-fila { display: flex; justify-content: space-between; align-items: baseline; }
.nxcv-h-puesto { font-weight: 700; font-size: 1.05em; letter-spacing: -0.005em; }
.nxcv-h-lugar { color: var(--h-tinta-2); font-size: .95em; margin-top: 1px; }

.nxcv-h-fecha {
	font-family: var(--h-mono);
	font-size: .78em;
	letter-spacing: .03em;
	color: var(--h-tinta-3);
	white-space: nowrap;
	flex: 0 0 auto;
	margin-left: 14px;
}

.nxcv-h-desc { margin-top: 6px; color: #333c45; white-space: pre-line; }
.nxcv-h-vinetas { margin-top: 6px; }

.nxcv-h-vinetas li {
	position: relative;
	padding-left: 15px;
	margin-bottom: 4px;
	color: #333c45;
}

.nxcv-h-vinetas li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: .62em;
	width: 5px;
	height: 1.5px;
	background: var(--h-acento);
}

/* Habilidades: un solo marcado, cuatro tratamientos */

.nxcv-h-habs { display: flex; flex-wrap: wrap; }
.nxcv-h-hab { display: flex; align-items: center; margin: 0 6px 6px 0; }
.nxcv-h-hab .nxcv-h-nivel { margin-left: 7px; }

.nxcv-h-nivel { display: inline-flex; flex: 0 0 auto; }
.nxcv-h-nivel i + i { margin-left: 2.5px; }

.nxcv-h-nivel i {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
	opacity: .22;
	font-style: normal;
}

.nxcv-h-nivel[data-n="1"] i:nth-child(-n+1),
.nxcv-h-nivel[data-n="2"] i:nth-child(-n+2),
.nxcv-h-nivel[data-n="3"] i:nth-child(-n+3),
.nxcv-h-nivel[data-n="4"] i:nth-child(-n+4) { opacity: 1; }

.nxcv-h-pares { display: flex; flex-direction: column; }

.nxcv-h-par {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-size: .95em;
	margin-bottom: 6px;
}

.nxcv-h-par:last-child { margin-bottom: 0; }

.nxcv-h-par > span:first-child { flex: 1 1 auto; min-width: 0; }
.nxcv-h-par em { font-style: normal; color: var(--h-tinta-3); font-size: .9em; flex: 0 0 auto; margin-left: 10px; }

.nxcv-h-marcador {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 420px;
	padding: 40px;
	text-align: center;
	color: #adb5bd;
	font-family: var(--h-mono);
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	line-height: 1.9;
}

/* =========================================================
   1 · EJECUTIVA
   Serif de display, doble filete, contacto en columna a la derecha.
   ========================================================= */

.nxcv-hoja--ejecutiva { padding: var(--h-pad); }

/* Maquetado en tabla: el reparto nombre / contacto se comporta igual
   en motores antiguos que en los actuales. */
.nxcv-hoja--ejecutiva .nxcv-h-cabecera {
	display: table;
	width: 100%;
	padding-bottom: 16px;
	border-bottom: 3px solid var(--h-acento);
	position: relative;
}

.nxcv-hoja--ejecutiva .nxcv-h-cab-izq {
	display: table-cell;
	vertical-align: bottom;
	width: 100%;
}

.nxcv-hoja--ejecutiva .nxcv-h-cab-izq > .nxcv-h-foto {
	float: left;
	margin: 0 18px 0 0;
}

.nxcv-hoja--ejecutiva .nxcv-h-cab-der {
	display: table-cell;
	vertical-align: bottom;
	width: 1%;
	white-space: nowrap;
	padding-left: 28px;
}

.nxcv-hoja--ejecutiva .nxcv-h-cabecera::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 1px;
	background: var(--h-linea);
}

.nxcv-hoja--ejecutiva .nxcv-h-nombre {
	font-family: var(--h-serif);
	font-size: 2.75em;
	font-weight: 700;
	letter-spacing: -0.015em;
}

.nxcv-hoja--ejecutiva .nxcv-h-titular {
	font-family: var(--h-mono);
	font-size: .82em;
	font-weight: 500;
	letter-spacing: .17em;
	text-transform: uppercase;
	color: var(--h-tinta-2);
	margin-top: 9px;
}

.nxcv-hoja--ejecutiva .nxcv-h-contacto {
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
	font-size: .84em;
	max-width: 100%;
}

.nxcv-hoja--ejecutiva .nxcv-h-foto {
	width: 78px; height: 78px; border-radius: 50%; object-fit: cover;
	border: 1px solid var(--h-linea); flex: 0 0 78px;
}

.nxcv-hoja--ejecutiva .nxcv-h-seccion { margin-top: calc(var(--h-gap) + 6px); }

.nxcv-hoja--ejecutiva .nxcv-h-rotulo {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}

.nxcv-hoja--ejecutiva .nxcv-h-rotulo span { margin-right: 11px; }

.nxcv-hoja--ejecutiva .nxcv-h-rotulo::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--h-linea);
}

.nxcv-hoja--ejecutiva .nxcv-h-lugar { color: var(--h-acento); font-weight: 500; }

.nxcv-hoja--ejecutiva .nxcv-h-hab {
	border: 1px solid var(--h-linea);
	border-radius: 2px;
	padding: 4px 10px;
	font-size: .92em;
}

.nxcv-hoja--ejecutiva .nxcv-h-nivel { display: none; }
.nxcv-hoja--ejecutiva .nxcv-h-par { border-bottom: 1px dotted var(--h-linea); padding-bottom: 5px; }

/* =========================================================
   2 · MODERNA
   Barra lateral a sangre, franja superior de acento, niveles en puntos.
   ========================================================= */

.nxcv-hoja--moderna { display: flex; padding: 0; }

.nxcv-hoja--moderna .nxcv-h-lateral {
	flex: 0 0 262px;
	background: var(--h-acento);
	color: #fff;
	padding: calc(var(--h-pad) * .72) calc(var(--h-pad) * .58);
}

.nxcv-hoja--moderna .nxcv-h-principal {
	flex: 1 1 auto;
	min-width: 0;
	padding: calc(var(--h-pad) * .82) var(--h-pad) var(--h-pad);
}

.nxcv-hoja--moderna .nxcv-h-foto {
	width: 116px; height: 116px; border-radius: 50%; object-fit: cover;
	display: block; margin: 0 auto 22px;
	box-shadow: 0 0 0 4px rgba(255,255,255,.22);
}

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-seccion { margin-top: 26px; }
.nxcv-hoja--moderna .nxcv-h-lateral > .nxcv-h-seccion:first-of-type { margin-top: 0; }

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-rotulo {
	display: block;
	color: #fff;
	opacity: .72;
	padding-bottom: 8px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-contacto {
	flex-direction: column;
	color: rgba(255,255,255,.94);
	font-size: .86em;
	word-break: break-word;
}

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-contacto span { padding: 4px 8px; }

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-habs { flex-direction: column; }
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-hab { margin: 0 0 9px; }
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-hab:last-child { margin-bottom: 0; }

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-hab {
	justify-content: space-between;
	font-size: .92em;
	color: #fff;
}

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel i { background: #fff; }
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel i { opacity: .3; }

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel[data-n="1"] i:nth-child(-n+1),
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel[data-n="2"] i:nth-child(-n+2),
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel[data-n="3"] i:nth-child(-n+3),
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-nivel[data-n="4"] i:nth-child(-n+4) { opacity: 1; }

.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-par { color: rgba(255,255,255,.94); }
.nxcv-hoja--moderna .nxcv-h-lateral .nxcv-h-par em { color: rgba(255,255,255,.66); }

.nxcv-hoja--moderna .nxcv-h-cabecera { padding-bottom: 18px; }

.nxcv-hoja--moderna .nxcv-h-nombre { font-size: 2.15em; }

.nxcv-hoja--moderna .nxcv-h-titular {
	font-family: var(--h-mono);
	font-size: .8em;
	letter-spacing: .15em;
	text-transform: uppercase;
	margin-top: 8px;
}

.nxcv-hoja--moderna .nxcv-h-principal .nxcv-h-rotulo {
	display: block;
	margin-bottom: 12px;
	padding-left: 13px;
	border-left: 3px solid var(--h-acento);
	line-height: 1.1;
}

.nxcv-hoja--moderna .nxcv-h-principal .nxcv-h-entrada { padding-left: 13px; border-left: 1px solid var(--h-linea); }

/* =========================================================
   3 · MINIMAL
   Centrada, filetes capilares, sin bloques de color.
   ========================================================= */

.nxcv-hoja--minimal { padding: calc(var(--h-pad) + 14px) calc(var(--h-pad) + 6px); }

.nxcv-hoja--minimal .nxcv-h-cabecera { text-align: center; padding-bottom: 22px; }
.nxcv-hoja--minimal .nxcv-h-cab-izq { display: block; }

.nxcv-hoja--minimal .nxcv-h-nombre {
	font-size: 2.5em;
	font-weight: 300;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.nxcv-hoja--minimal .nxcv-h-titular {
	color: var(--h-tinta-2);
	font-weight: 400;
	font-size: .98em;
	letter-spacing: .04em;
	margin-top: 10px;
}

.nxcv-hoja--minimal .nxcv-h-contacto {
	justify-content: center;
	margin: 16px -10px 0;
	padding-top: 14px;
	border-top: 1px solid var(--h-linea);
	font-size: .85em;
}

.nxcv-hoja--minimal .nxcv-h-contacto span { padding: 2px 10px; }

.nxcv-hoja--minimal .nxcv-h-foto { display: none; }
.nxcv-hoja--minimal .nxcv-h-seccion { margin-top: calc(var(--h-gap) + 8px); }

.nxcv-hoja--minimal .nxcv-h-rotulo {
	display: flex;
	align-items: center;
	color: var(--h-tinta);
	letter-spacing: .26em;
	margin-bottom: 16px;
	justify-content: center;
}

.nxcv-hoja--minimal .nxcv-h-rotulo span { margin: 0 14px; }

.nxcv-hoja--minimal .nxcv-h-rotulo::before,
.nxcv-hoja--minimal .nxcv-h-rotulo::after {
	content: "";
	flex: 1 1 auto;
	height: 1px;
	background: var(--h-linea);
}

.nxcv-hoja--minimal .nxcv-h-fila { flex-direction: column; align-items: flex-start; }
.nxcv-hoja--minimal .nxcv-h-fecha { order: -1; color: var(--h-acento); margin: 0 0 2px; }
.nxcv-hoja--minimal .nxcv-h-habs { justify-content: center; }
.nxcv-hoja--minimal .nxcv-h-hab { margin: 0 0 4px; }
.nxcv-hoja--minimal .nxcv-h-nivel { display: none; }

.nxcv-hoja--minimal .nxcv-h-hab:not(:last-child)::after {
	content: "·";
	margin: 0 9px;
	color: var(--h-tinta-3);
}

.nxcv-hoja--minimal .nxcv-h-vinetas li::before { background: var(--h-tinta-3); }

/* =========================================================
   4 · TÉCNICA
   Raíl monoespaciado a la izquierda y línea de tiempo con hitos.
   ========================================================= */

.nxcv-hoja--tecnica { padding: var(--h-pad); }

.nxcv-hoja--tecnica .nxcv-h-cabecera {
	display: grid;
	grid-template-columns: 122px minmax(0, 1fr);
	grid-template-areas: "tag izq" ". der";
	gap: 6px 22px;
	padding-bottom: 20px;
	border-bottom: 2px solid var(--h-tinta);
}

.nxcv-hoja--tecnica .nxcv-h-cab-izq { grid-area: izq; }
.nxcv-hoja--tecnica .nxcv-h-cab-der { grid-area: der; }

.nxcv-hoja--tecnica .nxcv-h-cabecera::before {
	content: "CV";
	grid-area: tag;
	font-family: var(--h-mono);
	font-size: .74em;
	letter-spacing: .2em;
	color: #fff;
	background: var(--h-acento);
	align-self: start;
	justify-self: end;
	padding: 5px 9px;
}

.nxcv-hoja--tecnica .nxcv-h-nombre {
	font-family: var(--h-mono);
	font-size: 1.85em;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.nxcv-hoja--tecnica .nxcv-h-titular { font-size: .98em; margin-top: 6px; }

.nxcv-hoja--tecnica .nxcv-h-contacto {
	margin-top: 12px;
	font-family: var(--h-mono);
	font-size: .78em;
	color: var(--h-tinta-3);
	margin-left: -9px;
	margin-right: -9px;
}

.nxcv-hoja--tecnica .nxcv-h-contacto span { padding: 1px 9px; }

.nxcv-hoja--tecnica .nxcv-h-foto { display: none; }

.nxcv-hoja--tecnica .nxcv-h-seccion {
	display: grid;
	grid-template-columns: 122px minmax(0, 1fr);
	gap: 22px;
	margin-top: 0;
	padding: var(--h-gap) 0;
	border-bottom: 1px solid var(--h-linea);
}

.nxcv-hoja--tecnica .nxcv-h-seccion:last-child { border-bottom: none; }

.nxcv-hoja--tecnica .nxcv-h-rotulo {
	text-align: right;
	color: var(--h-tinta-3);
	letter-spacing: .13em;
	line-height: 1.5;
}

/* Línea de tiempo en la canaleta */
.nxcv-hoja--tecnica .nxcv-h-cuerpo { position: relative; }

.nxcv-hoja--tecnica .nxcv-h-cuerpo--tiempo { padding-left: 20px; }

.nxcv-hoja--tecnica .nxcv-h-cuerpo--tiempo::before {
	content: "";
	position: absolute;
	left: 3px;
	top: 6px;
	bottom: 6px;
	width: 1px;
	background: var(--h-linea);
}

.nxcv-hoja--tecnica .nxcv-h-cuerpo--tiempo .nxcv-h-entrada { position: relative; margin-bottom: 18px; }

.nxcv-hoja--tecnica .nxcv-h-cuerpo--tiempo .nxcv-h-entrada::before {
	content: "";
	position: absolute;
	left: -20px;
	top: 5px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--h-acento);
}

.nxcv-hoja--tecnica .nxcv-h-fecha { color: var(--h-acento); }
.nxcv-hoja--tecnica .nxcv-h-habs { flex-direction: column; }

.nxcv-hoja--tecnica .nxcv-h-hab {
	justify-content: space-between;
	font-family: var(--h-mono);
	font-size: .84em;
	margin: 0 0 6px;
}

.nxcv-hoja--tecnica .nxcv-h-hab:last-child { margin-bottom: 0; }
.nxcv-hoja--tecnica .nxcv-h-par { font-family: var(--h-mono); font-size: .84em; }

/* =========================================================
   MODO FLUIDO
   Perfil público y vista previa en móvil: sin A4, ancho líquido.
   ========================================================= */

.nxcv-hoja--fluida {
	width: 100%;
	max-width: 820px;
	min-height: 0;
	--h-ancho: 100%;
	--h-base: 14px;
	--h-pad: clamp(20px, 5vw, 54px);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

/* Correos y enlaces largos no deben ensanchar la hoja en móvil. */
.nxcv-hoja--fluida .nxcv-h-contacto span,
.nxcv-hoja--fluida .nxcv-h-par,
.nxcv-hoja--fluida .nxcv-h-hab { overflow-wrap: break-word; min-width: 0; }

.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-nombre,
.nxcv-hoja--fluida.nxcv-hoja--minimal .nxcv-h-nombre { font-size: clamp(1.7em, 6vw, 2.6em); }

.nxcv-hoja--fluida .nxcv-h-nombre { font-size: clamp(1.6em, 5.5vw, 2.3em); }

@media (max-width: 620px) {
	.nxcv-hoja--fluida.nxcv-hoja--moderna { display: block; }

	.nxcv-hoja--fluida.nxcv-hoja--moderna .nxcv-h-lateral {
		padding: 26px clamp(20px, 5vw, 40px);
	}

	.nxcv-hoja--fluida.nxcv-hoja--moderna .nxcv-h-principal { padding: 26px clamp(20px, 5vw, 40px); }

	.nxcv-hoja--fluida.nxcv-hoja--tecnica .nxcv-h-cabecera {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: "tag" "izq" "der";
		gap: 10px;
	}

	.nxcv-hoja--fluida.nxcv-hoja--tecnica .nxcv-h-seccion {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
	}

	.nxcv-hoja--fluida.nxcv-hoja--tecnica .nxcv-h-rotulo { text-align: left; }
	.nxcv-hoja--fluida.nxcv-hoja--tecnica .nxcv-h-cabecera::before { justify-self: start; }

	/* La cabecera de Ejecutiva se maqueta en tabla: con «white-space: nowrap»
	   en la celda del contacto, un correo largo impedía que encogiera y la
	   hoja se desbordaba. En estrecho pasa a bloques apilados. */
	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-cabecera { display: block; }

	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-cab-izq,
	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-cab-der {
		display: block;
		width: auto;
		white-space: normal;
		padding-left: 0;
	}

	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-cab-der { margin-top: 12px; }

	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-contacto {
		align-items: flex-start;
		text-align: left;
		max-width: none;
	}

	.nxcv-hoja--fluida.nxcv-hoja--ejecutiva .nxcv-h-foto { float: none; margin: 0 0 12px; }

	/* Moderna: la barra lateral deja de ser columna fija. */
	.nxcv-hoja--fluida.nxcv-hoja--moderna .nxcv-h-lateral { flex: 1 1 auto; }

	.nxcv-hoja--fluida .nxcv-h-fila { flex-direction: column; align-items: flex-start; }
	.nxcv-hoja--fluida .nxcv-h-fecha { order: -1; margin: 0 0 2px; }
}

/* =========================================================
   ENVOLTORIO DEL PERFIL PÚBLICO
   ========================================================= */

.nxcv-publico {
	--nxp-linea: #e3e7ec;
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	margin: 40px 0 0;
	padding-top: 32px;
	border-top: 1px solid var(--nxp-linea);
}

.nxcv-publico-cabecera {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.nxcv-publico-cabecera > * { margin: 7px 0; }

.nxcv-publico-rotulo {
	font-family: "Roboto Mono", ui-monospace, Menlo, Consolas, monospace;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #1560a8;
	margin: 0;
}

.nxcv-publico-acciones { display: flex; flex-wrap: wrap; }
.nxcv-publico-acciones > * { margin-left: 8px; }
.nxcv-publico-acciones > *:first-child { margin-left: 0; }

.nxcv-publico-btn {
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1;
	padding: 11px 15px;
	border-radius: 6px;
	border: 1px solid #c4ccd6;
	background: #fff;
	color: #14181d;
	text-decoration: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

.nxcv-publico-btn:hover { border-color: #1560a8; color: #1560a8; }
.nxcv-publico-btn--solido { background: #1560a8; border-color: #1560a8; color: #fff; }
.nxcv-publico-btn--solido:hover { background: #10497f; color: #fff; }

.nxcv-publico .nxcv-hoja {
	border: 1px solid var(--nxp-linea);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(20,24,29,.05);
}

.nxcv-publico-pagina { max-width: 880px; margin: 0 auto; padding: 40px 20px 80px; }
