/* Fabian Roos, 29.08.16 */
/* Detail thesis page */

/* set a height to ensure all boxes are equal, perhaps to be increased for longer content? */
/* choose a lighter grey background colour */
/* main > site div > 2nd horizontal div > xth column div > content element > article box >  */
/* changed to min-height, Roos-16-08-31 */
main > div > div:nth-child(3) > div > div > article.background-box > div {
  min-height: 220px;
  background-color: #F5F5F5;
}

/* remove the red border */
main > div > div:nth-child(3) > div > div > article.background-box {
  border: none;
}

/* format the image: align right, maximal size */
main > div > div:nth-child(2) > div > div > img {
  float: right;
  max-height: 300px;
  max-width: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
	main > div > div:nth-child(2) > div > div > img {
		float: none;
		display: block;
	}
}
