/* Homepage news cards */
#fh5co-blog-section .news-cards-row > .col-md-4 {
	margin-bottom: 24px;
}

@media (min-width: 992px) {
	#fh5co-blog-section .news-cards-row {
		display: flex;
		flex-wrap: wrap;
	}

	#fh5co-blog-section .news-cards-row > .col-md-4 {
		display: flex;
		float: none;
		width: 33.33333333%;
	}
}

#fh5co-blog-section .news-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: #ffffff;
	border: 1px solid rgba(26, 32, 48, 0.1);
	border-radius: 14px;
	box-shadow: 0 14px 36px rgba(26, 32, 48, 0.1);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#fh5co-blog-section .news-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px rgba(26, 32, 48, 0.16);
}

#fh5co-blog-section .news-card__media {
	position: relative;
	display: block;
	height: 220px;
	flex-shrink: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
	text-decoration: none;
}

#fh5co-blog-section .news-card__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(26, 32, 48, 0.05) 40%, rgba(26, 32, 48, 0.55) 100%);
	transition: background 0.25s ease;
}

#fh5co-blog-section .news-card:hover .news-card__overlay {
	background: linear-gradient(180deg, rgba(26, 32, 48, 0.15) 20%, rgba(26, 32, 48, 0.72) 100%);
}

#fh5co-blog-section .news-card__date {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	min-width: 58px;
	padding: 10px 12px;
	background: #1a2030;
	border-radius: 10px;
	text-align: center;
	line-height: 1.1;
	box-shadow: 0 8px 20px rgba(26, 32, 48, 0.25);
}

#fh5co-blog-section .news-card__date-day {
	display: block;
	color: #ffffff;
	font-size: 22px;
	font-weight: 700;
}

#fh5co-blog-section .news-card__date-month {
	display: block;
	margin-top: 2px;
	color: #ddd9c9;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#fh5co-blog-section .news-card__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
	height: 98px;
	min-height: 98px;
	padding: 20px 22px 22px;
	border-top: 3px solid #ddd9c9;
}

#fh5co-blog-section .news-card__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.45;
	font-weight: 600;
	height: calc(1.45em * 2);
}

#fh5co-blog-section .news-card__title a {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	height: 100%;
	color: #1a2030;
	text-decoration: none;
	transition: color 0.2s ease;
}

#fh5co-blog-section .news-card__title a:hover {
	color: #5c6478;
}

@media screen and (max-width: 991px) {
	#fh5co-blog-section .news-card__media {
		height: 200px;
	}

	#fh5co-blog-section .news-cards-row > .col-md-4 {
		margin-bottom: 20px;
	}
}
