/**
 * Styles for the [fitrx_privacy_policy] shortcode. Shares the same light
 * "paper" palette and 1520/20 container convention as [fitrx_blog_archive]
 * and [fitrx_goal_quiz] — this is meant to feel like the same site, not a
 * bolted-on legal page. Body copy is capped at 760px (not the full 1520px
 * container) since a long block of text that wide is uncomfortable to read
 * — the hero and hero-adjacent elements share that same narrower width so
 * the page doesn't visually jump between two column widths.
 *
 * 'Anton' and 'Manrope' are the same two fonts every block/shortcode in
 * this plugin uses, loaded once site-wide by fitrx_blocks_enqueue_fonts()
 * in fitrx-blocks.php — not repeated here.
 */

.fitrx-privacy,
.fitrx-privacy *,
.fitrx-privacy *::before,
.fitrx-privacy *::after {
	box-sizing: border-box;
}

.fitrx-privacy {
	--ink: #181818;
	--ink-soft: rgba(24, 24, 24, 0.64);
	--ink-softer: rgba(24, 24, 24, 0.44);
	--line: rgba(24, 24, 24, 0.12);
	--red: #ce0e2d;
	--paper: #f7f3ee;
	--card: #ffffff;

	display: block;
	width: 100%;
	background: var(--paper);
	color: var(--ink);
	font-family: 'Manrope', -apple-system, sans-serif;
	-webkit-font-smoothing: antialiased;
}

.fitrx-privacy a { color: var(--red); text-decoration: underline; }
.fitrx-privacy a:hover,
.fitrx-privacy a:focus-visible { color: var(--ink); }
.fitrx-privacy :focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.fitrx-privacy-inner {
	max-width: 1520px;
	margin: 0 auto;
	padding: 20px;
}

/* ---- hero ---- */
.fitrx-privacy-hero {
	max-width: 760px;
	margin: 0 auto;
	padding: 56px 0 28px;
	text-align: center;
	border-bottom: 1px solid var(--line);
}

.fitrx-privacy-eyebrow {
	display: inline-block;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--red);
	margin: 0 0 18px;
}

.fitrx-privacy-heading {
	font-family: 'Anton', sans-serif;
	font-weight: 400;
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.fitrx-privacy-sub {
	font-size: 15px;
	font-weight: 600;
	color: var(--ink-soft);
	margin: 0;
}

/* ---- body copy ---- */
.fitrx-privacy-body {
	max-width: 760px;
	margin: 0 auto;
	padding: 40px 0 90px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--ink-soft);
}

.fitrx-privacy-body p { margin: 0 0 20px; }
.fitrx-privacy-body strong { color: var(--ink); font-weight: 700; }

.fitrx-privacy-body h2 {
	font-family: 'Anton', sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	font-size: clamp(20px, 2.4vw, 26px);
	line-height: 1.15;
	color: var(--ink);
	margin: 44px 0 18px;
}

.fitrx-privacy-body h2:first-child { margin-top: 0; }

.fitrx-privacy-body h3 {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--ink-softer);
	margin: 28px 0 14px;
}

.fitrx-privacy-body ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
}

.fitrx-privacy-body li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
}

.fitrx-privacy-body li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--red);
}

/* ---- "In short..." summary callout ---- */
.fitrx-privacy-summary {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px 30px 6px;
	margin: 8px 0 44px;
}

.fitrx-privacy-summary h2 {
	margin-top: 0 !important;
}

.fitrx-privacy-date {
	margin-top: 40px !important;
	padding-top: 20px;
	border-top: 1px solid var(--line);
	font-size: 13px;
	color: var(--ink-softer);
}

@media (max-width: 700px) {
	.fitrx-privacy-summary { padding: 22px 20px 4px; }
}
