/* ─── Examples Page ─── */

.lp-examples-hero {
	text-align: center;
	padding: 140px 24px 60px;
}

.lp-examples-hero h1 {
	font-family: 'Exo 2', sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--lp-text);
	margin: 0 0 12px;
}

.lp-examples-hero h1 span {
	color: var(--lp-cyan);
}

.lp-examples-hero p {
	color: var(--lp-text-dim);
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto;
}

/* ─── Project Grid ─── */

.lp-examples-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 28px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px 60px;
}

.lp-example-card {
	background: var(--lp-surface);
	border: 1px solid rgba(186, 232, 248, 0.08);
	border-radius: 16px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.3s ease, transform 0.3s ease;
}

.lp-example-card:hover {
	border-color: rgba(186, 232, 248, 0.2);
	transform: translateY(-4px);
}

/* Card Header */

.lp-example-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.lp-example-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(186, 232, 248, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: var(--lp-cyan);
	flex-shrink: 0;
}

.lp-example-meta {
	flex: 1;
	min-width: 0;
}

.lp-example-meta h3 {
	font-family: 'Exo 2', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--lp-text);
	margin: 0 0 4px;
}

.lp-example-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.lp-example-badge {
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	padding: 2px 8px;
	border-radius: 4px;
	background: rgba(186, 232, 248, 0.08);
	color: var(--lp-text-dim);
}

.lp-example-badge-type {
	color: #fff;
}

.lp-example-badge-duration {
	background: rgba(255, 255, 255, 0.06);
}

/* Card Body */

.lp-example-desc {
	color: var(--lp-text-dim);
	font-size: 0.9rem;
	line-height: 1.55;
	margin-bottom: 20px;
	flex: 1;
}

.lp-example-highlights {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.lp-example-highlights li {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	padding: 4px 0;
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.lp-example-highlights li i {
	color: var(--lp-cyan);
	font-size: 10px;
	margin-top: 3px;
	flex-shrink: 0;
}

/* Download Button */

.lp-example-dl {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	color: #fff;
	background: rgba(186, 232, 248, 0.1);
	border: 1px solid rgba(186, 232, 248, 0.15);
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
	cursor: pointer;
}

.lp-example-dl:hover {
	background: rgba(186, 232, 248, 0.18);
	border-color: rgba(186, 232, 248, 0.3);
	color: #fff;
	text-decoration: none;
}

/* ─── Instructions Section ─── */

.lp-examples-instructions {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 24px 80px;
	text-align: center;
}

.lp-examples-instructions h2 {
	font-family: 'Exo 2', sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--lp-text);
	margin: 0 0 12px;
}

.lp-examples-instructions > p {
	color: var(--lp-text-dim);
	margin-bottom: 28px;
}

.lp-howto-steps {
	display: flex;
	gap: 20px;
	text-align: left;
}

.lp-howto-step {
	flex: 1;
	background: var(--lp-surface);
	border: 1px solid rgba(186, 232, 248, 0.08);
	border-radius: 12px;
	padding: 20px;
}

.lp-howto-step-num {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(186, 232, 248, 0.1);
	color: var(--lp-cyan);
	font-size: 0.8rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.lp-howto-step h4 {
	font-family: 'Exo 2', sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--lp-text);
	margin: 0 0 6px;
}

.lp-howto-step p {
	font-size: 0.82rem;
	color: var(--lp-text-dim);
	margin: 0;
	line-height: 1.5;
}

.lp-howto-step code {
	font-size: 0.75rem;
	background: rgba(186, 232, 248, 0.06);
	padding: 2px 6px;
	border-radius: 4px;
	color: var(--lp-cyan);
}

/* ─── Responsive ─── */

@media (max-width: 768px) {
	.lp-examples-hero h1 {
		font-size: 2rem;
	}

	.lp-examples-grid {
		grid-template-columns: 1fr;
	}

	.lp-howto-steps {
		flex-direction: column;
	}
}
