/*======================================
CNX ARTICLES
======================================*/

.cnx-articles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.cnx-article {
	min-width: 0;
	background-color: #03384F;
	display: flex;
	flex-direction: column;
}

.cnx-article img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 2px 2px 0 0;
}

.cnx-article a, .cnx-byline, .cnx-excerpt, .cnx-meta {
	margin-left: 20px;
	margin-right: 20px;
}

.cnx-article a {
	display: block;
	margin-top: 18px;
	color: #8ED8F8;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
}

.cnx-article a:hover {
	color: #fff;
}

.cnx-byline {
	margin: 8px 20px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
}

.cnx-excerpt {
	margin-top: 0;
	margin-bottom: 25px;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}
.cnx-meta {
  margin-top: auto;
  padding-bottom: 20px;
  color: #8DAFC0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}


/*======================================
TABLET
======================================*/

@media screen and (max-width: 900px) {

	.cnx-articles {
		grid-template-columns: repeat(2, 1fr);
	}

	.cnx-article > a {
		font-size: 25px;
	}

}


/*======================================
MOBILE
======================================*/

@media screen and (max-width: 600px) {

	.cnx-articles {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.cnx-article img {
		height: auto;
	}

	.cnx-article > a {
		font-size: 25px;
	}

	.cnx-byline,
	.cnx-excerpt {
		font-size: 17px;
	}

	.cnx-meta {
		margin-top: 40px;
		font-size: 15px;
	}

}