.recent-post{
	background: var(--e-global-color-primary);
	display:flex;
	border-radius:45px;
	width:90%;
	margin:auto;
	border: 2px solid #707070;
}
.recent-post .desc,.recent-post .media{
	width:50%;
}
.recent-post .desc{
	padding: 45px;
	color:#fff;
}
.recent-post .media{
	overflow:hidden;
	position:relative;
	display: flex;
	align-items:center;
	justify-content:center;
	border-radius:43px
}
.recent-post .media img{
	position:absolute;
}
.recent-post p{
	margin:25px 0px
}
.btn-leia{
	background:#fff;
	color: var(--e-global-color-text) !important;
	font-weight:bold;
	display:block;
	width:fit-content;
	width:-moz-fit-content;
	padding:10px 30px;
	border-radius:35px;
	transition: all .3s;
}
.btn-leia:hover{
	background: var(--e-global-color-text);
	color:#fff !important;
}
.lista-cats{
	list-style:none;
	padding:0px;
	text-align:center;
	margin:45px 0px;
	display:block;
}
.lista-cats li{
	display:inline-block;
	margin:0px 12px;
}
.lista-cats li a{
	background: var(--e-global-color-primary);
	color:#fff !important;
	font-weight:bold;
	box-shadow: -5px 5px 10px rgb(0 0 0 / 15%);
	padding:10px 35px;
	border-radius:30px;
	cursor:pointer;
	transition: all .3s;
}
.lista-cats li a:hover,.lista-cats li a.ativo{
	background: var(--e-global-color-secondary);
}
.postagens-content{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.postagens-content .bloco-post{
	width: calc( 100% / 2 - 10px );
	margin-bottom:25px
}
.postagens-content .bloco-post .media{
	height:270px;
	border-radius:15px;
	display:block;
	overflow:hidden;
}
.postagens-content .bloco-post h3{
	margin:25px 0px;
}
.postagens-content .bloco-post h3 a{
	color: var(--e-global-color-secondary);
	font-weight:600;
	font-size:22px
}
.postagens-content .bloco-post p{
	color:#212925;
	opacity:0.6;
}
.postagens{
    display: none;
}

@media (max-width:767px){
	.postagens-content .bloco-post,.recent-post .desc, .recent-post .media,.lista-cats li{
		width: 100%;
	}
	.lista-cats li{
		display: block;
		margin-bottom: 25px;
	}
	.recent-post{
		width: 100%;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}
	.recent-post .media img{
		position: static;
	}
}