article.home-insight-card {
	background: #FFF;
}
.insights-partial-slider {
	display: flex; 
}
article.home-insight-card {
	max-width: 340px;
	background-color: #FFF;
	border-radius: 20px;
	padding: 15px;
}
article.home-insight-card .post-thumbnail img {
	border-radius: 20px;
	width: 100%;
}
article.home-insight-card .post-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
article.home-insight-card .post-title {
	min-height: unset;
	margin-top: 20px;
}
article.home-insight-card .post-title a {
	font-size: 18px;
	font-weight: 700;
	color: #000;
	min-height: unset;
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	line-height: 1.5em;
}
article.home-insight-card .post-meta time {
	color: #858585;
}
article.home-insight-card .post-excerpt {
	color: #000;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
	margin-bottom: 10px;
}
article.home-insight-card .post-excerpt p {
	margin-bottom: 0;
}
article.home-insight-card .read-more {
	color: #000;
	font-weight: 700;
	background: linear-gradient(90deg, #FFF, #FFF);
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 100px;
	padding: 10px;
	width: 150px;
}
article.home-insight-card .read-more:hover {
	background: linear-gradient(90deg, #9AFF00, #6495ED);
}
article.home-insight-card .read-more::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(90deg, rgba(100,149,237,.5), rgba(100,149,237,0));
    -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}