.bdp-wrapper-ea523d54 {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bdp-post-link {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.3s ease;
}

.bdp-post-link:hover {
	transform: translateY(-2px);
}

.bdp-post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 8px;
	display: block;
}

.bdp-featured-post .bdp-post-thumbnail img {
	max-height: 400px;
}

.bdp-grid-post .bdp-post-thumbnail img {
	aspect-ratio: 16/9;
}

.bdp-post-content {
	padding: 15px 0;
}

.bdp-post-title {
	margin: 0 0 10px 0;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #333;
}

.bdp-featured-post .bdp-post-title {
	font-size: 1.8rem;
}

.bdp-post-meta {
	display: flex;
	gap: 15px;
	font-size: 0.9rem;
	color: #777;
}

.bdp-grid-ea523d54 {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.bdp-grid-ea523d54 {
		grid-template-columns: 1fr; /* 1 column on mobile */
		gap: 15px;
	}

	.bdp-featured-post .bdp-post-thumbnail img {
		max-height: 250px; /* Adjust featured image height for smaller screens */
	}

	.bdp-featured-post .bdp-post-title {
		font-size: 1.4rem; /* Adjust title size */
	}
	
	.bdp-post-title {
		font-size: 1.1rem;
	}
}
