article.post {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	flex-direction: row;

	margin-top: 33px;
}

article.post:first-of-type {
	margin-top: 0;
}

.post_image {
	max-width: 100%;
	width: 100%;
	line-height: 0;
}

.post_image img {
	width: 100%;
}

.post_body {
	width: 100%;
	display: block;
}

.post_body .in_title,
.post_body .in_text {
	width: 100%;
	display: block;
}

.read-more-btn-q {
	display: none;
}

.post_image_readmore {
	display: contents;
}










.post_imgO {
	display: block;
	position: relative;
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	height: auto;

}
.post_imgO .imgO{
transition:0.05s transform linear;
}
.post_imgO:hover .imgO{
transform:scale(1.05);
}

.post_imgO:before {
	content: "";
	display: block;
	padding-top: 58.75%;
}

.imgO {
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	max-width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: middle;
	border-style: none;
	margin: auto;
}

.post_imgO:hover .OverlayQ {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000a5;
	transition: 0.05s background linear;
}

.open_post_img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
}

.post_imgO:hover .open_post_img:before {
	font-size: 40px;
	transition: 0.09s font-size linear;
}

.open_post_img:before {
	margin: 0;
	color: white;
	font-size: 0;
}

.img_linkO {
	display: contents;
}





@media screen and (min-width:1024px) {
	article.post {
		flex-wrap: nowrap;
	}

	.post_image {
		max-width: 380px;
	}

	.post_body {
		padding-left: 50px;
	}

	.read-more-btn-q {
		display: block;
	}


	.post_imgO {
		max-width: 380px;
	}
}
main {
    padding-top: 150px;
}
.container_blog {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

