.blog-page{
	display: flex;
	max-width: 1200px;
	margin: 80px auto;
}
.blog-list{
	width: calc(100%/1.5);
}
.list{
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding: 30px 0;
	flex-wrap: wrap;
}
.post{
	box-shadow: 0 3px 8px 0 rgba(54,57,73,.05);
	max-width: 320px;
	margin: 0 10px 45px 10px;
	border-radius: 5px;
	transition: all .2s ease;
}
.post:hover{
	transform: scale(1.02);
	box-shadow: 0 29px 60px 0 rgba(54,57,73,.09);
}
.post figure{
	text-align: center;
}
.post img{
	width: 100%;
	max-height: 216px;
	border-radius: 5px 5px 0px 0px;
}
.post h2{
	padding: 20px 30px 25px;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4;
}
.btn-mais{
	display: flex;
	justify-content: center;
}
.btn-mais a{
	padding: 9px 35px;
	background-color: #ebcb0a;
	border: none;
	margin: 0 auto;
	border-radius: 50px;
	transition: all 0.3s ease;
	text-transform: uppercase;
	font-weight: 600;
}
.btn-mais a:hover{
	transform: scale(1.05);
}
@media (max-width: 1020px){
	.blog-page{
		padding: 10px;
	}
}
@media (max-width: 660px){
	.post{
		width: 100%;
		max-width: 460px;
	}
	.post img{
		max-height: 277px;
	}
	.post h2{
		font-size: 18px;
	}
}
@media (max-width: 420px){
	.post img{
		max-height: 200px;
	}
}