/* Elementor Addon Nextra - Tilt Card */

.ean-widget-tilt-card .ean-tilt-card {
	position: relative;
	overflow: hidden;
	transform-style: preserve-3d;
	will-change: transform;
	padding: 48px 36px;
	text-align: center;
	background-color: #1a1b2e;
	background-image: linear-gradient(145deg, #2b2d42, #1a1b2e);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	box-shadow: 0 18px 44px rgba(20, 24, 40, 0.28);
	transition: box-shadow 0.3s ease;
}

.ean-widget-tilt-card .ean-tilt-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	transform-style: preserve-3d;
}

.ean-widget-tilt-card .ean-tilt-glare {
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 55%);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ean-widget-tilt-card:hover .ean-tilt-glare {
	opacity: 1;
}

.ean-widget-tilt-card .ean-tilt-link {
	display: block;
	width: 100%;
	color: inherit;
	text-decoration: none;
}

.ean-widget-tilt-card .ean-tilt-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	height: 76px;
	margin-bottom: 22px;
	font-size: 32px;
	line-height: 1;
	color: #ffffff;
	background-color: #6c63ff;
	border-radius: 50%;
	box-shadow: 0 10px 24px rgba(108, 99, 255, 0.35);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ean-widget-tilt-card .ean-tilt-icon i {
	line-height: 1;
}

.ean-widget-tilt-card:hover .ean-tilt-icon {
	transform: translateZ(36px) scale(1.05);
	box-shadow: 0 14px 34px rgba(108, 99, 255, 0.45);
}

.ean-widget-tilt-card .ean-tilt-title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #ffffff;
}

.ean-widget-tilt-card .ean-tilt-description {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #d5d5d5;
}

@media (max-width: 767px) {
	.ean-widget-tilt-card .ean-tilt-card {
		padding: 40px 26px;
	}
}
