.wwec-post-container {
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 10px;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}

.wwec-post-image-container {
	max-width: 100%;
	height: auto;
	display: block;
	overflow: hidden;
}

.wwec-post-image {
	width: 100%;
	height: auto;
	height: 319px !important;
	display: block;
	object-fit: cover;
}

.wwec-post-details {
	padding: 20px;
}

.wwec-post-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}

.wwec-post-description {
	font-size: 16px;
}

.wwec-post-description p {
	margin-top: 15px;
}

.wwec-post-properties {
	list-style-type: none;
	padding-left: 1px;
}

.wwec-post-properties li {
	margin-top: 5px;
}

.wwec-post-pagination {
	text-align: center;
	margin: 10px 0;
}

.wwec-post-pagination a{
	padding: 10px;
	background: #ebebeb;
}

.wwec-post-pagination a.active{
	background: #bcbcbc;
}

.wwec-post-pagination a:hover{
	background: #bcbcbc;
}

@media screen and (max-width: 768px) {
	.wwec-post-container {
		grid-template-columns: 100%;
		/* Single column layout for smaller screens */
	}

	.wwec-post-details {
		padding: 10px;
		/* Reduce padding for smaller screens */
	}
}