/* Commentator Info Guide Page — one whole page, passionate hero */

.commentator-info-guide-page {
	--ncpa-blue: #7EADED;
	--ncpa-blue-dark: #4A90E2;
	--ncpa-bg: #000;
	--ncpa-panel: #1a1a1a;
	--ncpa-text: #fff;
	--ncpa-muted: #b9c4d3;
	--ncpa-border: rgba(255, 255, 255, 0.1);
}

/* One section — same background top to bottom */
.commentator-info-guide-page .commentator-page {
	background: linear-gradient(180deg,
		#0a0a0a 0%,
		#0a0a0a 35%,
		rgba(10, 10, 10, 0.98) 50%,
		#0d0d0d 100%),
		linear-gradient(135deg, rgba(126, 173, 237, 0.08) 0%, rgba(74, 144, 226, 0.04) 40%, transparent 70%),
		#0a0a0a;
	padding: 48px 0 56px;
	color: var(--ncpa-text);
}

.commentator-info-guide-page .commentator-page .container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Hero — top of the same page, more personality */
.commentator-info-guide-page .commentator-hero {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--ncpa-border);
}

.commentator-info-guide-page .commentator-hero h1 {
	font-size: 2.25em;
	margin-bottom: 16px;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.commentator-info-guide-page .hero-lead {
	font-size: 1.2em;
	line-height: 1.55;
	color: var(--ncpa-blue);
	font-weight: 500;
	max-width: 640px;
	margin: 0 auto 20px;
}

.commentator-info-guide-page .hero-text {
	font-size: 1.05em;
	line-height: 1.7;
	color: var(--ncpa-muted);
	max-width: 680px;
	margin: 0 auto;
}

/* Guide grid — flows right below hero, same section */
.commentator-info-guide-page .guide-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 32px;
	margin-bottom: 28px;
}

.commentator-info-guide-page .guide-block {
	background: var(--ncpa-panel);
	border: 1px solid var(--ncpa-border);
	border-radius: 12px;
	padding: 20px 22px;
}

.commentator-info-guide-page .guide-block h2 {
	font-size: 1.15em;
	color: var(--ncpa-text);
	margin: 0 0 14px 0;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--ncpa-border);
	display: flex;
	align-items: center;
	gap: 8px;
}

.commentator-info-guide-page .guide-block h2 i {
	color: var(--ncpa-blue);
}

.commentator-info-guide-page .guide-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.commentator-info-guide-page .guide-list li {
	font-size: 0.9em;
	line-height: 1.5;
	color: var(--ncpa-muted);
	padding: 4px 0;
	padding-left: 16px;
	position: relative;
}

.commentator-info-guide-page .guide-list li::before {
	content: '·';
	position: absolute;
	left: 0;
	color: var(--ncpa-blue);
	font-weight: bold;
}

.commentator-info-guide-page .guide-list li strong {
	color: var(--ncpa-text);
	font-weight: 600;
}

.commentator-info-guide-page .guide-note {
	font-size: 0.85em;
	color: var(--ncpa-muted);
	margin-top: 12px;
	margin-bottom: 0;
	line-height: 1.4;
}

.commentator-info-guide-page .guide-footer {
	text-align: center;
	font-size: 0.95em;
	color: var(--ncpa-blue);
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.commentator-info-guide-page .commentator-page {
		padding: 36px 0 44px;
	}

	.commentator-info-guide-page .commentator-hero {
		margin-bottom: 32px;
		padding-bottom: 28px;
	}

	.commentator-info-guide-page .commentator-hero h1 {
		font-size: 1.9em;
	}

	.commentator-info-guide-page .hero-lead {
		font-size: 1.1em;
	}

	.commentator-info-guide-page .hero-text {
		font-size: 1em;
	}

	.commentator-info-guide-page .guide-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.commentator-info-guide-page .guide-block {
		padding: 18px 20px;
	}

	.commentator-info-guide-page .guide-block h2 {
		font-size: 1.1em;
	}
}

@media (max-width: 480px) {
	.commentator-info-guide-page .commentator-hero h1 {
		font-size: 1.65em;
	}

	.commentator-info-guide-page .hero-lead {
		font-size: 1.05em;
	}

	.commentator-info-guide-page .guide-list li {
		font-size: 0.85em;
	}
}
