/*---------------------------------------------------------------*/
/*----------------------- Layout.css ----------------------------*/
/*---------------------------------------------------------------*/
.content_container {
	max-width: 75rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 4rem 3%;
}

.content_container img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.content_container.overview {
	flex-direction: column;
	text-align: center;
}

.two_third,
.third  {
  width: 100%;
}

@media screen and (min-width: 50rem) {
	.content_container {
		flex-direction: row;
	}

	.content_container > div + quote {
		max-width: 33%;
		margin: 2rem;
		color: #CC3B68;
		min-width: 20rem;
		font-size: 2rem;
		text-align: center;
		font-family: 'opensans-light', sans-serif;
	}

	.content_container .magazine {
		-webkit-column-count: 2;
     	-moz-column-count: 2;
        column-count: 2;
        margin-top: 1.5rem;
        column-gap: 6rem;
    	column-width: 20rem;
	}

	.content_container ul.magazine { 
		padding-left: 0;
	}
	
	.content_container ul.magazine p, 
	.content_container ul.magazine li {
		break-inside: avoid-column;
	}

	.content_container ul.magazine li {
		list-style: none;
		margin: 1rem 0;
		position: relative;
		padding-left: 1rem;
	}

	.content_container ul.magazine li:before {
		content:"";
		border: 1px solid;
		height: 8px;
		min-width: 8px;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		left: -0.5rem;
		top: 0.5rem;
	}

	.content_container .magazine p:first-child {
		margin-top: 0;
	}

	.content_container img:not(.illustration) {
		margin-bottom: 0;
	}

	.content_container img + div {
	    margin-left: 2rem;
	}

	.two_third {
		width: 66.66%;
	}

	.third {
	  width: 33.33%;
	}
}

/* list view */
.list_view {
	background-color: #f0f0f0;
	background-image: url(../images/graph_70.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 30%;
}

.list_view > .content_container {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.list_view > .content_container > .list_item {
	max-width: 100%;
    box-sizing: border-box;
    margin: 2rem 0;
    background-color: #fff;
 	box-shadow: 0px 2px 0px 0px rgba(1,2,2,0.15);
}

@media screen and (min-width: 50rem) {
	.list_view > .content_container > .list_item {
		max-width: 49%;
	}
}

.list_view > .content_container > .list_item > a {
	text-decoration: none;
	color: #000;
	display: flex;
    flex-direction: column;
 	padding-top: 2rem;
}

.list_view > .content_container > .list_item > img {
	height: 14rem;
    object-fit: cover;
    object-position: center;
}

.list_view > .content_container > .list_item > a.list_item_logo img {
	height: 6rem;
	width: 80%;
    object-fit: contain;
	margin: 0 auto;
}

@media screen and (min-width: 50rem) {
	.list_view > .content_container > .list_item > a.list_item_logo img {
		width: 50%;
	}
}

.list_view > .content_container > .list_item > div {
	padding: 2rem;
	margin-left: 0;
}

.list_view > .content_container > .list_item > img + div {
	padding-top: 0;
}

.list_view > .content_container > .list_item h1 {
	margin-bottom: 0;
	padding-top: 1.5rem;
	border-top: 1px solid #f0f0f0;
}

.list_view > .content_container > .list_item > img + div > h1 {
	border-top: 0;
}

.list_view > .content_container > .list_item h2 {
	font-family: opensans-light, sans-serif;
	font-size: 1.2rem;
	margin-top: 0;
	color: #CC3B68;
}

.list_view > .content_container > .list_item h2 span {
	color: #a0a0a0;
	margin-left: 0.5rem;
	display: inline-block;
}

.list_view > .content_container > .list_item h2 span:before {
	content: "- ";
}

/* Flyer layout, big image with text next to it */
.flyer {
	position: relative;
}

.flyer > .content_container > div {
	margin-left: auto;
}

.flyer.reverse > .content_container > div {
	margin-right: auto;
	margin-left: 0;
}

.flyer > .content_container > img, 
.flyer > .content_container > div.img_container {
	display: none;
}

/* Skewed image */
div.img_container {
	transform: skew(-7deg, 0deg);
    overflow: hidden;
    transform-origin: bottom left;
}

div.img_container img {
	transform: skew(7deg, 0deg);
    width: 120%;
    margin-left: -10%;
}

@media screen and (min-width: 55rem) {
	.flyer > .content_container > img,
	.flyer > .content_container > div.img_container {
		position: absolute;
		top: 0;
		left: 0;
		max-width: 48%;
		height: 100%;
		object-fit: cover;
		object-position: center right;
		display: block;
	}

	.flyer.reverse > .content_container > img,
	.flyer > .content_container > div.img_container {
		right: 0;
		left: auto;
		object-position: center left;
	}

	.flyer > .content_container > div {
		max-width: 48%;
	}
}
