/* Generic inner-page sections: page hero, stat strip, card grid, timeline, audience, venue, FAQ. */

.amlab-page-hero {
	position: relative;
	overflow: hidden;
}

.amlab-page-hero .amlab-page-hero__eyebrow {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: #C5A15A;
	margin-bottom: 0.75rem;
}

.amlab-page-hero h1 {
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #fff !important;
}

.amlab-page-hero .amlab-page-hero__desc {
	color: rgba(255, 255, 255, 0.55);
	max-width: 40rem;
}

/* accent bars behind page hero */
.amlab-accent-aurora.amlab-page-hero { background-color: #0b1222; }
.amlab-accent-gold.amlab-page-hero { background-color: #151C2C; }
.amlab-accent-midnight.amlab-page-hero { background-color: #10131f; }

/* Stat strip (inner page, on light bg) */
.amlab-page-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 720px) { .amlab-page-stats { grid-template-columns: 1fr; } }

.amlab-page-stat {
	border: 1px solid #E6EAF0;
	border-radius: 1rem;
	background: #fff;
	padding: 1.5rem;
	box-shadow: 0 8px 22px rgba(21, 28, 44, 0.06);
}

.amlab-page-stat__value {
	font-size: 1.6rem;
	font-weight: 800;
	color: #202940;
	margin: 0;
}

.amlab-page-stat__label {
	font-size: 0.8rem;
	color: rgba(21, 27, 47, 0.6);
	margin: 0.35rem 0 0;
}

/* Card grid */
.amlab-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

@media (max-width: 900px) { .amlab-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amlab-card-grid { grid-template-columns: 1fr; } }

.amlab-card {
	border: 1px solid #E6EAF0;
	border-radius: 1rem;
	background: #fff;
	padding: 1.5rem;
	box-shadow: 0 8px 22px rgba(21, 28, 44, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.amlab-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 40px rgba(21, 28, 44, 0.08);
}

.amlab-card--gold { border-top: 3px solid #C5A15A; }

.amlab-card__title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #202940;
	margin: 0 0 0.5rem;
}

.amlab-card__desc {
	font-size: 0.85rem;
	line-height: 1.6;
	color: rgba(21, 27, 47, 0.62);
	margin: 0;
}

/* Timeline / agenda */
.amlab-timeline {
	display: grid;
	gap: 1rem;
}

.amlab-timeline-row {
	display: grid;
	grid-template-columns: 10rem 1fr;
	gap: 1.25rem;
	align-items: start;
	border-left: 2px solid #E6EAF0;
	padding-left: 1.5rem;
	position: relative;
}

.amlab-timeline-row::before {
	content: "";
	position: absolute;
	left: -7px;
	top: 0.4rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #C5A15A;
}

.amlab-timeline-time {
	font-size: 0.82rem;
	font-weight: 800;
	color: #4F78A5;
	font-variant-numeric: tabular-nums;
}

.amlab-timeline-title {
	font-size: 0.95rem;
	font-weight: 700;
	color: #202940;
	margin: 0;
}

.amlab-timeline-detail {
	font-size: 0.82rem;
	color: rgba(21, 27, 47, 0.6);
	margin: 0.25rem 0 0;
}

@media (max-width: 720px) {
	.amlab-timeline-row { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* Audience list */
.amlab-audience {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.amlab-audience li {
	border: 1px solid #E6EAF0;
	border-radius: 999px;
	background: #EEF1F8;
	padding: 0.5rem 1rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #202940;
}

/* Venue card */
.amlab-venue {
	border: 1px solid #E6EAF0;
	border-radius: 1.1rem;
	background: linear-gradient(135deg, #F6F3EC, #fff);
	padding: 2rem;
}

.amlab-venue__title {
	font-size: 1.2rem;
	font-weight: 800;
	color: #202940;
	margin: 0 0 0.35rem;
}

.amlab-venue__location {
	font-size: 0.9rem;
	font-weight: 600;
	color: #C5A15A;
	margin: 0 0 0.75rem;
}

.amlab-venue__note {
	font-size: 0.82rem;
	color: rgba(21, 27, 47, 0.6);
	margin: 0;
}

/* FAQ (core details styling) */
.amlab-faq details {
	border: 1px solid #E6EAF0;
	border-radius: 0.75rem;
	background: #fff;
	padding: 1rem 1.25rem;
	margin-bottom: 0.75rem;
}

.amlab-faq summary {
	font-weight: 700;
	color: #202940;
	cursor: pointer;
	font-size: 0.95rem;
}

.amlab-faq details p {
	font-size: 0.85rem;
	color: rgba(21, 27, 47, 0.62);
	margin: 0.75rem 0 0;
}

/* Filter tabs (static, decorative) */
.amlab-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2rem;
}

.amlab-tabs span {
	border: 1px solid #E6EAF0;
	border-radius: 999px;
	padding: 0.4rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(21, 27, 47, 0.7);
	background: #fff;
}

.amlab-tabs span:first-child {
	background: #202940;
	color: #fff;
	border-color: #202940;
}

@media (prefers-reduced-motion: reduce) {
	.amlab-card:hover { transform: none; }
}
