#latest-posts {
	isolation: isolate;
}

/*------------------------------------------------------------------------*/

#latest-posts > .content-wrapper {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}
@media (min-width: 900px)	 { #latest-posts > .content-wrapper { row-gap: 65px; } }
@media (max-width: 899.99px) { #latest-posts > .content-wrapper { row-gap: 35px; } }

/*------------------------------------------------------------------------*/

#latest-posts > .content-wrapper > .posts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(286px, 100%), 1fr));
	grid-auto-rows: auto;
	column-gap: 20px;
	margin-bottom: -20px;
	
	filter: drop-shadow(0 0 10px rgba(0,0,0,.2));
}
@media (min-width: 900px) {
	#latest-posts > .content-wrapper > .posts > .single-post:first-child {
		grid-column: span 2;
		grid-row: span 2;
	}
}

#latest-posts > .content-wrapper > .posts > .single-post {
	width: 100%;
	margin-bottom: 20px;
}