.sg-c60d4b9b-wrapper {
	width: 100%;
}

.sg-c60d4b9b-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eaeaea;
}

.sg-c60d4b9b-header-left {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sg-c60d4b9b-header-num {
	color: #0f4b66;
	font-size: 24px;
	font-weight: 500;
}

.sg-c60d4b9b-header-title {
	margin: 0;
	color: #111827;
	font-size: 36px;
	font-weight: 700;
}

.sg-c60d4b9b-header-right {
	max-width: 400px;
	text-align: right;
}

.sg-c60d4b9b-header-desc {
	margin: 0;
	color: #6b7280;
	font-size: 16px;
	line-height: 1.5;
}

.sg-c60d4b9b-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.sg-c60d4b9b-card {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 450px;
	padding: 30px;
	text-decoration: none;
	cursor: pointer;
}

.sg-c60d4b9b-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 1;
}

.sg-c60d4b9b-card:hover .sg-c60d4b9b-bg {
	transform: scale(1.1);
}

.sg-c60d4b9b-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(20, 30, 40, 0.9) 100%);
	z-index: 2;
}

.sg-c60d4b9b-content {
	position: relative;
	z-index: 3;
	color: #fff;
}

.sg-c60d4b9b-card-title {
	margin: 0 0 10px 0;
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
}

.sg-c60d4b9b-card-desc {
	margin: 0 0 20px 0;
	color: #e5e7eb;
	font-size: 14px;
	line-height: 1.5;
}

.sg-c60d4b9b-card-link {
	display: inline-block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.sg-c60d4b9b-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.sg-c60d4b9b-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.sg-c60d4b9b-header-right {
		text-align: left;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.sg-c60d4b9b-grid {
		grid-template-columns: 1fr;
	}
	.sg-c60d4b9b-header-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
	.sg-c60d4b9b-header-num {
		font-size: 20px;
	}
	.sg-c60d4b9b-header-title {
		font-size: 28px;
	}
}
