/*======================================
CNX INVESTOR CARDS
======================================*/

.cnx-investor-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.cnx-investor-card {
	min-width: 0;
	background-color: #03384F;
	display: flex;
	flex-direction: column;
}

.cnx-investor-card img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 2px 2px 0 0;
}

.cnx-investor-title,
.cnx-investor-meta {
	margin-left: 20px;
	margin-right: 20px;
}

.cnx-investor-title {
	display: block;
	margin-top: 22px;
	margin-bottom: 30px;
	color: #8ED8F8;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none;
}

.cnx-investor-title:hover {
	color: #fff;
}

.cnx-investor-meta {
	margin-top: auto;
	padding-bottom: 18px;
	color: #8DAFC0;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
}

@media screen and (max-width: 900px) {
	.cnx-investor-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.cnx-investor-title {
		font-size: 25px;
	}
}

@media screen and (max-width: 600px) {
	.cnx-investor-cards {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cnx-investor-card img {
		height: auto;
	}

	.cnx-investor-title {
		font-size: 25px;
	}

	.cnx-investor-meta {
		font-size: 15px;
	}
}