.featured-item {
	position: relative;
	display: block;
	box-shadow: 0px 0px 2px rgba(0,0,0,0.15);
	border-radius: 2px;
	overflow: hidden;
}

.featured-item:hover {
	transform: scale(1.0125);
	box-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}

.featured-item span{
	display: block;
	position: absolute;
	bottom: 0;
	padding: 0.75rem 1rem;
	font-size: 1.25rem;
	text-align: left;
	color: white;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	transition: all 0.3s;
}

.featured-item:hover span {
	background: rgba(0, 0, 0, 0.7);
}

.latest-updates-list li {
	margin: 0 0 1.5rem;
}

.latest-updates-list a {
	font-family: var(--font-primary-bold);
	color: var(--color-er-grey);
}

.latest-updates-list a:hover {
	color: var(--color-er-gold);
}

.latest-updates-list a i {
	opacity: 0;
	transition: all 0.3s;
}

.latest-updates-list a:hover i {
	transform: translateX(30%);
	opacity: 1;
}

.latest-updates-list a small {
	margin-top: 0.375rem;
	opacity: 0.4;
}

.stats-list h6 {
	font-family: inherit;
	color: inherit;
}