/*
 * Style for BlinQ Post Section
 */
.blinQ-posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.recent-post {
	width: 47.5%;
	display: flex;
	flex-wrap: wrap;
	border: 2px #c4c4c4 solid;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	border-radius: 19px;
	align-content: start;
	margin-bottom: 20px;
}
.post-thumbnail {
	width: 40%;
	height: 40vh;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 10px;
	transition: filter 0.5s ease;
}
.recent-post:hover  .post-thumbnail {
	filter: brightness(70%);
}
.post-content {
	width: 60%;
	padding-left: 20px;
	padding-right: 20px;
}
.post-title {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 20px;
}
.post-title a {
	color: var(--e-global-color-secondary) !important;
}
.post-title:hover a {
	color: var(--e-global-color-primary) !important;
}
.post-desc {
	margin-bottom: 20px;
}
.published-date {
	margin-bottom: 20px;
}
.read-more {
	display: inline;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 25px;
	padding-right: 25px;
	background-color: var(--e-global-color-primary);
	border-radius: 10px;
	color: var(--e-global-color-8e45e32) !important;
	font-weight: 400;
}
.read-more:hover {
	background-color: var(--e-global-color-secondary);
}

@media only screen and (max-width: 1366px) and (min-width: 768px) {
	.post-thumbnail {
		width: 100%;
	}
	.post-content {
		padding-left: 0;
		padding-right: 0;
		width: 100%;
		padding-top: 10px;
	}
	.read-more {
    	display: block;
		width: 100%;
		text-align: center;
	}
}

@media only screen and (max-width: 767px) {
	.recent-post {
		width: 100%;
	}
	.post-thumbnail {
		width: 100%;
	}
	.post-content {
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
		padding-top: 10px;
	}
	.read-more {
		width: 100%;
		text-align: center;
    	display: block;
	}
}