/* Desktop or laptop view */
@media only screen and (min-width: 1024px) {
	.blogs__content {
		background-color: #FFFFFF;
	}
	.title__area {
		height: 32.73vh;
		width: 100%;
		/* background-image: url('../images/blogs_headerbg.svg');
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover; */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.page__title {
		/* width: 310px; */
		/* position: relative; */
		/* left: 50%; */
		/* transform: translate(-50%, 50%); */
		/* background-color: red; */
	}

	/* Blog Cards */
	#blog__section {
		/* padding: 10.41vw 15.41vh; */
		padding: 0px 15.41vh 10.41vw 15.41vh;
		display: flex;
		column-gap: 3.46vw;
		row-gap: 9.84vh;
		flex-wrap: wrap;
	}
	.blog__card {
		display: flex;
		width: 38.65vw;
	}
	.blog__thumbnail {
		background-color: #A5DBCE;
		min-width: 11.93vw;
		height: 18.57vh;
		border-radius: 1.82vw;
		margin-right: 2.08vw;
	}
	.blog__thumbnail > img {
		width: 11.93vw;
		height: 18.57vh;
		border-radius: 1.82vw;
	}
	#blog__content__title {
		text-align: center;
	}
	.blog__title {
		font-family: 'BT Beau Sans Bold';
		font-size: 1.56vw;
		color: #A5DBCE;
	}
	.blog__author {
		font-size: 0.75vw;
		color: gray;
	}
	.blog__details {
		font-size: 1.04vw;
		margin-bottom: 2.76vh;
	}
	.blog__card .read__more__link {
		font-family: 'BT Beau Sans Medium';
		font-size: 1.04vw;
		/* background-color: #404040; */
		border-radius: 3px;
		/* padding: 0.56vh; */
		/* width: 100%; */
		/* opacity: 0; */
		/* text-align: center; */
		cursor: pointer;
		color: #0000FF;
	}	
	.read__more__link a {
		text-decoration: none;
		/* color: #FFFFFF; */
	}
	.read__more__link a:visited {
		/* color: #FFFFFF; */
	}
}

/* Mobile view */
@media only screen and (max-width: 1023px) {
	.blogs__content {
		background-color: #FFFFFF;
	}
	.title__area {
		height: 28.20vh;
		width: 100%;
		padding-top: 7.11vh;
		background-image: url('../images/blogs_headerbg.svg');
		background-repeat: no-repeat;
		background-position: top;
		background-size: cover;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.page__title {
		font-size: 24px;
	}

	/* Blog Cards */
	#blog__section {
		padding: 79px 30px;
		display: flex;
		row-gap: 12.10vh;
		flex-wrap: wrap;
	}
	.blog__card {
		display: flex;
		width: 80.77vw;
		flex-direction: column;
		align-items: center;
	}
	.blog__thumbnail {
		background-color: #A5DBCE;
		width: 189px;
		height: 165px;
		border-radius: 5.90vw;
		margin-bottom: 25px;
	}
	.blog__thumbnail > img {
		width: 189px;
		height: 165px;
		border-radius: 5.90vw;
	}
	#blog__content__title {
		text-align: center;
	}
	.blog__title {
		font-family: 'BT Beau Sans Bold';
		font-size: 20px;
		color: #A5DBCE;
	}
	.blog__details {
		font-size: 16px;
	}
	.blog__card .read__more__link {
		font-family: 'BT Beau Sans Medium';
		font-size: 16px;
		background-color: #404040;
		border-radius: 3px;
		padding: 0.56vh;
		width: 100%;
		opacity: 1;
		text-align: center;
		cursor: pointer;
	}	
	.read__more__link a {
		text-decoration: none;
		color: #FFFFFF;
	}
	.read__more__link a:visited {
		color: #FFFFFF;
	}
}

#exit__intent__insights {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 650px;
	height: 650px;
}
