/**
 * Legal Pages — Privacy Policy, Cookie Policy, Terms of Service.
 * Dark navy hero header (title from WP post title), white prose content area.
 */

/* === Hero header === */
.wlre-legal-hero {
	background-color: var(--wlre-color-brand-900);
	padding: var(--wlre-space-120, 120px) var(--wlre-space-20) var(--wlre-space-80);
	text-align: center;
}

.wlre-legal-hero__accent {
	color: var(--wlre-color-accent-500);
}

.wlre-legal-hero__title,
.wlre-legal-hero .wp-block-post-title {
	font-family: var(--wlre-font-heading);
	font-size: 64px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--wlre-color-white);
	margin: 0 auto;
	max-width: 900px;
}

/* === Prose content area === */
.wlre-legal-content {
	background: var(--wlre-color-white);
	padding: var(--wlre-space-64) var(--wlre-space-20);
}

/* Inner constrained wrapper — matches the 1240px site container */
.wlre-legal-content .wp-block-post-content,
.wlre-legal-content > * {
	max-width: var(--wlre-content-width);
	margin-inline: auto;
}

.wlre-legal-content h1,
.wlre-legal-content h2,
.wlre-legal-content h3,
.wlre-legal-content h4 {
	font-family: var(--wlre-font-heading);
	font-weight: 600;
	color: var(--wlre-color-text-900);
	margin-top: var(--wlre-space-40);
	margin-bottom: var(--wlre-space-12);
}

.wlre-legal-content h2 { font-size: 24px; }
.wlre-legal-content h3 { font-size: 20px; }

.wlre-legal-content p,
.wlre-legal-content li {
	font-family: var(--wlre-font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--wlre-color-text-900);
	margin-bottom: var(--wlre-space-16);
}

.wlre-legal-content ul,
.wlre-legal-content ol {
	padding-inline-start: var(--wlre-space-24);
	margin-bottom: var(--wlre-space-16);
}

.wlre-legal-content a {
	color: var(--wlre-color-brand-900);
	text-decoration: underline;
}

.wlre-legal-content a:hover {
	color: var(--wlre-color-accent-600);
}

/* === Mobile === */
@media (max-width: 767px) {
	.wlre-legal-hero {
		padding: var(--wlre-space-64) var(--wlre-space-20) var(--wlre-space-48);
	}

	.wlre-legal-hero__title,
	.wlre-legal-hero .wp-block-post-title {
		font-size: 32px;
	}

	.wlre-legal-content {
		padding: var(--wlre-space-40) var(--wlre-space-20);
	}
}
