/**
 * Obchodní podmínky — Život hvězdy
 */

.zh-terms,
.zh-terms *,
.zh-terms *::before,
.zh-terms *::after {
	box-sizing: border-box;
}

.zh-terms {
	--t-pink: var(--zh-pink, #e84393);
	--t-navy: var(--zh-navy, #2d2d5f);
	--t-text: var(--zh-text, #1a1a2e);
	--t-muted: var(--zh-muted, #6b6b8a);
	--t-font: var(--zh-font, "DM Sans", Figtree, system-ui, sans-serif);

	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: min(1080px, 100%);
	margin: 0 auto;
	padding: 36px 16px 64px;
	font-family: var(--t-font);
	color: var(--t-text);
	-webkit-font-smoothing: antialiased;
}

.zh-terms__glow {
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(55% 40% at 0% 0%, rgba(232, 67, 147, 0.1), transparent 55%),
		radial-gradient(45% 35% at 100% 5%, rgba(224, 173, 0, 0.12), transparent 50%);
}

.zh-terms__hero {
	margin-bottom: 28px;
	max-width: 40rem;
}

.zh-terms__brand {
	margin: 0 0 8px;
	font-size: clamp(1.55rem, 3.8vw, 2.1rem);
	font-weight: 750;
	letter-spacing: -0.03em;
	line-height: 1.15;
	background: linear-gradient(120deg, var(--t-navy) 0%, var(--t-pink) 85%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.zh-terms__title {
	margin: 0 0 10px;
	font-size: clamp(1.15rem, 2.5vw, 1.35rem);
	font-weight: 650;
	color: var(--t-text);
}

.zh-terms__lead {
	margin: 0 0 8px;
	font-size: 1rem;
	line-height: 1.55;
	color: var(--t-muted);
	max-width: 40ch;
}

.zh-terms__meta {
	margin: 0;
	font-size: 0.82rem;
	color: var(--t-muted);
	opacity: 0.85;
}

.zh-terms__layout {
	display: grid;
	grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
	gap: 28px 36px;
	align-items: start;
}

.zh-terms__toc {
	position: sticky;
	top: 96px;
	padding: 16px 0 0;
}

.zh-terms__toc-label {
	margin: 0 0 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t-navy);
}

.zh-terms__toc-list {
	margin: 0;
	padding: 0 0 0 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.zh-terms__toc-list a {
	color: var(--t-muted);
	text-decoration: none;
	font-size: 0.88rem;
	line-height: 1.35;
	transition: color 0.2s ease;
}

.zh-terms__toc-list a:hover,
.zh-terms__toc-list a.is-active {
	color: var(--t-pink);
}

.zh-terms__body {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
}

.zh-terms__section {
	padding: 22px 22px 18px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(45, 45, 95, 0.08);
	box-shadow: 0 4px 18px rgba(45, 45, 95, 0.04);
	scroll-margin-top: 100px;
}

.zh-terms__section--highlight {
	border-color: rgba(232, 67, 147, 0.28);
	background:
		linear-gradient(180deg, #fff8fb 0%, #ffffff 40%);
	box-shadow: 0 10px 28px rgba(232, 67, 147, 0.08);
}

.zh-terms__h {
	margin: 0 0 14px;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--t-navy);
	line-height: 1.3;
}

.zh-terms__section--highlight .zh-terms__h {
	color: var(--t-pink);
}

.zh-terms__content {
	font-size: 0.97rem;
	line-height: 1.65;
	color: var(--t-muted);
}

.zh-terms__content p {
	margin: 0 0 12px;
}

.zh-terms__content p:last-child {
	margin-bottom: 0;
}

.zh-terms__content ul,
.zh-terms__content ol {
	margin: 0 0 12px;
	padding-left: 1.25rem;
}

.zh-terms__content li {
	margin-bottom: 6px;
}

.zh-terms__content a {
	color: var(--t-pink);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(232, 67, 147, 0.35);
}

.zh-terms__content a:hover {
	border-bottom-color: var(--t-pink);
}

.zh-terms__content strong {
	color: var(--t-text);
	font-weight: 650;
}

@media (max-width: 860px) {
	.zh-terms__layout {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.zh-terms__toc {
		position: static;
		padding: 0 0 12px;
		border-bottom: 1px solid rgba(232, 67, 147, 0.14);
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.zh-terms__toc-list {
		flex-direction: row;
		flex-wrap: nowrap;
		gap: 14px;
		padding: 0;
		list-style: none;
		width: max-content;
	}

	.zh-terms__toc-list a {
		white-space: nowrap;
		font-size: 0.85rem;
	}
}

@media (max-width: 560px) {
	.zh-terms {
		padding: 28px 14px 48px;
	}

	.zh-terms__section {
		padding: 18px 16px 14px;
	}
}

.zh-terms__body--single {
	max-width: 760px;
}

.zh-terms__foot {
	margin-top: 28px;
	padding-top: 24px;
	border-top: 1px solid rgba(45, 45, 95, 0.08);
	text-align: center;
}

.zh-terms__foot-text {
	margin: 0 0 12px;
	color: var(--t-muted);
	font-size: 0.95rem;
}

.zh-terms__foot-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--t-pink);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none !important;
	border-bottom: 0 !important;
}

.zh-terms__foot-cta:hover {
	filter: brightness(1.05);
}
