.k-ic-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.k-ic-item-wrap {
	flex: 0 0 32%;
	max-width: 32%;
	position: relative;
	margin-bottom: 24px;
}
.k-ic-item-thumbnail-wrap {
	position: relative;
	height: 0;
	width: 100%;
	padding-top: 65%;
	z-index: 1;
	overflow: hidden;
}
.k-ic-item-thumbnail-wrap img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: all 0.3s
}
.k-ic-item-title-wrap {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin-top: -42px;
}
.k-ic-item-title {
	width: 90%;
	background: #f0f0f0;
	border: 1px solid #f0f0f0;
	padding: 16px;
	min-height: 84px;
}
.k-ic-item-title span {
	transition: all 0.3s;
	text-overflow: ellipsis !important;
	overflow: hidden !important;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.k-ic-item-wrap:hover .k-ic-item-title {
	background: #542876;
	color: #fff;
}
.k-ic-item-wrap:hover .k-ic-item-thumbnail-wrap img {
	transform: scale(1.1);
}
.k-ic-read-more-wrap {
	text-align: center;
	margin-top: 24px;
}
.k-ic-read-more {
	padding: 12px 25px;
	color: #fff;
	background: #542876;
	cursor: pointer;
	border-radius: 24px;
	border: 1px solid #542876;
}
.k-ic-read-more:hover {
	color: #542876;
	background: #f0f0f0;
}
@media ( max-width: 1025px ) {
	.k-ic-item-wrap {
		flex: 0 0 49%;
		max-width: 49%;
	}
}
@media ( max-width: 767px ) {
	.k-ic-item-wrap {
		flex: 0 0 100%;
		max-width: 100%;
	}
}