.detail-alert p {
	display: flex;
	align-items: center;
}
.detail-alert p ion-icon {
	margin-right: 10px;
	font-size: 20px;
}

.badge {
	background-color: #1c8c4c;
	color: #fff;
	padding: 2px 10px;
	border-radius: 10px;
}

.courses-list {
	max-width: 1100px;
	margin: 80px auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.lp-course {
	display: grid;
	grid-template-columns: 70px 1fr;
	gap: 24px;
	align-items: stretch;
}

/* STEP NUMBER */
.lp-step {
	font-size: 28px;
	font-weight: 800;
	color: #023061;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 18px;
	position: relative;
	margin-top: 50px;
}

.lp-step::after {
	content: "";
	position: absolute;
	top: 100px;
	width: 2px;
	height: calc(100% - 60px);
	background: linear-gradient(to bottom, #bedced, transparent);
}

.lp-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 24px;
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 28px;
	box-shadow: 0 20px 55px rgba(11, 27, 63, 0.08);
	transition: all 0.35s ease;
}

.lp-course:last-child .lp-step::after {
	display: none;
}

.lp-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 35px 75px rgba(11, 27, 63, 0.14);
}

/* ================= IMAGE ================= */
.lp-thumb {
	overflow: hidden;
	border-radius: 16px;
}

.lp-thumb img {
	width: 100%;
	height: 150px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.lp-card:hover .lp-thumb img {
	transform: scale(1.08);
}

/* ================= CONTENT ================= */
.lp-content {
	display: flex;
	flex-direction: column;
}

.lp-title {
	font-size: 18px;
	font-weight: 700;
	color: #0b1b3f;
	line-height: 1.4;
	margin-bottom: 12px;
}

.lp-desc {
	font-size: 14.5px;
	line-height: 1.75;
	color: #475569;
	margin-bottom: auto;
}

/* ================= BUTTON ================= */
.lp-btn {
	align-self: flex-start;
	margin-top: 20px;
	padding: 12px 22px;
	border-radius: 12px;
	background: linear-gradient(135deg, #0b1b3f, #023061);
	color: #ffffff;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.25s ease;
}

.lp-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
	.lp-course {
		grid-template-columns: 40px 1fr;
		gap: 16px;
	}

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

	.lp-thumb img {
		height: 180px;
	}

	.lp-step {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.lp-title {
		font-size: 16px;
	}

	.lp-desc {
		font-size: 13px;
	}

	.lp-btn {
		width: 100%;
		text-align: center;
	}
}
