/* Nextech category content cards */
.nx-content-cards {
	width: 100%;
	color: #fff;
	font-family: "Roboto", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
}

.nx-content-cards,
.nx-content-cards * {
	box-sizing: border-box;
}

.nx-content-cards > h2,
.nx-content-cards h3 {
	font-family: "Inter", Arial, sans-serif !important;
	font-size: 24px !important;
	font-weight: 800 !important;
	line-height: 1.2;
}

.nx-content-cards > h2 {
	margin: 0 0 28px;
}

.nx-content-cards__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.nx-content-cards__card {
	overflow: hidden;
	border: 1px solid rgba(42, 56, 143, .25);
	background: #fff;
	color: #17223d;
}

.nx-content-cards__link {
	display: block;
	height: 100%;
	color: inherit !important;
	text-decoration: none !important;
}

.nx-content-cards__media {
	height: 210px;
	overflow: hidden;
	background: #132f60;
}

.nx-content-cards__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.nx-content-cards__link:hover .nx-content-cards__media img,
.nx-content-cards__link:focus .nx-content-cards__media img {
	transform: scale(1.05);
}

.nx-content-cards__body {
	display: flex;
	min-height: 255px;
	flex-direction: column;
	align-items: flex-start;
	padding: 24px;
}

.nx-content-cards__meta {
	margin: 0 0 12px;
	color: #2a388f;
	font-size: 12px;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.nx-content-cards__card h3 {
	margin: 0 0 12px;
	color: #102b5a;
}

.nx-content-cards__excerpt {
	margin: 0;
	color: #52607a;
	line-height: 1.6;
}

.nx-content-cards__cta {
	margin-top: auto;
	padding-top: 20px;
	color: #be2031;
	font-size: 15px;
}

@media (min-width: 700px) {
	.nx-content-cards {
		font-size: 18px;
	}

	.nx-content-cards > h2,
	.nx-content-cards h3 {
		font-size: 36px !important;
	}

	.nx-content-cards__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.nx-content-cards__media {
		height: 230px;
	}
}
