.post{
	
}
.post .post-image{
	background: #db0000;
	background: #fff;
    background-size: contain;
    min-height: 200px;
	
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*############## POST HEADER ##############*/

.post .post-header{
	padding:60px 30px 30px;
}
.post .post-header .container{
	display:flex;
	flex-wrap: wrap;
	column-gap: 30px;
	row-gap: 15px;
	justify-content: space-between;
	max-width: 800px;
}
.post .post-header .post-categories{
	width:100%;
}
.post .post-header .post-categories ul{
	list-style:none;
	display:flex;
	margin:0px;
	padding:0px;
}
.post .post-header .post-categories ul li{
	margin: 0px 5px 0px 0px;
}
.post .post-header .post-categories a{
	font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 12px;
    background: var(--color-01);
    display: inline-block;
	padding: 8px 10px;
	
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	khtml-border-radius:2px;
	border-radius:2px;
}
.post .post-header .post-title{
	width:calc(100% - 180px);
}
.post .post-header .post-title h1{
	color:#000;
	font-size:26px;
	font-weight: 700;
	line-height: 100%;
	margin:0px;
}
.post .post-header .post-share{	
	width:150px;
	font-size: 12px;
	color:#707070;
}
.post .post-header .post-share ul{
	margin:0px;
	padding:0px;
	list-style:none;
	display: flex;
	gap:10px;
}
.post .post-header .post-share ul li{
	margin:0px;
	background:none;
}
.post .post-header .post-share ul li a{
	color: #ccc;
    display: block;
    font-size: 30px;
    padding: 8px 0px;
    text-align: center;
}
.post .post-header .post-share ul li a:hover{
	color: #333;
}

/*############## POST CONTENT ##############*/

.post .post-body{
	padding:0px 30px 80px;
}
.post .post-body .container{
	max-width: 800px;
}
.post .post-body .post-content{
	font-size:16px;
	font-weight:300;
	line-height:180%;
	color:#707070;
}

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



@media all and (max-width: 768px){	
	.post .post-image{
		background-size: cover;
		min-height: 220px;
	}
	.post .post-header .post-title{
		width: 100%;
	}
	.post .post-header .post-share{	
		width: 100%;
	}
}

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