/*!
 * streakpage-* layout — subpage system for winstreakaustralia.com
 * Loaded alongside the main style.css (reuses its :root tokens)
 */

.streakpage-shell {
	padding-top: 140px;
	padding-bottom: 80px;
}

.streakpage-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.813rem;
	color: var(--theme-muted);
	margin-bottom: 28px;
}

.streakpage-crumbs a {
	color: var(--theme-muted);
}

.streakpage-crumbs a:hover {
	color: var(--theme-accent);
}

.streakpage-crumbs span[aria-current] {
	color: var(--theme-accent);
}

.streakpage-head {
	max-width: 780px;
	margin-bottom: 48px;
}

.streakpage-eyebrow {
	display: inline-block;
	padding: 6px 16px;
	margin-bottom: 16px;
	background: var(--theme-primary-alpha);
	border-radius: var(--rad-full);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--theme-accent);
}

.streakpage-head h1 {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	color: rgb(255,255,255);
	margin-bottom: 16px;
}

.streakpage-standfirst {
	font-size: 1.125rem;
	color: var(--theme-muted);
	line-height: 1.7;
}

.streakpage-meta {
	margin-top: 16px;
	font-size: 0.813rem;
	color: var(--theme-muted);
	opacity: 0.7;
}

.streakpage-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
}

.streakpage-toc {
	position: sticky;
	top: 110px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--rad-lg);
}

.streakpage-toc h2 {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--theme-accent);
	margin-bottom: 14px;
}

.streakpage-toc ol {
	list-style: none;
	counter-reset: streakpage-toc-counter;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.streakpage-toc li {
	counter-increment: streakpage-toc-counter;
	font-size: 0.875rem;
}

.streakpage-toc li::before {
	content: counter(streakpage-toc-counter) '. ';
	color: var(--theme-accent);
	font-weight: 600;
}

.streakpage-toc a {
	color: var(--theme-muted);
}

.streakpage-toc a:hover {
	color: var(--theme-accent);
}

.streakpage-toc a.is-active {
	color: var(--theme-accent);
	font-weight: 600;
}

.streakpage-prose {
	max-width: 720px;
}

.streakpage-prose section {
	margin-bottom: 44px;
	scroll-margin-top: 110px;
}

.streakpage-prose h2 {
	font-size: 1.75rem;
	color: var(--theme-accent);
	margin-bottom: 14px;
}

.streakpage-prose h3 {
	font-size: 1.25rem;
	color: rgb(255,255,255);
	margin: 20px 0 10px;
}

.streakpage-prose p {
	color: var(--theme-muted);
	line-height: 1.8;
	margin-bottom: 14px;
}

.streakpage-prose ul,
.streakpage-prose ol {
	color: var(--theme-muted);
	line-height: 1.8;
	margin: 0 0 14px 20px;
}

.streakpage-prose strong {
	color: var(--theme-text);
}

/* --- Card grid layout (contact / cookies-policy) --- */

.streakpage-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--sp-gap);
	margin-bottom: 40px;
}

.streakpage-card {
	padding: 28px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgb(255 255 255 / 8%);
	border-radius: var(--rad-lg);
}

.streakpage-card h3 {
	font-size: 1.25rem;
	color: var(--theme-accent);
	margin-bottom: 10px;
}

.streakpage-card p,
.streakpage-card ul {
	color: var(--theme-muted);
	line-height: 1.7;
}

.streakpage-card ul {
	margin-top: 10px;
	padding-left: 18px;
}

/* --- CTA strip --- */

.streakpage-cta-strip {
	margin-top: 48px;
	padding: 40px;
	text-align: center;
	background: linear-gradient(45deg, var(--theme-primary) 0%, var(--theme-secondary) 100%);
	border-radius: var(--rad-lg);
}

.streakpage-cta-strip h2 {
	font-size: 1.75rem;
	color: #fff;
	margin-bottom: 10px;
}

.streakpage-cta-strip p {
	color: rgb(255 255 255 / 90%);
	margin-bottom: 20px;
}

.streakpage-cta-strip .button_dd5UI {
	background: #fff;
	color: var(--theme-primary);
}

.streakpage-cta-strip .button_dd5UI:hover {
	background: var(--theme-dark);
	color: #fff;
}

/* --- Related links --- */

.streakpage-related {
	margin-top: 40px;
	padding-top: 32px;
	border-top: 1px solid rgb(255 255 255 / 8%);
}

.streakpage-related h2 {
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--theme-accent);
	margin-bottom: 14px;
}

.streakpage-related ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
}

.streakpage-related a {
	color: var(--theme-muted);
	font-size: 0.938rem;
}

.streakpage-related a:hover {
	color: var(--theme-accent);
}

@media (max-width: 63.9375em) {
	.streakpage-layout {
		grid-template-columns: 1fr;
	}

	.streakpage-toc {
		position: static;
	}

	.streakpage-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 47.9375em) {
	.streakpage-shell {
		padding-top: 100px;
	}
}
