.posts-page-wrapper {
	width: 100%;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-page {
	width: 80%;
	max-width: 1600px;
	padding-top: 2em;
	padding-bottom: 2em;
}

.post-page-title-wrapper {
	width: 100%;
	display: flex;
	margin: 4% 1% 1% 1%;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.post-page-title-wrapper h1 {
	text-align: center;
}

.add-post-wrapper {
	position: absolute;
	right: 2px;
	top: 50%;
	transform: translateY(-50%);
}

.add-post-wrapper button {
	background: transparent;
	color: #45ACBB;
}

.add-post-wrapper button:hover {
	border: 1px solid #45ACBB;
}

.add-post-wrapper button:focus {
	border: 2px solid #45ACBB;
}


.post-page-filter-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.filter-button-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.post-page-filter-items-wrapper {
	max-width: 1600px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 15px;
	column-gap: 15px;
}

.filter-item {
	max-width: 350px;
	width: 100%;
}

.post-page-filter-items-wrapper input {
	color: #5D93C4;
	background: transparent;
	outline: 0;
	border: 1px solid #45ACBB;
}

.post-page-filter-items-wrapper select {
	color: #5D93C4;
	background: transparent;
	border: 1px solid #45ACBB;
}

.filter-button-wrapper input {
	margin-top: 15px;
	width: 100%;
	max-width: 250px;
	border: 0;
	color: white;
	background: #45ACBB;;
}

.filter-button-wrapper input:hover {
	outline: 1px solid #45ACBB;
	color: #45ACBB;
	background: transparent;;
}

.filter-button-wrapper input:focus {
	outline: 2px solid #45ACBB;
	color: #45ACBB;
	background: transparent;;
}

.filter-item:focus {
	outline: 2px solid #45ACBB;
	border: 0;
}

.button-wrapper {
	width: 100%;
	margin: 2em 0 2em 0;
	display: flex;
	justify-content: center;
}

.button-wrapper .button {
	padding: 0.5em 2em 0.5em 2em;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: white;
	background: #5D93C4;
	text-transform: uppercase;
}

.button-wrapper .button:hover {
	color: #5D93C4;
	background: transparent;
	outline: 1px solid #5D93C4;
}

.button-wrapper .button:focus {
	color: #5D93C4;
	background: transparent;
	outline: 2px solid #5D93C4;
}

.post-page-subtitle-wrapper {
	width: 100%;
	margin: 1%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.post-page-subtitle-wrapper h2 {
	color: #223284;
	flex-grow: 1;
	text-align: center;
}

.post-page-content-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
}

.post-page-content {
	max-width: 1600px;
	width: 100%;
	margin: 0 1% 0 1%;
}

.post-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	row-gap: 30px;
	column-gap: 30px;
}

/* .post-item {
	width: 31.5%;
	min-width: 350px;
} */

.post-item {
	width: 31.7%;
	min-width: 300px;
}

.post-image .wp-post-image {
	box-shadow: 0 0 7px 2px #969696;
	width: 100%;
	height: 312px;
	object-fit: cover;
	object-position: top;
}

.post-title {
	margin: 4% 0 2% 0;
}

/* .post-excerpt {
	margin: 2% 0 2% 0;
}

.post-excerpt p {
	font-family: Poppins, sans-serif;
  	font-size: 18px;
  	font-weight: 400;
	line-height: 26px;
	word-break: break-word;
} */

.post-excerpt {
	max-height: 130px; 
	width: 100%;
	margin: 2% 0 2% 0;
}

.post-excerpt p {
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	word-break: break-word;
	height: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
}

.post-divider {
	height: 3px;
	width: 100%;
	background-color: #969696;
}

.post-meta {
	margin: 2% 0 2% 0;
	font-family: Poppins, sans-serif;
  	font-size: 14px;
  	font-weight: 700;
	line-height: 21px;
	color: #63C2D0;
}

@media (min-width: 768px) {
	
	.content-wrapper {
		width: 75%;
	}
	
	.post-page-title-wrapper h1 {
		font-size: 36px;
	}
	
	.post-list {
		display: flex;
		flex-wrap: wrap;
		row-gap: 20px;
	}
	
	.post-title {
		min-height: 108px;
	}
	
	.post-excerpt {
		max-height: 130px; 
		height: 130px;
		min-height: 130px;
		width: 100%;
	}
	
	.post-excerpt p {
		height: 100%;
    	overflow: hidden;
		text-overflow: ellipsis;
  		font-size: 18px;
		display: -webkit-box;
  		-webkit-box-orient: vertical;
  		-webkit-line-clamp: 5;
	}

	.add-post-wrapper {
		right: 10px;
	}
}

@media (min-width: 1440px) {
	.post-page-title-wrapper h1 {
		font-size: 72px;
	}
	
	.post-page-subtitle-wrapper div {
		height: 16px;
		background-color: #969696;
		flex-grow: 5;
	}
	
	.post-title {
		min-height: 108px;
	}
	
	.post-excerpt {
		max-height: 130px; 
		height: 130px;
		min-height: 130px;
		width: 100%;
	}
	
	.post-excerpt p {
		height: 100%;
    	overflow: hidden;
		text-overflow: ellipsis;
  		font-size: 18px;
		display: -webkit-box;
  		-webkit-box-orient: vertical;
  		-webkit-line-clamp: 5;
	}
	
	.post-image img {
		max-height: 700px;
	}
}

