/* Artistic Learning & Program Section */

.alp-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	box-sizing: border-box;
}
.alp-wrap * {
	box-sizing: border-box;
}

.alp-card {
	overflow: hidden;
	position: relative;
}

/* ---------- LEFT CARD ---------- */
.alp-card-left {
	background: #F6F8FC;
	border-radius: 18px;
	padding: 32px;
}
.alp-left-inner {
	display: flex;
	align-items: center;
	gap: 24px;
	height: 100%;
}
.alp-left-content {
	flex: 1 1 auto;
	min-width: 0;
}
.alp-left-title {
	margin: 0 0 18px;
	font-size: 22px;
	font-weight: 700;
	color: #1B2A63;
}
.alp-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.alp-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.alp-list-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #2F6FED;
}
.alp-list-icon i,
.alp-list-icon svg {
	font-size: 16px;
	width: 16px;
	height: 16px;
}
.alp-list-item span {
	font-size: 15px;
	line-height: 1.3;
	color: #2B3A55;
}

.alp-left-image {
	flex: 0 0 45%;
	width: 45%;
	align-self: stretch;
	display: flex;
}
.alp-left-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	transition: opacity .3s ease;
}

/* ---------- RIGHT CARD ---------- */
.alp-card-right {
	background: #141B4D;
	border-radius: 18px;
	padding: 32px;
}
.alp-right-title {
	margin: 0 0 22px;
	font-size: 22px;
	font-weight: 700;
	color: #FFFFFF;
}

.alp-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.alp-stat-box {
	position: relative;
	text-align: center;
	padding: 22px 14px;
	border-radius: 14px;
	background-color: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
	isolation: isolate;
}
.alp-stat-box:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

/* Glossy highlight sheen (top diagonal light streak) */
.alp-glossy-yes .alp-stat-box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.06) 35%, rgba(255,255,255,0) 60%);
	opacity: 0.18;
	pointer-events: none;
	z-index: 0;
}
.alp-glossy-yes .alp-stat-icon {
	box-shadow: inset 0 1px 1px rgba(255,255,255,0.5), 0 4px 10px rgba(0,0,0,0.25);
}

/* Blur / glassmorphism */
.alp-blur-yes .alp-stat-box {
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.alp-stat-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin: 0 auto 12px;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.12);
	color: #FFFFFF;
}
.alp-stat-icon i {
	font-size: 20px;
}
.alp-stat-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.alp-stat-number {
	position: relative;
	z-index: 1;
	font-size: 22px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.2;
}
.alp-stat-label {
	position: relative;
	z-index: 1;
	font-size: 12px;
	color: rgba(255,255,255,0.75);
	line-height: 1.35;
	margin-top: 4px;
}

/* ---------- STACK BEHAVIOUR ---------- */
.alp-stack-mobile.alp-wrap,
.alp-stack-tablet.alp-wrap {
	transition: none;
}

@media (max-width: 1024px) {
	.alp-stack-tablet.alp-wrap {
		grid-template-columns: 1fr;
	}
	.alp-stack-tablet .alp-left-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.alp-stack-tablet .alp-left-image {
		width: 100%;
		flex: 1 1 auto;
		min-height: 200px;
	}
}

@media (max-width: 767px) {
	.alp-stack-mobile.alp-wrap {
		grid-template-columns: 1fr;
	}
	.alp-wrap {
		grid-template-columns: 1fr;
	}
	.alp-left-inner {
		flex-direction: column;
		align-items: stretch;
	}
	.alp-left-image {
		width: 100%;
		flex: 1 1 auto;
		min-height: 180px;
	}
	.alp-stats-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.alp-card-left,
	.alp-card-right {
		padding: 22px;
	}
	.alp-stat-box {
		padding: 16px 10px;
	}
	.alp-stat-number {
		font-size: 18px;
	}
}
