.post{
	
}
.post .post-header{
	background:#f7f7f7;
	background-size:cover;
	background-position:center;
	
	position:relative;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.post .post-header .post-header-default{
	padding:400px 0px 100px;
	
	background: var(--color-01);
	background: -moz-linear-gradient(top, #ffffff00 0%, rgba(31,35,44,0.3) 60%, rgba(31,35,44,0.9) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, #ffffff00), color-stop(60%, rgba(31,35,44,0.3)), color-stop(100%, rgba(31,35,44,0.9)));
	background: -webkit-linear-gradient(top,#ffffff00 0%, rgba(31,35,44,0.3) 60%, rgba(31,35,44,0.9) 100%);
	background: -o-linear-gradient(top, #ffffff00 0%, rgba(31,35,44,0.3) 60%, rgba(31,35,44,0.9) 100%);
	background: -ms-linear-gradient(top, #ffffff00 0%, rgba(31,35,44,0.3) 60%, rgba(31,35,44,0.9) 100%);
	background: linear-gradient(to bottom, #ffffff00 0%, rgba(31,35,44,0.3) 60%, rgba(31,35,44,0.9) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=0 );
}
.post .post-header .categories{
	
}
.post .post-header .categories ul{
	list-style:none;
	display:flex;
}
.post .post-header .categories ul li{
	margin: 0px 5px 0px 0px;
}
.post .post-header .categories a{
	font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 12px;
    background: var(--color-03);
    display: inline-block;
	padding: 8px 10px;
	
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	khtml-border-radius:2px;
	border-radius:2px;
}
.post .post-header h1{
	color:#fff;
	font-size:50px;
	line-height: 100%;
	max-width:650px;
	margin:20px 0px 15px;
}
.post .post-header small{
	display:block;
	font-size:14px;
	color:rgba(255,255,255,0.7);
}

/*############## POST CONTENTE ##############*/

.post .post-body{
	padding:100px 0px;
}
.post .post-body .container{
	display:flex;
	flex-wrap:wrap;
	flex-direction:row-reverse;
	justify-content:space-between;
	align-items:start;
	overflow: visible;
}
.post .post-body .post-content{
	width:calc(100% - 145px);
	margin:0px 0px 0px 100px;
	padding:0px;
	
	font-size:18px;
	font-weight:300;
	line-height:180%;
	color:#333333;
}
.post .post-body .post-sidebar{
	width:45px;
}

/*############## POST SHARE ##############*/

.post .post-share{	
	
}
.post .post-share ul{
	margin:0px;
	padding:0px;
	list-style:none;
}
.post .post-share ul li{
	margin:0px;
	background:none;
}
.post .post-share ul li a{
	color: #ccc;
    display: block;
    font-size: 30px;
    padding: 8px 0px;
    text-align: center;
}
.post .post-share ul li a:hover{
	color: #333;
}

@media all and (max-width: 768px){	
	.post .post-header .post-header-default{
		padding:200px 0px 80px;
	}
	.post .post-header h1{
		font-size:40px;
	}
	.post .post-body{
		padding:80px 0px;
	}
	.post .post-body .post-content{
		width:100%;
		margin:0px 0px 50px 0px;
	}
	.post .post-body .post-sidebar{
		width:100%;
	}
	.post .post-share ul li{
		display:inline-block;
	}
	.post .post-share ul li a{
		padding: 0px 8px;
	}
}

@media all and (max-width: 600px){
	.post .post-header h1{
		font-size:30px;
	}
	.post img{
		width:100%;
		height:auto;
	}
}