.ege-glass-card {
	--ege-shadow-color: rgba(0, 0, 0, 0.1);
	--ege-shadow-blur: 32px;
	--ege-inner-glow-color: rgba(255, 255, 255, 0.05);
	--ege-inner-highlight: rgba(255, 255, 255, 0.5);
	--ege-inner-lowlight: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	box-shadow:
		0 8px var(--ege-shadow-blur) var(--ege-shadow-color),
		inset 0 1px 0 var(--ege-inner-highlight),
		inset 0 -1px 0 var(--ege-inner-lowlight),
		inset 0 0 20px 10px var(--ege-inner-glow-color);
	color: #fff;
	overflow: hidden;
	position: relative;
}

.ege-glass-card::before,
.ege-glass-card::after {
	content: "";
	pointer-events: none;
	position: absolute;
	z-index: 0;
}

.ege-glass-card::before {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	display: none;
	height: 1px;
	left: 0;
	right: 0;
	top: 0;
}

.ege-glass-card::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
	display: none;
	height: 100%;
	left: 0;
	top: 0;
	width: 1px;
}

.ege-glass-card > * {
	position: relative;
	z-index: 1;
}

.ege-glass-card__icon {
	color: #fff;
	display: inline-flex;
	font-size: 36px;
	line-height: 1;
	margin-bottom: 18px;
}

.ege-glass-card__icon svg {
	display: block;
	height: 1em;
	width: 1em;
}

.ege-glass-card__title {
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px;
}

.ege-glass-card__description {
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
}

.ege-glass-card__description p {
	margin: 0 0 1em;
}

.ege-glass-card__description p:last-child {
	margin-bottom: 0;
}

.ege-glass-card__button {
	align-items: center;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-weight: 600;
	justify-content: center;
	line-height: 1;
	margin-top: 24px;
	padding: 12px 18px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.ege-glass-card__button:hover,
.ege-glass-card__button:focus {
	background: rgba(255, 255, 255, 0.24);
	color: #fff;
	transform: translateY(-1px);
}
