#container > header {
	padding-top: 150px;
	
	isolation: isolate;
}
@media (min-width: 900px)	 { #container > header { margin-bottom: 100px; } }
@media (max-width: 899.99px) { #container > header { margin-bottom: 75px; } }

/*------------------------------------------------------------------------*/

#container > header > .content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
@media (min-width: 900px)	 { #container > header > .content-wrapper { row-gap: 65px; } }
@media (max-width: 899.99px) { #container > header > .content-wrapper { row-gap: 35px; } }

/*------------------------------------------------------------------------*/

#container > header > .content-wrapper > .header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
	row-gap: 25px;
}
#container > header > .content-wrapper > .header > * {
	max-width: 450px; min-width: 300px;
	margin: 0;
	
	text-wrap: balance;
	font-weight: 500;
}
#container > header > .content-wrapper > .header > .title {
	line-height: 100%;
}
#container > header > .content-wrapper > .header > .description {
	line-height: 130%;
	font-size: 14px;
}
@media (min-width: 900px) {
	#container > header > .content-wrapper > .header > .title {
		margin-bottom: -3px;
		font-size: 40px;
	}
}
@media (max-width: 899.99px) {
	#container > header > .content-wrapper > .header > .title {
		font-size: 32px;
	}
}

/*------------------------------------------------------------------------*/

#container > header > .content-wrapper > .posts {
	filter: drop-shadow(0 0 10px rgba(0,0,0,.2));
}
#container > header > .content-wrapper > .posts > .grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(286px, 100%), 1fr));
	grid-auto-rows: auto;
	column-gap: 20px;
	margin-bottom: -20px;
}
@media (min-width: 900px) {
	#container > header > .content-wrapper > .posts > .grid > .single-case-study:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}
}

#container > header > .content-wrapper > .posts > .grid > .single-case-study {
	width: 100%;
	margin-bottom: 20px;
}