.post-item {
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.post-item h2 {
	font-size: 22px;
}

.post-item .post-meta {
	color: #666;
}

.post-item .post-excerpt {
	font-size: 16px;
	line-height: 1.5;
}

.hero-image {
	width: 100%;
	height: 300px; /* Adjust as needed */
	background-size: cover;
	background-position: center;
}

/* Basic styles for post list */
.post-list {
	display: flex;
	flex-wrap: wrap;
	margin: -10px; /* Adjust margin to align items properly */
}

.post-item {
	box-sizing: border-box;
	padding: 10px;
	width: 100%; /* Default to 1 column layout */
}

.d-flex {
	display: flex !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.align-items-center {
	align-items: center !important;
}

.w-100{
	width: 100%;
} 
.object-fit-cover {
	object-fit: cover!important;
}

.more-button {
	display: inline-block;
	padding: 5px 20px;
	margin-top: 10px;
	background-color: rgba(255,255,255,0.8);
	color: #555;
	text-decoration: none;
	transition: background-color 0.3s ease;
	font-weight: bold;
	font-size: 14px;
	text-transform: lowercase;
}

.more-button:hover {
	background-color: rgba(255,255,255,0.7); /* Darker shade on hover */
}
.post-item {
	border: none;
}

.postsPostTitle {
	margin: 20px 0;
	text-decoration: none!important;
}
.postsPostTitle a {
	text-decoration: none!important;
}
.exerpt {
	color: #b9b9b9;
}
.pb-5 {
	padding-bottom: 57px!important;
}

/* Make the dropdown background transparent */
#category_filter, #category_filter:focus, #category_filter option {
	background-color: rgba(255, 255, 255, 0.1);
	border: 0px!important;
	padding: 5px 10px; 
	color: #fff!important
}


/* Three columns layout for wide screens */
@media (min-width: 1200px) {
	.post-item {
		width: 33.33%; /* Three columns */
	}
}

/* Two columns layout for tablets */
@media (min-width: 768px) and (max-width: 1199px) {
	.post-item {
		width: 50%; /* Two columns */
	}
}

/* One column layout for mobile */
@media (max-width: 767px) {
	.post-item {
		width: 100%; /* One column */
	}
	.resp {
		flex-direction: column !important;
	}
}
