/*-------------------------------------------*\
	Custom Image Block Styles
\*-------------------------------------------*/

.custom-image-block {
	padding: 40px 0;
}

.custom-image-block.bg-default {
	background-color: #B5A48F;
}

.custom-image-block__container {
	margin: 0 auto;
    max-width: 1400px;
	text-align: center;
}

.custom-image-block__image-wrapper {
	display: inline-block;
}

.custom-image-block__image {
	height: auto;
}




/* Responsive Design */
@media (max-width: 768px) {
	.custom-image-block {
		padding: 30px 0;
	}
	
	.custom-image-block__container {
		padding: 0 15px;
	}
	

}

@media (max-width: 480px) {
	.custom-image-block {
		padding: 20px 0;
	}
	

}

/* Admin Editor Styles */
.editor-styles-wrapper .custom-image-block {
	background-color: #B5A48F;
}

.editor-styles-wrapper .custom-image-block__image {
	height: auto;
}

