.photoorder-blog {
	display: flex;
	height: 462px;
	margin: 30px 55px;
}
.photoorder-blog .post {
	display: block;
	overflow: hidden;
	position: relative;
}
.photoorder-blog .img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: transform ease 0.6s;
	width: 100%;
}
.photoorder-blog .title {
	background: rgba(255, 255, 255, 0.6);
	color: #313233;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	line-height: 22px;
	padding: 3px 15px;
	position: absolute;
}
.photoorder-blog .post:hover .img {
	transform: scale(1.1);
}
.photoorder-blog .left {
	flex-basis: 0;
	flex-grow: 2;
	margin-right: 10px;
}
.photoorder-blog .right {
	display: flex;
	flex-basis: 0;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}
.photoorder-blog .right .post {
	height: 49%;
	height: calc(50% - 5px);
}

@media screen and (max-width: 959px) {
	.photoorder-blog {
		margin: 30px 0;
	}
}

@media screen and (max-width: 767px) {
	.photoorder-blog {
		display: none;
	}
}