.featured--section {
	background: #fff;
}

.featured--container {
	padding-top: 30px;
	padding-bottom: 30px;
}

.featured--top-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.featured--cta a:link,
.featured--cta a:visited {
	text-decoration: underline;
	color: var(--theme-orange);
}

.featured--row {
	display: grid;
	justify-items: center;
	gap: 30px;
}

@media (min-width: 768px) {

	.featured--row  {
		grid-template-columns: repeat(2, 1fr);
	}
	
}

@media (min-width: 992px) {

	.featured--row {
		grid-template-columns: repeat(3, 1fr);
	}
	
}