/**
 * .highlightContainer
 * be sure to not display the articles h2 and not more then 1 article
 */

.highlightContainer .article > h2 {
	display: none;
}

.highlightContainer .article_content {
	margin-bottom: 0;
}

.oc-landingpageIntro {
	background-color: #eee;
}

.introImageContainer img {
	display: block;
	width: 100%;
	margin: 0;
}

.introTexts {
	padding: 20px;
}

.introBody h2 {
	margin: 0 0 .6em;
	line-height: 1.1em;
	font-size: 28px;
}

.introBody p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 29px;
}

@media screen and (min-width: 650px) {
	/**
	 * Place text next to picture on larger screens
	 * align text in the vertical middle of the picture
	 */

	.oc-landingpageIntro {
		display: table;
		width: 100%;
		direction: rtl;
	}

	.introImageContainer,
	.introBody {
		display: table-cell;
		vertical-align: middle;
		direction: ltr;
	}

	.introBody {
		width: 56.92%;
	}

	.introImageContainer {
		background-repeat: no-repeat;
		background-position: 50%;
		background-size: cover; /** In case the text is higher then the photo, still make it look good */
	}

	.introImageContainer img {
		visibility: hidden;
	}

	.introTexts {
		float: right;
		padding: 10% 13% 12% 20px;
		max-width: 543px;
	}
}

/** Optimize text sizes for various screen sizes */

@media screen and (min-width: 760px) {
	.introBody h2 {
		font-size: 34px;
	}
}

@media screen and (min-width: 1140px) {
	.introBody h2 {
		font-size: 42px;
	}
}