.page-template {
	margin: auto;
}

.page-title {
	font-size: 30px;
	text-align: center;
	font-family: serif;
}

.post-item {
	padding: 20px 10px;
	background: rgba(255, 145, 0, 0.25);
	margin: 10px 0;
}
.post-item-heading {
	display: flex;
	justify-content: space-between;
}
.post-item-title {
	font-family: serif;
	font-size: 23px;
	font-weight: bold;
	text-transform: capitalize;
	color: #000;
}
.post-item-date {
	color: #534a58;
	font-weight: bold;
}
.post-item a {
	color: #ff9100;
	font-weight: bold;
	transition: all 0.2s;
}
.post-item a:hover {
	color: #209000;
}

.post-item-cats .post-categories {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	justify-content: flex-end;
}
.post-item-cotent {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.post-item-thumb {
	max-width: 240px;
}
.post-item-excerpt {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: justify;
	max-width: calc(100% - 250px);
	min-width: 300px;
}

@media (max-width: 574px){
	.page-template {
		font-size: inherit !important;
		/*width: 320px;*/
	}
	.post-item-thumb {
		max-width: 100%;
		width: 100%;
		display: flex;
		justify-content: center;
		padding-bottom: 15px;
	}
}

@media (min-width: 775px){
	.page-template {
		font-size: 13px !important;
		/*width: 775px;*/
	}
}
@media (min-width: 975px){
	.page-template {
		font-size: inherit !important;
		/*width: 960px;*/
	}
}