/* ==========================================================================
   PÁGINA GENÉRICA (page.php). Título + contenido del editor con el diseño
   Juvera. Prefijo "pg-" (clases únicas). La usan las páginas sin plantilla
   específica (Aviso de Privacidad, Términos de Uso, etc.).
   ========================================================================== */

#pg {
	background: var(--navy);
	padding: clamp(8rem, 10vw, 10rem) 5% clamp(4rem, 6vw, 6rem);
}

.pg-inner {
	max-width: 860px;
}

/* ── Cabecera ── */
.pg-head {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.pg-orn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}

.pg-orn-line {
	width: clamp(50px, 8vw, 90px);
	height: 1px;
	background: rgba(198, 170, 71, 0.5);
}

.pg-orn-jv {
	height: 2rem;
	width: auto;
	display: block;
}

.pg-title {
	font-family: "Cormorant Garamond", serif;
	font-size: clamp(2.4rem, 5vw, 3.6rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.1;
}

.pg-title em {
	font-style: normal;
	color: var(--gold);
}

/* ── Contenido del editor ── */
.pg-content {
	font-size: 1rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.9;
}

.pg-content > * + * {
	margin-top: 1.4rem;
}

.pg-content h2,
.pg-content h3 {
	font-family: "Cormorant Garamond", serif;
	font-weight: 600;
	color: var(--white);
	line-height: 1.25;
	margin-top: 2.4rem;
}

.pg-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--gold);
}

.pg-content h3 {
	font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.pg-content a {
	color: var(--gold);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.25s;
}

.pg-content a:hover {
	color: var(--gold2);
}

.pg-content strong {
	color: var(--white);
	font-weight: 600;
}

.pg-content ul,
.pg-content ol {
	padding-left: 1.4rem;
}

.pg-content li {
	margin-top: 0.6rem;
}

.pg-content li::marker {
	color: var(--gold);
}

.pg-content blockquote {
	border-left: 2px solid var(--gold);
	padding: 0.4rem 0 0.4rem 1.5rem;
	font-style: italic;
	color: var(--gold);
}

.pg-content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}
