.bv-podcast-posts {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0;
	position: relative;
}

.bv-podcast-post::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
}

.view-all-posts {
	position: absolute;
	bottom: 0px;
	right: 0px;
	color: #fff !important;
	text-decoration:none;
	font-size: 16px;
	font-weight: 600;
	padding: 17px 40px;
	background-color: #5d43c7;
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
	border-radius: 10px 0 0 0;
}

.bv-podcast-post {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 500px;
	padding-bottom: 70px;
	padding-right: 60px;
	padding-left: 60px;
	width: 33.3%;
	position: relative !important;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* Overlay Effect */

.bv-podcast-post:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* Adjust height for more/less fade */
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
	pointer-events: none;
	/* Ensures it doesn't block interactions */
}

.postTitle {
	margin-bottom: 20px;
	position: relative;
}

.postTitle .postTitleLink {
	color: #fff;
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
	font-size: 36px;
	line-height: 43.1px;
	font-weight: 600;
	text-decoration:none;
}
.postTitle .postTitleLink:hover {
	color:#fff !important;
}
.bv-podcast-post .post-meta {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	position: relative;
}

.bv-podcast-post .post-meta .post-date {
	padding-bottom: 0px;
	font-size: 12px;
	line-height: 20.4px;
	color: #45BBC6;
	font-weight: 500;
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.post-category {
	color: #fff;
	font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
	font-size: 14px;
	border-radius: 36px;
	font-weight: 600;
	background-color: #45bbc6;
	padding: 8px 30px;
}

.post-category a {
	color: #fff !important;
	text-decoration:none;
}

@media (max-width: 981px) {
	.bv-podcast-posts {
		gap: 20px;
		overflow-x: scroll;
	}

	.bv-podcast-post {
		padding: 180px 30px 0 30px;
		border-radius: 10px;
		width: 100% !important;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}

	.postTitle {
		margin-right: 33px;
		margin-bottom: 10px;
		margin-left: -20px;
		color:#fff;
	}
	.postTitle a {
		color:#fff !important;
	}
	.postTitle a {
	
		font-size: 20px !important;
		line-height: 20px !important;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		/* Limit to 2 lines */
		
		text-decoration:none;
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.post-meta {
		flex-wrap: wrap;
	}

	.post-category {
		padding: 7px 16px;
		line-height: 10px !important;
	}

	.post-category a {
		font-size: 8px;
	}

	.view-all-posts {
		display: none;
	}

	.bv-podcast-post:before {
		border-radius: 10px;
	}

	.post-date {
		font-size: 9px !important;
	}
}