.al-container-d6a36c7a {
	text-align: center;
	padding: 20px;
}
.al-main-title-d6a36c7a {
	margin-bottom: 10px;
	color: #0b2b53; /* Academic Blue */
}
.al-main-subtitle-d6a36c7a {
	margin-bottom: 40px;
	color: #555;
}
.al-grid-d6a36c7a {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

/* Base Card */
.al-card-d6a36c7a {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
	flex: 1;
	min-width: 250px;
	position: relative;
	z-index: 2;
}
.al-card-d6a36c7a:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.al-icon-d6a36c7a {
	font-size: 32px;
	color: #0b2b53;
	margin-bottom: 15px;
}
.al-icon-d6a36c7a svg {
	width: 32px;
	height: 32px;
	fill: #0b2b53;
}
.al-badge-d6a36c7a {
	display: inline-block;
	background: #e6f0ff;
	color: #0b2b53;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 10px;
}
.al-title-d6a36c7a {
	font-size: 18px;
	margin: 0 0 10px;
	color: #333;
}
.al-desc-d6a36c7a {
	font-size: 14px;
	color: #666;
	margin: 0;
}

/* Grid Layout */
.al-layout-grid .al-card-wrapper-d6a36c7a {
	width: calc(33.333% - 20px);
}
@media (max-width: 1024px) {
	.al-layout-grid .al-card-wrapper-d6a36c7a { width: calc(50% - 20px); }
}
@media (max-width: 767px) {
	.al-layout-grid .al-card-wrapper-d6a36c7a { width: 100%; }
}

/* Vertical Timeline Layout */
.al-layout-vertical .al-grid-d6a36c7a {
	flex-direction: column;
	align-items: center;
}
.al-layout-vertical .al-card-wrapper-d6a36c7a {
	width: 100%;
	max-width: 400px;
	position: relative;
}
.al-layout-vertical .al-connector-d6a36c7a {
	width: 4px;
	height: 30px;
	background: #0b2b53;
	margin: 0 auto;
}

/* Horizontal Roadmap Layout */
.al-layout-horizontal .al-grid-d6a36c7a {
	flex-wrap: nowrap;
	overflow-x: auto;
	padding-bottom: 20px;
	align-items: center;
}
.al-layout-horizontal .al-card-wrapper-d6a36c7a {
	display: flex;
	align-items: center;
	min-width: 250px;
}
.al-layout-horizontal .al-connector-d6a36c7a {
	height: 4px;
	width: 30px;
	background: #0b2b53;
	flex-shrink: 0;
}
@media (max-width: 767px) {
	.al-layout-horizontal .al-grid-d6a36c7a {
		flex-direction: column;
	}
	.al-layout-horizontal .al-card-wrapper-d6a36c7a {
		flex-direction: column;
	}
	.al-layout-horizontal .al-connector-d6a36c7a {
		width: 4px;
		height: 30px;
	}
}
