/* -------------------- SECTION -------------------- */

section {
	margin: 12vw 0 6vw 12vw;
	width: 55vw;
}

.intro {
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 1.8vw;
	line-height: 1.2;
	color: #222222;
}

.item {
	display: block;
	margin: 2vw 0;
/* */
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: stretch;
	align-content: stretch;
}

.photo {
	display: block;
	width: 45%;
}

.pic {
	width: 100%;
/* */
	border: none;
	border-radius: 0.3vw;
}

.story {
	display: block;
	padding: 0 0 0 2vw;
	width: 55%;
}

.title {
	margin: 0;
/* */
	font-family: 'Outfit', sans-serif;
	font-weight: 900;
	font-size: 2vw;
	line-height: 1.2;
	color: #222222;
}

.subtitle {
	margin: 1vw 0;
/* */
	text-transform: uppercase;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 0.8vw;
	line-height: 1;
	color: #777777;
}

.details {
	font-family: 'Newsreader', serif;
	font-feature-settings: "liga", "clig", "onum";
    font-variant-ligatures: common-ligatures;
    font-variant-numeric: oldstyle-nums;
	font-weight: 400;
	font-size: 1.3vw;
	line-height: 1.3;
	color: #222222;
}

/* -------------------- MEDIA -------------------- */

@media only screen and (max-width: 1032px) {

	section {
		width: 70vw;
	}
	
	.title {
		font-size: 2.5vw;
	}
	
	.details {
		font-size: 1.8vw;
	}

}

@media only screen and (max-width: 744px) and (orientation: portrait) {
	
	/* -------------------- MOBILE SECTION -------------------- */
	
	section {
		margin: 20vw 0 0 5vw;
		width: 90vw;
	}
	
	.intro, .details {
		display: none;
	}
	
	.item {
		margin: 4vw 0;
	}
	
	.story {
		padding: 0 0 0 4vw;
	}
	
	.title {
		font-size: 4vw;
	}
	
	.subtitle {
		font-size: 2vw;
		line-height: 2;
	}

}

/* -------------------- PRINT -------------------- */

@media print {

	* {
		display: none;
	}

}
