.card-three-item {
	display: flex;
	align-items: stretch;

	border: 1px solid transparent;
	border-radius: 24px;

	overflow: hidden;
	position: relative;

	transition: all 300ms ease-in-out;
}

.card-three-item:hover {
	border-color: var(--e-global-color-primary);
}

.card-three-item .card-three-image {
	width: 50%;
	object-fit: cover;

	transition: all 300ms ease-in-out;
}

.card-three-item:hover .card-three-image {
	transform: scale(1.05);
}

.card-three-item .card-three-content {
	display: flex;
	flex-direction: column;
	gap: 24px;

	z-index: 1;

	padding: 80px 40px;

	background-color: var(--e-global-color-00677e2);
}

.card-three-item .card-three-chip span {
	display: inline-block;

	border: 1px solid var(--e-global-color-primary);
	padding: 8px 16px;
	border-radius: 24px;

	font-weight: 500;
	line-height: 1;
}

.card-three-item .card-three-title {
	color: var(--e-global-color-e3d4af1);

	margin: 0;

	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
}

.card-three-item .card-three-desc {
	margin: 0;

	font-size: 20px;
	font-weight: 300;
	line-height: 1.4;
}

.card-three-item .card-three-link {
	display: flex;
	align-items: center;
	justify-content: end;

	color: var(--e-global-color-primary);

	transition: all 300ms ease-in-out;
}

.card-three-item .card-three-link:hover {
	color: var(--e-global-color-5322e88);
}

.card-three-item .card-three-link svg {
	fill: var(--e-global-color-primary);

	transition: all 300ms ease-in-out;
}

.card-three-item .card-three-link:hover svg {
	fill: var(--e-global-color-5322e88);
}

.card-three-item .card-three-link::after {
	content: '';
	position: absolute;
	inset: 0;
}

@media (max-width: 1024px) {
	.card-three-item .card-three-content {
		gap: 8px;
		padding: 32px;
	}

	.card-three-item .card-three-title {
		font-size: 24px;
	}

	.card-three-item .card-three-desc {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.card-three-item {
		flex-direction: column;
	}

	.card-three-item .card-three-image {
		width: 100%;
	}

	.card-three-item .card-three-content {
		padding: 24px 16px;
	}

	.card-three-item .card-three-title {
		font-size: 20px;
	}
}
