.sc3d-container-079a5cf2 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	perspective: 1500px;
	width: 100%;
	--sc3d-img-height: 350px;
}

.sc3d-card-079a5cf2 {
	background: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
	transform-origin: center center;
	position: relative;
	z-index: 1;
	transform: translateZ(0) rotateX(0deg);
}

.sc3d-header-079a5cf2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.sc3d-title-wrapper-079a5cf2 {
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
}

.sc3d-number-079a5cf2 {
	font-weight: 700;
	font-size: 1.2rem;
}

.sc3d-title-079a5cf2 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: 700;
}

.sc3d-desc-079a5cf2 {
	flex: 1.5;
	font-size: 1rem;
	opacity: 0.7;
	margin: 0;
}

.sc3d-icon-079a5cf2 {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 1.2rem;
}

.sc3d-image-wrapper-079a5cf2 {
	height: 0;
	overflow: hidden;
	transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1), margin 0.6s ease;
	margin-top: 0;
	border-radius: 8px;
}

.sc3d-image-wrapper-079a5cf2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Hover Effects */
.sc3d-card-079a5cf2:hover,
.sc3d-card-079a5cf2.active {
	transform: translateZ(50px);
	z-index: 10;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sc3d-card-079a5cf2:hover .sc3d-image-wrapper-079a5cf2,
.sc3d-card-079a5cf2.active .sc3d-image-wrapper-079a5cf2 {
	height: var(--sc3d-img-height);
	margin-top: 30px;
}

.sc3d-container-079a5cf2:hover .sc3d-card-079a5cf2:not(:hover) {
	transform: translateZ(-30px) rotateX(2deg);
	opacity: 0.8;
}

/* Responsive */
@media (max-width: 1024px) {
	.sc3d-header-079a5cf2 {
		flex-wrap: wrap;
	}
	.sc3d-desc-079a5cf2 {
		flex: 1 1 100%;
		margin-top: 15px;
	}
}

@media (max-width: 767px) {
	.sc3d-container-079a5cf2 {
		perspective: none;
	}
	.sc3d-card-079a5cf2:hover {
		transform: none;
	}
	.sc3d-container-079a5cf2:hover .sc3d-card-079a5cf2:not(:hover) {
		transform: none;
		opacity: 1;
	}
	.sc3d-card-079a5cf2.active .sc3d-image-wrapper-079a5cf2 {
		height: var(--sc3d-img-height);
		margin-top: 20px;
	}
}
