/* ==========================================================================
   Cafe Zocalo — policy.css
   Shared stylesheet for ALL policy pages:
   Privacy Policy · Terms of Use · Cookies Policy · Accessibility Policy ·
   CCPA & CPRA Privacy Policy. Enqueued by Page ID (map value "policy").
   ========================================================================== */

/* ── Hero (text-only, warm band) ───────────────────────────────────────── */
.cz-policy-hero {
	background: var(--surface-warm);
	border-bottom: 1px solid var(--line);
	text-align: center;
}

.cz-policy-hero__inner {
	padding-top: 64px;
	padding-bottom: 48px;
}

.cz-policy-hero__title {
	font-family: var(--font-display);
	font-style: italic;
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.8px;
	line-height: 1.1;
	max-width: 22ch;
	margin: 0 auto;
}

/* ── Body (readable prose column) ──────────────────────────────────────── */
.cz-policy {
	padding: 64px 0 80px;
	background: var(--bg-primary);
}

.cz-policy__inner {
	max-width: 820px;
}

.cz-policy__inner > *:first-child {
	margin-top: 0;
}

/* Section headings */
.cz-policy__inner h2 {
	font-family: var(--font-display);
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	color: var(--ink);
	letter-spacing: -0.4px;
	line-height: 1.25;
	margin-top: 2em;
	margin-bottom: 0.5em;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}

/* Subsection headings */
.cz-policy__inner h3 {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 20px;
	font-weight: 500;
	color: var(--terracotta-deep);
	margin-top: 1.6em;
	margin-bottom: 0.4em;
}

.cz-policy__inner p {
	font-size: 16px;
	line-height: 1.85;
	color: var(--ink-mid);
	margin-bottom: 1.1em;
}

.cz-policy__inner strong {
	color: var(--ink);
	font-weight: 700;
}

.cz-policy__inner a {
	color: var(--terracotta-deep);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cz-policy__inner a:hover {
	color: var(--terracotta);
}

.cz-policy__inner ul {
	list-style: disc;
	padding-left: 24px;
	margin-bottom: 1.3em;
}

.cz-policy__inner li {
	font-size: 16px;
	line-height: 1.75;
	color: var(--ink-mid);
	margin-bottom: 0.45em;
}

.cz-policy__inner li::marker {
	color: var(--terracotta);
}

/* ── Tables (e.g. Cookies Policy tools table) ──────────────────────────── */
.cz-policy__table-wrap {
	overflow-x: auto;
	margin: 0 0 1.3em;
}

.cz-policy__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
	min-width: 480px;
}

.cz-policy__table th,
.cz-policy__table td {
	text-align: left;
	padding: 12px 16px;
	border: 1px solid var(--line);
	line-height: 1.6;
	color: var(--ink-mid);
	vertical-align: top;
}

.cz-policy__table thead th {
	background: var(--surface-warm);
	font-family: var(--font-display);
	font-weight: 600;
	color: var(--ink);
}

.cz-policy__table tbody tr:nth-child(even) td {
	background: rgba(242, 234, 220, 0.4);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
	.cz-policy-hero__inner {
		padding-top: 48px;
		padding-bottom: 36px;
	}

	.cz-policy {
		padding: 48px 0 56px;
	}
}
