/* ============================================================
   Leadership Experiences Page - lx- prefix
   ============================================================ */

/* Hero */
.lx-hero {
	min-height: 100vh;
	justify-content: flex-start;
	align-items: center;
	padding: 0 4%;
	background: var(--dark-teal);
}

.lx-hero-bg {
	position: absolute;
	inset: 0;
	background-image: url('../images/U2030-photos/u2030-142.webp');
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.lx-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		rgba(7, 80, 86, 1)    0%,
		rgba(7, 80, 86, 1)    40%,
		rgba(7, 80, 86, 0.85) 55%,
		rgba(7, 80, 86, 0.4)  75%,
		rgba(7, 80, 86, 0.2)  100%
	);
}

.lx-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 0 auto;
	padding: 10rem 0 6rem;
	width: 100%;
	animation: fadeInUp 1s ease-out;
}

.lx-hero-text {
	max-width: 650px;
}

.lx-hero-text h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: var(--white);
	line-height: 1.15;
	letter-spacing: -1px;
	margin-bottom: 1.5rem;
}

.lx-hero-subtitle {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.8;
	max-width: 600px;
	margin-bottom: 0;
}

.lx-hero-ctas {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

/* Intro */
.lx-intro {
	padding: 7rem 4%;
	background: var(--white);
}

.lx-intro-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 4rem;
	align-items: start;
}

.lx-intro-label {
	font-family: 'Funnel Sans', sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--blaze-orange);
	position: sticky;
	top: 120px;
}

.lx-intro-label::after {
	content: '';
	display: block;
	width: 40px;
	height: 3px;
	background: var(--blaze-orange);
	margin-top: 1rem;
}

.lx-intro-content h2 {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	color: var(--navy-black);
	margin-bottom: 1.5rem;
	max-width: 600px;
}

.lx-intro-content p {
	font-size: 1.1rem;
	color: #5a6872;
	line-height: 1.9;
	max-width: 600px;
}

.lx-intro-content p + p {
	margin-top: 1.5rem;
}

/* Experience Sections */
.lx-section {
	padding: 6rem 4%;
	background: var(--white);
}

.lx-section--cream {
	background: var(--soft-cream);
}

.lx-wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

.lx-section-header {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(7, 80, 86, 0.1);
}

.lx-section-number {
	font-family: 'Funnel Sans', sans-serif;
	font-size: 5rem;
	font-weight: 700;
	color: var(--dark-teal);
	opacity: 0.15;
	line-height: 1;
}

.lx-section-header-text h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: var(--navy-black);
	margin-bottom: 0.5rem;
}

.lx-section-header-text p {
	font-size: 1.05rem;
	color: #5a6872;
	max-width: 600px;
}

/* Cards grid */
.lx-cards {
	display: grid;
	gap: 2rem;
}

.lx-cards--events,
.lx-cards--programs {
	grid-template-columns: repeat(3, 1fr);
}

.lx-cards--tools {
	grid-template-columns: 1fr 1fr;
	max-width: 900px;
}

/* Card */
.lx-card {
	background: var(--white);
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(7, 80, 86, 0.08);
	position: relative;
	text-decoration: none;
	display: block;
	color: inherit;
}

.lx-section--cream .lx-card {
	background: var(--white);
}

.lx-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 30px 60px rgba(7, 80, 86, 0.12);
}

.lx-card-image {
	height: 200px;
	overflow: hidden;
	position: relative;
}

.lx-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.lx-card:hover .lx-card-image img {
	transform: scale(1.05);
}

.lx-card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(to top, rgba(22, 35, 43, 0.6), transparent);
}

.lx-card-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--blaze-orange);
	color: var(--white);
	font-family: 'Funnel Sans', sans-serif;
	font-size: 0.7rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.4rem 0.75rem;
	border-radius: 4px;
	z-index: 2;
}

.lx-card-badge--bottom {
	top: auto;
	bottom: 1rem;
}

.lx-card-content {
	padding: 1.75rem;
}

.lx-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.lx-card-meta span {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	color: var(--dark-teal);
	font-weight: 500;
}

.lx-card-meta .material-icons-outlined {
	font-size: 14px;
}

.lx-card h3 {
	font-size: 1.35rem;
	color: var(--navy-black);
	margin-bottom: 0.75rem;
}

.lx-card p {
	font-size: 0.95rem;
	color: #5a6872;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.lx-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: 'Funnel Sans', sans-serif;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--dark-teal);
	text-decoration: none;
	transition: all 0.3s ease;
}

.lx-card-link:hover {
	color: var(--blaze-orange);
	gap: 0.75rem;
}

.lx-card-link .material-icons-outlined {
	font-size: 18px;
}

/* Tool cards */
.lx-card--tool {
	display: flex;
	align-items: center;
	padding: 2rem;
	gap: 1.5rem;
}

.lx-tool-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--dark-teal), var(--sea-green));
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lx-tool-icon .material-icons-outlined {
	font-size: 32px;
	color: var(--white);
}

.lx-tool-content h3 {
	margin-bottom: 0.5rem;
}

.lx-tool-content p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
}

/* Quote Section */
.lx-quote {
	background: linear-gradient(135deg, var(--sea-green) 0%, var(--dark-teal) 100%);
	padding: 6rem 4%;
	position: relative;
	overflow: hidden;
}


.lx-quote-wrapper {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.lx-quote-text {
	font-family: 'Funnel Sans', sans-serif;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 600;
	color: var(--white);
	line-height: 1.6;
	margin-bottom: 1rem;
}

.lx-quote-author {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	line-height: 1.7;
	margin: 0 auto 2rem;
	max-width: 600px;
}

.lx-quote-ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	margin-top: 3rem;
	flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1100px) {
	.lx-cards--events,
	.lx-cards--programs {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 992px) {
	.lx-intro-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.lx-intro-label {
		position: static;
	}

	.lx-section-header {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.lx-section-number {
		font-size: 3rem;
	}
}

@media (max-width: 768px) {
	.lx-cards--events,
	.lx-cards--programs,
	.lx-cards--tools {
		grid-template-columns: 1fr;
	}

	.lx-card--tool {
		flex-direction: column;
		text-align: center;
	}

	.lx-quote-ctas {
		flex-direction: column;
		align-items: center;
	}

	.lx-hero-ctas {
		flex-direction: column;
		align-items: flex-start;
	}

	.lx-hero-content {
		padding: 7rem 4% 4rem;
		box-sizing: border-box;
	}

	.lx-hero-bg {
		background-position: right bottom;
		background-size: auto 45%;
		background-repeat: no-repeat;
	}

	.lx-hero-bg::after {
		background: linear-gradient(
			to bottom,
			rgba(7, 80, 86, 1) 0%,
			rgba(7, 80, 86, 1) 55%,
			rgba(7, 80, 86, 0) 160%
		);
	}
}
