/* Mission Cards Styling */
#features .box {
	height: 100%;
	display: flex;
	flex-direction: column;
	min-height: 380px;
}

#features .image.fit {
	flex: 0 0 200px;
	overflow: hidden;
}

#features .image.fit img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

#features .content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 160px;
	padding: 1.5em;
}

#features .content h3 {
	margin: 0 0 1em 0;
	flex-shrink: 0;
}

#features .content p {
	margin: 0;
	flex: 1;
	display: flex;
	align-items: center;
}

/* Responsive adjustments */
@media screen and (max-width: 980px) {
	#features .box {
		min-height: 350px;
	}
	
	#features .content {
		min-height: 140px;
	}
}

@media screen and (max-width: 736px) {
	#features .box {
		min-height: 320px;
	}
	
	#features .image.fit {
		flex: 0 0 180px;
	}
	
	#features .image.fit img {
		height: 180px;
	}
	
	#features .content {
		min-height: 120px;
		padding: 1.25em;
	}
}