/* =========================================================================
   Policy pages (Privacy Policy, Terms & Conditions)  —  layered on top of
   home-v2.css (Uncut Sans, .hv-shell, the vertical frame rails, sticky nav).

   Built from Figma "Privacy Policy" (8C41…, desktop 219:14938 /
   mobile 219:15304). Dark hero with the page title and effective date, then
   the policy body on white. The body is WordPress content rendered through
   .pol-prose, so the selectors cover what the editor emits: paragraphs,
   ordered/unordered lists, links, <strong> and <br>.
   ========================================================================= */

:root {
	--pol-teal: #2ad9c4;
	--pol-ink: #111;
}

/* -------------------------------------------------------------------------
   HERO  (dark, on the page frame)
   ------------------------------------------------------------------------- */
.pol-hero {
	background: #0e0e0e;
}
.pol-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* Figma: 1600 content column inset inside the 1720 frame. */
	max-width: min(1600px, 100%);
	margin-inline: auto;
	gap: 24px;
	padding-block: 193px 217px;
	text-align: center;
}
.pol-hero__title {
	margin: 0;
	font-weight: 500;
	font-size: 80px;
	line-height: 1.4;
	letter-spacing: -1.6px;
	color: #fff;
}
.pol-hero__date {
	margin: 0;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: -0.48px;
	color: #b6b6b6;
}

/* -------------------------------------------------------------------------
   BODY  (light)
   ------------------------------------------------------------------------- */
.pol-body {
	background: #fff;
	padding-block: 100px;
}
/* Figma draws this at 1600px wide because its body text is 32px. At a normal
   reading size that measure would run to ~180 characters a line, so the column
   is narrowed to keep roughly 75. */
.pol-inner {
	max-width: min(980px, 100%);
	margin-inline: auto;
}

/* Figma specifies 32px, which is sized for a 1920px canvas and reads far too
   large in a browser. These are ordinary document sizes instead, with a looser
   line-height because policies are long and dense. */
.pol-prose {
	color: var(--pol-ink);
	font-weight: 400;
	font-size: 20px;
	line-height: 1.65;
	letter-spacing: -0.01em;
}
.pol-prose > :first-child {
	margin-top: 0;
}
.pol-prose > :last-child {
	margin-bottom: 0;
}
.pol-prose p {
	margin: 0 0 1.4em;
}
.pol-prose strong,
.pol-prose b {
	font-weight: 600;
}
.pol-prose a {
	color: var(--pol-teal);
	text-decoration: underline;
	text-underline-position: from-font;
	word-break: break-word;
}
.pol-prose h2,
.pol-prose h3,
.pol-prose h4 {
	margin: 1.6em 0 0.6em;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.02em;
	color: var(--pol-ink);
}
.pol-prose h2 { font-size: 30px; }
.pol-prose h3 { font-size: 24px; }
.pol-prose h4 { font-size: 21px; }
/* style.css ships Tailwind's preflight, which strips list markers site-wide
   (ol,ul { list-style: none }). A policy is a numbered legal document — the
   clause numbers have to render — so they are restored here. No flex on the
   list either: it suppresses the markers Chrome would otherwise draw. */
.pol-prose ul,
.pol-prose ol {
	margin: 0 0 1.4em;
	padding-left: 1.6em;
}
.pol-prose ol { list-style: decimal outside; }
.pol-prose ul { list-style: disc outside; }
.pol-prose ol ol { list-style: lower-alpha outside; }
.pol-prose ol ol ol { list-style: lower-roman outside; }
.pol-prose li {
	/* Inherit the prose size rather than restating it, so the two stay in step. */
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	margin-bottom: 0.5em;
	list-style: inherit;
}
.pol-prose li:last-child { margin-bottom: 0; }
.pol-prose li::marker {
	color: rgba(17, 17, 17, 0.6);
}
.pol-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1.4em;
}
.pol-prose th,
.pol-prose td {
	border: 1px solid rgba(17, 17, 17, 0.15);
	padding: 12px 16px;
	text-align: left;
	vertical-align: top;
}
.pol-prose img {
	max-width: 100%;
	height: auto;
}

/* Long URLs and email addresses must not push the page sideways. */
.pol-prose {
	overflow-wrap: anywhere;
}

/* -------------------------------------------------------------------------
   Between the 1920 and 390 anchors the type scales; the rest is unchanged.
   ------------------------------------------------------------------------- */
@media (max-width: 1400px) {
	.pol-hero__title { font-size: clamp(32px, 5vw, 80px); }
	.pol-hero__date { font-size: clamp(16px, 1.7vw, 24px); }
	.pol-prose { font-size: 20px; }
	.pol-prose h2 { font-size: clamp(24px, 2.4vw, 30px); }
	.pol-prose h3 { font-size: clamp(21px, 2vw, 24px); }
	.pol-prose h4 { font-size: 21px; }
}

/* Mobile — Figma "Privacy Policy" 390 frame (219:15304). */
@media (max-width: 900px) {
	.pol-hero__inner {
		gap: 16px;
		padding-block: 40px;
		padding-inline: 0;
	}
	.pol-hero__title {
		font-size: 32px;
		line-height: 1.2;
		letter-spacing: -0.64px;
	}
	.pol-hero__date {
		font-size: 16px;
		line-height: 1.4;
		color: rgba(255, 255, 255, 0.7);
	}
	.pol-body {
		padding-block: 24px 40px;
	}
	.pol-prose {
		font-size: 17px;
		letter-spacing: -0.32px;
	}
	.pol-prose h2 { font-size: 22px; }
	.pol-prose h3 { font-size: 20px; }
	.pol-prose h4 { font-size: 18px; }
}
