/* /cookie-policy/style.css */

.tsk-policy-page {
	--tsk-accent: #0f6fb8;
	--tsk-accent-dark: #0b5e9b;
	--tsk-text: #222;
	--tsk-muted: #6b7280;
	--tsk-border: #d9e1e8;
	--tsk-bg: #f5f7fa;
	--tsk-card: #ffffff;
	--tsk-shadow: 0 8px 24px rgba(15, 111, 184, 0.06);

	max-width: 1180px;
	margin: 32px auto 48px;
	padding: 0 16px;
	color: var(--tsk-text);
	font-size: 16px;
	line-height: 1.65;
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.tsk-policy-page *,
.tsk-policy-page *::before,
.tsk-policy-page *::after {
	box-sizing: border-box;
}

.tsk-policy-page h1,
.tsk-policy-page h2,
.tsk-policy-page h3,
.tsk-policy-page p,
.tsk-policy-page ul,
.tsk-policy-page ol,
.tsk-policy-page li,
.tsk-policy-page dl,
.tsk-policy-page dt,
.tsk-policy-page dd {
	margin: 0;
	padding: 0;
}

.tsk-policy-page h1 {
	margin-bottom: 10px;
	color: #111;
	font-size: 34px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.tsk-policy-page .tsk-policy-meta {
	display: inline-block;
	margin-bottom: 28px;
	padding: 7px 12px;
	border: 1px solid var(--tsk-border);
	border-radius: 4px;
	background: #eef5fb;
	color: var(--tsk-muted);
	font-size: 14px;
	line-height: 1.4;
}

.tsk-policy-page section {
	margin-bottom: 18px;
	padding: 24px 26px;
	border: 1px solid var(--tsk-border);
	border-radius: 8px;
	background: var(--tsk-card);
	box-shadow: var(--tsk-shadow);
}

.tsk-policy-page h2 {
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #edf3f8;
	color: #111;
	font-size: 22px;
	line-height: 1.3;
	font-weight: 700;
}

.tsk-policy-page p + p {
	margin-top: 12px;
}

.tsk-policy-page ul,
.tsk-policy-page ol {
	margin-top: 12px;
	padding-left: 22px;
}

.tsk-policy-page li + li {
	margin-top: 8px;
}

.tsk-policy-page a {
	color: var(--tsk-accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition:
		color 0.2s ease,
		border-color 0.2s ease;
}

.tsk-policy-page a:hover,
.tsk-policy-page a:focus {
	color: var(--tsk-accent-dark);
	border-bottom-color: currentColor;
}

.tsk-policy-page strong {
	font-weight: 700;
	color: #111;
}

.tsk-policy-page .tsk-policy-company {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 12px 18px;
	align-items: start;
}

.tsk-policy-page .tsk-policy-company dt {
	padding: 10px 12px;
	border: 1px solid var(--tsk-border);
	border-radius: 6px;
	background: #f8fafc;
	color: #334155;
	font-weight: 700;
}

.tsk-policy-page .tsk-policy-company dd {
	padding: 10px 12px;
	border: 1px solid var(--tsk-border);
	border-radius: 6px;
	background: #fff;
	color: #111;
	min-width: 0;
}

.tsk-policy-page .tsk-policy-company dd a {
	word-break: break-word;
}

.tsk-policy-page section > p:first-of-type {
	margin-top: 0;
}

.tsk-policy-page section > ul:first-of-type,
.tsk-policy-page section > ol:first-of-type,
.tsk-policy-page section > dl:first-of-type {
	margin-top: 0;
}

.tsk-policy-page section p,
.tsk-policy-page section li,
.tsk-policy-page section dd {
	font-size: 16px;
}

.tsk-policy-page section p,
.tsk-policy-page section li {
	color: #2a2f36;
}

.tsk-policy-page section ul li::marker,
.tsk-policy-page section ol li::marker {
	color: var(--tsk-accent);
}

.tsk-policy-page section h2 + p,
.tsk-policy-page section h2 + ul,
.tsk-policy-page section h2 + ol,
.tsk-policy-page section h2 + dl {
	margin-top: 0;
}

.tsk-policy-page .tsk-policy-note,
.tsk-policy-page .tsk-policy-alert {
	margin-top: 14px;
	padding: 14px 16px;
	border-left: 4px solid var(--tsk-accent);
	border-radius: 6px;
	background: #f3f8fd;
	color: #24415a;
}

.tsk-policy-page hr {
	margin: 20px 0;
	border: 0;
	border-top: 1px solid var(--tsk-border);
}

@media (max-width: 991px) {
	.tsk-policy-page {
		margin: 24px auto 40px;
		font-size: 15px;
	}

	.tsk-policy-page h1 {
		font-size: 28px;
	}

	.tsk-policy-page h2 {
		font-size: 20px;
	}

	.tsk-policy-page section {
		padding: 20px 18px;
	}

	.tsk-policy-page .tsk-policy-company {
		grid-template-columns: 1fr;
		gap: 10px;
	}
}

@media (max-width: 575px) {
	.tsk-policy-page {
		padding: 0 12px;
	}

	.tsk-policy-page h1 {
		font-size: 24px;
		line-height: 1.25;
	}

	.tsk-policy-page .tsk-policy-meta {
		margin-bottom: 20px;
		font-size: 13px;
	}

	.tsk-policy-page h2 {
		font-size: 18px;
		margin-bottom: 14px;
		padding-bottom: 8px;
	}

	.tsk-policy-page section {
		margin-bottom: 14px;
		padding: 16px 14px;
		border-radius: 6px;
		box-shadow: none;
	}

	.tsk-policy-page ul,
	.tsk-policy-page ol {
		padding-left: 18px;
	}

	.tsk-policy-page .tsk-policy-company dt,
	.tsk-policy-page .tsk-policy-company dd {
		padding: 9px 10px;
		font-size: 14px;
	}
}
