
uix-docs-overview-card article.docs-overview-card {
	display: flex;
	max-width: 250px;
	/* overflow: hidden; */
	background-color: var(--bg_color);
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	position: relative;
	height: 100%;
}
uix-docs-overview-card .docs-overview-card::after {
	background-image: linear-gradient(165deg, var(--start-color), var(--end-color));
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    filter: blur(15px);
    border-radius: 0px;
    background-clip: padding-box;
    border: 2px solid transparent;
    opacity: 0.6;
    z-index: -1;
    box-sizing: border-box;
}
uix-docs-overview-card article.docs-overview-card > div {
	overflow: hidden;
	border-radius: 10px;
}
uix-docs-overview-card article.docs-overview-card > div:first-of-type {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}
uix-docs-overview-card article.docs-overview-card > div img {
	flex-shrink: 0;
	max-width: 100%;
	max-height: 100%
}
uix-docs-overview-card article.docs-overview-card > div h3 {
	color: var(--text_highlight);
	margin: 0;
	margin-bottom: 3px;
}
uix-docs-overview-card article.docs-overview-card > div:last-of-type {
	display: flex;
	flex-direction: column;
	padding: 15px;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	background-color: var(--bg_color);
	flex: 1;
}
uix-docs-overview-card article.docs-overview-card > div:last-of-type > span {
	/* line-height: 1; */
	margin-bottom: 8px;
}
uix-docs-overview-card article.docs-overview-card > div:last-of-type > span:last-of-type {
	flex: 1;
}

uix-docs-overview-card article.docs-overview-card > div:last-of-type a {
	margin-top: 20px;
	display: flex;
	align-items: center;
}
uix-docs-overview-card article.docs-overview-card > div:last-of-type a > span {
	margin-left: 3px;
	font-size: small;
}
uix-docs-overview-card article.docs-overview-card > div:last-of-type a:hover > span {
	display: none;
}