.ce_fancy_imagebox {
	overflow: visible!important;
}

.ce_fancy_image_box {
	background: white;
	border: 5px solid #d1d1d1;
	position: relative;
	padding: 1.5em;
}

.ce_fancy_image_box::after {
	position: absolute;
	bottom: -5px;
	left: -5px;
	content: "";
	display: block;
	height: 5px;
	width: calc(50% + 5px);
	background: #059ad4;
	transition: width 0.4s ease;
}

.ce_fancy_image_box:hover::after {
	width: calc(100% + 5px + 5px);
}

.ce_fancy_image_box::before {
	position: absolute;
	bottom: -5px;
	left: -5px;
	content: "";
	display: block;
	height: calc(100% + 5px + 5px);
	width: 5px;
	background: #059ad4;
}

.ce_fancy_image_box .image {
	position: absolute;
	width: 70px;
	right: 10%;
	top: -35px;
	transition: top 0.4s ease;
}

.ce_fancy_image_box:hover .image {
	top: -40px;
}

.ce_fancy_image_box .topic .headline {
	margin-bottom: 1em;
}