/* Responsive Styles */
@media (max-width: 1199px) { /* md and down */

}

@media (max-width: 991px) {/* sm and down */
	.splash {
		padding: 2em;
	}
	
	.spotifyGrid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Flex Block */
	.flexBlock {
		flex-direction: column;
	}
	
	.flexBlock.bd figure.l {
		border-right: 7px solid #fff;
		border-bottom: 0 solid #fff;
	}

	.flexBlock.bd figure.r {
		border-left: 7px solid #fff;
		border-top : 0 solid #fff;
	}
	
}

@media (max-width: 767px) {/* xs and down */
	.splash {
		padding: 1.5em;
	}	
	
	.spotifyGrid {
		grid-template-columns: repeat(1, 1fr);
	}
	
	/* Flex Block */
	.flexBlock .contentWrapper {
		padding: 5rem 3rem;
	}
	
}

/* Mobile First */

@media (min-width: 768px ) { /* sm and up */
	
}

@media (min-width: 992px) {/* md and up */
	
}

@media (min-width: 1200px) {/* lg and up */

}