/* The Height Fix */
.elementor-widget-uncan_glass_card .elementor-widget-container {
	height: 100%;
}

.glass-card-nav {
	position: relative;
	background: rgba(255, 255, 255, 0.1);
	padding: 35px;
	border-radius: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

.glass-card-nav:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.15);
	border-color: #FFAB00;
	box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.glass-title-wrapper {
	font-family: var(--font-heading, 'Atkinson Hyperlegible', sans-serif);
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 10px 0;
	font-weight: 700;
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 8px;
}

.inline-arrow {
	transition: transform 0.3s ease;
	display: inline-block;
}

.glass-card-nav:hover .inline-arrow {
	transform: translateX(5px);
}

.glass-card-nav p {
	font-family: var(--font-body, 'Source Sans 3', sans-serif);
	font-size: 15px;
	margin: 0;
	line-height: 1.5;
	opacity: 0.85;
}

.glass-stretched-link {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
	z-index: 10;
}